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 |
|---|---|---|---|---|---|
2. Sorting 2.1 Insertion Sort 2.2 Shell Sort 2.3 Quicksort 2.4 Comparison of Methods 3. Dictionaries 3.1 Hash Tables 3.2 Binary Search Trees 3.3 Red-Black Trees 3.4 Skip Lists 3.5 Comparison of Methods 4. Code Listings 4.1 Insertion Sort Code 4.2 Shell Sort Code 4.3 Quicksort Code 4.4 Qsort Code 4.5 Hash Table Code 4.... | https://ru.scribd.com/document/128681723/Algorithm-Book | CC-MAIN-2019-47 | refinedweb | 10,544 | 55.44 |
Category: Distributed Systems
TWS-4: Gossip protocol: Epidemics and rumors to the rescue
Having
Thinking Web Scale (TWS-3): Map-Reduce – Bring compute to data
In the last decade and a half, there has arisen a class of problem that are becoming very critical in the computing domain. These problems deal with computing in... | https://gigadom.in/category/distributed-systems/ | CC-MAIN-2021-39 | refinedweb | 2,677 | 62.68 |
Debouncing buttons in AVR C++
On the face of it, reading the open/closed state of a button should be straightforward. You would just wire up the button circuit and tap the current flow into one of the Arduino digital pins configured for input.
Unfortunately you will soon discover that it’s just not that simple. At the ... | http://andybrown.me.uk/2010/11/21/debouncing-buttons-in-avr-c/ | CC-MAIN-2017-17 | refinedweb | 772 | 51.38 |
New Data Source Page (Report Manager)
Use the New Data Source page to create a shared data source item. A shared data source defines a connection to an external data source. With a shared data source, you can create and maintain the settings for the data source connection separately from the reports that use the data s... | http://technet.microsoft.com/en-US/library/ms180077(v=sql.90) | CC-MAIN-2014-41 | refinedweb | 809 | 53.61 |
Uncyclopedia:QuickVFD/archive8
From Uncyclopedia, the content-free encyclopedia
March 4th
Sod off Bryan Uy Category:Mars Personal Speak Category:Mandarin Phonetic Symbols Babel:Zh-hant/ㄅㄆㄇㄈ Babel talk:Zh-hant/ㄅㄆㄇㄈ Babel:Zh-hant/孔乙己 Babel:Zh-hant項少龍 Category:Mandarin Phonetic Symbol Category:Mandarin Phonetic symbol Tem... | http://uncyclopedia.wikia.com/wiki/Uncyclopedia:QuickVFD/archive8 | CC-MAIN-2014-52 | refinedweb | 6,975 | 57.37 |
Posted 22 Sep 2011
Link to this post
D:\CI\eZone_Working\eZoneUITests\eZoneUITests.csproj(91,3): error MSB4019: The imported project "C:\Program Files (x86)\MSBuild\Telerik\WebUITestStudio\Telerik.WebUITestStudio.targets" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exi... | http://www.telerik.com/forums/cruisecontrol-net | CC-MAIN-2017-22 | refinedweb | 1,956 | 57.87 |
Modular plugin programming
Hi All,
I'm writing a plugin that imports, processes and exports 3d files (whatever cinema4d supports). It has two way of working:
- using parameter -scene, it checks merges all the top level objects and check if there are duplicates, and then checks if the object is already stored in a datab... | https://plugincafe.maxon.net/topic/11083/modular-plugin-programming | CC-MAIN-2020-10 | refinedweb | 390 | 66.94 |
A package is a name for a group of related classes and interfaces. In Chapter 3, we discussed how Java uses package names to locate classes during compilation and at runtime. In this sense, packages are somewhat like libraries; they organize and manage sets of classes. Packages provide more than just source code-level ... | https://flylib.com/books/en/4.122.1.55/1/ | CC-MAIN-2021-25 | refinedweb | 1,410 | 55.84 |
IRC log of tagmem on 2002-11-04
Timestamps are in UTC.
19:43:21 [RRSAgent]
RRSAgent has joined #tagmem
19:43:24 [Zakim]
Zakim has joined #tagmem
19:43:44 [Stuart]
So what is the magic incantation to get these two along?
19:45:08 [Ian]
"/invite Zakim"
19:45:12 [Ian]
"/invite RRSAgent"
19:51:06 [Ian]
Ian has changed the ... | http://www.w3.org/2002/11/04-tagmem-irc.html | CC-MAIN-2016-18 | refinedweb | 4,305 | 80.92 |
We pay for user submitted tutorials and articles that we publish. Anyone can send in a contributionLearn Studio glitches… so I pressed F5 and was proved wrong after getting the following runtime error:
Compiler Error Message: BC30560: ‘ScriptManager’ is ambiguous in the namespace ‘System.Web.UI’
After doing some checki... | http://www.dev102.com/2008/03/21/ajax-scriptmanager-error-bc30560/ | CC-MAIN-2016-40 | refinedweb | 1,539 | 68.36 |
OpenGL Discussion and Help Forums
>
DEVELOPERS
>
OpenGL coding: beginners
> Visual c++ 6.0 and glut?
PDA
View Full Version :
Visual c++ 6.0 and glut?
LeprA
10-17-2000, 07:08 AM
I just wonderd if Visual C++ 6.0 can use glut? If it works How do I do it?
Inquisitor
10-17-2000, 07:17 AM
#include <GL\glut.h>
It's that simpl... | https://www.opengl.org/discussion_boards/archive/index.php/t-134217.html | CC-MAIN-2016-22 | refinedweb | 710 | 75.91 |
C++ Loop Statements. Repetition Revis.
Repetition Revisited
Using OCD, design and implement a function that, given a menu, its first valid choice, and its last valid choice, displays that menu, reads a choice from the user, and returns a value guaranteed to be (i) a valid choice from the menu, and (ii) a choice chosen ... | http://www.slideserve.com/dallon/c-loop-statements | CC-MAIN-2017-43 | refinedweb | 1,024 | 62.78 |
What is the use of a Junit before and Test package in java? how can i use it with netbeans?
Can I have more than one method with @Parameters in junit test class which is running with Parameterized class ?
@RunWith(value = Parameterized.class)
public class JunitTest6 {
private String str;
public JunitTest6(String region... | http://www.java2s.com/Questions_And_Answers/Java-Testing/junit/Annotation.htm | CC-MAIN-2013-20 | refinedweb | 717 | 58.69 |
Download presentation
Presentation is loading. Please wait.
Published byDevin Sarge Modified about 1 year ago
1
Chapter 10: The Social Discount Rate, Cost of Public Funds, and the Value of Information © Harry Campbell & Richard Brown School of Economics The University of Queensland BENEFIT-COST ANALYSIS BENEFIT-COST AN... | http://slideplayer.com/slide/3880331/ | CC-MAIN-2016-50 | refinedweb | 2,186 | 53.34 |
Im really new to java and need help with class.
Here is what im trying to do
Write a class that accepts a user's hourly rate of pay and the number of hours worked.
Display the user's gross pay (gross pay = hours worked * hourly rate),
the tax withheld (tax withheld = gross pay * tax rate) and the net pay
(net pay = gro... | http://www.javaprogrammingforums.com/whats-wrong-my-code/35942-payroll-code-problem.html | CC-MAIN-2016-30 | refinedweb | 156 | 60.82 |
Build a Basic Ticket Sales App With ASP.NET Core, Angular, and Stripe
Build a Basic Ticket Sales App With ASP.NET Core, Angular, and Stripe
Learn to use these great frameworks along with a free Okta developer account to create and secure a full-stack web application.
Join the DZone community and get the full member exp... | https://dzone.com/articles/build-a-basic-ticket-sales-app-with-aspnet-core-an | CC-MAIN-2019-51 | refinedweb | 3,137 | 50.12 |
Deprecation policy
From Biopython
As bioinformatics and computational biology are developing quickly, some of previously developed Biopython modules may no longer be relevant in today's world. To keep the code base clean, we aim to deprecate and remove such code from Biopython, while avoiding any nasty surprises for us... | http://biopython.org/w/index.php?title=Deprecation_policy&direction=prev&oldid=3575 | CC-MAIN-2015-48 | refinedweb | 259 | 53.21 |
pulling my hair out on this because I don’t understand…
I have 2 methods/actions in the same ‘placements’ controller that I am
concerned with…
find, works properly…
view code from find.rhtml
new, which throws me an error…
undefined method `clwholename’ for #Placement:0xb78e0dc0
which has the same exact view code as abo... | https://www.ruby-forum.com/t/undefined-method-and-auto-complete/80130 | CC-MAIN-2018-47 | refinedweb | 161 | 58.62 |
Education technology
Catching on at a tool.
It can be used appropriately.
Or it can be misused and abused.
And even become a source of addiction.
The internet is a valuable research tool and source of knowledge.
But it is also the biggest time waster ever devised: gaming, social media, shopping, cat videos, and pornogr... | http://www.economist.com/node/21580136/comments | CC-MAIN-2014-23 | refinedweb | 3,800 | 61.36 |
#include <cel_license.h>
This class manages the cartridges.
For more information, see CartridgeManager.
Commit the reserve identified by the GUID.
Create a cartridge from unencrypted script.
This method is reserved for internal use.
For internal usage, see documents in
cel_baselib/opt/licenseSystem.
Obtain the list of ... | https://www.cuminas.jp/sdk/classCelartem_1_1License_1_1CartridgeManager.html | CC-MAIN-2017-51 | refinedweb | 107 | 55.5 |
22 June 2009
By clicking Submit, you accept the Adobe Terms of Use.
This article assumes that you have a working knowledge of ActionScript 3, and that you know how to use FTP for sending files to a web server. You may want to start by reading Chris Charlton's article, Building a Drupal site in 10 steps, which provides ... | http://www.adobe.com/devnet/flash/articles/drupal_flash.html | CC-MAIN-2015-11 | refinedweb | 5,045 | 68.5 |
>> −
def method_name expr.. end
You can represent a method that accepts parameters like this −
def method_name (var1, var2) expr.. end
You can set default values for the parameters, which will be used if method is called without passing the required parameters −
def method_name (var1 = value1, var2 = value2) expr.. end... | https://www.tutorialspoint.com/ruby/ruby_methods.htm | CC-MAIN-2022-33 | refinedweb | 252 | 61.97 |
1360281 story Patron Saint of the Internet 208 Posted by Hemos on Tuesday June 15, 1999 @09:50AM Quite a number of people have been writing with the news that the Catholic Church is considering naming a patron saint of the Internet. The strongest current contender is St. Isisdore, an 8th century Spanish saint, with is ... | http://slashdot.org/story/99/06/15/1357226/patron-saint-of-the-internet | CC-MAIN-2014-23 | refinedweb | 5,047 | 74.29 |
Improving .NET Core Kestrel performance using a Linux-specific transport
By
Tom Deseyn
July 24, 2018
August 9, 2018
+9
rating,
11
votes.
Transport abstraction
Kestrel supports replacing the network implementation thanks to the Transport abstraction. ASP.NET Core 1.x uses
libuv for its network implementation.
libuv is t... | http://ugurak.net/index.php/page/4/ | CC-MAIN-2018-47 | refinedweb | 10,393 | 57.37 |
Provides Jenkins notification integration with Slack or Slack compatible applications like RocketChat and Mattermost.
Install Instructions for Slack
Get a Slack account:
Configure the Jenkins integration:
Install this plugin on your Jenkins server:
- From the Jenkins homepage navigate to
Manage Jenkins
- Navigate to
... | https://plugins.jenkins.io/slack/ | CC-MAIN-2022-21 | refinedweb | 1,720 | 55.95 |
How to Get time of a Python program's execution
In this article, we will learn to calculate the time taken by a program to execute in Python. We will use some built-in functions with some custom codes as well. Let's first have a quick look over how the program's execution affects the time in Python.
Programmers must ha... | https://www.studytonight.com/python-howtos/how-to-get-time-of-a-python-programs-execution | CC-MAIN-2022-21 | refinedweb | 951 | 59.5 |
How to create Class in Python
In this article, we will learn to create a class in Python. We will look at the methodology, syntax, keywords, associated terms with some simple approaches, and some custom codes as well to better understand the topic of the class. Let's first have a quick look over what is a class, its ty... | https://www.studytonight.com/python-howtos/how-to-create-class-in-python | CC-MAIN-2022-21 | refinedweb | 541 | 62.38 |
By Steve Smith
Mobile apps can easily communicate with ASP.NET Core backend services.
View or download sample backend services code
The Sample Native Mobile App
This tutorial demonstrates how to create backend services using ASP.NET Core MVC to support native mobile apps. It uses the Xamarin Forms ToDoRest app as its n... | https://docs.microsoft.com/en-us/aspnet/core/mobile/native-mobile-backend | CC-MAIN-2017-34 | refinedweb | 1,662 | 50.02 |
Complete Roguelike Tutorial, using python3+pysdl2, part 1
Graphics
Setting it up
Ok, now that we got that out of our way let's get our hands dirty!"
Your project folder
Now create your project's folder. Inside it, create an empty file with a name of your choice. We're using manager.py. It'll make the tutorial easier to... | http://roguebasin.com/index.php?title=Complete_Roguelike_Tutorial,_using_python3%2Bpysdl2,_part_1&oldid=44286 | CC-MAIN-2020-16 | refinedweb | 421 | 73.17 |
Introduction
You are reading the documentation for Vue 3!
- Vue 2 documentation has been moved to v2.vuejs.org.
- Upgrading from Vue 2? Check out the Migration Guide.
What is Vue?
Vue (pronounced /vjuː/, like view) is a JavaScript framework for building user interfaces. It builds on top of standard HTML, CSS and JavaSc... | https://vuejs.org/guide/introduction.html | CC-MAIN-2022-21 | refinedweb | 1,176 | 61.26 |
I created a program that accepts input from the keyboard and stores it in a string. Then it outputs the string in a file. This works, and is as follows:
The problem:The problem:Code:#include <fstream> #include <iostream> #include <string> using namespace std; int main() { string sentence; ofstream file; char filename[1... | https://cboard.cprogramming.com/cplusplus-programming/104034-multiple-lines-string.html | CC-MAIN-2017-13 | refinedweb | 246 | 84.07 |
This project was written using a same method as is recommended when using the Microsoft
DirectX Framework, although there is no library to build in DirectX 8 as there was in
DirectX 7, so the files have to be included in the project. These files are now located in the folder
mssdk\samples\multimedia\common which includ... | http://www.codeproject.com/Articles/1402/DirectX-Template?msg=151596 | CC-MAIN-2016-07 | refinedweb | 2,231 | 65.46 |
Qt5 & invokeMethod
- J.Hilk Moderators last edited by
Hello everyone,
I have a - hopefully - simple question:
Is there a Qt5 Syntax-conform way to call QMetaObject::invokeMethod ?
For example I use something like this to call a function in the next event loop cycle:
QMetaObject::invokeMethod(this, "myFunction" ,Qt::Que... | https://forum.qt.io/topic/83278/qt5-invokemethod | CC-MAIN-2020-05 | refinedweb | 513 | 64.71 |
On Fri, May 11, 2012 at 08:09:52PM -0500, Rob Landley wrote:> However, 95% of this use case is already covered by FAT, considering> that most of these people are going to want to interchange with windows> and mac, neither of which are necessarily happy with an ext3 formatted> USB stick. (Sadly, that's what I normally d... | https://lkml.org/lkml/2012/5/13/2 | CC-MAIN-2016-44 | refinedweb | 183 | 58.32 |
On Sat, Apr 24, 1999 at 01:37:28PM -0700, Robert Woodcock wrote: > There is no practical reason why every piece of UNIX configuration can't be > put into a hierarchial tree with its own unique namespace. [1] Oh yes, you have this idea from Microsoft, right? :) > It's overweight if you have each program implement it all... | https://lists.debian.org/debian-devel/1999/04/msg01478.html | CC-MAIN-2017-09 | refinedweb | 114 | 74.69 |
Scrape Twitter data with Python
A complete guide on collecting and storing Tweets.
A couple of weeks back, I was working on a project that required me to analyze data from Twitter.
After a quick Google search, I realized that the most popular way to do this was with the Twitter API.
This API is called Tweepy, and there... | https://www.natasshaselvaraj.com/how-to-scrape-twitter/ | CC-MAIN-2022-27 | refinedweb | 380 | 71.75 |
Chapter 4
From IPRE Wiki
Sensing the World
Cole Sear in Shayamalan's Sixth Sense is not refering to dead bodies lying in front of him (for those who have not seen the movie). The five senses that most humans relate to are: touch, vision, balance, hearing, and taste or smell. In all cases our bodies have special sensory... | http://wiki.roboteducation.org/Chapter_4 | crawl-001 | refinedweb | 4,998 | 69.72 |
disabled indentation of namespace content in both the MonoDevelop and project-specific settings. However, pressing Enter after the opening brace of a namespace declaration still inserts an indent. What's worse, if I fix this manually and later press Enter after a statement in a method, the next line is indented as if ... | https://bugzilla.xamarin.com/40/4096/bug.html | CC-MAIN-2021-25 | refinedweb | 178 | 65.73 |
Provided by: aolserver4-dev_4.5.1-15_amd64
NAME
Ns_InfoAddress, Ns_InfoBootTime, Ns_InfoBuildDate, Ns_InfoConfigFile, Ns_InfoErrorLog, Ns_InfoHomePath, Ns_InfoHostname, Ns_InfoLabel, Ns_InfoNameOfExecutable, Ns_InfoPid, Ns_InfoPlatform, Ns_InfoServerName, Ns_InfoServerVersion, Ns_InfoServersStarted, Ns_InfoShutdownPend... | http://manpages.ubuntu.com/manpages/precise/man3/Ns_InfoAddress.3aolserver.html | CC-MAIN-2019-43 | refinedweb | 637 | 52.36 |
Contents
The pImpl idiom is a useful idiom in C++ to reduce compile-time dependencies. Here is a quick overview of what to keep in mind when we implement and use it.
What is it?
The pImpl Idiom moves the private implementation details of a class into a separate structure. That includes private data as well as non-virtu... | https://arne-mertz.de/2019/01/the-pimpl-idiom/ | CC-MAIN-2022-05 | refinedweb | 1,867 | 52.7 |
Solving problem is about exposing yourself to as many situations as possible like Modify tick label Modify tick label text, which can be followed any time. Take easy to follow this discuss.
I want to make some modifications to a few selected tick labels in a plot.
For example, if I do:
label = axes.yaxis.get_major_tick... | https://discuss.dizzycoding.com/modify-tick-label-text/ | CC-MAIN-2022-33 | refinedweb | 1,078 | 60.72 |
05-24-2012 07:18 AM - edited 05-24-2012 07:23 AM
This is a related post to thread
I noticed that most of IVI-C drivers, which is created with Pacific Mindworks Nimbus can not be detected for its IVI class, when converting the IVI-C driver .fp file with LabVIEW Instrument Driver Import Wizard 2.0 (use with LabVIEW 2011)... | http://forums.ni.com/t5/Instrument-Control-GPIB-Serial/LabVIEW-Driver-Import-Wizard-does-not-recognize-IVI-class/m-p/2011648 | CC-MAIN-2015-11 | refinedweb | 1,925 | 65.62 |
*
importing other classes and using classpath
donald croswell
Greenhorn
Joined: Mar 23, 2001
Posts: 6
posted
Mar 28, 2001 19:54:00
0
Howdy
I am having trouble setting my classpath to include an extra class file.
Some of my problems could be:
1. is the class path the same path that I set in DOS? (ie.path=c:/jdk1.3/bin)... | http://www.coderanch.com/t/388422/java/java/importing-classes-classpath | CC-MAIN-2014-10 | refinedweb | 1,436 | 74.49 |
RSS is an acronym for both RdfSiteSummary and ReallySimpleSyndication. The history of RSS covers several periods:
prior to March 1999 -- development of technologies used in RSS
March 1999 to July 1999 -- RDF Site Summary 0.9
July 1999 to Late 1999 -- Rich Site Summary 0.91, Netscape leaves the scene
Late 1999 to August... | http://www.intertwingly.net/wiki/pie/RssHistory?action=highlight&value=DanBri | CC-MAIN-2017-47 | refinedweb | 174 | 58.89 |
PHP files.
Also using the closing tag to generate HTML output within a method is omitted. Instead use heredoc syntax if needed.:.
Function names may only contain alphanumeric characters. Underscores are not permitted. Numbers are not allowed in function names. heavily.
Variable names may only contain alphanumeric char... | http://framework.zend.com/wiki/display/ZFDEV/ZF+Coding+Standards+%28RC%29 | crawl-002 | refinedweb | 1,208 | 73.58 |
Agenda
See also: IRC log
MikeS: I posted a draft of the spec that I have been working on. It would be helpful as a starting point.
<MikeSmith>
<pimpbot> Title: HTML: The Markup Language (at)
MikeS: I realize very few have
looked at it. Has anyone initial comments?
... Gives outline of abstract
... The doc defines autho... | http://www.w3.org/2008/11/13-html-wg-minutes.html | CC-MAIN-2015-35 | refinedweb | 1,564 | 76.01 |
Has the transform changed since the last time the flag was set to 'false'?
A change to the transform can be anything that can cause its matrix to be recalculated: any adjustment to its position, rotation or scale. Note that operations which can change the transform will not actually check if the old and new value are d... | https://docs.unity3d.com/kr/2017.1/ScriptReference/Transform-hasChanged.html | CC-MAIN-2019-30 | refinedweb | 104 | 58.89 |
Unlike vsprintf(), the maximum number of characters that can be written to the buffer is specified in
vsnprintf().
vsnprintf() prototype
int vsnprintf( char* buffer, size_t buf_size, const char* format, va_list vlist );
The
vsnprintf() function writes the string pointed to by format to a character string buffer. The ma... | https://www.programiz.com/cpp-programming/library-function/cstdio/vsnprintf | CC-MAIN-2020-16 | refinedweb | 278 | 61.97 |
[Date Index] [Thread Index] [Author Index]
Re: namespaces
- To: mathgroup at smc.vnet.net
- Subject: [mg121550] Re: namespaces
- From: "Harvey P. Dale" <hpd1 at nyu.edu>
- Date: Mon, 19 Sep 2011 07:06:21 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <201109180813.EAA06414@smc.vnet.net>... | http://forums.wolfram.com/mathgroup/archive/2011/Sep/msg00389.html | CC-MAIN-2018-17 | refinedweb | 106 | 55.5 |
Learn to Use ITensor
Version 1.x to 2.0 Transition Guide
Below are the major interface changes in ITensor version 2.0 versus 1.x. Most of this interface is already supported, although optional, in the 1.x branch. Following version 2.0 these changes are mandatory.
General Tips for Updating
When updating, remove your old... | http://itensor.org/docs.cgi?page=v2transition_guide | CC-MAIN-2019-18 | refinedweb | 660 | 70.39 |
kig
#include <kig_commands.h>
Detailed Description
this class monitors a set of DataObjects for changes and returns an appropriate ChangeObjectImpsCommand if necessary.
E.g. MovingMode wants to move certain objects, so it monitors all the parents of the explicitly moving objects:
It then moves them around, and when it ... | https://api.kde.org/4.14-api/kdeedu-apidocs/kig/html/classMonitorDataObjects.html | CC-MAIN-2019-51 | refinedweb | 155 | 51.65 |
updated copyright years updated copyright-blacklist (added libltdl) updated distributed files (don't distribute files without distribution terms) added copyright to preforth.in and build-ec.in
\ paths.fs path file handling 03may97jaw \ Copyright (C) 1995,1996,1997,1998,2000,2003,2004. \ : path-allot ( umax -- ) \ gfor... | http://www.complang.tuwien.ac.at/cvsweb/cgi-bin/cvsweb/gforth/kernel/paths.fs?rev=1.34;sortby=rev;f=h;only_with_tag=v0-7-0 | CC-MAIN-2021-10 | refinedweb | 533 | 80.92 |
08 March 2011 06:15 [Source: ICIS news]
By Junie Lin
?xml:namespace>
Spot MMA prices broke free from 24 weeks of stagnation in late February, according to ICIS data. Surplus inventories of downstream light-guided panels (LGP) for light emitting diode (LED) TV industry had kept MMA demand in doldrums since September las... | http://www.icis.com/Articles/2011/03/08/9441178/asia-mma-may-extend-gains-thru-april-on-high-feedstock-costs.html | CC-MAIN-2014-41 | refinedweb | 369 | 56.79 |
About
Inko is an object-oriented programming language, focusing on making it fun and easy to write concurrent programs, without the headaches. It tries to achieve this by combining various features, such as its error handling model, a high performance garbage collector, the ability to easily perform concurrent tasks, a... | https://inko-lang.org/about/ | CC-MAIN-2018-51 | refinedweb | 933 | 58.08 |
On Sep 25, 2002 15:44 -0400,. One known problem - don't use it with NFS on top - it will overflow the stack in do_split (it may even overflow without NFS, but in the presence of interrupts or something). A sub-optimal fix is below (the "optimal" fix is not yet working, but avoids the allocation and the potential panic ... | https://www.redhat.com/archives/ext3-users/2002-September/msg00146.html | CC-MAIN-2015-32 | refinedweb | 207 | 60.95 |
#include <sys/cdefs.h>
#include <arch/types.h>
Go to the source code of this file.
Stack traces.
The functions in this file deal with doing stack traces. These functions will do a stack trace, as specified, printing it out to stdout (usually a dcload terminal). These functions only work if frame pointers have been enab... | http://cadcdev.sourceforge.net/docs/kos-2.0.0/stack_8h.html | CC-MAIN-2018-05 | refinedweb | 109 | 75.3 |
python-cephclient 0.1.0.5
A client library in python for the Ceph REST API.
python-cephclient is a python module to communicate with Ceph’s REST API (ceph-rest-api).
This is currently a work in progress.
ABOUT
Client
The cephclient class takes care of sending calls to the API through HTTP and handle the responses. It s... | https://pypi.python.org/pypi/python-cephclient | CC-MAIN-2017-30 | refinedweb | 516 | 57.77 |
A computer algebra system written in pure Python . To get started to with contributing
Hi there, novice SymPy user here. (Starting to use it as part of teaching maths at a uni.) Before posting this as an issue: I suspect that
log_to_real() does not quite convert complex logarithms to real functions with the same deriva... | https://gitter.im/sympy/sympy?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge | CC-MAIN-2022-40 | refinedweb | 370 | 60.24 |
We now have a ReSharper plugin (for version 7.1) for Essential Studio ASP.NET MVC that provides some excellent tips and warnings on how to fix errors as you develop using our MVC controls.
Here are some scenarios where our plugin provides warnings as well as fixes for some issues.
Ensure appropriate HttpHandlers and Ha... | https://blog.syncfusion.com/post/plugin-for-resharper-supports-syncfusion-mvc-projects.aspx | CC-MAIN-2019-04 | refinedweb | 430 | 57.87 |
AIO_CANCEL(3) Linux Programmer's Manual AIO_CANCEL(3)
aio_cancel - cancel an outstanding asynchronous I/O request
#include <aio.h> int aio_cancel(int fd, struct aiocb *aiocbp); Link with -lrt..
EBADF fd is not a valid file descriptor. ENOSYS aio_cancel() is not implemented.
The aio_cancel()_cancel() │ Thread safety │ M... | https://man7.org/linux/man-pages/man3/aio_cancel.3.html | CC-MAIN-2021-17 | refinedweb | 137 | 60.01 |
I’m trying this simple idea:
l = lambda { yield + 1 } l.call { 2 } # I was expecting 3
Expecting the result to be
3, but I get
LocalJumpError: no block given (yield).
So I can’t pass a block (
{ 2 } in the example) to a lambda in the same way I would do with a method.
The same example with methods would be:
def m yield... | https://www.ruby-forum.com/t/can-procs-or-lambdas-receive-blocks/261547 | CC-MAIN-2021-31 | refinedweb | 132 | 78.99 |
Swish.QName
Description
This module defines an algebraic datatype for qualified names (QNames),
which represents a
URI as the combination of a namespace
URI
and a local component (
LName), which can be empty.
Although RDF supports using IRIs, the use of
URI here precludes this,
which means that, for instance,
LName onl... | http://hackage.haskell.org/package/swish-0.9.0.10/docs/Swish-QName.html | CC-MAIN-2016-44 | refinedweb | 343 | 63.9 |
The Silverlight Toolkit includes a couple new panels, one of which is the incredibly handy WrapPanel.
[ Updated Jan. 4 to include working example ]
In its most straight forward use, the WrapPanel allows you to add UIElements which it positions sequentially (typically left to right) until there is insufficient space, at... | http://jesseliberty.com/2009/01/02/silverlight-toolkit-wrappanel/ | CC-MAIN-2021-17 | refinedweb | 781 | 66.33 |
{-# LANGUAGE ScopedTypeVariables #-} -- | Basic pipe combinators. module Control.Pipe.Combinators ( -- ** Control operators tryAwait, forP, -- ** Composition ($$), -- ** Producers fromList, -- ** Folds -- | Folds are pipes that consume all their input and return a value. Some of -- them, like 'fold1', do not return any... | http://hackage.haskell.org/package/pipes-core-0.0.1/docs/src/Control-Pipe-Combinators.html | CC-MAIN-2015-06 | refinedweb | 850 | 67.18 |
This is an excerpt from the Scala Cookbook (partially modified for the internet). This is Recipe 4.1, “How to create a primary constructor in a Scala class.”
Problem
You want to create a primary constructor for a Scala class, and you quickly find that the approach is different than Java.
Solution
The primary constructo... | https://alvinalexander.com/scala/how-to-create-primary-class-constructors-in-scala | CC-MAIN-2019-51 | refinedweb | 1,164 | 60.35 |
wolkenkit-eventstorewolkenkit-eventstore
wolkenkit-eventstore is an open-source eventstore for Node.js that is used by wolkenkit.
InstallationInstallation
$ npm install wolkenkit-eventstore
Quick startQuick start
To use wolkenkit-eventstore first you need to add a reference to your application. You also need to specify... | https://preview.npmjs.com/package/wolkenkit-eventstore | CC-MAIN-2021-39 | refinedweb | 472 | 54.66 |
Hiya bullets do the talking:
- How to audit which versions of NTLM are being used
- What to do now that you have Windows Server 2008 R2 Forest Functional Level in place
- USMT security-ntlm-lmc.man XmlException error
- FRS events missing in KB 308406 for Windows Server 2003 and later
- Why you can’t have “non-admin adm... | https://blogs.technet.microsoft.com/askds/2011/07/29/friday-mail-sack-anchors-aweigh-edition/ | CC-MAIN-2016-30 | refinedweb | 2,211 | 61.77 |
mount.ecryptfs_private is broken on arm
Bug Description
=======
SRU Justification:
1. Impact: mount.ecryptfs_
2. Development fix: the infinite loop happens because an unsigned char is being compared to -1 as a condition to end the loop
3. Stable fix: same as development fix
4. Test case: run 'mount.
5. Regression poten... | https://bugs.launchpad.net/ubuntu/oneiric/+source/ecryptfs-utils/+bug/884407 | CC-MAIN-2017-13 | refinedweb | 801 | 64.51 |
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 17 Feb 2004 at 17:25, Roman Yakovenko wrote: > 1. To ask David Abrahams how we should export unnamed enums ( defined > within class and within some namespace ). Believe it or not we have done our best on this - six months ago unnamed enums just didn't work at all. If you... | https://mail.python.org/pipermail/cplusplus-sig/2004-February/006522.html | CC-MAIN-2016-44 | refinedweb | 132 | 74.79 |
.
3. Addition of x86_64 vector math functions to Glibc
3.1. Goal
Main goal is utilize of SIMD constructs in OpenMP4.0 (#2.8 in and Cilk Plus (#6-8 in) on x86_64 by adding vector implementations of several vector math functions (float and double versions).
3.2. What is vector math functions
Vector math functions are vec... | https://sourceware.org/glibc/wiki/libm | CC-MAIN-2019-43 | refinedweb | 804 | 65.22 |
As part of my ongoing adventures in C#, I decided to write a game, largely because people seem to like them, and I had an Asteroids game already written using C++/DirectX, and I figured that meant I had the program logic and the graphics, I just needed the parts I wanted to learn, such as handling keyboard input, resou... | http://www.codeproject.com/KB/game/collision.aspx | crawl-002 | refinedweb | 1,098 | 67.49 |
- XQuery Advantages
- Working with XQuery Methods
- Conclusion
It has probably taken longer for XML to become a mainstream part of today’s applications than many developers first thought. XML is now becoming more widely used as wireless devices are becoming more secure and with better bandwidth. New technologies such a... | http://www.informit.com/articles/article.aspx?p=468058&seqNum=3 | CC-MAIN-2018-34 | refinedweb | 350 | 62.48 |
Board index » C Language
All times are UTC
> Greetings, > Can anyone tell me how to separate a number from a string? > E.g., how do I reduce "abc 12.3 cde" to "12.3"? From there on, it's > trivial..
char *str = "abc 12.3 cde"; double d = atof( str + 4 );
atof will stop converting when it hits the "space" following the ... | http://computer-programming-forum.com/17-c-language/f330fb43b76f8fda.htm | CC-MAIN-2019-13 | refinedweb | 660 | 76.11 |
XCTest Testing Framework
Overview
Qualified supports the XCTest testing framework.
XCTest Quick Start
All tests start with a subclass of
XCTestCase. You can then add one or more test case methods to that class, each of which must start with
test.
You must also include the main entry point method to start the tests.
Ass... | https://www.qualified.io/kb/languages/swift/xctest | CC-MAIN-2020-40 | refinedweb | 118 | 66.23 |
Python client for parsing SCOTUS cases from the granted/noted and orders dockets.
Project Description
Release History
Download Files
Getting started
pip install nyt-docket
Using nyt-docket
Demo app
Run the demo app.
python -m docket.demo
Modules
Use the docket loader manually from within your Python script.
Grants (new... | https://pypi.org/project/nyt-docket/0.0.6/ | CC-MAIN-2017-43 | refinedweb | 112 | 63.05 |
"mop" stands for "Meta-Object Protocol", and it's a term closely related to CLOS. I've mentioned getting annoyed at a certain piece of it last time, when I needed to iterate over CLOS instance slots for some weird reason. It turns out that due to the way MOP support is implemented, this is a non-trivial thing to do por... | http://langnostic.blogspot.com/2012/08/cl-mop-or-yak-shaving-for-fun-and.html | CC-MAIN-2017-39 | refinedweb | 458 | 62.51 |
When [P1858R1] was presented to EWGI in Prague [EWGI.Prague], that group requested that the structured bindings extension in that proposal was split off into its own paper. This is that paper, and the original paper continues on as an R2 [P1858R2].
Assuming the original paper gets adopted, and we end up with facilities... | http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2020/p2120r0.html | CC-MAIN-2020-45 | refinedweb | 821 | 57.06 |
Technical Support
On-Line Manuals
CARM User's Guide
Discontinued
#include <string.h>
unsigned char *strrchr (
const unsigned char *string, /* string to search */
char c); /* character to find */
The strrchr function searches string for
the last occurrence of c. The null character
terminating string is included in the s... | http://www.keil.com/support/man/docs/ca/ca_strrchr.htm | CC-MAIN-2020-16 | refinedweb | 112 | 66.33 |
Macros are simple string replacementssuggest change
Macros are simple string replacements. (Strictly speaking, they work with preprocessing tokens, not arbitrary strings.)
#include <stdio.h> #define SQUARE(x) x*x int main(void) { printf("%d\n", SQUARE(1+2)); return 0; }
You may expect this code to print
9 (
3*3), but a... | https://essential-c.programming-books.io/macros-are-simple-string-replacements-f15a42d0d010487394a011cab0b7fdef | CC-MAIN-2021-25 | refinedweb | 544 | 64.24 |
Asked by:
how to exchange data between two property pages in the same program
i am using Visual C++, i want to exchange data between two property pages in the same program......... means i need the data from a member variable in first property page to the another property page.
can anybody help me.........Monday, March... | http://social.msdn.microsoft.com/Forums/en-US/38b4cb21-6607-4bae-9b0b-24de2a296ce0/how-to-exchange-data-between-two-property-pages-in-the-same-program?forum=vcmfcatl | CC-MAIN-2014-41 | refinedweb | 1,127 | 64.61 |
Bouncing a Ball with Mixed Integer Programming
Edit: A new version.
Here I made a bouncing ball using mixed integer programming in cvxpy. Currently we are just simulating the bouncing ball internal to a mixed integer program. We could turn this into a control program by making the constraint that you have to shoot a ba... | https://www.philipzucker.com/bouncing-a-ball-with-mixed-integer-programming/ | CC-MAIN-2021-39 | refinedweb | 714 | 57.77 |
Twitter Follower Value, revisited
April 1, 2010 4 Comments
In my last post, I presented a Groovy class for computing Twitter Follower Value (TFV), based on Nat Dunn’s definition of the term (number of followers / number of friends). That worked just fine. Then I moved on to calculating Total Twitter Follower Value (TTF... | https://kousenit.org/2010/04/ | CC-MAIN-2017-17 | refinedweb | 1,390 | 60.72 |
Python in the Computer science branch works under libraries. One of the libraries is NumPy which is very essential for coding. It is generally used to work with arrays. It adds support for large, multi-dimensional arrays and matrices, along with a large collection of high-level mathematical functions to operate on thes... | https://www.developerhelps.com/numpy/ | CC-MAIN-2022-40 | refinedweb | 677 | 57.37 |
When;
if (!DBNull.Value.Equals(reader["Age"]))
{
age = (int)reader["Age"];
}
This conversion seems ugly and it is all over the code. Is there any other elegant solution to this?
You could solve this with an extension method.
The extension method would look something like this:
public static TValue GetNullableValue<TVal... | https://blogs.msdn.microsoft.com/thottams/2008/06/30/dbnull-and-nullable-types/ | CC-MAIN-2018-05 | refinedweb | 645 | 65.12 |
Have you wanted to start playing with Perl 6 but find yourself wondering what to write? I use Pugs, a Perl 6 implementation being written in Haskell and have been tremendously enjoying Perl 6. Like many, I’m impatient, but the work on Perl 6 has been progressing quite well and I’m quite keen to see the alpha. However, ... | http://www.oreillynet.com/onlamp/blog/2006/12/99_problems_in_perl_6.html | crawl-002 | refinedweb | 1,560 | 72.46 |
Am 16.04.12 23:57, schrieb Reimar Döffinger: > On 16 Apr 2012, at 23:43, Thilo Borgmann <thilo.borgmann at googlemail.com> > wrote: >> Am 16.04.12 21:51, schrieb Reimar Döffinger: >>> On 16 Apr 2012, at 17:36, Thilo Borgmann <thilo.borgmann at googlemail.com> >>> wrote: >>>> Am 14.04.12 18:05, schrieb Reimar Döffinger:... | http://ffmpeg.org/pipermail/ffmpeg-devel/2012-April/123398.html | CC-MAIN-2015-06 | refinedweb | 413 | 67.35 |
Caution: The documentation you are viewing is
for an older version of Zend Framework.
You can find the documentation of the current version at docs.zendframework.com
WSDL Accessor — Zend Framework 2 2.3.9 documentation class:
- input message with name $methodName . ‘Request’.
- output message with name $methodName . ‘R... | https://framework.zend.com/manual/2.3/en/modules/zend.soap.wsdl.html | CC-MAIN-2017-26 | refinedweb | 155 | 59.19 |
BigQuery python library
Project description
bqlib - BigQuery python library
A BigQuery python library. This library is a wrapper for bigquery_client.py.
Requirements
- Python 2.6 or later (not support for 3.x)
Setup
$ pip install bqlib
How to use
Single Query - BQJob
BQJob is a class to start the BigQuery job and fetch... | https://pypi.org/project/bqlib/0.0.1/ | CC-MAIN-2018-22 | refinedweb | 261 | 60.41 |
@tubular/time@tubular/time
Not all days are 24 hours. Some are 23 hours, or 25, or even 23.5 or 24.5 or 47 hours. Some minutes are 61 seconds long. How about a Thursday followed directly by a Saturday, giving Friday the slip? Or a September only 19 days long? This is a date/time library for handling both day-to-day sit... | https://www.npmjs.com/package/@tubular/time | CC-MAIN-2022-33 | refinedweb | 12,160 | 54.32 |
Problem code: POINTS
You are given a set of points in the 2D plane. You start at the point with the least X and greatest Y value, and end at the point with the greatest X and least Y value. The rule for movement is that you can not move to a point with a lesser X value as compared to the X value of the point you are on... | http://www.codechef.com/problems/POINTS | crawl-003 | refinedweb | 4,665 | 74.69 |
The due dates stored in the database are naive datetimes. That means they do not have a time zone associated with them. So while we can see a date and time, the datetime object is unaware of *when* that datetime is. What time zone at almost midnight are we talking about?
Standard practice is to store all due dates in U... | https://acloudguru.com/hands-on-labs/working-with-time-zones-in-python | CC-MAIN-2021-31 | refinedweb | 656 | 63.39 |
.Net Server and Perl Client (Code Snippets)
Expand Messages
- Hello,
I hope these code snippets are useful. I was new to Perl and
SOAP::Lite before I started. So I will also write the problems
faced and how they got solved.
.Net Service..
-----------------------------------------
<WebMethod()> _
Public Function methodX... | https://groups.yahoo.com/neo/groups/soaplite/conversations/topics/3124?source=1&var=1 | CC-MAIN-2017-30 | refinedweb | 369 | 77.84 |
This is an assignment that I'm having trouble with, these are the 2 questions I'm having trouble with.
2. Write a loop that counts only the odd numbers out of the first five numbers entered from the keyboard, but does not count (skips) the number 7. Use the keyword continue to skip 7 inside the loop
3. Write the same p... | https://www.daniweb.com/programming/software-development/threads/362221/help-with-loop | CC-MAIN-2017-34 | refinedweb | 142 | 77.67 |
Base class for handles to an AMQP session. More...
#include <qpid/client/SessionBase_0_10.h>
Base class for handles to an AMQP session.
Subclasses provide the AMQP commands for a given version of the protocol.
Close the session.
A session is automatically closed when all handles to it are destroyed.
Get the channel ass... | http://qpid.apache.org/apis/0.18/cpp/html/a00296.html | CC-MAIN-2013-20 | refinedweb | 146 | 61.33 |
Opaque handle to a map object. A map object is used to manipulate key value pairs using the am_map_* interface. Map objects are used by the policy interface in the C SDK to return any policy decision results and advices from Access Manager policy service, and to pass any environment variables for to the policy interfac... | http://docs.oracle.com/cd/E19636-01/819-2140/adobh/index.html | CC-MAIN-2014-42 | refinedweb | 127 | 53.51 |
Quote: Ok, I found this great article. Now, my question is. Should I use a game engine to create games? If I'll create a game and use a game engine, I can't reusing it's functionality because that's for the only specific engine that I've use. So in the end, I didn't make an engine at all. Honestly, I'm really confused ... | http://www.gamedev.net/topic/522990-write-games-not-engines/?p=4393421 | CC-MAIN-2013-20 | refinedweb | 1,348 | 65.35 |
Hello everyone, I'm obviously having trouble with a program that wants me to create a house with just five mouse clicks.
My program is simple create a house using only 5 mouse clicks.
This problem is from the book Python Programming by John Zelle
Its on page 162
This is what the book says on the problem:
You are to wri... | https://www.daniweb.com/programming/software-development/threads/94059/need-help-with-the-5-mouse-click-house-program | CC-MAIN-2018-05 | refinedweb | 322 | 85.28 |
Natural Bohemia Weaving Rattan Wall Decor Home Living Room Hanging Product Burlywood Sunburst Round Wall Mirror Decoration
US $6.80-$19.00 / Piece
5.0 Pieces (Min. Order)
Top Sponsored Listing
Furniture Mirrors Decor Wall Home Living Room Fish Rattan & Grass Mirror
US $2.79 / Piece
100 Pieces (Min. Order)
Decorative Af... | https://www.alibaba.com/countrysearch/CN/home-rattan.html | CC-MAIN-2022-05 | refinedweb | 979 | 62.24 |
Consider the following text:
"Mr. McCONNELL. yadda yadda jon stewart is mean to me. The PRESIDING OFFICER. Suck it up. Mr. McCONNELL. but noooo. Mr. REID. Really dude?"
And a list of words to split on:
["McCONNELL", "PRESIDING OFFICER", "REID"]
I want to have the output be the dictionary
{"McCONNELL": "yadda yadd jon s... | http://www.developersite.org/question-88479 | CC-MAIN-2019-22 | refinedweb | 281 | 73.58 |
Hi there. Great program, I'll give you some money when I'm not broke.
I've noticed a fun little problem when I try to compile this on Windows 7 Ultimate 32 bit edtion with python 2.5.4 and all the associated dependancies for python 2.5.4. Once the dist directory is created with the python setup.py py2exe command I can ... | http://sourceforge.net/p/pykeylogger/discussion/493189/thread/63d41d38/ | CC-MAIN-2014-23 | refinedweb | 681 | 68.81 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.