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
The following program can be used to test that the LED circuit is built correctly. It should turn the LEDs all on and then off. from microbit import * # turn on the LEDs pin0.write_digital(1) pin1.write_digital(1) pin2.write_digital(1) pin8.write_digital(1) sleep(1000) # turn them off pin0.write_digital(0) pin1.write_...
http://www.multiwingspan.co.uk/micro.php?page=pyex4
CC-MAIN-2019-09
refinedweb
966
80.51
In a previous post, I showed you how to remove comments from a Word file. In today’s post, I am going to show you how to accomplish the same scenario, but this time with Excel and PowerPoint files. Excel and PowerPoint have a Document Inspector feature, which is able to remove multiple types of data/content, including ...
https://blogs.msdn.microsoft.com/brian_jones/2009/04/20/removing-comments-from-excel-and-powerpoint-files/
CC-MAIN-2017-13
refinedweb
715
66.88
taskrunner 0.2.1 Execute a certain sequence of tasks and later their cleanups in reverse order.# TaskRunner Execute a certain sequence of tasks and later their cleanups. It is useful for running tasks with many varying configurations. It doesn't have any dependencies, just the standard library. ```python # file example...
https://pypi.python.org/pypi/taskrunner/0.2.1
CC-MAIN-2015-27
refinedweb
931
57.27
I've recently been using Microsoft's WCF REST starter kit to access information over the web, and have been very impressed with its ease of use and design, but I wanted more. I didn't want to evaluate the toolkit against a noddy little application that I'd thrown together. I wanted to test it against a busy system; one...
http://www.codeproject.com/Articles/37434/SongBird-a-Twitter-Hybrid-Smart-Client
CC-MAIN-2014-52
refinedweb
2,439
53.92
An alternative to handle state in React: the URL ! GaelS ・6 min read For a french version of this article, go here :) The state of a react app Managing the global state of a React app is an endless war between libraries. Therefore, in order to add my 2 cents, we'll see how to do the exact same thing using the URL and r...
https://dev.to/gaels/an-alternative-to-handle-global-state-in-react-the-url--3753
CC-MAIN-2019-22
refinedweb
1,928
65.93
Hi, I am trying to find all lists of length x with elements a, b, and c. To this end, I have created the class below, but it is not quite working and I am having trouble figuring out what to change. Does anyone have any insight? class c: def __init__(self): self.traits = 4 # number of list elements self.types = 3 # ele...
https://grokbase.com/t/python/python-list/04aq3e4j8x/simple-recursion-help
CC-MAIN-2022-40
refinedweb
126
78.75
If you by any chance would like to use the excellent python shell IPython as an embed shell on an application or virtual terminal, you can instantiate it using the IPShellEmbed class provided by IPython. Let’s say that your environment doesn’t like IPython default color scheme and you need to start it without colors (s...
https://mybravenewworld.wordpress.com/2007/11/27/how-to-embed-an-ipython-shell-in-your-application/
CC-MAIN-2020-40
refinedweb
140
57.3
NAME libblkid - block device identification library SYNOPSIS #include <blkid.h> cc file.c -lblkid DESCRIPTION The and is verified to still be valid before being returned to the user (if the user has read permission on the raw block device, otherwise not). The cache file also allows unprivileged users (normally anyone o...
https://man.cx/libblkid(3)
CC-MAIN-2020-29
refinedweb
203
53.41
__thrsigdivert — synchronously accept a signal #include <sys/signal.h> #include <sys/time.h> int __thrsigdivert(sigset_t set, siginfo_t *info, const struct timespec *timeout); The __thrsigdivert() function is used to implement sigwait(). It selects a signal pending for the calling thread or process from set, atomically...
https://man.openbsd.org/__thrsigdivert.2
CC-MAIN-2021-43
refinedweb
301
61.77
The first category of control flow statements we’ll talk about are the conditional statements. A conditional statement is a statement that specifies whether some associated statement(s) should be executed or not. C++ supports two basic kind of conditionals: if statements (which we introduced in lesson 4.10 -- Introduct...
https://www.learncpp.com/cpp-tutorial/if-statements-and-blocks/
CC-MAIN-2021-17
refinedweb
1,624
63.9
A package is a bundle of components that make up an application or piece of functionality that you are building. Packages are typically created so that their components can be clustered in a container for code migration, editing in an IDE, or distribution to other companies in the example of AppExchange packages. Packa...
https://developer.salesforce.com/page/An_Introduction_to_Packaging
CC-MAIN-2018-17
refinedweb
2,002
53.61
ClassNotFound Error when compiling multiple object classes I have a Store class which is an array of Person; I have a Person, Date, Student, Undergraduate and Postgraduate classes. Everything runs in Eclipse, and I have to run this from the Command Line. I've copied the src files and tried to run the main program, but ...
http://unixresources.net/faq/8318176.shtml
CC-MAIN-2019-04
refinedweb
415
65.73
Port |Bug 483856 - Use $(CURDIR) to make pymake happy| to comm-central RESOLVED FIXED in Thunderbird 3.1b2 Status -- trivial People (Reporter: kairo, Assigned: sgautherie) Tracking Firefox Tracking Flags (Not tracked) Details Attachments (1 attachment, 1 obsolete attachment) As mentioned in bug 509095, it's OK to wallp...
https://bugzilla.mozilla.org/show_bug.cgi?id=509147
CC-MAIN-2019-26
refinedweb
362
53.61
Created attachment 178412 [details] patch for updating the port - Update 1.15 --> 1.28 Changes: - remove p5-Scalar-Does from build dependencies as not needed. - add new build and test dependencies, except those which are core modules. - add NO_ARCH=yes - "portlint -AC" gives just non-relevant warnings. - Tested (with a...
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=215679
CC-MAIN-2020-24
refinedweb
415
52.87
Last Updated on December 10, 2020 Time series forecasting is a process, and the only way to get good forecasts is to practice this process. In this tutorial, you will discover how to forecast the monthly sales of French champagne with Python. Working through this tutorial will provide you with a framework for the steps...
https://machinelearningmastery.com/time-series-forecast-study-python-monthly-sales-french-champagne/
CC-MAIN-2021-31
refinedweb
12,355
66.33
by Jose Cruz Learn how to connect sensors to the Raspberry Pi and control them with Java. Published September 2014 The latest release of Java ME 8 includes a powerful API for controlling devices such as LEDs, relays, LCDs, sensors, motors, and switches. This article is the first in a three-part series about how to conn...
http://www.oracle.com/technetwork/articles/java/cruz-gpio-2295970.html
CC-MAIN-2016-30
refinedweb
2,638
54.12
Created by . Last modified on 2005/02/27. Last Revised: February 27, 2000 Ron Bickers This document describes setting up and using Zope () on BeOS. I wouldn't run this on BeOS to do any real serving, especially with BeOS's minimal select() support (see below). It should also be noted that NetPositive doesn't behave wit...
http://old.zope.org/Members/rbickers/Zope_on_BeOS/
crawl-003
refinedweb
1,132
69.68
So I have: C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework.NETFramework\v4.0\Profile\Client\ System.Speech.dll ...and I can add the reference to Visual Studio but using System.Speech etc won't register with the console, and therefore speech synthesis and recognition does not work. Would appreciate any a...
http://www.devsplanet.com/question/35282092
CC-MAIN-2017-09
refinedweb
205
57.27
I am currently trying to write a palindrome checker in Java that is case insensitive. I checked the other topics but none of them seems to solve my issue. Here's my code: import java.util.Scanner; public class Homework5_2 { public static void main(String[] args) { boolean flag = true; //palindrome or not Scanner consol...
https://codedump.io/share/58p7MMwr38GQ/1/java-palindrome-checker---case-insensitive
CC-MAIN-2017-09
refinedweb
217
68.57
Designing with Interfaces & Abstract Classes The Compiler Proof Can you prove or disprove that interfaces have a true is-a relationship? In the case of Java, you can let the compiler tell you. Consider the following code: Dog D = new Dog(); Head H = D; When this code is run through the compiler, the following error is ...
https://www.developer.com/lang/article.php/10924_3642656_3/Designing-with-Interfaces-amp-Abstract-Classes.htm
CC-MAIN-2018-09
refinedweb
416
58.21
Lists knowledge in these areas. Lists are not "built-in" as a language construct in Scala; they are defined by an abstract class List in the scala package, which comes with two subclasses for :: and Nil. In the following we present a quick tour through class List. This section presents a somewhat simplified account of ...
http://www.artima.com/pins1ed/implementing-lists.html
CC-MAIN-2014-15
refinedweb
3,036
63.59
Hi there, As a developer using some of PyXML's components with other users who use my software (in a Zope context) I would like to kick off a discussion on how to improve PyXML for the developer and end-user experience from a distribution/packaging point of view. I'm a relative outsider and may get things wrong, which ...
http://mail.python.org/pipermail/xml-sig/2003-February/009041.html
crawl-002
refinedweb
723
60.75
Last. Array marshaling Everything a C programmer needs to know about the Windows built-in directory object picker is here on MSDN. The plan for .NET is straightforward: create the managed structures, then the interfaces, and finally a CommonDialog derived class which hides all the nasty details. The first problem is th...
http://joco.name/2011/03/27/directory-object-dialog-in-net-and-advanced-com-marshaling/
CC-MAIN-2018-30
refinedweb
1,542
64.1
notorious for changing hardware designs for newer silicon, sometimesto add features, sometimes to fix bugs. While I understand thetemptation to boil a compatible value down to a nice clean genericstring, doing so only works in a perfect world. In the real world,you still need to have some information about the specific...
http://lkml.org/lkml/2011/6/19/90
CC-MAIN-2014-15
refinedweb
522
50.23
StartApp ANE is a native extension to use the services of StartApp, a Mobile Ad Network specialized in monetization and distribution of free mobile applications. Unlike other advertising platforms, StartApp pays you for every download of your own app. The extension is extremely easy to use and setup. It has a single me...
https://www.as3gamegears.com/air-native-extension/startapp-ane/
CC-MAIN-2019-39
refinedweb
173
65.93
Schemas and the Management Portal The Management Portal includes tools for viewing and working with both standard and custom schemas. You can find the tools here: Ensemble > Interoperate > HL7 v2.x > HL7 v2.x Schema Structures With this page and its tools you can do all of the following: View the message types and mess...
https://docs.intersystems.com/latest/csp/docbook/Doc.View.cls?KEY=THL7_CustomSchemas_3
CC-MAIN-2021-31
refinedweb
102
75.81
I'm a newcomer to Cocoa programming, having never got into Objective-C. Now, I am trying to learn it with Swift by going through the Aaron Hillegrass book “Cocoa Programming for Mac OS X, 4e" and implementing everything there in Swift instead of Obj-C. It has been going okay so far, but I hit a roadblock in Chapter 8 (...
https://codedump.io/share/CC5KqPwnWgf2/1/swift--quotcannot-find-object-class-with-namequot
CC-MAIN-2017-39
refinedweb
312
53.21
Apache2::ModXml2 - makes mod_xml2 funtionality available to perl modules use XML::LibXML; use Apache2::ModXml2 qw(:all); # The usual filter stuff is omitted # ... for (my $b = $bb->first; $b; $b = $bb->next($b)) { if ($b->type->name eq 'NODE') { # This is the most important interface function my $node = Apache2::ModXml...
http://search.cpan.org/~jzobel/Apache2-ModXml2-0.01/lib/Apache2/ModXml2.pm
CC-MAIN-2016-30
refinedweb
646
55.24
Sep 07, 2011 03:07 PM|webJose|LINK Ok, so this is the weirdest ever! Visual Studio 2008 Professional, ASP.net v2.0. I have a UserControl with a single control inside it: A Repeater. This repeater control called rpMain does generate the corresponding variable in the designer. The problem appears when I want to access th...
https://forums.asp.net/t/1718306.aspx?UserControl+not+creating+the+children+a+single+repeater+
CC-MAIN-2018-34
refinedweb
634
63.9
Manage a Fuseki-Triple Store Project description ### Fuseki CLI Tool A collection of scripts and utility functions to manage and update a Fuseki2 triple store. Requires a default.cfg and credentials to the google spreadsheet for this to work. The main update routine loads values from a google sheets spreadsheet. This f...
https://pypi.org/project/pyfusekiutil/
CC-MAIN-2022-27
refinedweb
266
70.9
Silver Stackable Bracelets Interested in custom pieces? These gorgeous silver bracelets with Let's get personal. View our CZ's look great alone & stacked! Personalized Collection & customized your piece today! New Bangles Find yourself falling in love with these gorgeous bracelets! 14k Gold Baby ID 14k Large Round Pers...
https://anyflip.com/fzll/pduk/basic
CC-MAIN-2021-49
refinedweb
329
67.55
Hug makes maintaining and packaging web applications easier, it is a grunt plugin. Tell it how to find your files and it will concatinate them in the right order of dependencies. It will also prevent accidental variable leakage between files by wrapping each file in a self-executing anonymous function. requirestatement...
https://www.npmjs.com/package/grunt-hug
CC-MAIN-2017-26
refinedweb
1,188
50.33
Walkthrough: Matrix Multiplication This step-by-step walkthrough demonstrates how to use C++ AMP to accelerate the execution of matrix multiplication. Two algorithms are presented, one without tiling and one with tiling. Before you start: Read C++ AMP Overview. Read Using Tiles. Make sure that Windows 7, Windows 8, Win...
http://msdn.microsoft.com/en-us/library/hh873134(v=vs.110)
CC-MAIN-2014-52
refinedweb
1,819
64.51
Cypress allows full-stack end-to-end testing with ease. The API is well documented and the core concepts are totally straightforward. Still, I've found myself having to deal with some issues and strategies that are documented here and there. This post is a summary of the most common ones. Capture fetch requests One of ...
https://dev.to/chihab/e2e-tests-with-cypress-beyond-the-basics-31k2
CC-MAIN-2021-04
refinedweb
1,198
54.83
Continuing the discussion from Supporting Multiple SQS Queues for the same message type across different instances: I have the same requirement of supporting queues with the same message type for different services as discussed in the above question. The answer with regards to queueprefix worked perfectly for SQS, I'm ...
https://forums.servicestack.net/t/correct-handling-for-multiple-redis-queues/5136
CC-MAIN-2018-43
refinedweb
1,349
57.3
Automating the Capture of Web Timings with Selenium 2 Wed 04 Aug 2010 Measuring the speed of how long a page takes to load is becoming one of the most important metrics that we as software developers or testers can measure. This is because milliseconds can mean the difference between a sale being paid for or abandoned....
http://www.theautomatedtester.co.uk/blog/2010/selenium-webtimings-api.html
CC-MAIN-2015-14
refinedweb
523
53.41
in reply to Re^2: Caching Format in thread Caching Format Hello RichardK, friends, Sorry for answering via a shotgun message. First, again thanks for your time and help. After I posted my first reply I began playing around with and fell in love with it. It was simple and handled the metadata caching format nicely. Coll...
http://www.perlmonks.org/?node_id=947848
CC-MAIN-2015-06
refinedweb
217
73.07
It's always DNS: Episode #3416 As part of my work at Hasgeek, I also work on and maintain Hasjob, a job board for startups. To monitor any downtime, we use Uptime Robot. For last few days, uptime robot has been sending out alerts now and then that Hasjob was going down 10-15 minutes as a time. But when I visited the ho...
https://bibhasdn.com/its-always-dns-episode-3416/
CC-MAIN-2021-25
refinedweb
1,173
69.38
different firms Hello, I have regression problem: I have a dataset consisting of yearly firm returns (for firm1-firm3) and the volatility of each firm in that month(std1-std3) and a data on a monthly market return (market_return) over a specific timepriod. No I want to estimate the following regression over the whole ...
http://www.stata.com/statalist/archive/2012-08/msg00445.html
CC-MAIN-2016-50
refinedweb
133
59.33
Can anyone explain what is == and equal( ) ? Matt Swaggi Ranch Hand Joined: May 29, 2008 Posts: 61 posted Jul 05, 2008 07:14:00 0 Hai please help me out in giving the meaning and differences between == and equal() method is for ! Mark Vedder Ranch Hand Joined: Dec 17, 2003 Posts: 624 I like... posted Jul 05, 2008 09:4...
http://www.coderanch.com/t/410982/java/java/explain-equal
CC-MAIN-2015-32
refinedweb
1,805
66.84
When previously importing my CSV file the data would upload sorted, but now, for no apparent reason, it's not coming out sorted after being uploaded and I'm having difficulty figuring out how to get it to sort. To fix this, I'm looking at my file upload code and HTML code. I built a dynamic drop down box whereby the us...
https://codedump.io/share/FOWd1wXwWd8A/1/sort-imported-file-ruby
CC-MAIN-2017-39
refinedweb
246
57.98
Sieve of Eratosthenes is an algorithm in which we find out the prime numbers less than N. Here N is an integer value. This is an efficient method to find out the prime numbers to a limit. By using this we can find out the prime numbers till 10000000. Here the basic approach is used we just make a memory of size N-1. St...
https://www.tutorialcup.com/interview/algorithm/sieve-of-eratosthenes.htm
CC-MAIN-2021-49
refinedweb
594
80.62
#include <hallo.h> * Peter De Wachter [Sat, Aug 24 2002, 01:25:54AM]: > It has the following license: > -- UNACE-SOURCE v1.2b (extract-util) -- > the source may be distributed and used, > but I,Marcel Lemke, retain ownership of > the copyrights to the source. > --------------------------------------- > > I think this m...
https://lists.debian.org/debian-devel/2002/08/msg01531.html
CC-MAIN-2019-09
refinedweb
116
66.64
NextworkX Python Overview The Python NetworkX module contains tools for creating and manipulating, visualizing networks, also known as graphs. This is not only graph drawing package, but also collaborate with Matplotlib. By using this, we can implement highly flexible graph. A graph is defined as a set of nodes and edg...
https://etutorialspoint.com/index.php/339-nextworkx-python-overview
CC-MAIN-2020-50
refinedweb
614
55.95
IRC log of tagmem on 2003-05-05 Timestamps are in UTC. 18:47:40 [RRSAgent] RRSAgent has joined #tagmem 18:47:56 [Ian] invite Zakim 18:47:59 [Zakim] Zakim has joined #tagmem 18:48:03 [Ian] Zakim, this will be TAG 18:48:03 [Zakim] ok, Ian; I see TAG_Weekly()2:30PM scheduled to start 18 minutes ago 18:49:28 [DanC] DanC ha...
http://www.w3.org/2003/05/05-tagmem-irc.html
CC-MAIN-2017-04
refinedweb
3,802
79.3
This is the mail archive of the elfutils-devel@sourceware.org mailing list for the elfutils project. > > > mips_debugscn_p (const GElf_Shdr *shdr, const char *name) > > > { > > > if (shdr != NULL && shdr->sh_type == SHT_MIPS_DWARF) > > > return true; > > > return (*generic_debugscn_p) (shdr, name); > > > } > > > > Does...
https://sourceware.org/ml/elfutils-devel/imported/msg03412.html
CC-MAIN-2018-13
refinedweb
103
67.96
Alexa.Media.PlayQueue GetItem If an item's stream URI has expired, Alexa sends a GetItem request to obtain a new (refreshed) URI to begin playback on an Alexa device. For music providers, this interface is optional and should be implemented only if the stream URIs returned by your music service cloud can expire. For ra...
https://developer.amazon.com/pt-br/docs/music-skills/api-getitem.html
CC-MAIN-2019-51
refinedweb
497
62.48
Finance sample quiz questions: return on total assets, external funding, modified internal rate of return, estimated weighted average cost of capital and more... Multiple Choice Identify the letter of the choice that best completes the statement or answers the question. ____ 1. You are given the following data: r* = re...
https://brainmass.com/business/capital-budgeting/61182
CC-MAIN-2017-43
refinedweb
1,599
74.9
> Git. Could we perhaps make perf record and perf top default to cycles:p on x86, and silently fall back to regular cycles events if the CPU does not support this event type? That would make our profiles more precise by default - without users having to do anything funky. Thanks, Ingo -- To unsubscribe from this list: ...
https://groups.google.com/g/linux.kernel/c/H5lBIVAJewE/m/MSS2H2WLh64J?pli=1
CC-MAIN-2021-43
refinedweb
838
68.47
!ENTITY sdot "⋅"> ]> ncurses.scripts.mit.edu Git - ncurses.git/blob - doc/hackguide.doc projects / ncurses.git / blob commit grep author committer pickaxe ? search: re summary | shortlog | log | commit | commitdiff | tree history | raw | HEAD ncurses 6.3 - patch 20220917 is (a) well-adapted for 124 on-line browsing th...
https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blob;f=doc/hackguide.doc;h=1bafad2ad10bd0d012173f38d81252df61481d66;hb=HEAD
CC-MAIN-2022-40
refinedweb
3,877
62.58
Section 8.8 Overloading Methods Java allows us to declare several methods with the same name in a single class. To nevertheless distinguish them properly, methods are not only identified by their name, like in C, but also by their signature. Consider the invocation of a method m: Which of the overloaded methods m could...
https://prog2.de/book/sec-java-overload.html
CC-MAIN-2022-33
refinedweb
947
57.87
CodePlexProject Hosting for Open Source Software Voted using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using HigLabo.Net; using HigLabo.Net.Dropbox; using System... Id #21922 | Release: None | Updated: Jun 27 at 10:58 AM by sanje...
http://higlabo.codeplex.com/workitem/list/basic
CC-MAIN-2015-32
refinedweb
416
65.73
icetDrawFunc -- set a callback for drawing. #include <GL/ice-t.h> typedef void (*IceTCallback)(void); The icetDrawFunc function sets a callback that is used to draw the geometry from a given viewpoint. func should be a function that issues appropriate OpenGL calls to draw geometry in the current OpenGL context. After f...
http://www.makelinux.net/man/3/I/icetDrawFunc
CC-MAIN-2015-11
refinedweb
375
61.26
A few years ago, I bought a Pebble smartwatch. Mostly I bought it because it was cheap, but I also wanted to write my own apps for it. I wrote a few apps. Recently, Pebble was bought by FitBit and ceased production of the Pebble smartwatch. However, they are making great progress to ensuring that the watch continues to...
https://cerkit.com/tag/development/
CC-MAIN-2017-43
refinedweb
565
70.6
Style Guide¶ This style guide summarizes code conventions used in ProbNum. This is intended as a reference for developers. ProbNum uses Black’s formatting ruleset, which can be viewed as a strict subset of PEP 8, and we recommend Black for automated code formatting. With respect to code style, the Google Python Style G...
https://probnum.readthedocs.io/en/v0.1.18/development/styleguide.html
CC-MAIN-2022-33
refinedweb
1,202
50.23
The thr_create(3THR) routine is one of the most elaborate of all the Solaris threads library routines. Usethr_create(3THR) to add a new thread of control to the current process. (For POSIX threads, see pthread_create(3TH 1TH_DAEMON—Marks the new thread as a daemon. A daemon thread is always detached (THR_DAEMON implies...
http://docs.oracle.com/cd/E19683-01/806-6867/6jfpgdcoj/index.html
CC-MAIN-2014-42
refinedweb
573
58.58
The more services you have running across different clouds and Kubernetes clusters, the harder it is to ensure that you have a central place to collect service mesh observability metrics. That’s one of the reasons we created Kuma, an open-source control plane for service mesh. In this tutorial, I’ll show you how to set...
https://hackernoon.com/gathering-service-mesh-observability-metrics-with-kuma-2w35351p
CC-MAIN-2021-25
refinedweb
1,009
55.24
Odoo Help Odoo is the world's easiest all-in-one management software. It includes hundreds of business apps: CRM | e-Commerce | Accounting | Inventory | PoS | Project management | MRP | etc. Set the default product_uos_qty based on a custom field in the product form I'm customizing Odoo 8.0 to support sale of Real Esta...
https://www.odoo.com/forum/help-1/question/set-the-default-product-uos-qty-based-on-a-custom-field-in-the-product-form-103780
CC-MAIN-2017-34
refinedweb
197
51.85
Odoo Help Odoo is the world's easiest all-in-one management software. It includes hundreds of business apps: CRM | e-Commerce | Accounting | Inventory | PoS | Project management | MRP | etc. Calling onchange product_id_change() method Hello, I'm trying to call a product_id_change method becouse i'd like to change the c...
https://www.odoo.com/forum/help-1/question/calling-onchange-product-id-change-method-103908
CC-MAIN-2017-43
refinedweb
228
56.76
> Mixing meta data into names is a bad idea. You don't want to change > the name of something just because some of its meta data changes. Advertising Your right. It's just that sometimes people may have a package name that is not agreeable to the broader community. >> The namespace could be, zodb. > > No it can't. ZODB...
https://www.mail-archive.com/zodb-dev@zope.org/msg04833.html
CC-MAIN-2018-09
refinedweb
101
78.04
Golang Environment Configuration I know that in my previous post, mocking API's in Golang, I said I would talk about testing, but I lied. To your face. I'm actually going to take a step backwards and talk a bit about the Golang environment configuration. Back when I first started to tinker with Go, I struggled getting ...
https://www.metaltoad.com/blog/golang-environment-configuration
CC-MAIN-2020-16
refinedweb
669
67.04
.NET Core gives you a fast and modular platform for creating applications that run on Windows, Linux, and macOS. Use Visual Studio Code with the C# extension to get a powerful editing experience with full support for C# IntelliSense (smart code completion) and debugging. Prerequisites - Install Visual Studio Code. - In...
https://docs.microsoft.com/en-us/dotnet/core/tutorials/with-visual-studio-code?wt.mc_id=devto-blog-chnoring
CC-MAIN-2019-43
refinedweb
761
76.62
: Since the previous Working Draft, OWL compatibility has been updated to include OWL 2 (which is a compatible extension of OWL 1). The changes are detailed in the change log. The Working Group believes it has completed its design work for the technologies specified this document, so this is a "Last Call" draft. The de...
http://www.w3.org/2005/rules/wg/draft/rif-rdf-owl/
crawl-002
refinedweb
13,461
51.18
Intro to Machine Learning for Developers Intro to Machine Learning for Developers This post will simplify this process of machine learning tool selection down to one — scikit-learn. Join the DZone community and get the full member experience.Join For Free. However, in this introductory post, we will go through the foll...
https://dzone.com/articles/deep-intro-to-machine-learning-for-developers?fromrel=true
CC-MAIN-2019-43
refinedweb
1,752
51.78
[SOLVED] How to use glut in my shared library - gamowaxaky Hi everyone, I got a problem with using glut in my shared library. Please help me! I'm developing an application that draws 3D solid in a QWidget, I use glut library to initial, draw and so on... And the app works with no problem, but after a month, I realize b...
https://forum.qt.io/topic/19830/solved-how-to-use-glut-in-my-shared-library
CC-MAIN-2017-39
refinedweb
329
75.71
02 August 2012 03:47 [Source: ICIS news] SINGAPORE (ICIS)--?xml:namespace> It nominated $2,000/tonne CFR (cost & freight) Cost-push factors and tight supply are the reasons cited by Asahi Kasei for the FECP increase. “Our margins are in deficit because of high raw material costs, so we have no choice but to increase th...
http://www.icis.com/Articles/2012/08/02/9583119/japans-asahi-kasei-raises-august-acn-nomination-by.html
CC-MAIN-2014-41
refinedweb
165
60.55
We are supposed to write a program which asks for the month, date, and yr and then outputs the day of that date. input: Month: 7 // This is July Day: 4 Year: 1776 output: July 4, 1776 was on a Thursday Formula: day = (r + [2.6m - .2] - 2c + d + [c/4.0] +[d/4.0] ) % 7 [x] denotes the greatest integer less than or equal ...
https://www.daniweb.com/programming/software-development/threads/12938/illegal-left-operand-has-type-double
CC-MAIN-2017-17
refinedweb
298
86.84
Figure 5.1 shows the main example used in this chapter, an online hangman game. When the user first accesses the program, it chooses a random word from a dictionary of words and displays a series of underscores for each of the word's letters. The game prompts the user to type in a single letter guess or, if he thinks h...
https://www.safaribooksonline.com/library/view/writing-apache-modules/156592567X/156592567X_ch05-4429.html
CC-MAIN-2018-09
refinedweb
279
75.34
Windows Programming". Windows System Architecture History. Virtual Memory When a program is started (e.g. a web browser or a word processor), it runs in its own process. A process contains its own "virtual" memory space and resources. Its memory is "virtual" because the process thinks memory. Next Chapter C and Win32 A...
https://en.wikibooks.org/wiki/Windows_Programming/Print_Version
CC-MAIN-2015-18
refinedweb
19,109
52.7
Abstract A major goal of the COMMON LISP committee was to dene a Lisp language with sucient power and generality that people would be happy to stay within its connes and thus write inherently transportable code. We argue that the resulting language denition is too large for many short-term and medium-term potential app...
https://fr.scribd.com/document/142095014/Common-Lisp-Critique
CC-MAIN-2019-43
refinedweb
5,545
50.57
Page { Container { TextField {} Button {} } Slider {} } Keyboard input BlackBerry devices can have either a physical keyboard or touch screen keyboard. For devices with a touch screen keyboard, the keyboard appears only in certain contexts (for example, when the user taps a text field). With both types of keyboards, it...
http://developer.blackberry.com/native/documentation/device_comm/input/physical_keyboard.html
CC-MAIN-2018-13
refinedweb
1,256
54.02
Why Plotly? Plotly’s Python graphing library is an interactive, open-source plotting library that supports over 40 unique chart types. These chart types cover a wide range of statistical, financial, geographic, scientific, and 3-dimensional use-cases. We will walk through how to make interactive, publication-quality gr...
https://www.codegigs.app/data-visualization/plotly-for-data-visualization/
CC-MAIN-2022-05
refinedweb
1,056
59.8
python interface for the atomx api on Interface for the atomx rest api. For more information read the full documentation online, report bugs in github or see the atomx wiki from atomx import Atomx # create atomx session atomx = Atomx('user@example.com', 'password') # get 10 creatives creatives = atomx.get('Creatives', ...
https://pypi.org/project/atomx/
CC-MAIN-2017-26
refinedweb
448
51.44
Function Overloading in C++ In this CPP tutorial, we are going to discuss the concept of Function overloading in C++ and its implementation. What is Function Overloading in C++ It is a feature in C++ where a function can be overloaded means two or more than function can have the same name but their way of doing work is...
https://www.codespeedy.com/function-overloading-in-cpp/
CC-MAIN-2020-45
refinedweb
469
65.42
sun.swing; 26 27 import java.util.*; 28 29 /** 30 * <b>WARNING:</b> This class is an implementation detail and is only 31 * public so that it can be used by two packages. You should NOT consider 32 * this public API. 33 * <p> 34 * <b>WARNING 2:</b> This is not a general purpose List implementation! It 35 * has a speci...
http://checkstyle.sourceforge.net/reports/javadoc/openjdk8/xref/openjdk/jdk/src/share/classes/sun/swing/BakedArrayList.html
CC-MAIN-2018-22
refinedweb
314
73.27
Slashdot Log In XHTML 1.0 now a W3C Recommendation Posted by jimjag on Thu Jan 27, 2000 01:05 AM from the still-lost-in-dynamic-html dept. from the still-lost-in-dynamic-html dept. thehermit writes "New info on the W3C's Web site as XHTML 1.0 became a W3C Recommendation on Jan. 26. The specification now features a sing...
http://slashdot.org/articles/00/01/26/150247.shtml
crawl-002
refinedweb
1,374
73.68
User Tag List Results 1 to 4 of 4 Using a different character set inside a JavaScript file Inside my .js file I have some text in Hebrew. However, whenever it is written to the document or displayed in any way (alert() for example), it is shown as gibberish. Any idea how to fix this? Thanks. - HTML Code: <script type="...
http://www.sitepoint.com/forums/showthread.php?167250-Using-a-different-character-set-inside-a-JavaScript-file&p=1206413
CC-MAIN-2017-13
refinedweb
191
75.61
Hi friends; I've run into a problem trying to complete the below assignment: Write a function called myName which returns (does not cout) your full name (e.g., "Bob Smith"). Write main to call the function and display the name on the screen. NOTE: Your name should not appear anywhere other than in the function myName. ...
https://www.daniweb.com/programming/software-development/threads/235509/dr-myname-or-how-i-learned-to-stop-worrying-and-love-using-strings-in-functions
CC-MAIN-2017-43
refinedweb
198
69.15
The team has been quietly working on a number of improvements to the entity designer that we would like to show off and get feedback on. This particular set of features is targeted at making modeling more productive and scalable, and models themselves more comprehensible. We’ll start with the small, fun things, and bui...
https://blogs.msdn.microsoft.com/efdesign/2010/10/11/entity-designer-improvements-preview/
CC-MAIN-2017-22
refinedweb
3,567
60.75
We are about to switch to a new forum software. Until then we have removed the registration on this forum. Hello everyone. I'm having a bit of trouble here, could you give me a hand, please? I need to read the frequencies from microphone input. My code runs fine on desktop, because I'm using Minim and getting fft to wo...
https://forum.processing.org/two/discussion/11400/how-to-manually-apply-fft-to-sound-input
CC-MAIN-2019-43
refinedweb
475
73.37
In this article, we will discuss the Life Cycle Methods of Angular. If a user can understand the entire process of the components create and destroy the application. What is the Life Cycle Method? - Every Component has a LifeCycle. - It goes through a number of different stages of Initializing and destroying. - There i...
https://www.thecodehubs.com/life-cycle-method-in-angular/
CC-MAIN-2022-21
refinedweb
483
52.26
This demo will start you on the track to rock or techno with jMusic, and generally introduce techniques for multi-part ostinati which might also be used for minimalist, African, or Gamelan music. To hear the result play the MIDI file below. Lets have a closer look. import jm.JMC;import jm.music.data.*;import jm.music.t...
http://jmusic.ci.qut.edu.au/jmtutorial/kitDemo.html
crawl-002
refinedweb
536
75.81
Just as an RCW proxy wraps a COM object when you access it from C#, code that accesses a C# object as a COM object must do so through a proxy as well. When your C# object is marshaled out to COM, the runtime creates a COM Callable Wrapper (CCW). The CCW follows the same lifetime rules as other COM objects, and as long ...
http://etutorials.org/Programming/C+in+a+nutshell+tutorial/Part+II+Programming+with+the+.NET+Framework/Chapter+18.+Integrating+with+COM+Components/18.3+Exposing+C+Objects+to+COM/
CC-MAIN-2016-50
refinedweb
205
50.12
On 12 Jun 2001 21:07:16 GMT, Christian Schaller <chris at alaska.cert.siemens.de> wrote: > Dear Pythoners, > > I've seen already some threads about configuring vim that it is > comfortable editing Python programs, so let's get one step further! Use > the following script to be able moving up and down the same indentati...
https://mail.python.org/pipermail/python-list/2001-June/088601.html
CC-MAIN-2019-30
refinedweb
235
80.62
On Mon, Mar 28, 2005 at 07:23:21PM +0200, Joerg Sonnenberger wrote: > On Mon, Mar 28, 2005 at 09:15:28AM -0800, Matthew Dillon wrote: > > :I. > > There is _no_ reason for the thread library to extend the TCB. > Anything which a thread library might want to store there can also be > stored in the pthread structure, whic...
http://leaf.dragonflybsd.org/mailarchive/commits/2005-03/msg00631.html
CC-MAIN-2015-27
refinedweb
132
67.08
30 September 2007 10:20 [Source: ICIS news] BERLIN (ICIS news)--BP Acetyls, the global acetic acid producer, plans to debottleneck its acetic acid unit in Hull, UK, by 30,000 tonnes/year during a turnaround in 2010, a company official said on Sunday. ?xml:namespace> “We will size the units for growth and increase effic...
http://www.icis.com/Articles/2007/09/30/9066346/epca-07-bp-to-debottleneck-hull-acetic-acid-unit.html
CC-MAIN-2014-41
refinedweb
128
50.5
PathStripToRoot function Removes all file and directory elements in a path except for the root information. Note Misuse of this function can lead to a buffer overrun. We recommend the use of the safer PathCchStripToRoot function in its place. Syntax Parameters - szRoot [in, out] Type: LPTSTR A pointer to a null-termina...
https://msdn.microsoft.com/en-us/library/bb773757(v=vs.85).aspx
CC-MAIN-2015-18
refinedweb
202
65.93
Analyzing chemical compounds in Haskell I tried to do the parser chemistry as an exercise for myself, but I am stuck. Here is the datatype I'm trying to use: data Compound = Monoatomic String Int | Poliatomic [Compound] Int For a line like "Ca (OH) 2" I want to get something like: Poliatomic [Monoatomic "Ca" 1, Poliato...
https://daily-blog.netlify.app/questions/2216412/index.html
CC-MAIN-2021-49
refinedweb
967
64.34
Background subtraction and object counting - slow performance Hi, I'm trying to write down a code to count objects that will be moving from left to right in the FoV, so I think I don't need to track them and I'm just going for a check when the center point of an object gets into a ROI (for example the middle of the ima...
https://answers.opencv.org/question/70588/background-subtraction-and-object-counting-slow-performance/
CC-MAIN-2019-43
refinedweb
637
66.44
You can discuss this topic with others at Read reviews and buy a Java Certification book at In an expression involving the operators & | && || and variables of known values state which operands are evaluated and the value of the expression. It is easy to forget which of the symbols mean logical operator and which mean ...
http://www.jchq.net/tutorial/05_03Tut.htm
crawl-001
refinedweb
985
51.28
Hi Everyone, First let me that the last time I did a Vc++ small utility prg is back in 1995. Here is my situation: I have a win32 app that uses HINSTANCE and the main.cpp looks like: ----------------------- #include "stdafx.h" #include "testlib.c" int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR...
http://forums.codeguru.com/showthread.php?531381-Rewriting-a-Win32-app-using-HINSTANCE-to-a-Win32-console-application&p=2097249
CC-MAIN-2013-20
refinedweb
426
71.75
I have Array object ArrObject object = { Active: true, // type: boolean Code: '12345' // type: string } Active Code underscoreJs data = [ { Code: "Code0", Description: "Description0", IsActive: true, id: 0 }, { Code: "Code1", Description: "Description1_edit", IsActive: true, id: 1 }, { Code: "Code5", Description: "Desc...
https://codedump.io/share/BWk6L2nTP5mb/1/multi-sorting-in-underscore
CC-MAIN-2018-09
refinedweb
248
63.59
User-Agent: Mozilla/5.0 (X11; U; OpenBSD i386; en-US; rv:1.9.1.11) Gecko/20100901 Firefox/3.5.11 Build Identifier: Builds of ffx4 betas fail since b4 (b5,b6,same issue) when linking xpcshell with -lxul, error message follows. /usr/obj/mozilla-firefox-4.0b6/mozilla-central/dist/bin/libxul.so.22.0: undefined reference to...
https://bugzilla.mozilla.org/show_bug.cgi?id=599764
CC-MAIN-2017-22
refinedweb
3,165
59.4
Making GUI applications with Gazpacho Earlier I have made some simple GUI applications using PyGTK and Glade, which is surprisingly easy. Now I have another small itch to scratch and have another go at some GUI app. Only this time I decided that the coolness of Gazpacho looked slightly nicer to me, so gave that a try. ...
http://blog.devork.be/2007/08/making-gui-applications-with-gazpacho.html
CC-MAIN-2019-22
refinedweb
580
56.96
Singer.io utility library - PipelineWise compatible Project description pipelinewise-singer-python Writes the Singer format from Python. This is a fork of Singer's singer-python made for PipelineWise. Usage Setup environment This library depends on python3. We recommend using a virtualenv like this: python3 -m venv ~/....
https://pypi.org/project/pipelinewise-singer-python/
CC-MAIN-2021-25
refinedweb
193
50.12
Created on 2016-09-25 09:45 by vmurashev, last changed 2019-12-12 16:06 by vstinner. Hi,here the issue: We (crystax.net) use custom builds of cpython, which for windows are compiled by MinGW with pyconfig.h taken from PC/pyconfig.h And for 32-bit Windows everything works well, but for 64-bit Windows - doesn't. The root...
https://bugs.python.org/issue28267
CC-MAIN-2021-31
refinedweb
397
75.2
Table of Contents In Chapter 7, I/O, we talked about the IO monad, but we intentionally kept the discussion narrowly focused on how to communicate with the outside world. We didn't discuss what a monad is. We've already seen in Chapter 7, I/O that the IO monad is easy to work with. Notational differences aside, writing...
http://book.realworldhaskell.org/read/monads.html
CC-MAIN-2018-51
refinedweb
10,206
69.11
Hi, this could be silly question from newcomer, but I wonder about can I use Node.js library with stack that Ionic 2 (Node package system with package.json , Angular 2, Cordova) provides. I found interesting for my project library from Google ( I need geocoding for some form validation). For this moment I added this pa...
https://forum.ionicframework.com/t/using-library-from-npm-package-google-maps-for-ionic-2-project/72534
CC-MAIN-2018-51
refinedweb
197
57.47
I universal tagset. Here is the code I am running when I have the issue. import nltk,math tagged_sentences = nltk.corpus.brown.tagged_sents(categories='news',tagset='universal') i = math.floor(len(tagged_sentences)*0.2) testing_sentences = tagged_sentences[0:i] training_sentences = tagged_sentences[i:] perceptron_tagge...
https://www.codesd.com/item/nltk-perceptron-tagger-typeerror-the-lazysubsequence-object-does-not-support-element-allocation.html
CC-MAIN-2019-13
refinedweb
412
51.24
Auto Login Bot Using Python Hi, everyone in this post I will tell you how you can make an Auto-Login Bot in Python. This will automatically log in to your account on a specific site when you run this code. We need this because it is very annoying, after a certain time we have to log-in after the timeout. So, Let’s star...
https://www.codespeedy.com/auto-login-bot-using-python/
CC-MAIN-2022-27
refinedweb
356
58.28