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
Set::Relation Changes --------------------------------------------------------------------------- 2015-01-01 * Set::Relation version 0.13.0 for Perl 5 is released on CPAN as Set-Relation-0.13.0.tar.gz. * The main purpose of this release is making Set::Relation substantially lighter in its external dependencies, so that...
https://metacpan.org/changes/distribution/Set-Relation
CC-MAIN-2015-22
refinedweb
7,489
54.63
Hi AdiiS, We need to create our own DataGridView and override the OnScroll method. In the method, we can set the new value equal to the old value to avoid rows/columns moving. This is the code snippet:public class MyDataGridView : DataGridView { public MyDataGridView() { //Enable both scrollbars. this.ScrollBars = Scro...
http://www.windowsdevelop.com/windows-forms-data-controls-databinding/avoid-scrolling-in-datagriview-21435.shtml
crawl-003
refinedweb
108
65.83
Skip to 0 minutes and 7 secondsWIM: Hello, everyone. In this short video, we're going to look at some more basic elements of Haskell by examples from other languages. So we will look at anonymous functions, higher-order functions, blocks, and conditions. First, anonymous functions. So these are functions that don't hav...
https://www.futurelearn.com/courses/functional-programming-haskell/2/steps/218276
CC-MAIN-2019-13
refinedweb
1,105
70.63
angel3_static 4.0.0 angel3_static: ^4.0.0 copied to clipboard angel3_static # Static server infrastructure for Angel. Can also handle Range requests now, making it suitable for media streaming, ex. music, video, etc. Installation # In pubspec.yaml: dependencies: angel3_static: ^4.0.0 Usage # To serve files from a direc...
https://pub.dev/packages/angel3_static
CC-MAIN-2021-25
refinedweb
331
53.78
The. 3) There is no need to enumerate all the entity bean class names inside because we are defining only one PU in this persistence.xml and we will be packaging the entity classes along with this persistence.xml in a jar file, so container can discover all the entity beans. Step #3: Write. 2) It must be a public class...
http://weblogs.java.net/blog/ss141213/archive/2005/12/using_java_pers.html
crawl-002
refinedweb
1,940
65.52
#include #include using namespace std; struct Book { char title[1024]; // Book name int id; // Book id or ISBN number float price; // Book price struct Book* next; } *COLLECTION = NULL; //-- Forward Declaration --// void menu(); void branching(char option); void insertion(); void printall(); struct Book* search(); void...
http://www.chegg.com/homework-help/questions-and-answers/include-include-using-namespace-std-struct-book-char-title-1024-book-name-int-id-book-id-i-q3702404
CC-MAIN-2015-27
refinedweb
529
79.6
. For this tutorial we will be using the GNU Image Manipulation Program in conjunction with Python. We are working on an Ubuntu 9.04 system but because these are cross-platform tools you should be able to do this on any OS. What the script does: The Python script takes one or more 1-bit color palette indexed BMP images...
http://hackaday.com/2009/09/29/how-to-generate-font-and-picture-header-files/
CC-MAIN-2016-44
refinedweb
1,499
69.72
What I want to do - transform my pure Python code into Cython. Pure Python code: def conflicts(list1,list2): numIt = 10 for i in list1: for j in list2: if i == j and i < numIt: return True return False conflicts([1,2,3], [6,9,8]) My Cython code so far: cdef char conflicts(int [] list1,int [] list2): cdef int numIt = 10...
https://www.howtobuildsoftware.com/index.php/how-do/7IG/python-performance-optimization-cython-cython-simple-function-with-2-lists-what-is-the-fastest-way
CC-MAIN-2020-05
refinedweb
182
68.44
Overview In addition to libraries, Rosella provides some helpful utility programs to help with common programming and maintenance tasks. These programs are included with the Rosella installation, but may need to be added separately to your system search path. Utilities rosella_test_template The rosella_test_template ut...
http://whiteknight.github.io/Rosella/libraries/utilities.html
CC-MAIN-2019-30
refinedweb
516
54.42
Learn Webpack in 15 Minutes Build tools have become an integral part of web development, mainly due to the ever-increasing complexity of JavaScript apps. Bundlers allow us to package, compile, and organize the many assets and libraries needed for a modern web project. In this tutorial we will take a look at webpack, a ...
https://tutorialzine.com/2017/04/learn-webpack-in-15-minutes
CC-MAIN-2017-34
refinedweb
1,416
64.2
Thread synchronization may be defined as a method with the help of which we can be assured that two or more concurrent threads are not simultaneously accessing the program segment known as critical section. On the other hand, as we know that critical section is the part of the program where the shared resource is acces...
https://www.tutorialspoint.com/concurrency_in_python/concurrency_in_python_synchronizing_threads.htm
CC-MAIN-2021-39
refinedweb
1,641
72.26
Hi! Nearly my last question for today and this even more to the developers of Cocoon... Why does Cocoon provide not less than three different ways of handling SQL queries? - The Database Reader - SQL Transformer - ESQL Logicsheet Ok, the Database Reader makes sense if you want to retrieve non-XML data. But why not a sc...
http://mail-archives.apache.org/mod_mbox/cocoon-users/200609.mbox/%3C45087AB6.5060105@weitling.net%3E
CC-MAIN-2018-34
refinedweb
145
54.73
Strange syntax error Discussion in 'Perl Misc' started by tseitlin Strange syntax errorQu0ll, Apr 25, 2009, in forum: C++ - Replies: - 1 - Views: - 567 - James Kanze - Apr 26, 2009 strange syntax error_wolf, Jun 4, 2010, in forum: Python - Replies: - 1 - Views: - 515 - Jerry Hill - Jun 4, 2010 Syntax bug, in 1.8.5? ret...
http://www.thecodingforums.com/threads/strange-syntax-error.898925/
CC-MAIN-2016-07
refinedweb
107
67.28
printz Posted December 28, 2016 I've decided to post this now. You can now make UDMF maps in Eternity. Goodbye extradata! If you're on Windows, there is a Doom 2 / UDMF format configuration for Eternity available. How it works:It supports ACS. The ACS format is ZDoom, so you have access to all those goodies in ACS intr...
https://www.doomworld.com/forum/topic/92202-you-can-now-make-udmf-maps-in-eternity/
CC-MAIN-2019-04
refinedweb
971
65.01
Per below, I am trying initialize a sqlalchemy Mapped Class from a python dictionary that has extra keys. Is it possible to have the Mapped Class automatically ignore the extra keys instead of throwing an error? Likewise, can the Mapped Class have default values if the keys are not present? from sqlalchemy import Colum...
https://codedump.io/share/XQWl8ARHNwPM/1/option-to-ignore-extra-keywords-in-an-sqlalchemy-mapped-class-constructor
CC-MAIN-2017-13
refinedweb
203
50.36
Sponsored by - Intel - HP netmagTutorial Build a portfolio with ExpressionEngine We all need a place to show off our good work. Here, Ryan Irelan of mijingo.com talks you through the process of building a simple portfolio website using ExpressionEngine 2 This article first appeared in issue 214 of .net magazine - the w...
http://www.creativebloq.com/netmag/build-portfolio-expressionengine-8116846
CC-MAIN-2014-42
refinedweb
2,648
63.19
Network Theory and Game of Thrones – A Perfect Combination Want to share your content on python-bloggers? click here.. I will go about my exploration using two separate but related lines. The first will be a theoretical overview of each topic, and the second will be some implementation to see the concepts in action. Wh...
https://python-bloggers.com/2019/05/network-theory-and-game-of-thrones-a-perfect-combination/
CC-MAIN-2021-10
refinedweb
2,546
65.93
C++ Destructor is the member function that destructs or deletes an object. The destructor function is called automatically when an object goes out of scope: (1) the function ends. (2) the program ends. (3) a block containing local variables ends. (4) A delete operator is called. We have already seen Constructor in C++ ...
https://appdividend.com/2019/07/04/c-destructor-example-destructors-in-c-tutorial/
CC-MAIN-2020-29
refinedweb
890
53.1
2016-11-01 Meeting Notes Allen Wirfs-Brock (AWB), Waldemar Horwat (WH), Jordan Harband (JHD), Thomas Wood (TW), Brian Terlson (BT), Michael Ficarra (MF), Adam Klein (AK), Jeff Morrison (JM), Chip Morningstar (CM), Dave Herman (DH), Yehuda Katz (YK), Leo Balter (LB), Sebastian Markbåge (SM), Kent C. Dodds (KCD), Kevin G...
https://esdiscuss.org/notes/2016-11-01
CC-MAIN-2019-18
refinedweb
5,007
62.78
Opterator is a decorator to make quick and clean command line interfaces for scripts. It’s not designed to compete with argparse or click. Instead it supports that common usecase where you’re writing a reusable script and don’t want to write all the bits required for argument parsing, but also don’t want to use the mal...
http://archlinux.me/index3.php
CC-MAIN-2015-18
refinedweb
508
61.87
Sometimes you come across someone elses blog and think that’s pretty cool I should go build that…. well I came across Exfiltrate Files With DNS and found it rather interesting – the link can be found here. I decided that I really wanted to build this and make it work. I already have a cloud server and a domain name so ...
https://www.hackwhackandsmack.com/?author=2&paged=2
CC-MAIN-2019-13
refinedweb
730
64.71
I have a Point3D class, Shapes abstract class, and a Sphere that extends Shapes. I want Shapes to have a member object from Point3D. public class Point3D { private float x, y, z; public Point3D(float x, float y, float z) { this.x = x; this.y = y; this.z = z; } } public abstract class Shape { private Point3D point; publ...
http://www.gamedev.net/topic/622527-java-abstract-class-problem/
CC-MAIN-2016-40
refinedweb
129
89.58
[ ] Mikhail Fursov updated HARMONY-2056: ------------------------------------ Patch Info: [Patch Available] > [drlvm][jit] Jitrino.OPT's bpp.version=1 does not insert a polling code to every backedge > ----------------------------------------------------------------------------------------- > > Key: HARMONY-2056 > URL:...
http://mail-archives.apache.org/mod_mbox/harmony-commits/200611.mbox/%3C12341998.1162474521026.JavaMail.root@brutus%3E
CC-MAIN-2015-18
refinedweb
170
54.32
Word code cleaner Discussion in 'ASP General' started by Juan C. Santaella, Apr 28, 2004. Want to reply to this thread or ask your own question?It takes just 2 minutes to sign up (and it's free!). Just click the sign up button to choose a username and then you can ask your own questions on the forum. - Similar Threads ...
http://www.thecodingforums.com/threads/word-code-cleaner.794185/
CC-MAIN-2014-35
refinedweb
172
75.64
Hello everyone hows it going I've only recently been introduced to arrays and require a bit of help with a small exercise I was doing earlier. Here is the question : Write a program which reads a sequence of words, and prints a count of the number of distinct words. An example of input/output is should I stay or should...
http://www.javaprogrammingforums.com/collections-generics/4964-help-arrays-counting-elements.html
CC-MAIN-2014-41
refinedweb
153
64.41
stm32plus::net HTTP module As a protocol HTTP needs no introduction so I’ll get straight down to how stm32plus::net helps you write HTTP clients and servers. HTTP clients The HttpClient class is a high-level helper that performs GET or POST requests and reads the response for you. When you get down to it HTTP is little...
http://andybrown.me.uk/2013/08/03/stm32plusnet-http/
CC-MAIN-2017-17
refinedweb
1,417
54.12
Introduction Data Analysis is the most essential part of any data science project. Analyzing the data gives us some important and beautiful insights about the data. There are many libraries in Python to perform analysis like Pandas, Matplotlib, Seaborn, etc. Recently developers introduced a new library ‘dtale’ to perfo...
https://www.analyticsvidhya.com/blog/2020/11/data-exploration-dtale/
CC-MAIN-2021-31
refinedweb
788
61.87
Data::XML::Variant::Build - Data::XML::Variant "build" class. Version 0.01 Do not use this class directly. Data::XML::Variant will return an instance of this class and autogenerate the requested tag methods. None. my $build = Data::XML::Variant::Build->New; Returns a new Data::XML::Variant::Build object. Takes no argum...
http://search.cpan.org/~ovid/Data-XML-Variant-0.02/lib/Data/XML/Variant/Build.pm
CC-MAIN-2016-18
refinedweb
1,024
64.51
[Share Code] emoji to ui.Image or png file The function below is pretty trivial. But opens up a door for more built in assets to use. I hadn't thought about it before like this. Also @Webmaster4o gave me a great web resource to look up / search for emoji's - link import ui # Forum @Phuket2 # just an example function to...
https://forum.omz-software.com/topic/3232/share-code-emoji-to-ui-image-or-png-file/3
CC-MAIN-2020-10
refinedweb
274
67.04
Main.java package com.herocraftonline.rightlegred.minescroller; import java.awt.Font; import java.awt.Graphics; import javax.swing.*; import com.herocraftonline.rightlegred.minescroller.player.Player; public class Main extends JFrame{ public Main(){ setTitle("MineScroller"); setSize(500,500); setVisible(true); setFont(...
http://www.dreamincode.net/forums/topic/226787-2d-game-java-movement-drawing-and-general-help/
CC-MAIN-2017-22
refinedweb
360
68.67
JavascriptMultiDimArrays Author: Eric Haines (Eric5h5) Description NOTE: This is largely obsolete in Unity 3.2, since multidimensional arrays can be declared directly in JS now. Please upgrade if you haven't already! However, the syntax for directly declaring the type of jagged multi-dimensional arrays is still missing...
https://wiki.unity3d.com/index.php/JavascriptMultiDimArrays
CC-MAIN-2019-39
refinedweb
757
61.46
Url Routing is the process of reroute the http request, the reason behind it was to create a clean meaningful SEO friendly url. For example, if you have a ecommerce website where you have thousands products, and you want to display each product details dynamically on a page called “product”, the page may look like , th...
https://www.webtrainingroom.com/aspnetmvc/routing
CC-MAIN-2021-49
refinedweb
385
50.43
A simple guide to sending data from one ESP8266 to another over Wi-Fi using an ad-hoc, device to device network, without using a wifi router. The ESP8266WebServer library allows you run an ESP8266 as a basic webserver and access point. This can process data received from a remote sensor over Wi-Fi without connecting th...
https://robotzero.one/sending-data-esp8266-to-esp8266/
CC-MAIN-2022-33
refinedweb
6,489
66.23
Get the highlights in your inbox every week. Add GUIs to your programs and scripts easily with PySimpleGUI Add GUIs to your programs and scripts easily with PySimpleGUI Create a custom GUI in under five minutes. Subscribe now. GUI frameworks There is no shortage of GUI frameworks for Python. Tkinter, WxPython, Qt, and ...
https://opensource.com/article/18/8/pysimplegui
CC-MAIN-2021-21
refinedweb
3,822
74.69
- Scala and Android in an Eclipse project Created by milessabin on 2008-07-14. Updated: 2009-07-03, 10:10 2.1. Compile and package This article is an introduction on how to build Scala Eclipse projects for Android. You may also want to read an IBM article on the same topic. For a quick start, the two key issues are: -...
http://www.scala-lang.org/node/160
crawl-002
refinedweb
1,012
51.75
Help index · Help desk · Reference desk · FAQ · Editor's welcome · Tutorial · Cheatsheet · Glossary · Any questions? Where would I find information about what caused the site to be down between 18:23 and 19:30 (Eastern Daylight Savings Time) today? // BL \\ (talk) 23:59, 30 June 2009 (UTC) How can I move an image map? ...
http://wiki.xiaoyaozi.com/en/Wikipedia:Help_desk.htm
crawl-002
refinedweb
2,871
71.44
. lxc Cheap and Easy Virtual Machine Containers with LXC The thing that most virtual-machine solutions have in common is the overhead required to run them. There’s a substantial resource cost for the management of these containers, aside from that for the machine itself. There’s an alternative to all of that, called LX...
https://dustinoprea.com/tag/lxc/
CC-MAIN-2018-09
refinedweb
1,123
53.61
Recent developments has made it possible to run LinuxCNC on the latest LTS release of Ubuntu. This is experimental work, so not recommended for controlling a real machine just yet. The main obstacle for moving LinuxCNC from 10.04LTS to a more recent distribution has been the RTAI real-time kernel, which has not been ke...
http://www.anderswallin.net/2012/12/linuxcnc-on-ubuntu-12-04lts/
CC-MAIN-2016-18
refinedweb
1,629
50.02
ForestPad is a method for storing and retrieving textual information and consists of three applications: Also included are two Setup projects. One for the PocketPC application that calls custom code which launches the ActiveSync application and one for a Windows Desktop version. Before I go any further, I would like to...
https://www.codeproject.com/articles/7255/forestpad-a-method-for-storing-and-retrieving-text/?fid=55929&df=90&mpp=10&sort=position&tid=1731450
CC-MAIN-2017-09
refinedweb
2,203
62.78
I'm new to programming, but with every program I do, I end up with one error. For some reason, I can't figure out how to install MSDN, so I can't press F1 for it to tell me what to fix. Here's my current code: Anyone see any obvious discrepancies?Anyone see any obvious discrepancies?Code: #include <iostream.h> char Wha...
http://cboard.cprogramming.com/cplusplus-programming/70457-help-new-programmer-printable-thread.html
CC-MAIN-2014-15
refinedweb
263
84.27
What would be a reasonable way to dedupe notifications between native apps and web pages? Relevant if you have the nyt app installed and also give nyt.com permission to use the Notifications API. Idea 1: nyt identifies user and dedupes before sending a push message. E.g. sends only to the native app if it is installed....
https://bugs.chromium.org/p/chromium/issues/detail?id=402223
CC-MAIN-2017-22
refinedweb
1,549
59.84
Today I finalised my changeover to Visual Studio. I know I’ve been down this road before, but this time it’s different (probably). This time around, I’m using Visual Studio 2015 Professional with Python Tools For Visual Studio. My shiny MSDN licence gives me access to it, along with Visual Studio Online. I mention that...
https://cindygeodev.wordpress.com/2015/09/28/enable-intellisense-in-pyt-files-in-ptvs/
CC-MAIN-2018-34
refinedweb
247
71.04
If the modulus weren't 1337 = 7 * 191 but a prime number p, we could use Fermat's little theorem to first reduce the exponent to e = b % (p-1) and then compute the result as ae % p. Oh well, we can do it for 1337's prime factors 7 and 191 and then combine the two results with the Chinese remainder theorem. I'll show my...
https://discuss.leetcode.com/topic/50591/fermat-and-chinese-remainder
CC-MAIN-2017-51
refinedweb
554
65.46
.-users group, or come ask questions on Slack. The next few steps will show you: The cluster startup script will leave you with a running cluster and a kubernetes directory on your workstation. The next step is to make sure the kubectl tool is in your path. The kubectl tool controls the Kubernetes cluster manager. It l...
http://kubernetes.io/docs/getting-started-guides/gce/
CC-MAIN-2016-44
refinedweb
473
58.28
Determines if a DN is equal to the specified suffix. Before calling this function, you should call slapi_dn_normalize_case() to normalize the DN and convert all characters to lowercase. If you want to determine if a DN is the same as the suffix for the local database, call the slapi_dn_isbesuffix_norm() function instea...
http://docs.oracle.com/cd/E19528-01/820-2492/aaifh/index.html
CC-MAIN-2014-15
refinedweb
110
61.67
While high-level templating systems can be used with Twisted (for example, DivmodNevow , sometimes one needs a less file-heavy system which lets one directly write HTML. While ResourceScript is available, it has a high coding overhead, and requires some boring string arithmetic. ResourceTemplate fills the space between...
https://twistedmatrix.com/documents/current/web/howto/resource-templates.html
CC-MAIN-2017-30
refinedweb
277
58.28
Python Tips: Decorators A very powerful and useful tool in Python . Our Goal Through a simple example, to explain why we want to use decorators in our codes. First, we have a function that can print some messages. Now, there is a new requirement to save the execution log of the function, we can add print('Call foo()') ...
https://saneryee-studio.medium.com/python-tips-decorators-7187bc285469
CC-MAIN-2021-17
refinedweb
630
56.86
Code. Collaborate. Organize. No Limits. Try it Today. This ASP.NET web site project (can be run from here) illustrates some basic techniques for starting a long running task on the web server side, with provisions for tracking the progress of the task using AJAX. Note: This application was tested on several shared host...
http://www.codeproject.com/Articles/492789/Starting-and-Monitoring-a-Long-Running-Task-Using-
CC-MAIN-2014-15
refinedweb
1,254
50.73
View contents of SD Card I have a Lopy and expansion board. I'm using FileZilla to view/edit contents of the flash and want to know if I can also view/edit contents of the expansion board's SD card with FileZilla. This post is deleted! Hello Robert, I used the example SD code where I see it call the mount statement. fr...
https://forum.pycom.io/topic/1792/view-contents-of-sd-card
CC-MAIN-2018-17
refinedweb
321
78.75
Many programs that do some kind of brute-forcing and that have to calculate all possible combinations of a given subset of characters or objects, resort to recursion or to some dirty kind of looping mechanism with inner-loops etc... A couple of years ago, I issued a contest on a hacking forum to write some code in what...
http://www.codeproject.com/KB/security/Hacking_BruteForce.aspx
crawl-002
refinedweb
1,360
63.49
#include <hallo.h>First, we (me and Thomas Schmidt) are working on a draft for a mandatorylocking scheme which will take care of the most racy situations evenwithout having a proper in-kernel solution. But you need to exlain somethings, otherwise we cannot rely on your words.> (open has side effects relocking doesnt)Wh...
https://lkml.org/lkml/2007/4/7/75
CC-MAIN-2016-36
refinedweb
174
57.37
Am I just imagining something, or is there a strlen command? If there is how do I use it? I want to be able to measure the length of a string. This is a discussion on Measuring string length within the C++ Programming forums, part of the General Programming Boards category; Am I just imagining something, or is there a ...
http://cboard.cprogramming.com/cplusplus-programming/1173-measuring-string-length.html
CC-MAIN-2014-52
refinedweb
764
77.84
[beginner] Deploying a ear file under JBoss AS 5Sarko Zio Jan 9, 2010 5:03 AM Hi everybody, I hope I'm in the right section! I developed a very basic "web service" (Hello world) following this tutorial. With Ant I generate the jar, war and ear files. Then I try to upload the ear using the Jboss Administration section b...
https://developer.jboss.org/thread/146582
CC-MAIN-2018-17
refinedweb
1,035
50.73
What Stoxy is a new, modern, reactive state management system for web applications. It's a small, dependencyless, extensible set of functions to create stateful features for you web app, and even persist them through sessions. How Stoxy requires no setup. After the install with npm install @stoxy/core You don't need to...
https://dev.to/matsuuu/dead-simple-state-management-with-stoxy-41pg
CC-MAIN-2021-39
refinedweb
408
56.76
6 releases (2 stable) 49 downloads per month Used in dart 230KB 5.5K SLoC dart-sys Native bindings to the dart native extensions sdk. This crate exposes an api for dart_api.h, which exposes the basic dart native extensions api. This crate used bindgen to generate the bindings to the header. Requirements when building b...
https://lib.rs/crates/dart-sys
CC-MAIN-2020-16
refinedweb
382
65.93
Write objects that function the same as those in Python's standard libraries. In this article, we discuss how to utilize built-in functions like _len_ and _eval_ to make objects in Python that make use of the language's data. Before we start exploring how to write a Pythonic Object, let us start by making it clear what...
https://morioh.com/p/c586907b19c6
CC-MAIN-2020-40
refinedweb
1,299
63.9
OpenStack SDK Post-Summit Update This is a long post about the OpenStack SDK. It even has a Table of Contents. Current Project Status The OpenStack SDK is quickly heading toward being usable for application developers. Leading up to the OpenStack Summit we had a reasonably complete Resource layer and had been working o...
http://blog.briancurtin.com/posts/openstack-sdk-post-summit-update.html
CC-MAIN-2017-09
refinedweb
2,514
58.92
Learn more about these different git repos. Other Git URLs hello,Can pagure be used with dist-git? How to configure pagure?Does anyone have the same problem What do you mean by this? Pagure can be deployed as a Dist-Git system, yes. That's how src.fedoraproject.org and git.centos.org work today. I am trying to install ...
https://pagure.io/pagure/issue/5236
CC-MAIN-2022-21
refinedweb
342
58.99
Before we get going on this month's task -- creating the client-side networking and building the server for our Interchange discussion forum -- let's quickly review the work we've completed on our forum at this point. In last month's edition, we discussed the specifications of the Interchange client -- the applet param...
http://www.javaworld.com/article/2077635/java-concurrency/write-your-own-threaded-discussion-forum--the-communications-and-server-components-.html
CC-MAIN-2017-17
refinedweb
1,809
54.73
This is XFrames - an XML application for composing documents together. URI: Copyright ©2002-2005 W3C (MIT, ERCIM, Keio), All Rights Reserved. Editor: Masayasu Ishikawa (mimasa@w3.org) Revision: $Id: xframes-1.xsd,v 1.9 2005/10/05 23:56:45 mimasa Exp $ Permission to use, copy, modify and distribute this XML Schema for X...
http://www.w3.org/People/mimasa/test/schemas/SCHEMA/xframes-1.xsd
crawl-002
refinedweb
151
50.33
Ticks are the markers denoting data points on axes. Matplotlib has so far - in all our previous examples - automatically taken over the task of spacing points on the axis.Matplotlib's default tick locators and formatters are designed to be generally sufficient in many common situations. Position and labels of ticks can...
https://www.tutorialspoint.com/matplotlib/matplotlib_setting_ticks_and_tick_labels.htm
CC-MAIN-2021-17
refinedweb
219
51.34
The following lab was originally assigned but skipped over because we were off for MLK day. I would still like to do it but am just not following what I should be doing. Help? In this lab you are going to extend the code you wrote in you first lab. You are going to add to the class Coin a variable value that represents...
https://www.daniweb.com/programming/software-development/threads/255390/in-the-fog
CC-MAIN-2017-26
refinedweb
804
68.3
When I saw the article Spell Check, Hyphenation, and Thesaurus for .NET with C# and VB Samples - Part 1: Single Threading which was published just a short time ago, I was really pleased to find that there is a DLL that does what I've been trying to do on my own for years. In this article, I'll describe a textbox object...
http://www.codeproject.com/Articles/44563/Spell-weller-but-grammar-s-up-to-you
CC-MAIN-2013-48
refinedweb
2,925
60.99
Every day, we generate a huge volume of varied data, which in its raw state, does nothing but occupy space. However, if the data is organised and manipulated, meaningful and valuable conclusions can be drawn from it. Therefore, the hunt is always on for tools that assist in the process of handling data. Python Pandas i...
https://opensourceforu.com/2019/08/working-with-data-analysis-and-relational-databases-in-python/
CC-MAIN-2019-39
refinedweb
2,200
53
The Classical Coulomb Gas as a Mixed Integer Quadratic Program The. import cvxpy as cvx import numpy as np #grid size N = 5 # charge variables q = cvx.Variable( N*N ,integer=True) # build our grid x = np.linspace(0,1,N) y = np.linspace(0,1,N) X, Y = np.meshgrid(x,y, indexing='ij') x1 = X.reshape(N,N,1,1) y1 = Y.reshape...
https://www.philipzucker.com/the-classical-coulomb-gas-as-a-mixed-integer-quadratic-program/
CC-MAIN-2021-39
refinedweb
432
57.33
When i run the below program from the console , it is showing the data it receives from serial input in the console. But , I want to display the data in the webpage , maybe in a box. How can I do it? The python program is #!python import time import cgi from serial import Serial import subprocess ser = Serial('COM4', 1...
http://www.tutorialspoint.com/forums/viewtopic.php?p=2848
CC-MAIN-2014-42
refinedweb
141
68.67
(Fully aware of the potential problems of quoting out of context and of the limitation of using analogies...) On 10/2/06, Scott David Daniels <Scott.Daniels at acm.org> wrote: > I'm catching up here, and just read the namespaces thing -- > How about "namespaces are like card catalogs in a closed stack library." Analogi...
https://mail.python.org/pipermail/edu-sig/2006-October/007327.html
CC-MAIN-2016-40
refinedweb
191
59.94
public static void main( String arg[] ) In the above statement, can I use an int array in place of the String array? What happens if I don’t put anything in the parenthesis, i.e if I use an empty parenthesis? When you compile the code with the changes that you mentioned, it will compile successfully. When you try to ru...
https://exceptionshub.com/java-basic-question.html
CC-MAIN-2022-05
refinedweb
605
55.74
-2013 01:58 PM Hi, I wrote a streaming based design in Vivado HLS 2013.2. It passes the testbench in C-Simulation, however it fails the testbench when doing RTL Co-simulation. The design has an input and an output stream. When called it consumes 10 values from the input streams and then replicates these 10 inputs fife ...
https://forums.xilinx.com/t5/Vivado-High-Level-Synthesis-HLS/HLS-Compiler-Bug-Streaming-Based-Design/m-p/349833
CC-MAIN-2019-22
refinedweb
1,798
64.81
0 using System; class abc { public static void fun() { Console.WriteLine("Function"); } public static void Main(string[] args) { ThreadStart ts=new ThreadStart(fun()); Console.WriteLine("Main begins"); Thread t=new Thread(ts); t.Start(); Console.WriteLine("Main ends"); } } Output showing Main Begins Main ends Function....
https://www.daniweb.com/programming/software-development/threads/140640/thread-execution-doubt
CC-MAIN-2018-13
refinedweb
125
77.03
1 - Introduction This is part one in a multi-part article series on building custom administrative user interfaces using the Dynamicweb UI controls such as the RibbonBar. As you may have seen in the article series on building custom modules, pages you create to manage your custom modules in the administrative section ...
https://devierkoeden.com/articles/building-dynamicweb-module-admin-interfaces-1-introduction
CC-MAIN-2019-39
refinedweb
1,921
53.41
NAME¶ FBB::CGI - handles GET and POST submitted form data SYNOPSIS¶ #include <bobcat/cgi> Linking option: -lbobcat DESCRIPTION¶ The class CGI offers an interface to data submitted by web-forms. The data is sent to a script handling the data using a <form action="/path/to/form/script"> stanza. Very often this is indeed ...
https://manpages.debian.org/bullseye/libbobcat-dev/cgi.3bobcat.en.html
CC-MAIN-2021-43
refinedweb
2,184
54.42
Python Programming/Decision Control/Solutions Write a program that has a user guess your name, but they only get 3 chances to do so until the program quits. name = raw_input("What's my name? ") answer = "Jack" attempt = 0 if name == answer: print("That's correct!") else: while name != answer and attempt < 2: attempt = ...
https://en.wikibooks.org/wiki/Python_Programming/Decision_Control/Solutions
CC-MAIN-2018-26
refinedweb
163
77.43
Created on 2001-10-03 02:25 by phr, last changed 2008-03-21 21:53 by gvanrossum. This issue is now closed. It would be nice if there was a documented library function for serializing Python basic objects (numbers, strings, dictionaries, and lists). By documented I mean the protocol is specified in the documentation, pr...
http://bugs.python.org/issue467384
CC-MAIN-2014-52
refinedweb
5,195
60.85
NRF24L01 as BLE Module with Arduino Today we will learn to use the NRF24L01 module as a BLE module with Arduino. Many times you may have come across that term called BLE, which stands for Bluetooth Low Energy, and it is basically a highly optimized version of Bluetooth. As we know that ESP32 comes with inbuilt, BLE cap...
https://theiotprojects.com/nrf24l01-as-ble-module-with-arduino/
CC-MAIN-2021-43
refinedweb
1,654
66.84
I was trying to write a C++ code to find if the entered number is prime or not. There is a big logic problem in the code which I have failed to fix. At least you can see I tried. Now please help me with it. It would be kind of you. #include <iostream> #include <cstdlib> using namespace std; int main() { int n, i; bool ...
http://forum.codecall.net/topic/63436-is-number-a-prime-or-not/
crawl-003
refinedweb
113
89.99
used. This blog post examines why we chose to go this route. We evaluated languages on the following criteria: - Developer Productivity.We would be working on a tight schedule. It was highly desirable to use a language that would allow us to write code as quickly as possible and get it into production as quickly as po...
https://softwarecorner.wordpress.com/2014/12/31/why-scala/
CC-MAIN-2017-26
refinedweb
6,815
72.46
#include <curses.h> The ins_wch() function inserts the complex character wch at the current cursor position of the stdscr window. The wins_wch() function performs the identical action but in window win. The mvins_wch() and mvwins_wch() functions insert the character at the position indicated by the x (column) and y (ro...
http://www.shrubbery.net/solaris9ab/SUNWaman/hman3xcurses/ins_wch.3xcurses.html
CC-MAIN-2015-18
refinedweb
129
50.23
Getting Started with the Raspberry Pi 2: Basic Input and Output The Raspberry Pi 2 has a number of input and output channels, or general purpose I/O (GPIO) ports, available for programmatic control. Python has been one of the more popular languages on the Raspberry Pi since its introduction and remains so with the Pi 2...
https://www.codeguru.com/IoT/getting-started-with-the-raspberry-pi-2-basic-input-and-output.html
CC-MAIN-2019-26
refinedweb
540
64.91
Ok, this one was just so frustrating I cannot keep it to myself. It costs so much time and nerves to realize that you were pointed in all but the right direction after all. So here it goes. I have added a user to the MySQL database, I require the SSL connection (actually X509) and it all works on my development system ...
http://blog.bidiuk.com/2010/01/mysql-and-ssl-error-1045-28000-access-denied-for-user/
CC-MAIN-2021-31
refinedweb
338
59.3
Beautiful typography: Opinionated Type. The last month Time. Campus impressions Gallery L.A. and San Diego Fourth. Extreme Geeky Tidying Up: Sorting image colors with Python and Hilbert curves There are levels of tidiness. Tidy. Very Tidy. Totally Deranged Tidy. Geeky Tidy. After sharing these awesome pictures by the S...
http://www.poeschko.com/blog/page/2/
CC-MAIN-2018-05
refinedweb
849
73.17
. Note: this guide requires Elixir v1.2.0 or later. You can check your Elixir version with elixir -v this guide is in this repository and can be used as a reference. Elixir’s executable in your PATH. If not, you can run it by passing the script as argument to elixir: $ bin/elixir bin/mix new kv --module KV Note that yo...
http://elixir-lang.org/getting-started/mix-otp/introduction-to-mix.html
CC-MAIN-2016-44
refinedweb
695
65.83
Sometimes we need to convert text into the images on the fly. This code converts the text into image and displays it onto the web page without saving it into a file on the disk. It also takes care of text wrapping. TextToImageConvertor can either be used in a web page or in a module. I have used this code in a web page...
http://weblogs.asp.net/yaneshtyagi/archive/2008/11/07/text-to-image-convertor.aspx
CC-MAIN-2013-20
refinedweb
1,830
67.15
Personally, I tend to always add parens to tuple expressions since it removes any and all ambiguity about when they're required or ney. I'd actually prefer it if parens were always required, but can appreciate that might/would offend those who prefer otherwise. >>> for (a, b) in d.items(): ... process(a, b) >>> def ite...
https://mail.python.org/pipermail/python-ideas/2010-September/008100.html
CC-MAIN-2017-30
refinedweb
141
65.62
Exporting a .ufo file with fontParts doesn't create a valid file - michelangelo last edited by gferreira Hello there, Frederik helped me a few months ago and using his script, I managed to save shapes as glyphs in a .UFO file but when I open them they have: no width (I probably need to specify this when saving but I di...
https://forum.drawbot.com/topic/142/exporting-a-ufo-file-with-fontparts-doesn-t-create-a-valid-file/6
CC-MAIN-2020-16
refinedweb
1,088
58.38
A library that makes writing pyhamcrest matchers easier and more fun. Project description PyHamcrest Toolbox PyHamcrest is a great thing for writing reusable tests, but sometimes writing your own matchers may be a bit of a chore. This project aims at making this task easy, fast and even fun (for want of a better word)....
https://pypi.org/project/pyhamcrest-toolbox/
CC-MAIN-2020-45
refinedweb
800
56.05
In this Program, you’ll learn how to find size of operator. Here declares 4 variables of type int, float, double and char. Then, the size of each variable is evaluated using size of operator. To nicely understand this example to find size of operator, you should have the knowledge of following C++ programming topics: -...
https://coderforevers.com/cpp/cpp-program/size-of-operator/
CC-MAIN-2019-39
refinedweb
240
58.96
Details - Type: Improvement - Status: Closed - Priority: Major - Resolution: Fixed - Affects Version/s: 2.1, 2.2 - - Component/s: Core Java Framework - Labels:None Description I process large documents--the String I pass to JCas.setSofaDataString may be as large 100 MBs (50,000,000 chars). This is causing the JVM to ru...
https://issues.apache.org/jira/browse/UIMA-483
CC-MAIN-2017-09
refinedweb
957
62.27
User talk:Carlb/Archive2 From Uncyclopedia, the content-free encyclopedia Voir aussi: Discussion Utilisateur:Carlb (currently broken) Veja também: Usuário Discussão:Carlb See also: User talk:Carlb Extensions for Hikipedia Hi, would it be possible to have a couple of new MediaWiki extensions installed on Finnish Uncyclo...
http://uncyclopedia.wikia.com/wiki/User_talk:Carlb/Archive2?direction=prev&oldid=3501829
CC-MAIN-2015-35
refinedweb
4,809
74.59
I WANT MORE : things like executing commands from the script I WANT MORE : things like executing commands from the script Careful, the text talks (in an aside) about the print() function. This is _wrong_, there is a print _statement_, but no print() function. Once more, a slight confusion over statements and expression...
http://forums.devshed.com/development-articles/63038-python-101-2-wishes-pythons-last-post.html
CC-MAIN-2016-40
refinedweb
487
72.26
Hi This is my 2nd attempt get an answer to my question. Hopefully it's the right sort of question(!) I have a document library in one site collection that I want to display in a DataView sitting on on another a site in a separate site collection. I am using the following data source pointing at a document library via ....
https://social.msdn.microsoft.com/Forums/sharepoint/en-US/c095406b-893d-4754-a714-b94367c9e035/owsfileref-is-ok-but-is-being-prefixed-by-the-current-site-url?forum=sharepointcustomizationprevious
CC-MAIN-2018-05
refinedweb
304
60.85
If you use make-kpkg to build your kernels and you’re running Lenny you may have had problems building 2.6.34 when it came out. With kernel-package version 11.015 I’m getting the following error: The UTS Release version in include/linux/version.h "" does not match current version: "2.6.34" Please correct this I’m sure ...
https://twobit.org/2010/06/
CC-MAIN-2019-26
refinedweb
366
53.78
A Warning About Overloading Methods in Java A Warning About Overloading Methods in Java Autoboxing and method overloading can be useful when building a Java app. But sometimes these features can cause confusion, improper outputs, or errors, if not handled carefully. Join the DZone community and get the full member expe...
https://dzone.com/articles/java-notes-overloading
CC-MAIN-2019-39
refinedweb
597
65.42
Red Hat Bugzilla – Bug 569833 Review Request: drupal6 - An open-source content-management platform Last modified: 2010-10-26 14:02:27 EDT Equipped with a powerful blend of features, Drupal is a Content Management System written in PHP that can support a variety of websites ranging from personal weblogs to large communi...
https://bugzilla.redhat.com/show_bug.cgi?id=569833
CC-MAIN-2018-39
refinedweb
2,305
68.36
The unification of OO and functional paradigms in Scala is managed by an advanced static type system - - Scala supports algebraic data types, that can be decomposed for pattern matching as found in functional languages. - Scala also offers class hierarchy based static typing of object oriented languages Thus Scala can ...
http://debasishg.blogspot.com/2006/03/scala-everything-is-object.html
CC-MAIN-2017-39
refinedweb
749
53.92
Ok, I am creating functions to be used with a game title server. This server uses plug ins. I've these characteristics wich make use of a sqlite database, together with apsw to retrieve products saved by another function. I've 3 questions about this. Question One: I keep obtaining the error "SQLError: near "?": syntax ...
http://codeblow.com/questions/3-questions-including-python-and-sqlite/
CC-MAIN-2017-51
refinedweb
314
50.12
Learning Java/Decision Structures Intro[edit | edit source] Control flow blocks are basically blocks of code that control the way data flows, or else which statements are executed when. This can be useful if you only want certain areas of your code to be executed under a given condition. There are two major types of de...
https://en.wikiversity.org/wiki/Learning_Java/Decision_Structures
CC-MAIN-2021-31
refinedweb
2,131
70.13
Are you sure? This action might not be possible to undo. Are you sure you want to continue? 2012-13 One of the most basic queries that I always get is: What are the applicable IT slab rates for the current year? Well, knowing the IT brackets and the income tax rates for each is one of the most important steps in calcul...
https://www.scribd.com/document/86633157/Awareness-About-Income-Tax-in-F-Y-2012-13
CC-MAIN-2018-09
refinedweb
1,450
73.27
Sysinternals SuiteThe entire set of Sysinternals Utilities rolled up into a single download. AccessChkv5.03 (March 23, 2012.42 (July 29, 20103.01 (February 23, 2011)Bypass password screen during logon. Autorunsv11.3 (May 14, 2012)See what programs are configured to startup automatically when your system boots and you l...
http://technet.microsoft.com/en-us/sysinternals/bb545027(l=en-us)
crawl-003
refinedweb
394
53.47
Don't ad-block us - support your favorite websites. We have safe, unobstrusive, robotics related ads that you actually want to see - see here for more. 0 Members and 1 Guest are viewing this topic. I have the following problem: my robot should look around, store what it saw with its sharp en than drive towards the most...
http://www.societyofrobots.com/robotforum/index.php?topic=9009.msg70576
CC-MAIN-2014-52
refinedweb
607
78.25