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
Well,–* Join the conversationAdd Comment PingBack from I had my music set up in folders structures (e.g. Rock –> Classic Rock etc) on my machine based on my liking but could not find easy way to create zune playlists based on folder structure so I wrote a quick tool which would do this… I made it available to be downlo...
https://blogs.msdn.microsoft.com/vbteam/2008/09/20/building-a-zune-playlist-matt-gertz/
CC-MAIN-2016-30
refinedweb
921
74.32
In WPF, you bind to objects returned by web service method calls the same way you bind to any other objects. To demonstrate, we’ll walk through a simple application that consumes the MSDN/TechNet Publishing System (MTPS) Content Service, discussed here. Our application implements a very simple scenario that retrieves t...
http://blogs.msdn.com/wpfsdk/archive/2007/05/16/binding-to-web-services.aspx
crawl-002
refinedweb
375
53.41
#include <stdio.h> #include <stdarg.h> int vprintf(const char *format, va_list ap); int vfprintf(FILE *stream, const char *format, va_list ap); int vsprintf(char *s, const char *format, va_list ap); int vsnprintf(char *s, size_t n, const char *format, va_list ap); int vasprintf(char **ret, const char *format, va_list a...
http://docs.oracle.com/cd/E36784_01/html/E36874/vasprintf-3c.html
CC-MAIN-2014-42
refinedweb
503
59.13
Draw circle, rectangle, line etc with Python, Pillow ImageDraw module of the Python image processing library Pillow (PIL) provides a number of methods for drawing figures such as circle, square, and straight line. Please refer to the following post for the installation and basic usage of Pillow (PIL). Flow of drawing f...
https://note.nkmk.me/en/python-pillow-imagedraw/
CC-MAIN-2020-40
refinedweb
922
65.62
Regex search for \n and hit replace with the replace box empty. Yes. Nope. That's not it. I think that's what Ctrl+J is doing anyway, b/c on a 100k js file, ~3500 lines, both take the same amount of time, over 10 seconds, and peg ST3 CPU at 25% for me. (Win7, 3ghz, 6gb). It must be re-writing the whole string every ti...
https://forum.sublimetext.com/t/how-to-join-lines-in-huge-file-very-fast/12086
CC-MAIN-2016-30
refinedweb
365
84.78
Uploading Files to Amazon S3 with a Rails API and Javascript Frontend This guide will walk you through a method to integrate S3 hosting with Rails-as-an-API. I will also talk about how to integrate with the frontend. Note while some of the setup is focused on Heroku, this is applicable for any Rails API backend. There ...
https://eking-30347.medium.com/uploading-files-to-amazon-s3-with-a-rails-api-and-javascript-frontend-672a7f90ce05
CC-MAIN-2021-04
refinedweb
3,057
66.64
TL;DR The cron utility is a daemon that wakes up every minute to check if needs to run a job. The Story of Cron I found myself wondering recently how cron works ( cron is a utility for scheduling tasks on Linux. For a good intro on how to use it, see this blog post). Is cron doing something fancy to schedule these task...
https://pcarleton.com/2016/09/13/cron/
CC-MAIN-2021-39
refinedweb
374
68.91
add the messagebox, the first instance is still running and holding the semaphore (becuase the messagebox is displayed), so when the second instance tries to create it it fails as expected. HANDLE hSem = CreateSemaphore( NULL, 1, 1, "MySemaphore" ); if (hSem != NULL && GetLastError() == ERROR_ALREADY_EXISTS) { ...msg ...
https://www.experts-exchange.com/questions/21828865/CreateSemaphore-does-not-return-ERROR-ALREADY-EXISTS.html
CC-MAIN-2018-30
refinedweb
680
60.55
Reading vector from launch file does not work in Indigo Hi to all, I'm facing an issue while reading a vector parameter from launch file in ROS Indigo. I set the parameter in my launch file in the private namespace of my node as; <param name="x0" value="[0.0, 0.0]"/> And I'm trying to read it as described here or in th...
https://answers.ros.org/question/291984/reading-vector-from-launch-file-does-not-work-in-indigo/
CC-MAIN-2021-31
refinedweb
188
72.16
CodePlexProject Hosting for Open Source Software I'm a new white user and I'm using visual studio test edition. should I reference only white.core.dll in my test project or should I referene both core.dll and White.NUnit.dll? I think that I really need a simple starter walk through. I would really appreciate your help....
https://white.codeplex.com/discussions/60964
CC-MAIN-2017-17
refinedweb
479
53.98
Some unconditionally reserved words are reserved only in strict code: class, enum, export, extends, import, super I am submitting this classified as "trivial" because these are properly rejected in strict code, which is all I really care about. If someone does care about this case, please raise the severity. If this is...
https://bugzilla.mozilla.org/show_bug.cgi?id=637204
CC-MAIN-2017-22
refinedweb
685
72.36
Maximise XOR of a given integer with a number from the given range Sign up for FREE 1 month of Kindle and read all our books for free. Get FREE domain for 1st year and build your brand new site Reading time: 15 minutes | Coding time: 5 minutes Given q queries each of specifies three integers x, l, r. We have to find an...
https://iq.opengenus.org/maximise-xor-of-a-given-integer-with-a-number-from-the-given-range/
CC-MAIN-2021-21
refinedweb
687
76.76
You can use the Zendesk REST API to make backup copies of all the articles in your knowledge base. The backups can be useful in case you need to check or revert to a previous version of an article. This tutorial covers the following tasks: - What you need - The plan - Create the Python file - Create folders for the bac...
https://help.zendesk.com/hc/en-us/articles/229136947-Backing-up-your-knowledge-base-with-the-Zendesk-API
CC-MAIN-2017-39
refinedweb
4,680
65.01
#include "LPD8806.h"#include "SPI.h"// Example to control LPD8806-based RGB LED Modules in a strip/*****************************************************************************/// Choose which 2 pins you will use for output.// Can be any valid output pins.int dataPin = 2; int clockPin = 3; // Set the first variable to ...
http://forum.arduino.cc/index.php?topic=135614.0;prev_next=next
CC-MAIN-2016-30
refinedweb
245
74.08
hi! What sql librries are for c++? what is the most popular? If you are using Visual C++, there are a lot of libraries available. Oracle is probably the most popular. If you're using Visual Studio, you would add a reference to System.Data.OracleClient. ...then (in your code) add using namespace System::Data::OracleClie...
https://www.daniweb.com/programming/software-development/threads/368861/sql-and-c
CC-MAIN-2018-09
refinedweb
118
67.35
(DONE see record). -.) (DONE There is a errorHookand resultHooknow). - (DONE in 1.5*)* - line numbers (be able to turn on / off) - be able to specify some .jar files that will be included into the classpath (DONE in 1.6) - enable standard-de-facto ctrl+z for undo and ctrl+y for redo - tabs - code formatting Debug fea...
http://docs.codehaus.org/display/GROOVY/New+Groovy+Console+Wish+List?focusedCommentId=60850200
CC-MAIN-2014-35
refinedweb
326
73.88
Introduction There are two ways to read data from a SQL database in to GraphLab Create: DBAPI2 support is a new feature and currently released as beta, but we strongly encourage you to try it first. The ease of getting started with DBAPI2 far surpasses using ODBC. DBAPI2 Integration DBAPI2 is a standard written to enco...
https://turi.com/learn/userguide/data_formats_and_sources/sql_integration.html
CC-MAIN-2017-09
refinedweb
2,081
53.1
I am generating HTML from a fairly complex transform made of many modules. These modules declare a number of namespaces that apply to different function packages, module-specific named templates and modes, etc., but *not* to either the input elements or result elements (other than possible an XHTML namespace). I have c...
http://www.oxygenxml.com/archives/xsl-list/201503/msg00013.html
CC-MAIN-2018-05
refinedweb
185
50.16
This is the fourth article in our Azure series. So far we have looked at deploying a simple Node.js application to the Azure platform, using Pino and Event Hubs to collect logs, and using Stream Analytics to gain real-time business intelligence. In this post we are taking advantage of the new Web App for Containers ser...
https://www.nearform.com/blog/deploying-containerized-node-js-applications-with-microsoft-azure/
CC-MAIN-2019-22
refinedweb
2,931
50.87
Response to June 2012 article: The article is coming up on its first birthday, but it’s on the web, and I found it by mistake while searching for an unrelated topic. The argument The argument of the author, a teacher of Java, was that the Django urlconf system is too verbose and unwieldy when dozens, or even hundreds o...
http://blog.timvalenta.com/2013/01/why-django-doesnt-need-better-urls-py/
CC-MAIN-2014-52
refinedweb
2,216
62.68
ok first thanks for helping. I'm new to programming in general and I decided I'd start with C. I found a pretty sweet tutorial and I'm plugging along but I have a question. I see in the tutorial that at the end of an "if" block the tutorial has the command "return 0;" I have written a program below just to kind of get ...
http://cboard.cprogramming.com/c-programming/106859-new-c-return-question.html
CC-MAIN-2015-06
refinedweb
190
72.6
Creating a more advanced property editor Note: There is an updated version of this blog post for EPiServer 7.5 here. In this fourth and last blog post in my series on how to extend the user interface in EPiServer 7 we will take a look how we can build a more advanced editorial widget. We will use two of the built in wi...
https://world.optimizely.com/blogs/Linus-Ekstrom/Dates/2012/11/Creating-a-more-advanced-property-editor/
CC-MAIN-2021-39
refinedweb
2,782
50.12
ATTENDEES 39/35 Active Data Exchange Shane Sesta alternate Akamai Technologies Mark Nottingham principal Allaire Glen Daniels principal AT&T Mark Jones principal Bowstreet Alex Ceponkus alternate Canon Jean-Jacques Moreau principal Canon Herve Ruellan alternate DataChannel Brian Eisenberg principal Engenia Software Jef...
http://www.w3.org/2000/xp/Group/1/03/f2f-pminutes
CC-MAIN-2013-48
refinedweb
6,012
66.23
Devel::Profiler - a Perl profiler compatible with dprofpp To profile a Perl script, run it with a command-line like: $ perl -MDevel::Profiler script.pl Or add a line using Devel::Profiler anywhere your script: use Devel::Profiler; Use the script as usual and perform the operations you want to profile. Then run dprofpp ...
http://search.cpan.org/~samtregar/Devel-Profiler-0.04/lib/Devel/Profiler.pm
crawl-002
refinedweb
1,273
55.95
As you have seen from the web service consumer using SOAP, the data being passed back and forth as is structured XML inside the body of the HTTP package. In particular it has the following format: <Envelope> <Header> < . . . > </Header> <Body> < . . . > </Body> </Envelope> We have seen how to pass data from the client ...
https://etutorials.org/Programming/.NET+Framework+Essentials/Chapter+6.+Web+Services/6.6+SOAP+Header+in+Web+Services/
CC-MAIN-2022-21
refinedweb
710
55.84
This book is divided into seven chapters, each of which is briefly described here: Contains a series of introductory hacks, including an overview of what an XML document should look like, how to display an XML document in a browser, how to style an XML document with CSS, and how to use command-line Java applications to...
https://etutorials.org/XML/xml+hacks/Preface/How+This+Book+Is+Organized/
CC-MAIN-2021-31
refinedweb
285
66.57
: - core - a compact module defining basic data structures, including the dense multi-dimensional array Mat. The further chapters of the document describe functionality of each module. But first, make sure to get familiar with the common API concepts used thoroughly in the library. cvNamespace¶ All the OpenCV classes a...
https://docs.opencv.org/2.4/modules/core/doc/intro.html
CC-MAIN-2019-22
refinedweb
235
61.02
Introduction Helm charts are one of the best practices for building efficient clusters in Kubernetes. It is a form of packaging that uses a collection of Kubernetes resources. Helm charts use those resources to define an application. Helm charts use a template approach to deploy applications. Templates give structure t...
https://phoenixnap.es/kb/create-helm-chart
CC-MAIN-2022-21
refinedweb
736
65.93
Difference between revisions of "Changelog" Revision as of 05:30, 29 September 2021 The midas git repository uses tags to denote specific releases. Tags are of the format midas-YEAR-MONTH-SUFFIX, e.g. midas-2019-06-b. This page details the major changes in each release, and highlights how to update client code to adapt...
https://daq00.triumf.ca/MidasWiki/index.php?title=Changelog&diff=prev&oldid=3081
CC-MAIN-2022-27
refinedweb
1,941
58.62
The QModemCallProvider class implements a mechanism for AT-based phone call providers to hook into the telephony system. More... #include <QModemCallProvider> Inherits QPhoneCallProvider. The QModemCallProvider class implements a mechanism for AT-based phone call providers to hook into the telephony system. This class ...
https://doc.qt.io/archives/qtextended4.4/qmodemcallprovider.html
CC-MAIN-2021-43
refinedweb
1,339
51.65
Java is a lot like C, which makes it relatively easy for C programmers to learn. But there are a number of important differences between C and Java, such as the lack of a preprocessor, the use of 16-bit Unicode characters, and the exception handling mechanism. This chapter explains those differences, so that programmer...
http://oreilly.com/catalog/javanut/excerpt/
crawl-002
refinedweb
3,419
55.44
, to integrating with other hardware… even the Arduino. It’s a reference book more than anything else, full of useful advice from someone who I figure must’ve spent a fair amount of time messing around with the Pi before writing the book. It gets you started, goes into some detail, and often includes references for mor...
https://grantwinney.com/cooking-with-simon-monk-raspberry-pi-cookbook/
CC-MAIN-2017-17
refinedweb
1,008
72.66
Tony Docherty wrote:Welcome to the Ranch I've edited your post by changing the 'javadoc' tags you used to 'code' tags so it displays properly on this forum. Greg Charles wrote:Hi Mona, welcome to JavaRanch! It would be helpful if you posted the warnings you are getting. They probably are related to a new(ish) concept i...
http://www.coderanch.com/t/600801/java/java/solving-Linked-List
CC-MAIN-2014-42
refinedweb
158
66.64
Followers 0 Following 0 Joined Last Online namnium1125 Thank you for look. I'm Japanese. So I might write some wrong English. then, please excuse me. >>> a = 1 >>> b = 2 >>> >>> print(a,b) When I run this code, I thought I would get the result like this: 1 2 but in fact, I got this result: (1, 2) then, I thought I got ...
https://forum.omz-software.com/user/namnium1125
CC-MAIN-2022-33
refinedweb
162
86.5
Jun 19, 2010 03:13 PM|Jags_464|LINK How group by and sum values in DataTable?? I have a DataTable that looks like this: Id Value 1 4.0 1 5.0 3 1.0 2 2.0 3 3.0 I want to end up with (probably a new DataTable) that contains the sum of values grouped by Id like this: Id SumOfValue 1 9.0 2 2.0 3 4.0 pls help me....... Than...
http://forums.asp.net/t/1570562.aspx
CC-MAIN-2013-48
refinedweb
620
68.16
Problem Statement You are given an array of integers. Your task is to find out the maximum sum subsequence within the array in such a way that the numbers in subsequence should be ordered in a sorted manner in increasing order. A subsequence is nothing but a sequence that we get if we remove some of the elements from t...
https://www.tutorialcup.com/interview/dynamic-programming/maximum-sum-increasing-subsequence-2.htm
CC-MAIN-2021-39
refinedweb
763
53.31
. Here an attempt in Python. I follow a simple approach. First dump the english dictionary in a trie. Then take the signature word and try to find all words in the trie by expanding with double consonants, vowels and the characters from the signature word. Another Python version kore in line with the Programming Praxis...
http://programmingpraxis.com/2013/07/02/decoding-text-speak/
CC-MAIN-2014-15
refinedweb
261
60.51
Singleton class in java is a class that can have only a single object. It also means it can have just one instance of a class at the same time. In java, even when we try to make another object from the singleton class. It will only point towards the earlier created instance. So any changes in the class, they will only ...
https://www.developerhelps.com/singleton-class-in-java/
CC-MAIN-2021-31
refinedweb
646
56.76
Data replication protocolDownload PDF Info - Publication number - US7571215B2US7571215B2 US09975590 US97559001A US7571215B2 US 7571215 B2 US7571215 B2 US 7571215B2 US 09975590 US09975590 US 09975590 US 97559001 A US97559001 A US 97559001A US 7571215 B2 US7571215 B2 US 7571215B2 - Authority - US - Grant status - Grant -...
https://patents.google.com/patent/US7571215B2/en
CC-MAIN-2018-13
refinedweb
5,921
57.5
Learning time-lapse of coding the game, the whole thing took around 40 minutes. This tutorial will use Java to show you how to use the LibGDX framework to get a working game on your android phone and your computer. The great thing about LibGDX is that you code your game and can then export to a variety of platforms, na...
https://www.instructables.com/id/How-to-Make-an-Android-Game-Snake/
CC-MAIN-2019-35
refinedweb
8,567
72.66
On the event handlers page, we looked at various ways to make a control movieclip respond to mouseovers and mouse rollouts. In the bee game, we used the onRelease event of the controls to make movieclips start and stop, using the play and stop commands. Here we'll take a look at another use of the onRelease function to...
http://www.flash-creations.com/notes/actionscript_easingslider.php
crawl-001
refinedweb
2,232
66.98
On Tue, Nov 3, 2009 at 4:46 PM, Steven D'Aprano <steve at pearwood.info> wrote: > def pick_two_cards(hand): > assert isinstance(hand, (set, frozenset)) > assert len(hand) == 5 > return (hand.pick(), hand.pick()) > Even if pick() chose random, you still might end up picking the same card twice. Is that really what you i...
https://mail.python.org/pipermail/python-dev/2009-November/093681.html
CC-MAIN-2016-40
refinedweb
218
58.58
User Name: Published: 01 Mar 2011 By: Xianzhong Zhu Download Sample Code In this article I will introduce to you how to handle XML data in Windows Phone 7 for Silverlight applications.. The sample test environments in this article involve: 1. Windows 7; 2. .NET 4.0; 3. Visual Studio 2010; 4. Windows Phone Developer Too...
http://dotnetslackers.com/articles/silverlight/Windows-Phone-7-Silverlight-Programming-Handling-XML-Data.aspx
crawl-003
refinedweb
2,350
55.74
Original submitter: sjangity Description: Build 925-TP/ML, 918 NB, WinXP 1.5 Project/JDK 1.5.06 1. New userdir 2. Start IDE and w/ new project import ajax complib found here (0.1.1): 3. Drop the AutoComplete Text Component > project now has a copy of the complib 4. delete the component from designer, so project is not...
https://bz.apache.org/netbeans/show_bug.cgi?id=93749
CC-MAIN-2021-21
refinedweb
475
66.74
Highlights - NumPy is a core Python library every data science professional should be well acquainted with - This comprehensive NumPy tutorial covers NumPy from scratch, from basic mathematical operations to how Numpy works with image data - Plenty of Numpy concepts and Python code in this article Introduction I am a h...
https://www.analyticsvidhya.com/blog/2020/04/the-ultimate-numpy-tutorial-for-data-science-beginners/?share=facebook
CC-MAIN-2020-40
refinedweb
5,851
62.68
Using your project docs inside the application The applications I work on have markdown docs. These can be in the docs/ folder for example as docs/webhooks.md But some of these docs have value to the user of the UI not just the developer, and when we include these docs inside the application repo it is a TON easier to ...
https://alfrednutile.info/posts/157
CC-MAIN-2018-47
refinedweb
251
62.88
You. You could say that only the language changes the classes are largely unaltered. Start a new C# Windows forms project and add a reference to: dtSearchNetApi4.dll which you will generally find in C:\Program Files\dtSearch Developer\bin or C:\Program Files (x86)\dtSearch Developer\bin (there are versions for earlier ...
https://www.i-programmer.info/programming/database/2701-getting-started-with-dtsearch.html?start=1
CC-MAIN-2018-30
refinedweb
831
63.9
#include <Wire.h>#include <RTClib.h> // Real time clock#include <Adafruit_Sensor.h> // Barometer#include <Adafruit_BMP085_U.h> // Barometer#include <SPI.h> // SD card#include <SD.h> // SD card// Libraries from LCD example//#include <OneWire.h>//#include <LiquidCrystal.h>/* I need a way to identify what String() functio...
http://forum.arduino.cc/index.php?topic=216710.0
CC-MAIN-2016-18
refinedweb
209
68.06
Data::Type::Filter - cleans values before normally subjecting to facets package Data::Type::Object::std_langcode; ... sub _filters : method { return ( [ 'strip', '\s' ], [ 'chomp' ], [ 'lc' ] ) } package Data::Type::Filter::chomp; our @ISA = ( 'Data::Type::Filter::Interface' ); our $VERSION = '0.01.25'; sub desc : meth...
http://search.cpan.org/~muenalan/Data-Type-0.02.02/lib/Data/Type/Filter.pm
CC-MAIN-2017-04
refinedweb
117
52.56
I had an app that was working properly with old verions of wxpython Now with wxpython 3.0, when trying to run the app, I get the following error File "C:\Python27\lib\site-packages\wx-3.0-msw\wx\_controls.py", line 6523, in __init__ _controls_.DatePickerCtrl_swiginit(self,_controls_.new_DatePickerCtrl(*args, **kwargs))...
https://codedump.io/share/dd9wAWmKCkes/1/wxpython-30-breaks-older-apps-locale-error
CC-MAIN-2016-50
refinedweb
209
59.6
IETF Draft Sets up Public Namespaces!!" Slashdotted (Score:2, Informative). Re:Some further possibilities (Score:3, Informative) But my major point is that metadata without trust is not very useful in today's world. Any reference I made to links was only incidental (describing the current search engine situation). form...
https://developers.slashdot.org/story/03/09/30/164210/ietf-draft-sets-up-public-namespaces/informative-comments
CC-MAIN-2017-13
refinedweb
115
52.97
Library tutorials & articles Retrieving HTTP content in .NET - Introduction - New HTTP tools in .NET - HTTP Cookies - Wrapping it up - POSTing data - Firing events - We can walk and chew gum at the same time! New HTTP tools in .NET The .NET Framework provides new tools for retrieving HTTP content that are powerful and ...
http://www.developerfusion.com/article/4637/retrieving-http-content-in-net/2/
crawl-002
refinedweb
1,314
55.64
* how are the objects passed by value or by reference Chandra Bairi Ranch Hand Joined: Sep 12, 2003 Posts: 152 posted Nov 12, 2003 02:48:00 0 hello can anyone tell me how the objects in java are passed by value or by reference. some books say they are passed by reference and some books say they are passed by value. wh...
http://www.coderanch.com/t/394844/java/java/objects-passed-reference
CC-MAIN-2014-10
refinedweb
901
62.78
03 January 2012 07:53 [Source: ICIS news] SINGAPORE (ICIS)--BP has asked its contractor Halliburton to pay for all the costs and expenses it incurred from the 2010 Gulf of Mexico oil spill, media reports citing a ?xml:namespace> The UK-based oil and giant has set aside $20bn (€15.4bn) for economic claims and natural re...
http://www.icis.com/Articles/2012/01/03/9519594/bp-seeks-gulf-of-mexico-spill-costs-from-halliburton-reports.html
CC-MAIN-2014-35
refinedweb
163
62.01
My intention for this blog post was to see how fast could I, with basically zero practical cloud experience, deploy a Java application in just that. For this purpose I decided to go for the Azure Cloud Services. Additionally, I made up my mind to also containerize my Java application making use of Docker. This promises...
https://blog.oio.de/2020/05/11/how-to-run-a-containerized-java-application-in-the-cloud-on-microsoft-azure/
CC-MAIN-2020-24
refinedweb
1,540
64.71
Example of Reflexive composition relation. Devesh H Rao Ranch Hand Joined: Feb 09, 2002 Posts: 687 I like... posted Jul 03, 2003 05:05:00 0 Hi ppl, i just was having a talk with my prof regarding the various types of relation ship between Objects such as aggregation,association composition and their practical examples...
http://www.coderanch.com/t/98313/patterns/Reflexive-composition-relation
CC-MAIN-2014-42
refinedweb
912
57.5
Activity - All - Work Log - History - Activity - Transitions default resource strings now provided by InitializerStringResourceLoader i think this is an ok compromise but not an ideal implementation. imho, the proper way would be to change IResourceStreamLocator methods that return IResourceStream to return IResourceS...
https://issues.apache.org/jira/browse/WICKET-4162?focusedCommentId=13136386&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel
CC-MAIN-2015-32
refinedweb
1,386
51.14
Both Tcl Blend and Jacl support evaluation of events in the Tcl event loop. It is important that developers understand how the Tcl event loop works and how it should be used. A number of Tcl features depend on the Tcl event loop, for example vwait will not work properly if Tcl events are not being processed. The event ...
http://fossies.org/linux/misc/jacl1.4.1.tar.gz:a/jacl1.4.1/docs/Topics/EventLoop.html
CC-MAIN-2014-52
refinedweb
796
60.65
Deprecated. Please move to. Hi there, I think I might have misunderstood some concepts of TX in Doobie. I an aggregate with two services which both create an Kleisli. When second return Left side of either, and thus returning an error, I was expecting the whole thing to end with error and rollback. But, alas, this is n...
https://gitter.im/tpolecat/doobie?at=6163e41ff2cedf67f97afdbd
CC-MAIN-2021-49
refinedweb
281
75.91
Recently started working with rails; I’m very impressed so far, but I do have a question - Say I’m running a blog-type application. I’ve got a Users table, and a Posts table. Each post on the blog is made by a user. The Post table has an FK user_id that keeps track of the author of the post. This is all well and good, ...
https://www.ruby-forum.com/t/help-decoupling-models-with-a-foreign-key-relationship/183232
CC-MAIN-2022-40
refinedweb
134
70.53
# Implementation of Linked List in PHP A linked list is a linear data structure, which contains node structure and each node contains two elements. A data part that stores the value at that node and next part that stores the link to the next node as shown in the below image: ![Linked List Node](https://www.alphacodin...
https://habr.com/ru/post/506660/
null
null
868
74.9
Feature #14666 nil.any?{} should return false Description Hi everyone at ruby/trunk I encountered nil.any? undefined method `any?' for nil:NilClass (NoMethodError) I fully agree with all of yours, that nil should be kept slim. But than, on the other hand, the existence quantors are well defined on nil. So nil.any? shou...
https://bugs.ruby-lang.org/issues/14666
CC-MAIN-2019-26
refinedweb
532
73.47
Q3PtrQueue Class Reference The Q3PtrQueue class is a template class that provides a queue. More... #include <Q3PtrQueue> This class is part of the Qt 3 support library. It is provided to keep old source code working. We strongly advise against using it in new code. See Porting to Qt 4 for more information. Inherits: Q3...
http://qt-project.org/doc/qt-4.8/q3ptrqueue.html
CC-MAIN-2013-20
refinedweb
577
61.33
Chapter 1. The First Job In The Cloud Intro On a cloud I saw a child, And he laughing said to me: “... — William Blake Nowadays one should live in a cave on an uninhabited island lost in Arctic ocean to have never heard of “Artificial Intelligence,” “Machine Learning,” “NLP” and the family of buzzwords. Having a master...
https://practicaldev-herokuapp-com.global.ssl.fastly.net/yzvyagelskaya/your-first-job-in-the-cloud-4lcj
CC-MAIN-2021-25
refinedweb
1,484
74.39
Re: [soaplite] Adding namespaces to SOAP-ENV::Envelope Expand Messages - On Wed, 26 Nov 2003, Byrne Reese wrote: > This is an excellent question - something I will have to write about... atusing call() gives you a lot more flexibility. > least more explicitly on majordojo.com. Future versions of SOAP::Lite will > make ...
https://groups.yahoo.com/neo/groups/soaplite/conversations/topics/3188?o=1&unwrap=1&var=1
CC-MAIN-2017-17
refinedweb
202
53.92
ntfsmount - Read/Write userspace NTFS driver. ntfsmount device mount_point [-o options] mount -t fuse.ntfs device mount_point [-o options] /etc/ftsab entry: device mount_point fuse.ntfs options 0 0 ntfsmount is a read/write userspace NTFS filesystem driver. Technically it connects FUSE with libntfs. ntfsmount features:...
https://huge-man-linux.net/man8/ntfsmount.html
CC-MAIN-2021-39
refinedweb
818
58.99
There is an increasing demand for running and managing cloud native applications on a platform that is able to handle the surge in traffic in a scalable and performant manner. OpenShift is the go-to platform. There are a number of features being added in each release to meet the ever-changing needs in various domains, ...
https://www.openshift.com/blog/openshift-scale-ci-part-6-highlights-from-the-openshift-4.5-large-scale-test-run
CC-MAIN-2021-17
refinedweb
2,408
59.64
--- Nicodemus <nicodemus at globalite.com.br> wrote: > >#ifdef _MSC_VER > >#pragma hdrstop > >#endif > > > It is in CVS now (it only writes the pragma and the surrounding #ifdef > on windows systems). Not that I am using Pyste at the moment, but if I did I'd want to reuse the Pyste output on platforms that don't have g...
https://mail.python.org/pipermail/cplusplus-sig/2003-October/005479.html
CC-MAIN-2018-05
refinedweb
112
76.52
I'm working on the practice problems in the Jumping into C++ book and I'm running into a segmentation fault when running my program. The problem is as followed: "Modify the program you wrote for exercise 1 so that instead of always prompting the user for a last name, it does so only if the caller passes in a NULL point...
https://cboard.cprogramming.com/cplusplus-programming/176861-need-more-help-pointers-post1282277.html?s=7464a918d3b5d913dbc0a10c5dcbedc4
CC-MAIN-2021-10
refinedweb
224
61.7
Electronic Art September 9, 2016 Leave a comment I had been wanting to do this for such a long time… September 9, 2016 Leave a comment I had been wanting to do this for such a long time… Filed under Arduino, Electronics Tagged with arduino, atmega328, electronics, frame, i2c, LED, opencv, peggy 2.2, peggy board, Python...
https://trandi.wordpress.com/category/embedded-mcu/arduino-embedded-mcu/
CC-MAIN-2017-26
refinedweb
674
55.88
A simple model of a forest fire is defined as a two-dimensional cellular automaton on a grid of cells which take one of three states: empty, occupied by a tree, or burning. The automaton evolves according to the following rules which are executed simultaneously for every cell at a given generation. The model is interes...
https://scipython.com/blog/the-forest-fire-model/
CC-MAIN-2021-39
refinedweb
1,706
63.9
Test Driven Development in .NET Part 1: the absolute basics of Red, Green, Refactor March 25, 2013 3 Comments In this series of posts we’ll look at ways of introducing Test Driven Development in a .NET project. I’ll assume that you know the benefits of TDD in general and rather wish to proceed with possible implementat...
https://dotnetcodr.com/2013/03/25/test-driven-development-in-net-part-1-the-absolute-basics-of-red-green-refactor/?replytocom=149
CC-MAIN-2022-33
refinedweb
2,321
73.47
I have some code that is working fine in my desktop application. I would like to do the same thing in windows mobile application (Motorola MC9090), but I get error: "Type 'Microsoft.Win32.SafeHandles.SafeFileHandle' is not defined." I tried to add Namespace: Microsoft.Win32.SafeHandles but then it says: "Namespace or t...
http://forums.codeguru.com/printthread.php?t=525545&pp=15&page=1
CC-MAIN-2014-52
refinedweb
116
60.72
US7657581B2 - Metadata management for fixed content distributed data storage - Google PatentsMetadata management for fixed content distributed data storage Download PDF Info - Publication number - US7657581B2US7657581B2 US11190402 US19040205A US7657581B2 US 7657581 B2 US7657581 B2 US 7657581B2 US 11190402 US11190402 US...
https://patents.google.com/patent/US7657581B2/en
CC-MAIN-2018-30
refinedweb
4,850
52.39
PlaySoundAtInterval From Unify Community Wiki (Difference between revisions) Latest revision as of 20:45, 10 January 2012 Author: Will Preston (Sigma) [edit] Description This script allows for a sound to be played at intervals specified by the user. NOTE: The script does not take into account the time length of the sou...
http://wiki.unity3d.com/index.php?title=PlaySoundAtInterval&diff=prev&oldid=13050
CC-MAIN-2019-26
refinedweb
380
65.52
Talk:Main Page/Archive23 [edit] Recaptcha I like this.. who's idea was it? CPWebmaster 01:07, 1 February 2009 (EST) - Subject, you sentence lacks one. - User 01:09, 1 February 2009 (EST) - I is subject. He lacks a direct object in a form other than pronoun. DickTurpis 01:14, 1 February 2009 (EST) - What is Recaptcha? -...
http://rationalwiki.org/w/index.php?title=Talk:Main_Page/Archive23&oldid=579245
CC-MAIN-2014-35
refinedweb
13,594
72.46
Using Promises In Javascript A promise is a holder for a result (or an error) that will become available in the future (when the async call returns). Promises have been available in JavaScript through third-party libraries (for example, jQuery and q). ECMAScript 6 adds built-in support for promises to JavaScript. Today...
https://medium.com/@ganihujude_2662/using-promises-in-javascript-2f6c2b1e4e0e
CC-MAIN-2017-39
refinedweb
503
60.51
Java this Keyword Example Using this with a class attribute (x): public class Main { int x; // Constructor with a parameter public Main(int x) { this.x = x; } // Call the constructor public static void main(String[] args) { Main myObj = new Main(5); System.out.println("Value of x = " + myObj.x); } } Definition and Usag...
https://www.w3schools.com/java/ref_keyword_this.asp
CC-MAIN-2021-43
refinedweb
179
52.29
Warning: this page refers to an old version of SFML. Click here to switch to the latest version. Threads What is a thread? Most of you should already know what a thread is, however here is a little explanation for those who are really new to this concept. A thread is basically a sequence of instructions that run in par...
https://en.sfml-dev.org/tutorials/2.0/system-thread.php
CC-MAIN-2021-49
refinedweb
1,818
72.46
On Jul 7, 2012, at 5:46 PM, Nikolay Ivchenkov wrote: > Are you suggesting to cancel existing guarantees? I'm suggesting that the LWG had a direction on this and punted simply because it couldn't come up with the right words. I've requested the LWG re-open LWG 760 and address it. I've also suggested that your question b...
https://groups.google.com/a/isocpp.org/g/std-discussion/c/dhy23mDFXj4
CC-MAIN-2022-40
refinedweb
368
64.71
)' First Before our plasmoid is created we set our basic counter to -1, in Ruby this automatically means it is created as an integer type variable which can have negative values. The value -1.0 would have created a floating point variable instead. The @ sign in front makes it available outside this init definition.. To...
https://techbase.kde.org/index.php?title=Development/Tutorials/Plasma4/Ruby/Blinker&direction=next&oldid=49697
CC-MAIN-2018-39
refinedweb
434
69.62
Turtle is a render engine mostly used for preparing game assets and baking the textures/lights. Although it may be useful for some people, a large part of the industry does not need it. The problem is, Turtle nodes are very persistent. Once the plugin activated, it creates a couple of locked nodes which you cannot dele...
https://www.ardakutlu.com/maya-tips-tricks-kill-the-turtle/
CC-MAIN-2021-31
refinedweb
247
60.61
I have a project in NetBeans 7.2/Win7 that builds fine without compile errors. I just built the project in Eclipse Juno 4.2 and the following error, which went past the NetBeans without complaining: //... import com.hedgehog.geo.threed.curves.Ray3D;; //... It's simply an extra ";" at the end of an import statement. But...
https://netbeans.org/bugzilla/show_bug.cgi?id=220952
CC-MAIN-2018-17
refinedweb
146
86.5
Non-Primitive Data types (Referenced Data types) in Java Non-primitive data types are created by programmers. They are not predefined in java like primitive data types. These data types are used to store a group of values or several values. For example, we take an array. It can store a group of values. Similarly, anoth...
https://www.scientecheasy.com/2018/06/non-primitive-data-types-in-java.html/
CC-MAIN-2020-24
refinedweb
759
58.18
28 January 2011 17:47 [Source: ICIS news] LONDON (ICIS)--Naphtha oversupply in Europe has pushed down crack spreads and allowed the arbitrage to ?xml:namespace> With the current low level of buying interest from European petrochemical buyers, naphtha supplies have risen and crack spreads dropped to allow traders to mov...
http://www.icis.com/Articles/2011/01/28/9430521/europe-naphtha-oversupply-opens-arb-to-asia.html
CC-MAIN-2015-22
refinedweb
202
50.06
Dmitry Shachnev Also: from __future__ import print_function Also: replace except A, b with except A as b. 2014-01-18T11:05:09+00:00 Also: Also: replace except A, bwith except A as b. Dmitry Shachnev Exactly! The python-future does not support Python-3.2 because py32 does not support unicode literal. They said Adding su...
https://bitbucket.org/birkenfeld/sphinx/issue/1350/drop-2to3-mechanism
CC-MAIN-2014-15
refinedweb
336
69.99
Version: 1.9.1 (using KDE 3.5.1, Gentoo) Compiler: gcc version 3.4.4 (Gentoo 3.4.4-r1, ssp-3.4.4-1.0, pie-8.7.8) OS: Linux (i686) release 2.6.14-gentoo-r2 I've upgraded from kde to kde and now I can't select my addressbook from the list, when I try to send an email. When I will select a recipient (using the select butt...
http://bugs.kde.org/121337
crawl-002
refinedweb
1,965
74.49
COM Vasiliki G.Vrana Technological Educational Institute of Serres Serres, Greece Kostas V. Zafiropoulos University of Macedonia Thessaloniki, Greece and Despoina N. Karystinaiou University of Piraeus Athens, Greece ABSTRACT logs provide an easy way for an average person to publish material online sharing in this way a...
https://www.scribd.com/document/35503991/HYPERLINK-ANALYSIS-OF-TRAVEL-BLOGS-THE-CASE-OF-TRAVELPOD-COM-EuroChrie-congress-2009-Helsinki
CC-MAIN-2019-04
refinedweb
5,500
55.24
Building React Apps With Storybook Storybook is a UI explorer that eases the task of testing components during development. In this article, you will learn what storybook is about and how to use it to build and test React components by building a simple application. We’ll start with a basic example that shows how to wo...
https://www.smashingmagazine.com/2020/09/building-react-apps-storybook/
CC-MAIN-2020-40
refinedweb
2,132
50.77
All of us are more or less using many of the chat applications available in the market everyday but still sometimes wonder of how it has been developed. This is a simple private chat application developed in DotNet using a web service. The application (EasyTalk, I named it) targets mainly the beginners who still someti...
https://www.codeproject.com/Articles/22567/Chat-Application-using-Web-services-in-C?display=Print
CC-MAIN-2018-51
refinedweb
1,223
62.98
Christoph Hellwig wrote:> On Fri, Sep 06, 2002 at 06:15:53PM -0400, Karim Yaghmour wrote:> > +endif> > +> > +ifdef CONFIG_TRACE> > +obj-y += trace.o> > endif> > Please try to understand 2.4/2.5-style Makefile first.Sure, I've been trying to replace this statement for a while, but Ihaven't found an equivalent elsewhere ...
http://lkml.org/lkml/2002/9/6/247
CC-MAIN-2015-18
refinedweb
588
55.95
Boyer Moore Algorithm in Java In this tutorial, you will learn what is Boyer Moore Algorithm, what is it used for, and how to implement it in Java Programming Language. What is the Boyer Moore Algorithm It is an efficient string searching algorithm used to look for specific patterns in a string or a text file. The name...
https://www.codespeedy.com/boyer-moore-algorithm-in-java/
CC-MAIN-2020-45
refinedweb
301
70.13
Example program illustrating use of the ns3::Ptr smart pointer. More... #include "ns3/ptr.h" #include "ns3/object.h" #include "ns3/command-line.h" #include <iostream> Go to the source code of this file. Example program illustrating use of the ns3::Ptr smart pointer. Definition in file main-ptr.cc. Set g_ptr to NULL. De...
https://www.nsnam.org/doxygen/main-ptr_8cc.html
CC-MAIN-2020-16
refinedweb
112
56.21
In Doodle: Part 1, I introduced the Doodle application; a program for editing drawings. In that article the application was little more than a graphics canvas and an input device. In this article, I add an application framework complete with a document-view architecture. The document-view model is a powerful applicatio...
http://www.webreference.com/programming/javascript/gr/column21/
crawl-002
refinedweb
321
54.83
QML States Controlling En Ar Bg De El Es Fa Fi Fr Hi Hu It Ja Kn Ko Ms Nl Pl Pt Ru Sq Th Tr Uk Zh Contents Introduction QML offers very powerful qml-qtquick-state to model states and dynamic behaviors. We refer to a state as a collection of parameters describing an entity at a given moment. The behavior of the entity c...
https://wiki.qt.io/index.php?title=QML_States_Controlling&printable=yes
CC-MAIN-2020-10
refinedweb
1,094
52.49
Royale API TypesRoyale API Types Type definitions for the Royale API InstallationInstallation You can install this package using a package manager like npm: npm install royale-api-types Note: This package is based on the latest Node.js LTS version. It may work with older versions, but it is not guaranteed. DescriptionD...
https://www.npmjs.com/package/royale-api-types
CC-MAIN-2022-40
refinedweb
229
56.25
Conditional Branching Statements While methods branch unconditionally, often you will want to branch within a method depending on a condition that you evaluate while the program is running. This is known as conditional branching. Conditional branching statements allow you to write logic such as “If you are over 25 year...
https://www.oreilly.com/library/view/learning-c/0596003765/ch06s02.html
CC-MAIN-2021-21
refinedweb
270
54.63
(One of my summaries of a talk at the 2018 european djangocon.) SQL. The “language to talk to databases in a structured way”. The ORM. Object Relational Mapper. The magic that makes it all work in django (even though there’s no magic in there). The talk is about the experience of experienced programmers that, for the f...
https://reinout.vanrees.org/weblog/2018/05/24/03-orm.html
CC-MAIN-2022-21
refinedweb
364
76.82
On 11/23/2020 3:44 PM, David Mertz wrote: I). I just commented on Steve's post over on Discourse. The problem with this is that the called function (m.case, here) needs to have access to the caller's namespace in order to resolve the expressions, such as StringNode and PairNone. This is one of the reasons f-strings wer...
https://mail.python.org/archives/list/python-dev@python.org/message/CA6FJTECBEOZFKH3OC4YHT2QJWYKCTW5/
CC-MAIN-2021-21
refinedweb
152
70.63
Take 40% off Tiny Python Projects by entering fccclark into the discount code box at checkout at manning.com. It’s not easy to create passwords which are both difficult to guess and easy to remember. An XKCD comic () describes an algorithm which provides both security and recall by suggesting that a password be compose...
https://freecontent.manning.com/password-strength-generating-a-secure-and-memorable-password/
CC-MAIN-2022-05
refinedweb
5,409
65.62