text stringlengths 454 608k | url stringlengths 17 896 | dump stringclasses 91
values | source stringclasses 1
value | word_count int64 101 114k | flesch_reading_ease float64 50 104 |
|---|---|---|---|---|---|
Timeline ...
- 23:59 Changeset [3907] by
lang/perl/ShipIt-Step-CommitMessageWrap?: Checking in changes prior to ...
- 23:59 Changeset [3906] by
oops
- 23:57 Changeset [3905] by
lang/perl/ShipIt-Step-CommitMessageWrap?: added requires ShipIt? in ...
- 23:53 Changeset [3904] by
check for NULL values in sen_index_upd
- 23... | http://coderepos.org/share/timeline?from=2008-01-01T20%3A54%3A03Z%2B0900&precision=second | CC-MAIN-2013-20 | refinedweb | 1,669 | 53.17 |
From my understanding the way to add a wanted prefix to an element is to use @Namespace(reference="something"). But that sort of destroys the idea of having a prefix which is supposed to operate as an alias, not having to type the long URLs.
When I tried @Namespace(prefix="something") the generated XML contained an emp... | http://sourceforge.net/p/simple/feature-requests/16/ | CC-MAIN-2014-42 | refinedweb | 172 | 56.69 |
Locks, Actors, And Stm In Pictures
All programs with concurrency have the same problem.
Your program uses some memory:
When your code is single-threaded, there's just one thread writing to memory. You are A-OK:
But if you have more than one thread, they could overwrite each others changes!
You have three ways of dealin... | http://adit.io/posts/2013-05-15-Locks,-Actors,-And-STM-In-Pictures.html | CC-MAIN-2017-51 | refinedweb | 1,417 | 72.66 |
I’ve been playing with the Kinect SDK Beta for the past few days and have noticed a few projects on CodePlex worth checking out. I decided to blog about them to help spread awareness. If you want to learn more about Kinect SDK then you check out my”Busy Developer’s Guide to the Kinect SDK Beta”.
Let’s get started:
Kine... | http://gamecontest.geekswithblogs.net/mbcrump/archive/2011/06/21/3-incredibly-useful-projects-to-jump-start-your-kinect-development.aspx | CC-MAIN-2019-51 | refinedweb | 534 | 51.95 |
Refactoring a current project to include robot legs
I'm trying to refactor a current, semi large project to use robot legs.
My first task is to load a configuration settings file (AIR) and make it available inside the app.
So I can get that going fine. I have a service read in the data and populate a model. I have a si... | https://robotlegs.tenderapp.com/discussions/questions/847-refactoring-a-current-project-to-include-robot-legs | CC-MAIN-2022-40 | refinedweb | 683 | 65.83 |
Hello again Bela-heads, I'm trying to use the Bela to send sensor data via OSC to my macbook (more specifically the Wekinator application that assists with Machine learning). And I imagine I'm getting into trouble with IP addresses. I assume the Bela's I.P address is 192.168.7.2? Although in the OSC code example it say... | https://forum.bela.io/d/312-idiot-proof-explanation-of-getting-osc-mac-os-sierra-10-12 | CC-MAIN-2018-26 | refinedweb | 2,901 | 72.56 |
What are metaclasses
Python programmers often say, "everything is an object", which means that everything you can see in Python, including int, float, function and so on, is an object. But in daily development, when it comes to objects, we may not think of classes immediately. In fact, a class is also an object. Since ... | https://programmer.help/blogs/what-is-a-metaclass.html | CC-MAIN-2021-49 | refinedweb | 947 | 54.73 |
This chapter provides an introduction to Object-Oriented Programming (OOP) in C++. We start by looking into a simple program that rolls a dice. We write the code and compile, link, and execute the program.
Then we continue by constructing a simple object-oriented hierarchy, involving theÂ
Person base class and its two... | https://www.packtpub.com/product/c-17-by-example/9781788391818 | CC-MAIN-2020-50 | refinedweb | 5,398 | 63.19 |
Class represents a document reading filter. More...
#include <PCDM_ReaderFilter.hxx>
Class represents a document reading filter.
It allows to set attributes (by class names) that must be skipped during the document reading or attributes that must be retrieved only. In addition it is possible to define one or several su... | https://dev.opencascade.org/doc/occt-7.6.0/refman/html/class_p_c_d_m___reader_filter.html | CC-MAIN-2022-27 | refinedweb | 446 | 69.68 |
So, I am in the mid part of my C++ class and am having trouble with a vector project at the end of the chapter. I don't expect the answer, but if someone would point me in the right direction I would greatly appreciate it :)
#1). Write a loop that will print the values in a 20 element vector named quantity to the scree... | https://www.daniweb.com/programming/software-development/threads/326696/need-help-with-vector-problem | CC-MAIN-2017-09 | refinedweb | 248 | 66.07 |
Hey, folks! In this article, we will be understanding the working of Python strftime() function along with its variations.
So, let us get started.
Python has a variety of modules that have clusters of functions to implement various functionality on the data. Python time module is used to perform manipulations regarding... | https://www.askpython.com/python-modules/python-strftime | CC-MAIN-2021-31 | refinedweb | 725 | 52.7 |
Introduction to annotated XML schema decomposition
The annotated XML schema decomposition feature introduced in DB2 Viper can be used to decompose XML documents, wholly or partially, into relational tables. It uses annotations in XML schema as the mapping language to map information in an XML document to relational tab... | http://www.ibm.com/developerworks/data/library/techarticle/dm-0604pradhan/ | CC-MAIN-2014-52 | refinedweb | 2,435 | 51.89 |
Transparent Scene background using objc_utils?
I'm trying to overlay a
SceneViewon top of a
WebView. The goal is to have the
WebViewshow mp4 video using html while the
Scenein
SceneViewrenders game objects and processes touch events. (I got the mp4 and html part working.)
However, the
Scenealways have a solid
backgroun... | https://forum.omz-software.com/topic/3926/transparent-scene-background-using-objc_utils | CC-MAIN-2017-47 | refinedweb | 1,063 | 59.8 |
Python alternatives for PHP functions
def addslashes(s):
d = {'"':'\\"', "'":"\\'", "\0":"\\\0", "\\":"\\\\"}
return ''.join(d.get(c, c) for c in s)
s = "John 'Johny' Doe (a.k.a. \"Super Joe\")\\\0"
print s
print addslashes(s)
#John 'Johny' Doe (a.k.a. "Super Joe")\
#John \'Johny\' Doe (a.k.a. \"Super Joe\")\\\
def add... | http://www.php2python.com/wiki/function.addslashes/ | CC-MAIN-2020-29 | refinedweb | 333 | 78.25 |
[
]
Amareshwari Sriramadasu commented on MAPREDUCE-2765:
----------------------------------------------------
Patch is very close. Some comments on code:
CopyMapper:
bq. String workDir = conf.get("mapred.local.dir") + "/work";
Please use the String constant defined for this config. That would ease any change in the
con... | http://mail-archives.apache.org/mod_mbox/hadoop-mapreduce-issues/201108.mbox/%3C415202926.4363.1314077131688.JavaMail.tomcat@hel.zones.apache.org%3E | CC-MAIN-2016-44 | refinedweb | 336 | 70.5 |
React useEffect hook with code examples
So you learned how to use React useState and how to emulate the traditional setState in a functional React component.
But now you might be scratching your head and asking yourself, “How do I emulate a React component lifecycle?”
Don’t worry, in this article will go over:
- What i... | https://linguinecode.com/post/getting-started-with-react-useeffect | CC-MAIN-2022-21 | refinedweb | 1,460 | 56.05 |
order to best use the tool, I needed to know how to write vectorized code. Turns out it is not easy (I am taking a course on machine learning, and it uses octave which also emphasizes vectorized solutions which drives me crazy), and I didn’t want to go to the cython path just yet. Therefore I cheated by splitting data... | https://cslai.coolsilon.com/2015/12/04/random-notes-on-pandas-and-scikit-learn/ | CC-MAIN-2021-43 | refinedweb | 576 | 61.16 |
A Strategy for Defining Order Relations
Last week , I proposed a comparison function for pairs of integers and asked whether it met the requirements for C++ order relations:
struct Thing { int a, b; }; bool compare(const Thing& t1, const Thing& t2) { return t1.a < t2.a && t1.b < t2.b; }
As one reader was kind enough to... | http://www.drdobbs.com/cpp/a-strategy-for-defining-order-relations/240147625?cid=SBX_ddj_related_commentary_default_the_double_metaphone_search_algorithm&itc=SBX_ddj_related_commentary_default_the_double_metaphone_search_algorithm | CC-MAIN-2014-52 | refinedweb | 511 | 55.27 |
.
This is why Iridium (satellite phones) was killed. (Score:1)
Satellite phones are the ultimate stealth device. The best they could do is trace you to the western hemisphere. Iridium didn't fail. It was killed by a collusion of law-enforcement agencies and world govt's that still have monopolies on their telcos. They ... | https://slashdot.org/story/01/05/22/1857203/security-through-varying-ips | CC-MAIN-2017-51 | refinedweb | 6,102 | 72.26 |
Hey there,
I am making a 2D top-down game.
I was able to get the enemies to follow the players correctly. But, I want them to retreat when they are too close to the player.
How can I accomplish this?
Hey there,
I am making a 2D top-down game.
I was able to get the enemies to follow the players correctly. But, I want th... | https://forum.arongranberg.com/t/make-seekers-retreat-when-too-close-to-target/7755 | CC-MAIN-2020-16 | refinedweb | 512 | 50.73 |
In addition to booleans, there is atomics for pointers, integrals and user-defined types. The rules for user-defined types are special.
Both. The atomic wrapper on a pointer T* std::atomic<T*> or on an integral type integ std::atomic<integ> enables the CAS (compare-and-swap) operations.
The atomic pointer std::atomic<T... | https://modernescpp.com/index.php/atomics | CC-MAIN-2021-43 | refinedweb | 1,338 | 57.37 |
- Language Philosophies
- Objects and Primitives
- Files and Compilation Units
- Object Models
- Static Behavior
- Different Syntax
- Summary
Files and Compilation Units
Both Objective-C and Java store source code in files (unlike Smalltalk and a lot of Lisp environments). In Java, there is no difference between a file... | http://www.informit.com/articles/article.aspx?p=1568732&seqNum=3 | CC-MAIN-2018-51 | refinedweb | 202 | 54.93 |
Braille application.
I am thinking of an application to input text using Braille.
I'm thinking about Braille in Japanese.
Is it possible for Pythonisa?
Should I turn off the import?
It's a mystery, but my wife's iPhone seven can't download a Japanese file.
Is something missing?
@shinya.ta which step does not work?
- ta... | https://forum.omz-software.com/topic/5584/braille-application/220 | CC-MAIN-2019-47 | refinedweb | 549 | 67.86 |
We're excited to announce the beta release of our React Chat Components. We've used our existing React SDK to create ready-to use-components that make it easy to add essential features to you app—like chat—while reducing your time to market and allowing you to focus on building what you actually care about.
Sign up for... | https://www.pubnub.com/blog/react-chat-components-beta-build-chat-experiences/ | CC-MAIN-2021-31 | refinedweb | 1,764 | 56.45 |
Hello.
I have a question.
Choosing between pygame and pyglet, I want to choose pyglet more. But I am frightened of the dicorations.
Tell me please, is it possible to design pyglet as well as in pygame? Use while true and so on?
Thanks in advance!
Hello.
2 2017-04-17 08:06:59 (edited by magurp244 2017-04-17 09:26:17)
It... | http://forum.audiogames.net/viewtopic.php?pid=307679 | CC-MAIN-2017-39 | refinedweb | 1,341 | 71.44 |
Hi Kirby, Many thanks for the thoughtful review of my PythonOOP chapter. I especially like the suggestions to put more emphasis on the role of over-rides in *specializing* the behavior of subclasses, and to at least mention commonly-used CS terms like "polymorphism". I'll keep your suggestions for the next time I do an... | https://mail.python.org/pipermail/edu-sig/2009-January/009033.html | CC-MAIN-2014-15 | refinedweb | 1,532 | 65.01 |
1. Introduction
We will see how we can play sound files in C#. Sound can be played in two different ways. One way of playing is using the "System.Media Namespace" and the other way is using the "Windows Media Player Active-X Control".
In this article, I will cover both the methods by playing a ".wav file". You can expl... | http://www.mstecharticles.com/2012/06/c-playing-sound-using-systemmdia-and.html | CC-MAIN-2017-17 | refinedweb | 951 | 70.73 |
writing this fails type check:
val list = List(1,3,5,2,4)
list sortBy (i => -i) //this is ok
def wrappedSort[A,B](a: List[A])(by: A => B): List[A] = {
a sortBy by
} // this fails type check
wrappedSort(list)(i => -i) //So this won't work either
We know the compile error is: No implicit Ordering defined for B.
No implic... | http://jakzaprogramowac.pl/pytanie/59533,why-defining-a-wrapping-method-over-another-method-with-an-implicit-argument-doesn-39-t-work | CC-MAIN-2017-43 | refinedweb | 301 | 55.07 |
Hello
This is somewhat difficult to estimate but assuming your parents were invested in savings bonds, US Treasuries, or basic bank savings/money market funds the average rate for 2008 was approximately 2-2.5%.
using this as a baseline I would estimate the balances that would be required to earn 45K on 2-2.5% growth wo... | http://www.justanswer.com/finance/82593-2008-45-000-interest-earned-stated-parent-s.html | CC-MAIN-2014-23 | refinedweb | 129 | 66.74 |
Like unit testing, for performanceLike unit testing, for performance
A modern load testing tool for developers and testers in the DevOps era.
Download · Install · Documentation · Community
k6 is a modern load testing tool, building on Load Impact's years of experience in the load and performance testing industry. It pr... | https://go.ctolib.com/loadimpact-k6.html | CC-MAIN-2019-47 | refinedweb | 4,066 | 51.58 |
i have a sorted array of integers and i'm trying to find the two closest numbers. anyone have an idea of how to do this?
i have a sorted array of integers and i'm trying to find the two closest numbers. anyone have an idea of how to do this?
yes, i realize that...
Sort it. Walk it. Subtract them as you go.
Quzah.
Hope ... | https://cboard.cprogramming.com/c-programming/120832-finding-two-closest-numbers-array.html | CC-MAIN-2017-51 | refinedweb | 569 | 80.62 |
I am trying to implement binary search tree. One method which I am trying to implement in the most efficient and stylish way is node insertion.
I am under the impression that while (true) is a bad practice, correct?
while (true){ if(n <currentNode.data){ if (currentNode.left == null){ currentNode.left = new node(n); br... | https://extraproxies.com/loop-for-inserting-a-node-into-a-binary-search-tree/ | CC-MAIN-2019-09 | refinedweb | 188 | 63.25 |
What is scope? In programming languages, it is the idea of where the value of a variable is known.For instance, in Tcl, you might have the following:
#! /usr/local/bin/tclsh set gvar 123 ; # this is a variable created in the global namespace proc nest1 {} { set lvar {This is a test} puts $lvar ; # this variable is loca... | http://wiki.tcl.tk/11921 | CC-MAIN-2018-17 | refinedweb | 729 | 63.73 |
#include <LCD4Bit_mod.h>LCD4Bit_mod lcd = LCD4Bit_mod(2);int val = 0;void setup(){ lcd.init(); lcd.clear();}void loop(){ lcd.cursorTo(1,0); lcd.print(val); val++;}
#include <LCD4Bit_mod.h>LCD4Bit_mod lcd = LCD4Bit_mod(2);int val = 1;void setup(){ lcd.init(); lcd.clear();}void loop(){ lcd.cursorTo(1,0); lcd.print(val);}... | http://forum.arduino.cc/index.php?topic=52332.msg374619 | CC-MAIN-2016-30 | refinedweb | 254 | 70.19 |
I'm a real dolt when it comes to solving maths problems. I've made a function that returns the nearest specified multiple of a specified value, including a specified offset. I think it's pretty good, but I was hoping that someone could see if I'm doing it as efficiently as possible.
By offsets, I mean offsetting a seri... | http://cboard.cprogramming.com/cplusplus-programming/41751-maths-nearest-multiple-using-offsets.html | CC-MAIN-2014-15 | refinedweb | 201 | 53.71 |
You are given N qubits which are guaranteed to be in one of two basis states on N qubits. You are also given two bitstrings bits0 and bits1 which describe these basis states.
Your task is to perform necessary operations and measurements to figure out which state it was and to return 0 if it was the state described with... | http://codeforces.com/problemset/problem/1001/F | CC-MAIN-2018-30 | refinedweb | 167 | 61.87 |
People new to programming often ask for suggestions of what projects they should work on and a common reply is, “Write a text adventure game!” I think there are even some popular tutorials floating around that assign this as homework since I see it so much. This is a really good suggestion for a few reasons:
- The conc... | https://letstalkdata.com/2014/08/how-to-write-a-text-adventure-in-python/ | CC-MAIN-2022-21 | refinedweb | 8,096 | 73.68 |
18.5.4. Transports and protocols (callback based API)¶
18.5.4.1. Transports¶
Transports are classes provided by
asyncio in order to abstract
various kinds of communication channels. You generally won’t instantiate
a transport yourself; instead, you will call an
Abstract.
Changed in version 3.6: The socket option
TCP_NO... | https://docs.python.org/dev/library/asyncio-protocol.html | CC-MAIN-2017-17 | refinedweb | 863 | 53.07 |
Recently I wrote about an exciting new project coming to Solaris by way of the Network Auto-Magic project. I also talked about releasing a sneak peek at the promise of the Network Auto-Magic project in an upcoming OpenSolaris release. Today I am going to discuss where we are with getting this functionality into your ha... | http://blogs.sun.com/anay/ | crawl-002 | refinedweb | 3,525 | 59.84 |
September 2012
This tutorial looks at the tools needed to start development (C programming) on 8-bit AVR microcontrollers and shows how to write a C program and load it to an AVR microcontroller.
Development is done using the free Atmel Studio running on a Windows platform. A simple flashing LED circuit will be built ... | http://startingelectronics.org/tutorials/AVR-8-microcontrollers/starting-AVR-development/ | CC-MAIN-2017-17 | refinedweb | 761 | 65.42 |
The best answers to the question “Show DataFrame as table in iPython Notebook” in the category Dev.
QUESTION:
I am using iPython notebook. When I do this:
df
I get a beautiful table with cells. However, if i do this:
df1 df2
it doesn’t print the first beautiful table. If I try this:
print df1 print df2
It prints out th... | https://rotadev.com/show-dataframe-as-table-in-ipython-notebook-dev/ | CC-MAIN-2022-40 | refinedweb | 349 | 67.25 |
ASCOM for end user application developers
How to use ASCOM API to control astronomical hardware
ASCOM is a nice platform providing unified access to astronomical hardware controllable from a computer. Hardware makers provide ASCOM driver and end user apps like PHD or Nebulosity may start using it without problems or ad... | https://rk.edu.pl/en/ascom-end-user-application-developers/ | CC-MAIN-2019-18 | refinedweb | 538 | 59.5 |
I develop the spaCy NLP library. We have our own NN library, Thinc, to avoid dependencies (plus I started writing it before PyTorch was around :p), but for obvious reasons we’d like to let people use PyTorch models in spaCy as well.
The plan has been to write small shim classes that would wrap PyTorch (or other librari... | https://discuss.pytorch.org/t/help-developing-a-small-shim-to-allow-pytorch-models-to-be-used-in-spacy/14862 | CC-MAIN-2022-21 | refinedweb | 423 | 58.18 |
6.6. Using an Image Library¶
Similarly, in the image processing example, we used
from image import *. That made the functions
getPixels() and
getRed() accessible. We could also define a new function that returns a new color, or a new procedure that changes the image.
The
for p in pixels on line 9 let’s us loop through ... | https://runestone.academy/runestone/books/published/StudentCSP/CSPNameNames/imageLib.html | CC-MAIN-2021-10 | refinedweb | 142 | 64.3 |
how to send email please give me details with code in jsp,servlet
how to send email please give me details with code in jsp,servlet how to send email please give me details with code in jsp,servlet
procedures to create struts projects?
procedures to create struts projects? i am new to learn in struts. i am start to lea... | http://www.roseindia.net/tutorialhelp/comment/12922 | CC-MAIN-2014-52 | refinedweb | 1,812 | 72.87 |
Bug Description
This patch allows for scripting in the Scheme programming language using an
interactive window. The patch was created for revision 15638.
Here is the patch:
http://
Here is a README to help one get started:
http://
Here is a list of functions created for the Scheme console:
http://
Let us know what you ... | https://bugs.launchpad.net/inkscape/+bug/169967 | CC-MAIN-2019-13 | refinedweb | 620 | 71.14 |
Common Library Functions in Visual Basic
Introduction
Today, I would like to introduce you, especially the newbies out there, to a few of the most common Library functions in Visual Basic. My aim with this article is to introduce you to the functions, as well as explain with a small example of how the particular functi... | https://www.codeguru.com/columns/vb/common-library-functions-in-visual-basic.html | CC-MAIN-2019-26 | refinedweb | 932 | 60.01 |
Building a Blog Application
Django is a powerful Python web framework with a relatively shallow learning curve. You can easily build simple web applications in a short time. Django is also a robust and scalable framework that can be used to create large-scale web applications with complex requirements and integrations.... | https://www.packtpub.com/product/django-3-by-example-third-edition/9781838981952 | CC-MAIN-2020-40 | refinedweb | 7,918 | 56.86 |
3,720.
michaeldyrynda left a reply on Where To Store A Json Configuration File In The Codebase?
In the past, I've put the JSON string in my
.env file and just referenced it in the
config/services.php file, but you can also store
client_secret.json inside of storage then reference the contents in your config file as wel... | https://laracasts.com/@michaeldyrynda | CC-MAIN-2019-13 | refinedweb | 2,995 | 53.61 |
Hello everyone,
I am working on arcmap 10.3.1 and python 2.7.8. I need to determine how much time arcpy needed to finish a specific task (add layer) . I'm using this code:
import arcpy,os,sys,string,datetime,timeit import arcpy.mapping from arcpy import env env.workspace = r"C:\Project" Layer1 = arcpy.mapping.Layer(r"C... | https://community.esri.com/thread/127153-execution-time-arcpy | CC-MAIN-2018-22 | refinedweb | 227 | 64.78 |
Reserving URL Namespaces by Using Http.sys
This feature will be removed in a future version of Microsoft SQL Server. Avoid using this feature in new development work, and plan to modify applications that currently use this feature.
You can explicitly reserve a URL namespace in HTTP.SYS, and then use this namespace to c... | http://technet.microsoft.com/en-us/library/ms188682.aspx | CC-MAIN-2014-23 | refinedweb | 441 | 53.92 |
Normally you save your application settings in Isolated Storage, this is pretty secure, but really isn’t the best approach for storing stuff you need to protect. Although I guess anything is possible with enough time and computing horse power the Windows Phone 7.1 SDK provides a more secure mechanism to store things li... | http://www.thewolfbytes.com/2011/09/windows-phone-7-quick-tip-31-safely.html | CC-MAIN-2021-21 | refinedweb | 134 | 55.34 |
This module provides access to some variables used or maintained by the interpreter and to functions that interact strongly with the interpreter. It is always available..
sys.byteorder
An indicator of the native byte order. This will have the value
'big' on big-endian (most-significant byte first) platforms, and
'littl... | https://docs.w3cub.com/python~2.7/library/sys/ | CC-MAIN-2020-16 | refinedweb | 1,325 | 60.72 |
An introduction to the django-carrot task backend
django-carrot is a lightweight task queue for Django projects with an emphasis on very easy setup and task traceability. It is intended as a simpler alternative to the celery project. This tutorial will explain how to add a django-carrot task backend to your project in ... | https://medium.com/@christopherdavies553/an-introduction-to-the-django-carrot-task-backend-22b2e12361bb?source=rss-755d06e50c68------2 | CC-MAIN-2019-26 | refinedweb | 709 | 53.71 |
Natural Language Processing (NLP) is not supposed to be easy! But let’s try to simplify for beginners. Follow us for more beginner friendly articles like this.
Natural Language Processing or NLP is a subset of the field of Artificial Intelligence. It is a field that analyzes our human language, takes texts as input. Th... | http://www.siliconvanity.com/2019/03/getting-started-with-natural-language.html | CC-MAIN-2019-13 | refinedweb | 2,027 | 57.16 |
Details
- Type:
Improvement
- Status: Closed
- Priority:
Major
- Resolution: Fixed
- Affects Version/s: 0.19.0
-
- Component/s: benchmarks
- Labels:None
Description
The goal of this issue is to measure how the name-node performance depends on where the edits log is written to.
Three types of the journal storage should ... | https://issues.apache.org/jira/browse/HADOOP-3860 | CC-MAIN-2017-26 | refinedweb | 962 | 63.59 |
A class for drawing markers. More...
#include <qwt_plot_marker.h>
A class for drawing markers.
A marker can be a horizontal line, a vertical line, a symbol, a label or any combination of them, which can be drawn around a center point inside a bounding rectangle.
The setSymbol() member assigns a symbol to the marker. Th... | http://qwt.sourceforge.net/class_qwt_plot_marker.html | CC-MAIN-2014-15 | refinedweb | 325 | 59.8 |
Name
Attributes
Synopsis
This interface represents a list of attributes of an XML element and includes information about the attribute names, types, and values. If the SAX parser has read a DTD or schema for the document, this list of attributes will include attributes that are not explicitly specified in the document ... | https://www.oreilly.com/library/view/java-in-a/0596007736/re1033.html | CC-MAIN-2022-05 | refinedweb | 283 | 59.64 |
Products and Services
Downloads
Store
Support
Education
Partners
About
Oracle Technology Network
Josh Bloch writes:
Google's Daniel Aioanei <###@###.###> points out that the java.util.UUID, while supposedly immutable, is not thread-safe, due errors in caching the variant and hashCode. Let's first take a look at the cod... | http://bugs.java.com/view_bug.do?bug_id=6611830 | CC-MAIN-2017-26 | refinedweb | 830 | 52.7 |
How could I know environment temperature all the time in such a hot day? I called my absent friend but surprised to find that she got a cold because of cold weather and she had to monitor body temperature with a thermometer. She concerned with my health, advising me to pay attention to room temperature to keep healthy.... | https://hackaday.io/project/26309-how-to-make-an-office-thermometer | CC-MAIN-2020-40 | refinedweb | 465 | 59.7 |
Hello Gerhard, Friday, March 21, 2003, 9:47:16 PM, you wrote: GH> * Konstantin Knizhnik <knizhnik at garret.ru> [2003-03-21 21:31 +0300]: >> Hello achrist, >> >> This is problem with definition DL_EXPORT macro in Python 2.2.2 [...] GH> There is no problem. The problem might be in the Makefiles you use. So GH> don't use... | https://mail.python.org/pipermail/python-list/2003-March/223406.html | CC-MAIN-2017-30 | refinedweb | 494 | 67.96 |
There's a fundamental difference between your own code and libraries of other people: you can change or extend your own code as you wish, but if you want to use someone else's libraries, you usually have to take them as they are.
A number of constructs have sprung up in programming languages to alleviate this problem. ... | http://www.artima.com/pins1ed/implicit-conversions-and-parametersP.html | CC-MAIN-2016-44 | refinedweb | 6,329 | 54.02 |
Optically pumped magnetometer (OPM) data¶
In this dataset, electrical median nerve stimulation was delivered to the left wrist of the subject. Somatosensory evoked fields were measured using nine QuSpin SERF OPMs placed over the right-hand side somatomotor area. Here we demonstrate how to localize these custom OPM data... | https://mne.tools/stable/auto_examples/datasets/plot_opm_data.html | CC-MAIN-2020-05 | refinedweb | 1,708 | 55 |
Secure DNS Client over HTTPS (DoH)
Starting with Windows Server 2022, the DNS client supports DNS-over-HTTPS (DoH). When DoH is enabled, DNS queries between Windows Server’s DNS client and the DNS server pass across a secure HTTPS connection rather than in plain text. By passing the DNS query across an encrypted connec... | https://docs.microsoft.com/en-us/windows-server/networking/dns/doh-client-support | CC-MAIN-2021-43 | refinedweb | 833 | 60.55 |
I frequently have very complex layer trees, sometimes with 50 to 100 layers in several hierarchies. Although you have chevrons showing which layers have sublayers, it still gets confusing as there’s not much visual differentiation. I would really like to see all layers that have sub-layers have bold titles.
Distinguish... | https://discourse.mcneel.com/t/layer-tree/130789 | CC-MAIN-2022-21 | refinedweb | 335 | 62.98 |
Introduction: Giving the Raspberry Pi a Serial Modem Using the HUAWEI E3531 USB Dongle (+ Send SMS)
Hi, here we will give the Raspberry Pi 3 a serial modem using the Huawei E3531 USB dongle. You can now send AT commands to the modem, and easily send text messages. We'll do this in Python code.
Step 1: Getting You SIM R... | https://www.instructables.com/id/Giving-the-Raspberry-Pi-a-Serial-Modem-Using-the-H/ | CC-MAIN-2018-34 | refinedweb | 1,418 | 74.08 |
> On Tue, Jan 4, 2011 at 08:41, Dirk Laurie <dpl@sun.ac.za> wrote: > > On Tue, Jan 04, 2011 at 03:18:29PM +0200, Leo Razoumov wrote: > >> Lua provides no good way to test whether a given array has holes or > >> not. > > Not Lua's job. Your job. > > > > And how exactly I am supposed to do this job? E.g., how can I test ... | http://lua-users.org/lists/lua-l/2011-01/msg00294.html | CC-MAIN-2022-21 | refinedweb | 280 | 89.38 |
The subject of pointers deals heavily with the use of the symbols * and &, and to a beginner this is often confusing; especially when different people put the modifers in different places (me and the VS6 class wizard for example :P ). My technique is to keep the modifiers next to what they are modifying. For example:
/... | http://www.codeproject.com/Articles/3346/A-Prelude-to-Pointers?fid=13785&df=90&mpp=10&noise=1&prof=True&sort=Position&view=None&spc=Relaxed | CC-MAIN-2015-40 | refinedweb | 1,589 | 58.11 |
QPointer-QWeakPointer-Qt5-Debacle
Hi all,
So I've recently noticed the whole QPointer vs QWeakPointer debacle that was caused in Qt5.
First they deprecate QPointer and let everybody switch to QWeakPointer in Qt4.6. Then they stuck out their tongue and removed the QObject-tracking capability in QWeakPointer in favor of.... | https://forum.qt.io/topic/26968/qpointer-qweakpointer-qt5-debacle/7 | CC-MAIN-2018-34 | refinedweb | 1,067 | 57.57 |
Hello everybody
this is my first project. when i want to compiling it, the CodeVision give me some error. how can i solve those!?
ks0108.h
#ifndef _KS0108_INCLUDED_ #define _KS0108_INCLUDED_ #pragma used+ //------------------------------------ Prototypes ------------------------------------ // Prototypes of User Functi... | https://www.avrfreaks.net/forum/error-codevisionthis-my-first-project | CC-MAIN-2021-31 | refinedweb | 3,745 | 74.79 |
First.
Outside of a few unicorns and bleeding edges, I have seen no great shift to containers that would support this article's hypothesis. If anything people are discovering that running any number of containers in production brings a whole host of new problems with it; in fact it's not dissimilar to the cycle we saw ... | http://www.osnews.com/comments/29472 | CC-MAIN-2018-22 | refinedweb | 2,271 | 61.06 |
OraFormsFaces 11.1.2?BradW Sep 18, 2012 3:54 PM
Hi JHS team!
This content has been marked as final. Show 7 replies
1. Re: OraFormsFaces 11.1.2?Steven Davelaar-Oracle Sep 26, 2012 8:46 AM (in response to BradW)Brad,
Did you get a reaction from Commit Consulting in the meantime?
Steven Davelaar,
Jheadstart Team.
2. Re: O... | https://community.oracle.com/message/10674725 | CC-MAIN-2017-04 | refinedweb | 1,056 | 75.4 |
#include <TextMsgTrans.h>
List of all members.
Definition at line 9 of file TextMsgTrans.h.
[inline]
default constructor, use type name as instance name
Definition at line 16 of file TextMsgTrans.h.
[inline, protected]
constructor for subclasses (which would need to provide a different class name)
Definition at line 22... | http://www.tekkotsu.org/dox/classTextMsgTrans.html | crawl-001 | refinedweb | 208 | 59.9 |
Introduction
C#
is primarily a statically typed language. That means the compiler needs to know
in advance about the data type of a variable. In the absence of this
information, the compiler will throw a compilation error and will refuse to
compile the code. In spite of the advantages offered by the statically typed la... | https://www.codeguru.com/csharp/using-dynamicobject-and-expandoobject/ | CC-MAIN-2021-39 | refinedweb | 1,633 | 56.25 |
Version: 1.0aContact: Sean Lyndersay, Microsoft CorporationUpdated: March 14, 2006
Overview BackgroundExampleSimple List Extensions Namespace Identifying a List Lightweight Property Description Overview Sorting GroupingAdditional InformationRevision HistoryLicense Information
1. Overview
The Simple List Extensions are ... | http://msdn.microsoft.com/de-de/xml/bb190612(en-us).aspx | crawl-002 | refinedweb | 1,043 | 52.8 |
12 June 2008 00:14 [Source: ICIS news]
TORONTO (ICIS news)--RAG-Stiftung may sell another stake in Evonik Industries to an individual investor rather than to the public, German daily Sudeutsche Zeitung reported on Wednesday, citing Evonik CEO Werner Muller.
RAG-Stiftung earlier this month sold a 25.01% stake in Evonik,... | http://www.icis.com/Articles/2008/06/12/9131787/investor-may-get-further-stake-in-evonik-press.html | CC-MAIN-2014-42 | refinedweb | 213 | 61.16 |
of all
the declaration of the sum function does not match the definition (one receives a reference to a double and the other just a double).
Also the parameter can be passed as a const reference
Try with
#include <iostream>
using namespace std;
double sum (const double &);
main()
{
double ctr=1;
double x;
double total... | https://www.experts-exchange.com/questions/20797601/Linking-errors.html | CC-MAIN-2018-26 | refinedweb | 234 | 51.04 |
As with any software drivers: they are never perfect. The same applies to the Processor Expert components delivered in CodeWarrior for MCU10 or the DriverSuite too. That’s why I have created many more components which are available on GitHub here. All these components are using other components to reach the hardware. B... | https://mcuoneclipse.com/2013/05/11/low-level-coding-with-pdd-physical-device-driver/ | CC-MAIN-2020-10 | refinedweb | 1,314 | 60.35 |
I have situation like this. I cannot see any errors but I am not getting my results.
@ApplicationScoped
public class A {
private B b;
@Inject
public A(B b) {
this.b = b;
}
}
@Singleton
public class B {
private A a;
@Inject
public B(A a) {
this.a = a;
}
}
I'd avoid this circular dependency, there is a few reasons to do ... | https://codedump.io/share/5aV3p2E2FVQV/1/handle-circular-dependency-in-cdi | CC-MAIN-2017-26 | refinedweb | 232 | 51.55 |
Asked by:
SSRS integrating .Net MVC, my reportviewer webcontrol alway link to jquery.min.js 3.1.1 version
Question
- User945585929 posted
Hi,
I am working on .Net MVC application with SSRS report integration
Am using latest version of Report Viewer controls for WebForms (150.1427.0). and ReportviewerforMVC nuget pacakg... | https://social.msdn.microsoft.com/Forums/en-US/82b06399-58b9-4793-aaf1-6e5579829872/ssrs-integrating-net-mvc-my-reportviewer-webcontrol-alway-link-to-jqueryminjs-311-version?forum=aspmvc | CC-MAIN-2022-27 | refinedweb | 786 | 59.9 |
Today, we will develop a moderately complex filter and learn about it in some level of detail.
The application
We will show a list of products. User can filter the list by minimum price and view only products that are on sale.
Build the basics
We will first build the basic application without any filter. It will show a... | https://mobiarch.wordpress.com/2014/11/18/write-custom-angularjs-filter/ | CC-MAIN-2018-13 | refinedweb | 309 | 60.41 |
There has been a critical error. Time: Exception: C 2: C c:\windows\system32\sprers.eu If not then try start with MT4 Plugin for Amibroker to analyse live forex data. function 'SetRateArray' call from dll 'sprers.eu' critical error c The problem seems to be something to do with the RADHSLIB DLL. A Google search suggest... | https://sprers.eu/mq4-dll-critical-error-c0000005.php | CC-MAIN-2022-40 | refinedweb | 7,470 | 56.76 |
The Irony of JavaScript's Success
The Irony of JavaScript's Success
By Jacques Surveyer.
JavaScript may be more like Java than just its similarity in syntax. Like Java, JavaScript has also had a roller coaster ride of early phenomenal success, then some bruisings due primarily to Microsoft's machinations, and now renew... | http://www.webreference.com/programming/javascript/j_s/column8/index.html | CC-MAIN-2016-26 | refinedweb | 1,505 | 54.63 |
In this tutorial, we will walk through the implementation of a different and unique clustering approach with the help of convex hulls. But it’s always important to understand the concept before jumping right into the code! So let’s understand what convex hulls are.
Introduction to Convex Hulls
A
Convex object is an obj... | https://www.askpython.com/python/examples/convex-hulls-in-python | CC-MAIN-2022-33 | refinedweb | 661 | 59.5 |
.
There are many answers to this, depending on what you need to accomplish. The old-fashioned C functions spawn and system still work. However, these are considered somewhat obsolete. They don't give you the control you need to receive a notification that the process completed, because you can't get the process handle.... | https://www.codeproject.com/Articles/534/An-Introduction-to-Processes-Asynchronous-Process | CC-MAIN-2018-09 | refinedweb | 1,460 | 52.49 |
GPWiki:Current events
Site Refresh
The Game Programming Wiki has been under an extensive revitalization effort! If you appreciate our website's community-driven development, chip in on the forums about refreshing the site
Thank you. Pieman (talk) 23:09, 22 January 2014 (GMT)
The D3D Book is here
The D3D Book from GDWik... | http://content.gpwiki.org/index.php/GPWiki:Current_events | CC-MAIN-2014-35 | refinedweb | 191 | 66.84 |
It’s been a long time since I wrote part 1 and part 2 of this blog series, but hopefully things will move a bit more quickly now.
The main step forward is that the project now has a source repository on Google Code instead of just being a zip file on each blog post. I had to give the project a title at that point, and ... | https://codeblog.jonskeet.uk/2010/12/23/reimplementing-linq-to-objects-part-3-quot-select-quot-and-a-rename/?replytocom=12526 | CC-MAIN-2021-39 | refinedweb | 1,642 | 58.21 |
- 21st November 2005
Monday 21st November 2005
Poultry News
Recipes
Interviews
Newsletter Archives
Book Shop
Search
Events / Promotions
This Weeks Industry Showcase
The Global Disinfectant
TWICE
the Protection at
HALF
the dosage. It’s not surprising than that
VIROCID
is number one in the world!
ANTEC® Virkon S
is
the
... | http://www.thepoultrysite.com/newsletter/95/thepoultrysite-newsletter-21st-november-2005/ | CC-MAIN-2017-47 | refinedweb | 2,063 | 51.48 |
In this article, I’m going to show how to get started with a D development process that mirrors my own. I’m not trying to push this process on anyone, nor am I making any claims that it’s the best way to go about developing software with D. Developers can be a fickle lot and each has their own preferences and habits, s... | https://www.gamedev.net/resources/_/technical/general-programming/getting-started-with-the-d-programming-language-r3306?st=0 | CC-MAIN-2017-09 | refinedweb | 4,285 | 72.46 |
Important: Please read the Qt Code of Conduct -
[SOLVED] QtGlobal about the file
- ..\qt-everywhere-opensource-src-4.8.3\include\QtCore\QtGlobal --> There are no extensions.
- ..\qt-everywhere-opensource-src-4.8.3\include\QtCore\QGlobalStatic --> There are no extensions.
- ..\qt-everywhere-opensource-src-4.8.3\include\... | https://forum.qt.io/topic/21660/solved-qtglobal-about-the-file | CC-MAIN-2021-43 | refinedweb | 625 | 51.85 |
How can a global variable in a shared library unset itself? I was experimenting with a very simple library where I noticed that a global
std::string
#include <string>
#include <iostream>
using namespace std;
static string name;
__attribute__((constructor))
static void init() {
ios_base::Init init_ios;
name = "LIBFOO";
... | https://codedump.io/share/obrseTLQvCkT/1/global-string-unsets-itself-in-shared-library | CC-MAIN-2017-13 | refinedweb | 177 | 63.8 |
Now the thread part (and much more) of C++11 is available for free, for the mainstream C++ developer. Visual Studio 11 (beta and free) and g++-4.7 (free) are both stable and provides a lot of C++11 features. I really recommend all c++ developers out there to upgrade their toolbox.
Of course I will do my part. I have up... | https://kjellkod.wordpress.com/2012/06/02/g2log-now-with-mainstream-c11-implementation/ | CC-MAIN-2018-22 | refinedweb | 2,990 | 57.77 |
Ok, so I've been trying to some practice programs and have come to a slight problem.
Here's the program I need to work on: Write a program that determines which of a company's four divisions (NE, SE, NW, SW) had the greatest sales for a quarter. It should include the following two functions, which are called by main.
*... | https://www.daniweb.com/programming/software-development/threads/227613/char-array-function-help | CC-MAIN-2017-26 | refinedweb | 369 | 73.31 |
19 Jun 14:25 2004
Re: emo namespace
Danny Ayers <danny666 <at> virgilio.it>
2004-06-19 12:25:08 GMT
2004-06-19 12:25:08 GMT
This should tie in nicely with FOAF, so I've forwarded to the list: wiki: zaczek2004 wrote: >So far I haven't found a way to indicate emotional relationships that >a topic map author might have to... | http://blog.gmane.org/gmane.comp.web.rdfweb/month=20040601 | CC-MAIN-2014-41 | refinedweb | 243 | 54.46 |
Sharing a data among different browser instancesKrishan Fernando Sep 6, 2006 6:55 AM
Hi,
I am using JBoss portal 2.4,
I have defined a singleton class as follows and copied into the "jboss/server/default/lib" to be used for all the other portlets,
package testcom;
public class Communication {
private static Communicati... | https://developer.jboss.org/thread/123585 | CC-MAIN-2017-47 | refinedweb | 502 | 55.24 |
About |
Projects |
Docs |
Forums |
Lists |
Bugs |
Get Gentoo! |
Support |
Planet |
Wiki
On Thursday 07 June 2012 02:13:16 Luca Barbato wrote:
> On 07/06/12 05:17, Mike Frysinger wrote:
> > On Wednesday 06 June 2012 15:40:18 Gregory M. Turner wrote:
> >> Is there a wiki or forum thread somewhere where folks can gloat an... | http://archives.gentoo.org/gentoo-dev/msg_5dfdfad0325d8d9aca86f55e8cf760c6.xml | CC-MAIN-2014-10 | refinedweb | 107 | 74.49 |
Conquer navigation state with React-router and Redux
A fundamental component of traditional applications and single page applications alike is Navigation — being able to move from one page to another.
Okay, and so what?
Wait up!
In this article, I’ll not only show you the nuances of navigating within your React/Redux a... | http://brianyang.com/conquer-navigation-state-with-react-router-and-redux/ | CC-MAIN-2018-51 | refinedweb | 2,928 | 56.76 |
The WG Charter has been extended through July 31 (only the date has been changed in the revised Charter document). The IP clause of the Charter will probably be changed again (through an AC review) to reference the Current Patent Policy.
No changes requested - the posted version of the minutes is approved.
- Issue 205 ... | http://www.w3.org/2000/xp/Group/2/05/8-minutes.html | CC-MAIN-2015-40 | refinedweb | 1,046 | 74.08 |
C++ Tutorial - Macro - 2017
When the C++ compiler runs, it first calls preprocessor to find any compiler directives that may be included in the source code.
The directives begin with the # character and will be implemented first to modify the source code before it is assembled and compiled.
The changes made by compiler... | http://www.bogotobogo.com/cplusplus/preprocessor_macro.php | CC-MAIN-2017-26 | refinedweb | 1,939 | 58.42 |
RHG 45 Posted March 18, 2019 I cannot believe it has been over a year since I released Fall of Triton! Fall of Triton was far from perfect, but I am glad on what I did with it. Also the support and kind words were overwhelming. It was great to see all the PlayStation fans play and enjoy the map. And it is an honour to ... | https://www.doomworld.com/forum/topic/105089-playstation-doom-the-vortex-catastrophe-out-now/ | CC-MAIN-2021-49 | refinedweb | 630 | 85.59 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.