text stringlengths 20 1.01M | url stringlengths 14 1.25k | dump stringlengths 9 15 ⌀ | lang stringclasses 4
values | source stringclasses 4
values |
|---|---|---|---|---|
User talk:Splaka/Archive2
From Uncyclopedia, the content-free encyclopedia
Hi Splaka
Hilf mir bitte, weil ich hier neu bin. Bébizokni ist auf Ungarisch/Hungarian/Magyar. Aber dieses Sablon finde ich nicht... --Dr. Steller 11:27, 13 Nov 2005 (UTC)
Image ist aus diese Seite: --Dr. Steller 11:29, 13 Nov 2005 (UTC)
- Sorry... | http://uncyclopedia.wikia.com/wiki/User_talk:Splaka/Archive2 | CC-MAIN-2015-14 | en | refinedweb |
07 November 2007 17:11 [Source: ICIS news]
LONDON (ICIS news)--Belarusian Potash Company (BPC) has resumed potash sales and increased prices in response to strong demand in major markets, a supply shortage and rising freight rates, a company official said on Wednesday.
?xml:namespace>
BPC temporarily suspended entry in... | http://www.icis.com/Articles/2007/11/07/9076908/bpc-resumes-potash-sales-raises-prices.html | CC-MAIN-2015-14 | en | refinedweb |
Welcome to Haskell IDE plugin for amazing Atom editor! This plugin is intended to help you in Haskell developing.
Haskell IDE is currently in active development state.
Haskell IDE works only with cabal projects. You can simply start Atom from cabal project root or drag and drop cabal project folder on editor and plugin... | https://atom.io/packages/ide-haskell | CC-MAIN-2015-14 | en | refinedweb |
Point2D.Float cast to Floatjimbo8 Oct 15, 2010 6:35 AM
I noticed in the swingx BusyPainter code (fragments below) that Point2D.Float is being assigned/cast to Float, how does this work?
How can they do this Float center = new Float(sp.x, sp.y) ?
In paintRotatedCenteredShapeAtPoint p which was defined as Point2D.Float i... | https://community.oracle.com/message/7008980 | CC-MAIN-2015-14 | en | refinedweb |
.
The validate_unique parameter was added to allow skipping Model.validate_unique(). Previously, Model.validate_unique() was always called by full_clean.atically..] fields an UPDATE.
- If the object’s primary key attribute is not set or if the UPDATE didn.
Previously., including how to delete objects in bulk, see Delet... | https://docs.djangoproject.com/en/1.6/ref/models/instances/ | CC-MAIN-2015-14 | en | refinedweb |
How do I localize strings?
How do I localize strings?
Hi all;
When designing with Architect, how do I put all strings in a separate resource file that we can change based on the language of the user? Or is another approach recommended?
thanks - dave
SA does not have any turn-key solution to this. I have done the follow... | http://www.sencha.com/forum/showthread.php?270522-How-do-I-localize-strings | CC-MAIN-2015-14 | en | refinedweb |
PrintSystemObject Class
Defines basic properties and methods that are common to the objects of the printing system. Classes that derive from this class represent such objects as print queues, print servers, and print jobs.
System.Printing.PrintSystemObject
System.Printing.PrintFilter
System.Printing.PrintPort
System.Pr... | https://msdn.microsoft.com/en-us/library/system.printing.printsystemobject.aspx | CC-MAIN-2015-14 | en | refinedweb |
15 January 2013 18:06 [Source: ICIS news]
Correction: In the ICIS news story headlined "US propylene contracts for January settle 15 cents/lb higher" dated 15 January 2013, please read in the sixth paragraph …up 36% from 53.25 cents/lb in mid-November… instead of … up 36% from 53.25 cents/lb in mid-December….
A correct... | http://www.icis.com/Articles/2013/01/15/9631988/corrected-us-propylene-contracts-for-january-settle-15-centslb-higher.html | CC-MAIN-2015-14 | en | refinedweb |
»
Mobile
»
Android
Author
Service being destroyed?
Sean Michael Hayes
Ranch Hand
Joined: Feb 08, 2012
Posts: 54
I like...
posted
Mar 13, 2013 11:41:22
0
I have an App that is listening on a certain port for messages to come through. I need this service to run as long as the Application is running on the phone. However... | http://www.coderanch.com/t/607207/Android/Mobile/Service-destroyed | CC-MAIN-2015-14 | en | refinedweb |
The Making of the Interactive Treehouse Ad
Published by.
The Idea
- Have a "canvas" (not
<canvas>, just an area where things happen)
- Have a series of five bits of simple jQuery code
- Click a button, code runs, something happens in canvas
- You can see the code you are about to execute
- It should be visually clear t... | https://css-tricks.com/treehouse-ad/ | CC-MAIN-2015-14 | en | refinedweb |
Learn how easy it is to sync an existing GitHub or Google Code repo to a SourceForge project! See Demo
You can subscribe to this list here.
Showing
5
results of 5
This time for src/compiler/generic/vm-tran.lisp. I was a little unsure
how to separate the macroexpanded code out into a separate function, so
I left that pa... | http://sourceforge.net/p/sbcl/mailman/sbcl-devel/?viewmonth=200201&viewday=7 | CC-MAIN-2015-14 | en | refinedweb |
The Data Access Visual Designer is a visual tool integrated in Visual Studio. It enables point-and-click modification of your domain model, such as create and modify entities, associations, mapping and inheritance relationships. It also helps you validate the domain model. The Visual Designer consists of a design surfa... | http://www.telerik.com/data-access/visual-studio-integration | CC-MAIN-2015-14 | en | refinedweb |
Help Getting Started w/ClassesvoxL Jun 1, 2012 9:18 AM
Hi:
I'd like to setup a class file to store functions that I use frequently, not sure how to do it, but I think I'm close. Here's a simple example that doesn't quite work, I get error:
import PFarmFunctions;
PFarmFunctions.fadeMe (mc,"off",1,1);
Call to a possibly ... | https://forums.adobe.com/message/4457935 | CC-MAIN-2015-14 | en | refinedweb |
Initialization of Objects
A local automatic object or variable is initialized every time the flow of control reaches its definition. A local static object or variable is initialized the first time the flow of control reaches its definition.
Consider the following example, which defines a class that logs initialization ... | https://msdn.microsoft.com/en-us/library/4t84t432(v=vs.90).aspx | CC-MAIN-2015-14 | en | refinedweb |
#include <algorithm> //for for_each()
std::for_each (vt.begin(), vt.end(), &Task::show_pid);
Step 3: Using a Function Adapter
Fortunately, you don't really need a fourth argument because the member function show_pid() should be called for every object in the range vt.begin() vt.end(). But how do you tell for_each() to ... | http://www.devx.com/getHelpOn/10MinuteSolution/19911/0/page/3 | CC-MAIN-2015-14 | en | refinedweb |
For back compatability with fltk1.1
Callback is a function pointer to a fltk callback mechanism. It points to any function void foo(Widget*, void*)
Function pointer to a callback with only one argument, the widget
Function pointer to a callback with a long argument instead of a void argument
A pointer to a Callback. Ne... | http://www.fltk.org/doc-2.0/html/namespacefltk.html | CC-MAIN-2015-14 | en | refinedweb |
This is a report from the W3C Technical Architecture Group to the W3C membership on TAG activities from August, 2009 through February, 2010.
In our previous status report we announced that the TAG had decided to focus primarily on three major areas of current interest:
We have continued to use them as the organizing fr... | http://www.w3.org/2001/tag/2010/sum03.html | CC-MAIN-2015-14 | en | refinedweb |
J-AXE file splitter is a Windows application developed using C# .NET to split file into time interval based on size and total files after splits. I would not ignore the fact that this is some kind of new application. Already there are so many open source projects available to achieve the same purpose. Then the question... | http://www.codeproject.com/Articles/223791/JAXE-A-File-Splitter-in-Csharp | CC-MAIN-2015-14 | en | refinedweb |
15 July 2010 10:26 [Source: ICIS news]
SINGAPORE (ICIS news)--South Korea’s LG Chem has bought 25,000 tonnes of open spec spot naphtha at a steep discount of $12.00/tonne (€9.48/tonne) reflecting poor market conditions, a company source said on Thursday.
The cargo - bought on ?xml:namespace>
“Naphtha’s in the dumps,” s... | http://www.icis.com/Articles/2010/07/15/9376705/lg-chem-buys-25000t-naphtha-at-steep-12tonne-discount.html | CC-MAIN-2015-14 | en | refinedweb |
Difference between revisions of "EBC Exercise 11b gpio via mmap"
Latest revision as of 07:28, 18 October 2021.
(See if memtool will work instead of devmem2.)
An easy way to read the contents of a memory location is with devmem2. First install it with:
bone$ wget bone$ gcc devmem2.c –o devmem2 bone$ sudo mv devmem2 /us... | https://www.elinux.org/index.php?title=EBC_Exercise_11b_gpio_via_mmap&curid=76508&diff=556636&oldid=527071 | CC-MAIN-2021-49 | en | refinedweb |
Author: Keats in post puberty
introduction
It is said that StringBuilder is more efficient than String in handling String splicing, but sometimes there may be some deviation in our understanding. Recently, when I tested the efficiency of data import, I found that my previous understanding of StringBuilder was wrong. La... | https://programmer.help/blogs/do-you-still-use-concatenation-strings-in-the-for-loop-tomorrow-is-not-for-work.html | CC-MAIN-2021-49 | en | refinedweb |
- 2.1. Introduction
- 2.2. A Simple C Program: Printing a Line of Text
- 2.3. Another Simple C Program: Adding Two Integers
- 2.4. Arithmetic in C
- 2.5. Decision Making: Equality and Relational Operators
- 2.6. Secure C Programming
2.2. A Simple C Program: Printing a Line of Text
We begin by considering a simple C pro... | https://www.informit.com/articles/article.aspx?p=2062174&seqNum=2 | CC-MAIN-2021-49 | en | refinedweb |
Problem Statement
In this problem, we are given a non-negative integer. We have to convert the integer in a such a format, in which there will be some dots which separates all thousands, i.e. there are dots after each 3 places from right.
Example
#1
n = 987
"987"
#2
n = 123456789
"123.456.789"
Explanation:
The number i... | https://www.tutorialcup.com/leetcode-solutions/thousand-separator-leetcode-solution.htm | CC-MAIN-2021-49 | en | refinedweb |
#include <cstdint>
#include <vector>
Go 69 of file tx_verify.cpp.
Context dependent validity checks for non coinbase transactions.
This doesn't check the validity of the transaction against the UTXO set, but simply characteristic that are suceptible to change over time such as feature activation/deactivation and CLTV.
... | https://bitcoindoxygen.art/ABC/tx__verify_8h.html | CC-MAIN-2021-49 | en | refinedweb |
Chapter 1. Introducing the Service Mesh
What Is a Service Mesh?
Service meshes provide policy-based, network services for network-connected workloads by enforcing desired behavior of the network in the face of constantly changing conditions and topology. Conditions that change can be load, configuration, resources (inc... | https://www.oreilly.com/library/view/istio-up-and/9781492043775/ch01.html | CC-MAIN-2021-49 | en | refinedweb |
#include <interaction.h>
Representation of an interaction via an end-effector Displays one marker for manipulating the EEF position.
Definition at line 157 of file interaction.h.
The name of the group that defines the group joints.
Definition at line 166 of file interaction.h.
Which degrees of freedom to enable for the... | http://docs.ros.org/en/hydro/api/moveit_ros_robot_interaction/html/structrobot__interaction_1_1EndEffectorInteraction.html | CC-MAIN-2021-49 | en | refinedweb |
Whenever we write up a feature on a microcontroller or microcontroller project here on Hackaday, we inevitably get two diametrically opposed opinions in the comments. If the article featured an 8-bit microcontroller, an army of ARMies post that they would do it better, faster, stronger, and using less power on a 32-bit... | https://hackaday.com/2016/02/24/when-are-8-bits-more-than-32/ | CC-MAIN-2021-49 | en | refinedweb |
perfolationperfolation
Originally designed for interpolation performance improvements, but as Scala's built-in interpolation has improved, this has become redundant. However, formatted interpolation is still both slow and painful to work with. To that end, this library has changed to providing convenient features for f... | https://index.scala-lang.org/outr/perfolation/perfolation-unit/1.2.6?target=_sjs1.x_3.0.0-RC2 | CC-MAIN-2021-49 | en | refinedweb |
Over time, Swift has developed a distinct dialect, a set of core idioms that distinguish it from other languages. Many new developers now arrive not just from Objective-C but also from Ruby, Java, Python, and more. The other day, I was helping Nicholas T Chambers find his groove with the new language. He was porting so... | https://ericasadun.com/2017/01/24/swift-idioms/ | CC-MAIN-2021-49 | en | refinedweb |
Symptoms
Consider the following scenario:
You create a Microsoft Visual C++ project in Microsoft Visual Studio 2010.
You change the Additional Manifest Files option to support Windows 7.
Note To do this in Visual Studio 2010, follow these steps:
Open the project's Property Pages dialog box, expand the Manifest Tools no... | https://support.microsoft.com/en-gb/topic/fix-81010002-warning-message-when-you-rebuild-a-visual-c-project-in-visual-studio-2010-f9a5c2cd-5e43-c76f-b1cc-e04d3f221224 | CC-MAIN-2021-49 | en | refinedweb |
In this assignment, you will explore three classic puzzles from the perspective of uninformed search.
A skeleton file
homework2 cases where you find yourself reinventing the wheel. If you are unsure where to start, consider taking a look at the data structures and functions defined in the
collections,
itertools,
math, ... | http://artificial-intelligence-class.org/homeworks/hw2/homework2.html | CC-MAIN-2021-49 | en | refinedweb |
Mime type rootXML equality improvement
--------------------------------------
Key: TIKA-367
URL:
Project: Tika
Issue Type: Improvement
Components: mime
Affects Versions: 0.5
Environment: My local MacBook pro
Reporter: Chris A. Mattmann
Assignee: Chris A. Mattmann
Fix For: 0.6
While working on TIKA-357 and TIKA-366, I n... | http://mail-archives.us.apache.org/mod_mbox/tika-dev/201001.mbox/%3C1209077487.361171263965636293.JavaMail.jira@brutus.apache.org%3E | CC-MAIN-2021-49 | en | refinedweb |
Setup
To be able to begin to retrieve Metadata and other information from the Salesforce database, you will have to first establish a connection.
Note: If you are using a sandbox environment, the login url will be changed from
login.salesforce.com to
test.salesforce.com.
To establish the connection you will need to do ... | https://paxson.io/connecting-to-salesforce-rest-api-in-python/ | CC-MAIN-2021-49 | en | refinedweb |
In the previous post, methods
clone_node and
indent_node were described. Next method we are going to describe is
dedent_node or moving node left.
Method
dedent_node
Method
dedent_node(pos) moves node at the given position to left, i.e. to its grand-parent just after its current parent. This operation can change size of... | https://computingart.net/leo-tree-model-7.html | CC-MAIN-2021-49 | en | refinedweb |
Get your application up and running
Adding the route to the main view
We previously replaced the original
MainView with our own. The new one does not have an
@Route annotation which we need set our view as the the root route.
Switch back to IntelliJ IDEA.
Expand the
src/main/java/com.vaadin.tutorial.crm.uipackage and o... | https://vaadin.com/docs/latest/tools/designer/getting-started/get-your-application-up-and-running | CC-MAIN-2021-49 | en | refinedweb |
Customizing ASP.NET Core Part 12: Hosting
Jürgen Gutsch - 29 April, 2019 12th part of this series, I'm going to write about how to customize hosting in ASP.NET Core. We will look into the hosting options, different kind of hosting and a quick look into hosting on the IIS. And while writing this post this again seems to... | https://asp.net-hacker.rocks/2019/04/29/customizing-aspnetcore-12-hosting.html | CC-MAIN-2021-49 | en | refinedweb |
Question
22) A. John & Son Canada Corp has the following capital structure.
Security
1)6.0% Bond---30million
2)5.5% Straight bond ----10 million
3)7.5% Preferred stock ----10 million
4)Common stock -----50 million
Total $100 million
The 6% bond is a callable bond and yield to call (YTC) of this bond is 6.75%. The strai... | https://www.coursehero.com/tutors-problems/Finance/19990068-22-A-John-Son-Canada-Corp-has-the-following-capital-structure-Sec/ | CC-MAIN-2020-05 | en | refinedweb |
You know how you can you type python script.py and magic happens? That’s the Python virtual machine, or language interpreter, reading the source code you wrote, translating it down to bytecode the Python VM can understand, and then executing it.
I use the terms language interpreter and language VM interchangeably. I’ll... | https://www.tefter.io/bookmarks/38099/readable | CC-MAIN-2020-05 | en | refinedweb |
Subject: Re: [boost] Is there any interest in a library which solves C++ class reflection feature just like Java does?
From: jinhua luo (ljh.home.king_at_[hidden])
Date: 2011-12-05 23:46:09
Hi,
I just have a quick look at the boost::fusion. The declaration syntax is a
bit similar, but they are completely different thin... | https://lists.boost.org/Archives/boost/2011/12/188675.php | CC-MAIN-2020-05 | en | refinedweb |
משיב מוביל
Hyper-V 2016 VMs stuck 'Creating checkpoint 9%' while starting backups
שאלה
We have a two clustered W2016 Hyper-V hosts, every couple of days one of the hosts gets stuck when the backup kicks off. In Hyper-V manager the VMs all say 'Creating checkpoint 9%' It's always the same percentage 9%. You can't cancel... | https://social.technet.microsoft.com/Forums/windows/he-IL/0d99f310-77cf-43b8-b20b-1f5b1388a787/hyperv-2016-vms-stuck-creating-checkpoint-9-while-starting-backups | CC-MAIN-2020-05 | en | refinedweb |
I heard Saul Griffith say recently that if you covered all the car parks in the USA with solar panels you would supply way more than the national energy requirements (I can’t find the actual reference, but just go and watch his talks and read everything he’s written).
I claimed this might translate to the UK. But does ... | https://tech.labs.oliverwyman.com/blog/2019/10/28/uk-parking-areas/ | CC-MAIN-2020-05 | en | refinedweb |
Lesson 4 - E-shop in ASP.NET Core MVC - Relations and Repository
In the previous lesson, E-shop in ASP.NET Core MVC - Products and categories, we learned how to add additional entities
to the data model, including
DataAnnotation attributes. In today's
ASP.NET Core tutorial, we'll add relations to these entities and upd... | https://www.ict.social/csharp/asp-net/core/e-shop/e-shop-in-aspnet-core-mvc-relations-and-repository | CC-MAIN-2020-05 | en | refinedweb |
Grails Transactions using @Transactional annotations and Propagation.REQUIRES_NEW
Hi All,
Here is how you can implement a new transaction in an already executing transaction in Grails which uses nothing but Spring framework’s Transaction mechanism as an underlying implementation. Spring provides @Transactional annotati... | https://www.tothenew.com/blog/grails-transactions-using-transactional-annotations-and-propagation-requires_new/?replytocom=39339 | CC-MAIN-2020-05 | en | refinedweb |
Database Change Notifications in ASP.NET using WebSocket
Display database change on website in real-time
Database table changes are usually not displayed right away in an application, escecially if it is a web application.
With HTML5 and Web API that is about to change. New MVC introduces async controllers which can be... | https://dejanstojanovic.net/aspnet/2014/june/database-change-notifications-in-aspnet-using-websocket/ | CC-MAIN-2020-05 | en | refinedweb |
#include <sys/types.h>
#include <sys/malloc.h>
#include <sys/param.h>
#include <sys/malloc.h>
#include <sys/kernel.h>
The mallocarray() function allocates uninitialized memory in kernel address space for an array of nmemb entries:
Exactly one of either M_WAITOK or M_NOWAIT must be specified.
The type argument is used t... | https://nxmnpg.lemoda.net/9/reallocf | CC-MAIN-2020-05 | en | refinedweb |
Sometimes we need to import and save excel data into SQL server database, when we are changing database or migrating a any other platform code into C#, we may need to migrate old database data into new database also, we can do it by importing data from excel into database tables using ASP.NET C#, so in this post, I wil... | https://qawithexperts.com/article/asp-net/import-excel-data-in-sql-server-database-table-using-c-in-as/213 | CC-MAIN-2020-05 | en | refinedweb |
panda3d.core.PStatThread¶
from panda3d.core import PStatThread
- class
PStatThread¶
A lightweight class that represents a single thread of execution to PStats. It corresponds one-to-one with Panda’s Thread instance.
Inheritance diagram
__init__(client: PStatClient, index: int) → None¶
Normally, this constructor is call... | https://docs.panda3d.org/1.10/python/reference/panda3d.core.PStatThread | CC-MAIN-2020-05 | en | refinedweb |
This topic provides information on methods that allow you to change application and/or individual UI element appearance.
Global settings
Individual control appearance settings
The Look-and-Feel settings are global style settings such as the Default Application Font and skin. You can use the following approaches to spec... | https://documentation.devexpress.com/WindowsForms/114444/Common-Features/Application-Appearance-and-Skin-Colors | CC-MAIN-2020-05 | en | refinedweb |
NEW: Learning electronics? Ask your questions on the new Electronics Questions & Answers site hosted by CircuitLab.
Microcontroller Programming » compiling a .c file
i need to write a program with both a millisecond delay and a microsecond delay. i figured out with a changed value in the provided millisecond delay func... | http://www.nerdkits.com/forum/thread/1384/ | CC-MAIN-2020-05 | en | refinedweb |
expression_language 0.2.1
expression_language #
Dart library for parsing and evaluating expressions.
Main goal #
Main goal of this library is to be able to parse and evaluate expressions like:
4 * 2.5 + 8.5 + 1.5 / 3.0
3* @control1.numberProperty1 < (length(@control2.stringProperty1 + "test string") - 42)
(!@control1.b... | https://pub.dev/packages/expression_language | CC-MAIN-2020-05 | en | refinedweb |
direct.p3d.PatchMaker¶
from direct.p3d.PatchMaker import PatchMaker
Deprecated since version 1.10.0: The p3d packaging system has been replaced with the new setuptools-based system. See the Distributing Panda3D Applications manual section.
Inheritance diagram
- class
PatchMaker(installDir)[source]¶
Bases:
object
This c... | https://docs.panda3d.org/1.10/python/reference/direct.p3d.PatchMaker | CC-MAIN-2020-05 | en | refinedweb |
Available Liquid tags
Tags make up the programming logic that tells templates what to do. Tags are wrapped in {% %}.
{% if user.fullname == 'Dave Bowman' %} Hello, Dave. {% endif %}
White space control
Normally, Liquid renders everything outside of variable and tag blocks verbatim, with all the white space as-is. Occas... | https://docs.microsoft.com/en-us/dynamics365/customer-engagement/portals/liquid-tags | CC-MAIN-2018-26 | en | refinedweb |
- = $autoscaling->RegisterScalableTarget( { 'ServiceNamespace' => 'ecs', 'RoleARN' => 'arn:aws:iam::012345678910:role/ApplicationAutoscalingECSRole', 'MaxCapacity' => 10, 'MinCapacity' => 1, 'ResourceId' => 'service/default/web-app', 'ScalableDimension' => 'ecs:service:DesiredCount' } ); # To register an EC2 Spot flee... | https://metacpan.org/pod/Paws::ApplicationAutoScaling::RegisterScalableTarget | CC-MAIN-2018-26 | en | refinedweb |
Table of Contents
Here are Standard, simple, and portable ways to perform common
transformations on a
string instance, such as
"convert to all upper case." The word transformations
is especially apt, because the standard template function
transform<> is used.
This code will go through some iterations. Here's a simple v... | http://gcc.gnu.org/onlinedocs/gcc-4.6.3/libstdc++/manual/manual/strings.html | CC-MAIN-2018-26 | en | refinedweb |
Symptom
Assume that you create a new MailItem, AppointmentItem, or MeetingItem object by using the Outlook Object Model. You then set the HtmlBody property of the item to some previously created well-formed HTML source that contains Cascading Style Sheet (CSS) styles. After you call the Display method and the Send meth... | https://support.microsoft.com/pt-pt/help/4020759/text-formatting-may-be-lost-when-editing-the-htmlbody-property-of-an | CC-MAIN-2018-26 | en | refinedweb |
.exception;26 27 /**28 * Example exception.29 *30 * @author Stephan J. Schmidt31 * @version $Id: ExampleException.java 645 2003-01-09 09:49:12Z stephan $32 **/33 public class ExampleException extends ChainedException {34 public ExampleException(String message, Throwable cause) {35 super(message, cause);36 }37 38 public... | http://kickjava.com/src/org/snipsnap/exception/ExampleException.java.htm | CC-MAIN-2018-26 | en | refinedweb |
May 02, 2015 .. currentmodule:: rdfextras.sparql
TODO: merge this first bit from sparql.sparql.py into rest of doc... updating all along the way.
SPARQL implementation on top of RDFLib
Implementation of the W3C SPARQL language (version April 2005). The basic class here is supposed to be a superclass of rdfextras.sparql... | http://rdfextras.readthedocs.io/en/latest/sparql/sparql.html | CC-MAIN-2018-26 | en | refinedweb |
PCF8574 I/O as input
I think there is a problem in I2CIO::read() function. T PCF8574 wont correctly work with input pin. According the datasheet, each input pin have to be kept HIGH at any write. The function writes 0 to each input and it doesn' work. With the below fix it works as expected.
I'm using your lib for year... | https://bitbucket.org/fmalpartida/new-liquidcrystal/issues/80/pcf8574-i-o-as-input | CC-MAIN-2018-26 | en | refinedweb |
Lambda Function Handler (Java)
At the time you create a Lambda function you specify a handler that AWS Lambda can invoke when the service executes the Lambda function on your behalf.
Lambda supports two approaches for creating a handler:
Loading the handler method directly without having to implement an interface. This... | https://docs.aws.amazon.com/lambda/latest/dg/java-programming-model-handler-types.html?shortFooter=true | CC-MAIN-2018-26 | en | refinedweb |
Or, How I Learned To Stop Worrying And Raise An Event
In part 1 of our .NET Event adventure, we covered how enriching your events with custom arguments and availing an extensibility point will make all of your component’s consuming developer’s wildest dreams come true, and probably some of yours as well. Except for tha... | https://code.jon.fazzaro.com/2009/04/06/broaden-your-event-horizons-part-2/ | CC-MAIN-2018-26 | en | refinedweb |
At base, we have get(key) and put(key, data) as provided by the Sleepycat/BerkeleyDB core API:
get(key, default=None, txn=None, flags=0, ...) Returns the data object associated with key. put(key, data, txn=None, flags=0, ...) Stores the key/data pair in the database.
From the documentation for Python’s (now deprecated)... | http://rdfextras.readthedocs.io/en/latest/store/anatomy.html | CC-MAIN-2018-26 | en | refinedweb |
25 March 2011 20:23 [Source: ICIS news]
HOUSTON (ICIS)--?xml:namespace>
In its monthly economic forecasters survey, the ACC reported expectations for US GDP growth of 3.1% in 2011 and 3.2% in 2012, each a 0.1 percentage point drop from the prior month’s survey.
The ACC said that most of its economic forecasters were fr... | http://www.icis.com/Articles/2011/03/25/9447389/us-economic-growth-outlook-dims-on-rising-gasoline-prices.html | CC-MAIN-2014-52 | en | refinedweb |
This post assumes some basic C skills.
Linux puts you in full control. This is not always seen from everyone’s perspective, but a power user loves to be in control. I’m going to show you a basic trick that lets you heavily influence the behavior of most applications, which is not only fun, but also, at times, useful.
L... | http://gnome-look.org/stories/Rafa%C5%82+Cie%C5%9Blak%3A+Dynamic+linker+tricks%3A+Using+LD_PRELOAD+to+cheat%2C+inject+features+and+investigate+programs?id=151238 | CC-MAIN-2014-52 | en | refinedweb |
05 October 2009 17:30 [Source: ICIS news]
BERLIN (ICIS news)--ExxonMobil Chemical is investigating some breakthrough concepts that could “significantly change the nature of cracking” as it works on step-wise improvements to steam cracking, the company's president said on Monday.
Most of the company’s work on steam crac... | http://www.icis.com/Articles/2009/10/05/9252876/epca-09-exxonmobil-working-on-breakthrough-cracker-concepts.html | CC-MAIN-2014-52 | en | refinedweb |
This chapter describes support for the Parlay X 2.0 Presence Web services interfaces for developing applications. The Web service functions as a Presence Network Agent which can publish, subscribe, and listen for notifications on behalf of the users of the Web service. This chapter contains the following sections:
Sect... | http://docs.oracle.com/cd/E15523_01/doc.1111/e13807/parlayxj.htm | CC-MAIN-2014-52 | en | refinedweb |
)
private void tileCanvas_MouseDown(object sender, MouseButtonEventArgs e)
{
var location = tileCanvas.GetLocation(tileCanvas.Viewport.TopLeft);
}
private System.ComponentModel.BackgroundWorker m_backgroundWorker;
public class LoadTileInfo
{
public LoadTileInfo(int zoom, int tileX, int tileY)
{
Zoom = zoom;
TileX = til... | http://www.codeproject.com/Articles/87944/WPF-Map-Control-using-openstreetmap-org-Data?fid=1575811&df=90&mpp=10&noise=1&prof=True&sort=Position&view=None&spc=None&select=4141822&fr=1 | CC-MAIN-2014-52 | en | refinedweb |
From Documentation.
- For learning step-by-step, please refer to ZK Essentials.
Hello World!
After ZK is installed on your favorite Web server[1], writing applications is straightforward. Just create a ZUML file[2], and name it as hello.zul[3], under one of the Web application's directories just as you would do for an ... | http://books.zkoss.org/wiki/ZK_Getting_Started/Tutorial | CC-MAIN-2014-52 | en | refinedweb |
I am trying to make a meter with rotating needle (not speedometer exactly). This meter is not controlled by the player, but when a certain speed is hit the player must press a button. I want to move my needle from 90 degrees to -90 degrees one time. The speed of the needles movement will need to depend on a time variab... | https://answers.unity.com/questions/1287202/moving-needle-from-one-angle-to-another-angle-one.html | CC-MAIN-2022-05 | en | refinedweb |
CU is STM32F767ZI, The major architecture is shown in the following diagram:
It is based on the high-performance Arm® Cortex®-M7 32-bit RISC core operating at up to 216 MHz frequency
- Datasheet
- The Cortex®-M7 core features a floating point unit (FPU) which supports Arm® double-precision
- All the devices offer three... | https://kaikailiu.cmpe.sjsu.edu/embedded-system/stm-lab-1-stm32f7-and-sensortile/ | CC-MAIN-2022-05 | en | refinedweb |
How to access Firestore subcollections with react-redux-firebase
I would like to share with you a code snipped of how to access subcollections in the Cloud Firestore database.
Lets say we have this structure:
- Users
|
-- Tasks
Our exercise is to access the tasks list of a certain user.
import { compose } from "redux";... | https://seishin.me/how-to-access-firestore-subcollections-with/ | CC-MAIN-2022-05 | en | refinedweb |
example, with the
char2Bytes function of the
@taquito/utils package:
import { char2Bytes } from '@taquito/utils';const bytes = char2Bytes(formattedInput);const payloadBytes = '05' + '01' + char2Bytes(bytes.length) + bytes;
The bytes representation of the string must be prefixed with 3 pieces of information:
- "05" ind... | https://tezostaquito.io/docs/11.0.1/signing/ | CC-MAIN-2022-05 | en | refinedweb |
Asyncio doesn't work in pythonista 3
- jeremyherbert
Hi,
I've just purchased pythonista 3 and I'm trying to run the following code straight from the docs:
import asyncio async def hello_world(): print("Hello World!") loop = asyncio.get_event_loop() # Blocking call which returns when the hello_world() coroutine is done ... | https://forum.omz-software.com/topic/3240/asyncio-doesn-t-work-in-pythonista-3/3 | CC-MAIN-2022-05 | en | refinedweb |
NAME
gnutls_openpgp_crt_verify_self - Verify the self signature on the key
SYNOPSIS
#include <gnutls/openpgp.h>
int gnutls_openpgp_crt_verify_self(gnutls_openpgp_crt_t key, unsigned int flags, unsigned int * verify);
ARGUMENTS
DESCRIPTION
Verifies the self signature in the key. The key verification output will be put i... | https://linux.fm4dd.com/en/man3/gnutls_openpgp_crt_verify_self.htm | CC-MAIN-2022-05 | en | refinedweb |
Windows using Python and
the AduHid DLL module. Basics of opening a USB device
handle, writing and reading data, as well as closing the
handle is provided as an example. The aduhid module
calls functions from AduHid.dll in order to interface
with the devices.
All
source code is provided so that you may review details
... | https://ontrak.net/pythondll.htm | CC-MAIN-2022-05 | en | refinedweb |
Track events and user actions when the user starts a new conversation. Attach custom metadata to every conversation started via the SDK.
This API is now deprecated with SDK v3.0.
It is expected that you will pass the user's name, email or, user identifier using the Login API.
Also, please note that this API will not wo... | https://developers.helpshift.com/xamarin/tracking-ios/ | CC-MAIN-2022-05 | en | refinedweb |
#include <CGAL/Hyperbolic_octagon_translation.h>
The class
Hyperbolic_octagon_translation defines an object to represent a hyperbolic translation of the fundamental group of the Bolza surface \(\mathcal M\).
It accepts one template parameter:
A translation \(g\) in \(\mathcal G\) is a mapping acting on the hyperbolic p... | https://doc.cgal.org/4.14/Periodic_4_hyperbolic_triangulation_2/classCGAL_1_1Hyperbolic__octagon__translation.html | CC-MAIN-2022-05 | en | refinedweb |
ComlinkComlink
Comlink makes WebWorkers enjoyable. Comlink is a tiny library (1.1kB), that removes the mental barrier of thinking about
postMessage and hides the fact that you are working with workers.
At a more abstract level it is an RPC implementation for
postMessage and ES6 Proxies.
$ npm install --save comlink
Bro... | https://www.npmjs.com/package/comlink | CC-MAIN-2022-05 | en | refinedweb |
Talk:Dell XPS 15 7590.
Direction of this page
Talk status
This discussion is done.
Bugalo , the last changes to this page moved from a hardware description to a full on personal install and that's not the purpose of these device pages. Everyone should be following the Handbook to install and deviate where they see fit.... | https://wiki.gentoo.org/wiki/Talk:Dell_XPS_15_7590 | CC-MAIN-2022-05 | en | refinedweb |
C++ strspn() Function
You are Here:
C++ strspn()
The
strspn() function finds up to what length two strings are identical.
This function is defined in <cstring> header file.
Example
C++ Compiler
#include <iostream> #include <cstring> using namespace std; int main() { char str1[] = "wikimass is awesome"; char str2[] = "w... | https://wikimass.com/cpp/strspn | CC-MAIN-2022-05 | en | refinedweb |
Ns-3.33 errata
On January 7, 2021, ns-3.33 was published. This page lists some minor issues that have been fixed in the mainline since that time, but we considered to be minor enough to just list here rather than make a maintenance release to update ns-3.33.
ns-3 openflow module fails to compile
During the ns-3.33 rele... | https://www.nsnam.org/mediawiki/index.php?title=Ns-3.33_errata&direction=prev&oldid=12398 | CC-MAIN-2022-05 | en | refinedweb |
This series of blogs on Python was compiled as I was trying to learn the language. I present it here, for someone who might want a quick introduction to the language, without digging through all the manuals. This is not a 'Complete Reference' nor is it a 'Python for Dummies'. It is meant for someone who understands dev... | https://blog.thewiz.net/python-crash-course | CC-MAIN-2022-05 | en | refinedweb |
Populate a stat structure
#include <sys/iofunc.h> int iofunc_stat( resmgr_context_t* ctp, iofunc_attr_t* attr, struct stat* stat );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically..
QNX Neutrino
iofunc_attr_t, iofunc_stat_default(), iofunc_time_update(), resm... | http://www.qnx.com/developers/docs/6.4.1/neutrino/lib_ref/i/iofunc_stat.html | CC-MAIN-2022-05 | en | refinedweb |
@auth0/auth0-spa-js@auth0/auth0-spa-js
Auth0 SDK for Single Page Applications using Authorization Code Grant Flow with PKCE.
Table of ContentsTable of Contents
- Documentation
- Installation
- Getting Started
- Contributing
- Support + Feedback
- Frequently Asked Questions
- Vulnerability Reporting
- What is Auth0
- Li... | https://www.npmjs.com/package/@auth0/auth0-spa-js | CC-MAIN-2022-05 | en | refinedweb |
Grad-CAM is a popular technique for visualizing where a convolutional neural network model is looking. Grad-CAM is class-specific, meaning it can produce a separate visualization for every class present in the image:
Example cat and dog Grad-CAM visualizations modified from Figure 1 of the Grad-CAM paper
Grad-CAM can b... | https://glassboxmedicine.com/2020/05/29/grad-cam-visual-explanations-from-deep-networks/ | CC-MAIN-2022-05 | en | refinedweb |
ITK/Code Review Check List
From KitwarePublicJump to navigationJump to search
Code Review Check List
The following is the list of coding style issues that must be verified on every class and file during a code review.
- Filename must match class name
- All files must have the copyright notice at the top []
- #define fo... | https://itk.org/Wiki/index.php?title=ITK/Code_Review_Check_List&oldid=8005 | CC-MAIN-2022-05 | en | refinedweb |
[hackers] [sbase] tail: Add rudimentary support to detect file truncation || sin
This message
: [
Message body
] [ More options (
top
,
bottom
) ]
Related messages
: [
Next message
] [
Previous message
]
Contemporary messages sorted
: [
by date
] [
by thread
] [
by subject
] [
by author
] [
by messages with attachments... | http://lists.suckless.org/hackers/1503/6566.html | CC-MAIN-2022-05 | en | refinedweb |
In this article, We are going to talk about “C++ Program to Build a Hangman Word Guessing Game on Command Line”. Below, We can see the possibilities to perform this task. Let’s move.
C++ Program to Build a Hangman Word Guessing Game on Command Line
Program Code
#include <iostream.h> #include <stdlib.h> #include <string... | https://codingdiksha.com/cpp-program-build-a-hangman-word-guessing-game-on-command-line/ | CC-MAIN-2022-05 | en | refinedweb |
Introducing the Telerik UI for Blazor Early Preview
Progress Telerik
Jan 17
Originally published at telerik.com on Jan 17, 2019
・9 min read!
- What is Blazor
- What is Razor Components
- Blazor Recommended Reading
- Built from the Ground-Up - 100% Native .NET
- Experiment With Us
- Telerik UI for Blazor Early Preview M... | https://dev.to/progresstelerik/introducing-the-telerik-ui-for-blazor-early-preview-2f4c | CC-MAIN-2019-09 | en | refinedweb |
Visual Source Safe Admin Password Reset
We used to use Visual Source Safe (VSS) 6.0 for projects, and so have some older projects that are not routinely accessed. So what happens when you forget the admin password a few years down the line?
There are various suggestions around the net, but this little tool should help:... | http://not42.com/2005/06/16/visual-source-safe-admin-password-reset/ | CC-MAIN-2019-09 | en | refinedweb |
scoring
Tools and algorithms to score loops. The scoring system is split between an
environment and scorers.
Several scorers can be attached to the same environment containing the
actual structural data of the current modelling problem.
The environment is updated as the modelling proceeds and manages efficient
spatial ... | https://openstructure.org/promod3/1.3/scoring/ | CC-MAIN-2019-09 | en | refinedweb |
Posts Tagged ‘TensorFlow’.
Updates to the TensorFlow API
Introduction
Last year I published a series of posts on getting up and running on TensorFlow and creating a simple model to make stock market predictions. The series starts here, however the coding articles are here, here and here. We are now a year later and Ten... | https://smist08.wordpress.com/tag/tensorflow/ | CC-MAIN-2019-09 | en | refinedweb |
We compare four numerical languages in a Vox blog post.
Section 3 of the blog post compares running times for the calculation of GARCH log-likelihood. It is a good representative example of the type of numerical problem we often encounter. Because the values at any given time t depend on values at t-1, this loop is not... | https://www.modelsandrisk.org/appendix/speed/ | CC-MAIN-2019-09 | en | refinedweb |
In this tutorial, we are going to solve the following problem.
Given an integer n, we have to find the (1n+2n+3n+4n)%5
The number (1n+2n+3n+4n) will be very large if n is large. It can't be fit in the long integers as well. So, we need to find an alternate solution.
If you solve the equation for the number 1, 2, 3, 4, ... | https://www.tutorialspoint.com/find-1-n-plus-2-n-plus-3-n-plus-4-n-mod-5-in-cplusplus | CC-MAIN-2021-31 | en | refinedweb |
Is this a bug?
import torch
t = torch.HalfTensor([0])t = torch.autograd.Variable(t)
This code causes these errors,
Traceback (most recent call last): File "a.py", line 4, in t = torch.autograd.Variable(t)RuntimeError: Variable data has to be a tensor, but got HalfTensor
Hi,CPU half tensors do not actually exist.Using c... | https://discuss.pytorch.org/t/variable-failed-to-wrap-halftensor/3220 | CC-MAIN-2017-47 | en | refinedweb |
Permission
Since: BlackBerry 10.0.0
#include <bb/platform/bbm/Permission>
To link against this class, add the following line to your .pro file: LIBS += -lbbplatformbbm
The type of application permission.
The user can set permissions for your app by using the global settings application.
Overview
Public Types Index
Publ... | http://developer.blackberry.com/native/reference/cascades/bb__platform__bbm__permission.html | CC-MAIN-2017-47 | en | refinedweb |
Opened 12 years ago
Closed 10 years ago
Last modified 9 years ago
#2669 closed enhancement (fixed)
excel/openoffice calc export
Description
a microsoft excel/openoffice calc export would be a great feature. it could be implemented by:
- producting tab separated or comma separated format
- setting the http mime type of ... | https://trac.edgewall.org/ticket/2669 | CC-MAIN-2017-47 | en | refinedweb |
RFC 46: GDAL/OGR unification
Author: Even Rouault
Contact: even dot rouault at mines dash paris dot org
Status: Adopted, implemented in GDAL 2.0
Summary
In the 1.X series of GDAL/OGR, the GDAL/raster and OGR/vector sides are quite different on some aspects even where there is no strong reason for them to be different, ... | http://trac.osgeo.org/gdal/wiki/rfc46_gdal_ogr_unification | CC-MAIN-2017-47 | en | refinedweb |
wakelock 0.1.4+1
Wakelock
#
This Flutter plugin allows you to enable and toggle the screen wakelock on Android and iOS, which prevents the screen from turning off automatically.
Essentially, this allows you to keep the device awake, i.e. prevent the device from sleeping.
Usage #
To use this plugin, follow the installin... | https://pub.dev/packages/wakelock | CC-MAIN-2020-16 | en | refinedweb |
How to read user input in Kotlin
How to take input from user in Kotlin :
In this tutorial, we will learn how to take user input in Kotlin with different examples.
Reading user input in Kotlin is easy. Kotlin provides one inbuilt function to make this task easy for us.
readLine() function allow us to read the input that... | https://www.codevscolor.com/read-user-input-kotlin/ | CC-MAIN-2020-16 | en | refinedweb |
Adding validation support for Json in Django Models
Saadullah Aleem
・1 min read
It’s pretty cool that Django has support for JSON based features of PostgreSQL. The
JSONField() can be assigned to model attributes to store JSON based data. However, enforcing pre-save validation on this field can be tricky. Doing so in yo... | https://dev.to/saadullahaleem/adding-validation-support-for-json-in-django-models-5fbm | CC-MAIN-2020-16 | en | refinedweb |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.