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
How do you get Jetty not to work on request? I'm studying Java, Jetty, Servlet. I want to study Spring later. Is that what the question is, how do you get the server to do my code permanently or with some frequency without a client's request? For example, I have sensors that need to gather information in advance, and l...
https://software-testing.com/topic/888188/how-do-you-get-jetty-not-to-work-on-request
CC-MAIN-2022-21
refinedweb
485
62.27
Quixote 0.4.6 CHANGES * a last-minute patch to http_request.py just before release 0.4.5 broke extracting form data from GET requests -- fixed that 0.4.5 (11 Apr 2002): * The meaning of the DISPLAY_EXCEPTIONS configuration variable has changed. It's no longer a Boolean, and instead can take three different values: None...
http://lwn.net/2002/0418/a/quixchanges.php3
crawl-003
refinedweb
1,465
60.61
my teacher only teach to read char with system.in.read(),is there any way to read a char with scanner?? and is a String of "a" same as a char of 'a' . Printable View my teacher only teach to read char with system.in.read(),is there any way to read a char with scanner?? and is a String of "a" same as a char of 'a' . Hel...
http://www.javaprogrammingforums.com/%20java-se-apis/717-reading-char-scanner-printingthethread.html
CC-MAIN-2018-05
refinedweb
350
82.44
Creating Imports On this page: Introduction The import statement adds to the imports section, but the cursor does not move from the current position, and your current editing session does not interrupt. This feature is known as the Import Assistant. The same possibility applies to the XML files. When you type a tag wit...
https://www.jetbrains.com/help/webstorm/2016.3/creating-imports.html
CC-MAIN-2017-04
refinedweb
161
55.44
Directory Listing branch for MPI versioned AMG Darcy flow solver is now supporting 4 solvers Check for gmsh in main SConstruct file and skip tests that depend on it when the executable is not found. Added missing cookbook figures from Anthony. Fixed some minor doxygen issues..' example10c removed from testing as it is ...
https://svn.geocomp.uq.edu.au/escript/branches/amg_from_3530/doc/?view=log&pathrev=6049
CC-MAIN-2019-09
refinedweb
439
54.79
I load a gpx track to Potlatch 2. It appears as a blue line. I want to edit it to convert it into a path, give it a name and put it in OSM, but no luck! So, my track is visible as a blue line, but how to edit it in Potlatch 2? If I try to select the track, only a red point appears, but the whole track is not selected. ...
https://help.openstreetmap.org/questions/5110/dont-manage-loading-a-gpx-and-then-editing-it-to-a-path-in-osm?sort=newest
CC-MAIN-2019-51
refinedweb
620
78.38
Loads a (directed, undirected or multi) graph from a text file InFNm with 1 edge per line (whitespace separated columns, int node ids). InFNm is a whitespace separated file of several columns: ... <source node id> ... <destination node id> ... Since the function assumes each line of the file encodes a single edge and a...
https://snap.stanford.edu/snappy/doc/reference/LoadEdgeList.html
CC-MAIN-2017-51
refinedweb
210
68.87
#include <hallo.h> Steve Lee wrote on Mon Nov 12, 2001 um 03:37:30PM: > i What is your distribution? If you use initrd booting system, make sure you included the modules for the IDE chipset and IDE harddisks (bl-mj-3 is /dev/hd*) in your initrd image. If you are using Debian Woody, please upgrade to the latest version ...
https://listman.redhat.com/archives/ext3-users/2001-November/msg00257.html
CC-MAIN-2017-04
refinedweb
108
71.85
Universal Table Editor is an ASP application to view and edit data in any database you can reach via ADO from your IIS. Compatible databases are e.g. MS Access�, MS SQL Server� or Oracle�. UTE is also able to export the data of a table into comma delimited text files ( .CSV) which are readable e.g. by MS Excel�. UTE is...
http://www.codeproject.com/KB/asp/ute.aspx
crawl-002
refinedweb
1,914
63.8
Easy Admin Interfaces with Active Admin in RailsBy Joyce Echessa). For now, you’ll have to use the master branch. Also, the maintainers of the Active Admin Github repo warn that the documentation at the official website is outdated and, for the latest docs, you should check the Github repo page itself. Installation and...
https://www.sitepoint.com/easy-admin-interfaces-active-admin-rails/
CC-MAIN-2017-30
refinedweb
2,148
59.5
The new PhpStorm 2018.1 EAP build (181.3986.12) is now available! You can download it here or via JetBrains Toolbox App. Or, if you have the previous PhpStorm 2018.1 EAP build (181.3870.19) installed, you should soon get a notification in the IDE about a patch update. This build delivers new features, bug fixes, and im...
https://blog.jetbrains.com/phpstorm/2018/02/phpstorm-2018-1-eap-181-3986-12/
CC-MAIN-2018-39
refinedweb
191
65.12
The function int putc(int character, FILE *stream); writes a character to the given stream and increment the internal position indicator by one. Function prototype of putc int putc(int character, FILE *stream); - character : This is the character to be written on stream. - stream : A pointer to a FILE object which iden...
http://www.techcrashcourse.com/2015/08/putc-stdio-c-library-function.html
CC-MAIN-2018-17
refinedweb
253
60.85
Updated on Kisan Patel The group operator transforms sequence into a sequence of groups. The group operator can be used to project a result grouped by a key. It can be used as an alternative to the from clause and allows you to use single-value keys as well as multiple-value keys. The group operator implements IGroupin...
http://csharpcode.org/blog/c-linq-grouping-operator/
CC-MAIN-2019-18
refinedweb
217
58.08
. I always miss 3D printer when build any project. You can make a cool 3D for printed cage if you have access to 3D printer to bring more professional look. You can easily modify it to work as wireless keyboard, wireless mouse or wireless presenter. Step 1: What You Need COMPONENTS - Arduino Micro (Seeedstudio) or Pro ...
https://www.instructables.com/id/DIY-Wireless-Joystick-Wireless-Gaming/
CC-MAIN-2018-51
refinedweb
1,937
66.33
dakota ferrell1,454 Points how can I get this code to work? l1 = ([1, 2, 3, 1, 2, 3]) l3 = set(l1) l2 = list(set(l1)) l4 = list(l3) print(l1, l2, l3, l4) def user_number (num): user_num = input ("whats your number?") num = user_num return user_num number = print(user_number(1)) if user_number == 2: print("found") 2 Ans...
https://teamtreehouse.com/community/how-can-i-get-this-code-to-work
CC-MAIN-2020-10
refinedweb
281
67.42
Matplotlib provides a function, streamplot, to create a plot of streamlines representing a vector field. The following program displays a representation of the electric field vector resulting from a multipole arrangement of charges. The multipole is selected as a power of 2 on the command line (1=dipole, 2=quadrupole, ...
https://scipython.com/blog/visualizing-a-vector-field-with-matplotlib/
CC-MAIN-2019-22
refinedweb
1,186
73.37
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. How to copy field value in odoo 8 ? How to copy field value in odoo . . Let say i have two field called name and name1 i want to ...
https://www.odoo.com/forum/help-1/question/how-to-copy-field-value-in-odoo-8-88255
CC-MAIN-2017-47
refinedweb
254
70.39
Introduction to MongoDB for Java, PHP and Python Developers Introduction to NoSQL Architecture with MongoDB for Java, PHP and Python Developers This article covers using MongoDB as a way to get started with NoSQL. It presents an introduction to considering NoSQL, why MongoDB is a good NoSQL implementation to get starte...
http://www.infoq.com/articles/mongodb-java-php-python/
CC-MAIN-2014-52
refinedweb
8,666
55.24
Building a collection of my common use Sass mixins, functions and snippets. All written with SCSS syntax. Mixins for CSS3 animation, @keyframes and transition defintions. Curated list of awesome Sass and SCSS frameworks, libraries, style guides, articles, and resources..sass scss css This is a bare bones HTML/CSS frame...
https://www.findbestopensource.com/product/magnetikonline-sass-boilerplate
CC-MAIN-2020-45
refinedweb
423
55.64
/* machine description file for hp9000 series 200 or 300 on either HPUX or BSD.="note" NOTE-START HP 9000 series 200 or 300 (-machine=hp9000s300) These machines are 68000-series CPUs running HP-UX (a derivative of sysV with some BSD features) or BSD 4.3 ported by Utah. If you're running HP-UX, specify `-opsystem=hpux'....
https://emba.gnu.org/emacs/emacs/-/blame/5df583315f5e5c9f53473e7ad60fb3a334f05cd2/src/m/hp9000s300.h
CC-MAIN-2021-31
refinedweb
622
59.09
Overview Atlassian Sourcetree is a free Git and Mercurial client for Windows. Atlassian Sourcetree is a free Git and Mercurial client for Mac. flatland Flatland maps between rich, structured Python application data and the string-oriented flat namespace of web forms, key/value stores, text files and user input. Flatlan...
https://bitbucket.org/jek/flatland
CC-MAIN-2017-47
refinedweb
133
50.12
This is the first part of a series of tutorials on C#. In this part we are introducing the fundamental concepts of the language and it's output, the Microsoft Intermediate Language (MSIL). We will take a look at object-oriented programming (OOP) and what C# does to make OOP as efficient as possible to realize in practi...
http://tech.pro/tutorial/1172/an-advanced-introduction-to-c
CC-MAIN-2014-42
refinedweb
9,412
54.63
I'm currently writing part of a lab program for a data structures class I'm taking. I'm only partway into the lab, so there's not much written at the moment. First, let me apologize in advance. This code will be a bit messy, as the last two CS classes I had were not in C++, and it's been almost a year since I've coded ...
http://cboard.cprogramming.com/cplusplus-programming/140561-can%27t-solve-certain-seg-fault.html
CC-MAIN-2015-48
refinedweb
529
72.36
Before I start I am not asking for anyone to JUST give me the answer, but I would like help on where to go and what it means when I am told to add blank here. My assignment this week deals with creating a date program. I have to have a user input and it must follow the correct formatting or else the program needs to in...
http://www.dreamincode.net/forums/topic/247921-date-formatting-program/
CC-MAIN-2016-40
refinedweb
238
71.34
Subject: [ggl] Headers order (was: problems with Boost Geometry Xcode compile?) From: Mateusz Loskot (mateusz) Date: 2010-03-11 16:48:57 Bruno Lalande wrote: >>. Bruno, You're right, of course. I wasn't referring to macros only, but to all definitions, to headers as a whole. > So it makes sense to include everything th...
https://lists.boost.org/geometry/2010/03/0674.php
CC-MAIN-2020-34
refinedweb
297
67.76
Ben Hyde wrote: > > Ben Laurie writes: > >Dean Gaudet wrote: > >> > >> How about someone describe the actual difficulties that lead to this whole > >> gc discussion before we take it any further? > >> > >>... > > > >Cheers, > > > >Ben. > > Ok, but ... My model of pools is that they are owned by some activity, > and whe...
http://mail-archives.apache.org/mod_mbox/httpd-dev/199809.mbox/%3C35FD2CD6.70978213@algroup.co.uk%3E
CC-MAIN-2016-07
refinedweb
231
65.86
#include <mpi.h> int MPI_Type_ub(MPI_Datatype datatype, MPI_Aint *displacement) INCLUDE 'mpif.h' MPI_TYPE_UB(DATATYPE, DISPLACEMENT, IERROR) INTEGER DATATYPE, DISPLACEMENT, IERROR This deprecated routine is not available in C++. MPI_Type_ub returns the lower bound of a data type. The "pseudo-datatypes," MPI_LB and MPI_...
http://www.makelinux.net/man/3/M/MPI_Type_ub
CC-MAIN-2014-10
refinedweb
114
52.8
Intel Claims Smallest, Fastest Transistor 116 The Angry Clam writes: "Supposedly, Intel has really micronized transistors." Seems that "Intel engineers have designed and manufactured a handful of transistors that are only 20 nanometers, or 0.02 microns, in size." There's some of the usual discussion of how long Moore's...
https://slashdot.org/story/01/06/10/0230211/intel-claims-smallest-fastest-transistor
CC-MAIN-2017-39
refinedweb
6,317
63.8
As part of my ongoing career quest to become full-stack, there's several tasks I must complete, such as: - Storm the castle - Slay the dragon - Save the princess - Learn Ruby on Rails Thankfully I can go in any order, so I started with Rails! After finishing the always helpful Ruby on Rails Tutorial, I looked to learn ...
https://dev.to/maxwell_dev/my-first-ruby-on-rails-presenter-819
CC-MAIN-2021-21
refinedweb
1,455
56.55
Let's Refactor My Personal Website and Portfolio using Gatsby, Part Two: Generating the Site and Installing Dependencies Michael Caveney Updated on ・3 min read Welcome to part two of my site refactor! If you missed part one, click here to check it out. Today I'm going to generate the site using the Gatsby CLI, create b...
https://dev.to/dylanesque/let-s-refactor-my-personal-website-and-portfolio-using-gatsby-part-two-generating-the-site-and-installing-dependencies-29ee
CC-MAIN-2019-47
refinedweb
743
63.49
Is there any way to force Eevee to display and render video textures? Yes! You need a script and to keep the image editor open like in 2.7. Props to zanqdo: import bpy def clipReload(scene): bpy.data.images['pasteclipnamere.mp4'].reload() print('Clip Reloaded') bpy.app.handlers.frame_change_pre.append(clipReload) Put ^...
https://blenderartists.org/t/eevee-and-video-textures/1138037
CC-MAIN-2020-50
refinedweb
275
74.49
Spyder is a Python IDE that is itself written in Python. Plugins are created by putting a python file in spyder’s ‘spyderplugins/’ directory, which you probably can’t do if you’re using the installed version of Spyder: you’ll instead need the Spyder source code. Spyder’s home repository can be found at bitbucket (), bu...
http://tellurium.analogmachine.org/plugins/writing-ide-plugins/
CC-MAIN-2017-22
refinedweb
686
55.84
if varianbles are declared within a function, do they die when the function finish? This is a discussion on do variables die in function within the C++ Programming forums, part of the General Programming Boards category; if varianbles are declared within a function, do they die when the function finish?... if varianble...
http://cboard.cprogramming.com/cplusplus-programming/51852-do-variables-die-function.html
CC-MAIN-2015-40
refinedweb
488
62.27
3 replies on 1 page. Most recent reply: Aug 30, 2006 11:40 AM by Jules Jacobs In You Shouldn't Compare Rails to Java EE 5, or JavaScript/Ruby to the Java Language, Adam Bien suggests that the technique of favoring convention over configuration is most suited to green field designs—brand new designs that have no require...
http://www.artima.com/forums/flat.jsp?forum=281&thread=174073
CC-MAIN-2014-52
refinedweb
210
59.94
Using Clojure With SAP Hybris Commerce Using Clojure With SAP Hybris Commerce This quick, simple guide will get you set up using Clojure with SAP Hybris Commerce with a custom extensions for the integration. Join the DZone community and get the full member experience.Join For Free Download Microservices for Java Develo...
https://dzone.com/articles/using-clojure-with-sap-hybris-commerce
CC-MAIN-2018-17
refinedweb
403
53.61
I'd like to do the equivalent of fitting a model of gpm (gallons per mile = 1/mpg) to wt in the mtcars data set. That seems easy: data(mtcars) library(dplyr) library(tidyr) library(broom) library(ggplot2) library(scales) mtcars2 <- mtcars %>% mutate(gpm = 1 / mpg) %>% group_by(cyl, am) lm1 <- mtcars2 %>% do(fit = lm(gp...
https://codedump.io/share/oOQMmu9oEidV/1/how-can-i-apply-grouped-data-to-grouped-models-using-broom-and-dplyr
CC-MAIN-2016-44
refinedweb
422
58.69
Thank you for fixing it :-)This time it builds alright. I understand IronPython and DLR will continue to be developed with .NET Framework 2.0 as target. I'd like to ask, though, now that the DLR expression tree has moved into System.Linq.Expressions namespace, what would be the preferred solution to resolving conflict ...
https://mail.python.org/pipermail/ironpython-users/2008-July/007743.html
CC-MAIN-2014-15
refinedweb
219
69.79
Search found 3 matches Search found 3 matches • Page 1 of 1 - Mon Jun 20, 2011 4:34 pm - Forum: Arduino - Topic: Uno power source/adapter? - Replies: 6 - Views: 970 Re: Uno power source/adapter? Take the board to Radioshack or Fry's. They should have some jacks. Just test fit a couple then solder up a cable. I think th...
https://forum.sparkfun.com/search.php?author_id=38912&sr=posts
CC-MAIN-2019-09
refinedweb
195
83.86
China Top Ten Brand DAYANG motorcycle spare parts thailand fo... US $738-1300 1 Set (Min. Order) High Sell Motorcycle Spare Parts Thailand For CG125 US $0.6-1 5000 Sets (Min. Order) Best quality Green motorcycle spare parts thailand of ... US $3.65-4.5 500 Pieces (Min. Order) zongshen motorcycle spare parts thailand wi...
http://www.alibaba.com/showroom/motorcycle-spare-parts-thailand.html
CC-MAIN-2015-48
refinedweb
539
72.83
Is there a way to get view.replace() to use regex as it's replace? I have a plugin which will take multiple find and replace strings from a file and carry them out, view.find() will parse a regex string but view.replace() will just replace it literally, not taking into account things like "\1". I guess it doesn't work ...
https://forum.sublimetext.com/t/view-replace-regex/8566/6
CC-MAIN-2016-18
refinedweb
696
65.73
Blog Map Today, the development team for the Open XML SDK has announced that they have released the first Community Technology Preview (CTP) of version 2 of the Open XML SDK. Download it at. There is a lot of very cool stuff in this release, including: This is a big step forward. Version 1 of the SDK provided us with s...
http://blogs.msdn.com/b/ericwhite/archive/2008/09.aspx?PageIndex=19
CC-MAIN-2014-23
refinedweb
1,063
62.68
The Bioconductor build system does not have the MEME Suite installed, therefore these vignettes will not contain any R output. To view the full vignette, visit this article page on the memes website at this link TomTom is a tool for comparing motifs to a known set of motifs. It takes as input a set of motifs and a data...
http://bioconductor.org/packages/release/bioc/vignettes/memes/inst/doc/core_tomtom.html
CC-MAIN-2021-49
refinedweb
1,546
55.54
Java stream order of processing Streams may or may not have a defined encounter order. Whether or not a stream has an encounter order depends on the source and the intermediate operations. Certain stream sources (such as java.util.List or arrays) are intrinsically ordered, whereas others (such as java.util.HashSet) are...
http://java.boot.by/ocpjd11-upgrade-guide/ch04s02.html
CC-MAIN-2021-21
refinedweb
796
50.02
To steal a quote from JWZ, Some people, when confronted with a problem, think “I know, I’ll use cgo.” Now they have two problems. Recently the use of cgo came up on the Gophers’ slack channel and I voiced my concerns that using cgo, especially on a project that is intended to showcase Go inside an organisation was a ba...
https://dave.cheney.net/2016/01
CC-MAIN-2017-13
refinedweb
1,710
63.73
[Angular2] "ons is not defined" using latest Angular-CLI Hi all, I am trying to get OnsenUI set up in my new Angular2 project using the latest beta of Angular-CLI which uses Webpack. There was an earlier post about Angular-CLI here, but that is about an older version of the Angular-CLI that still uses SystemJS. The err...
https://community.onsen.io/topic/930/angular2-ons-is-not-defined-using-latest-angular-cli
CC-MAIN-2019-04
refinedweb
326
55.54
Beyond the Java Server Pages (17 messages) HJ incorporates Java and HTML operators into a single formal grammar. We may consider the language as consisting of three parts – subset of Java, subset of HTML and all the rest. The latter serves for code factorization and reuse as well as for ‘gluing’ Java and HTML. Widgets ...
http://www.theserverside.com/news/thread.tss?thread_id=54866
CC-MAIN-2014-35
refinedweb
2,546
63.7
We briefly mentioned the enum in our last lesson, so I felt like now would be a great time to cover it in greater depth. At the same time, we can expand on the topic and introduce Flags (bit masks). Some of this gets a bit deeper into the nerdy side of programming, but I will try to keep everything easy to understand. ...
https://theliquidfire.com/2015/03/18/enums-and-flags/
CC-MAIN-2021-10
refinedweb
1,548
62.61
Pre knowledge Segment tree Segment tree is a binary search tree, which is similar to interval tree. It divides an interval into some unit intervals, and each unit interval corresponds to a leaf node in the segment tree. Using the segment tree, you can quickly find the number of occurrences of a node in several segments...
https://programmer.group/logu-p4513-segment-tree-maintenance-dynamic-interval-maximum-sub-segment-sum.html
CC-MAIN-2022-27
refinedweb
1,005
67.38
Red Hat Bugzilla – Bug 157744 rederer import not found Last modified: 2008-01-23 13:14:55 EST Description of problem: I just did a fresh install of FC4T3 and when I invoke system-config-lvm from the menu nothing happens. Invoking it from the command line yields a traceback with the following message Traceback (most rec...
https://bugzilla.redhat.com/show_bug.cgi?id=157744
CC-MAIN-2017-17
refinedweb
426
60.11
. Introduction. Installing Flask If you have it installed, it should output the version, as shown in figure 1. Figure 1 – Checking pip version. Assuming that you already have pip, to install the Flask module simply send the following pip command on the command line: pip install flask After the installation finishes, yo...
https://techtutorialsx.com/2018/04/25/raspberry-pi-3-raspbian-running-a-flask-server/
CC-MAIN-2019-43
refinedweb
871
71.34
Life is definitely digital. The genetic code of all living organisms are represented by a long sequence of simple molecules called nucleotides, or bases, which makes up the Deoxyribonucleic acid, better known as DNA. There are only four such nucleotides, and the entire genetic code of a human can be seen as a simple, t...
http://hplgit.github.io/bioinf-py/doc/pub/html/main_bioinf.html
CC-MAIN-2020-05
refinedweb
13,975
51.68
I'm using ST3 as an external editor to display error logs from another application (katana) with syntax highlighting. So katana launches sublime via a wrapper script that includes sublime_text --wait pathToErrorLog.txt. My package includes the .tmLanguage with highlighting rules and .tmTheme for custom color scheme, an...
https://forum.sublimetext.com/t/on-load-eventlistener-not-called-on-first-launch/29105
CC-MAIN-2018-22
refinedweb
194
55.61
When using mutables in Python you have to be careful: >>> a = {'value': 1} >>> b = a >>> a['value'] = 2 >>> b {'value': 2} So, you use the copy module from the standard library: >>> import copy >>> a = {'value': 1} >>> b = copy.copy(a) >>> a['value'] = 2 >>> b {'value': 1} That's nice but it's limited. It doesn't deal ...
https://www.peterbe.com/plog/must__deepcopy__
CC-MAIN-2019-09
refinedweb
1,160
59.6
#include <nsIFrame.h> Frames can have multiple child lists: the default unnamed child list (referred to as the principal child list, and additional named child lists. There is an ordering of frames within a child list, but there is no order defined between frames in different child lists of the same parent frame. Frame...
http://xulrunner.sourcearchive.com/documentation/1.9.0.5/classnsIFrame.html
CC-MAIN-2018-22
refinedweb
162
81.02
I was reading Effective Java by Joshua Bloch. In Item 17: "Use interfaces only to define types", I came across the explanation where it is not advised to use Interfaces for storing constants. I am putting the explanation below. "Worse, it represents a commitment: if in a future release the class is modified so that it ...
https://codedump.io/share/d6lgkbbplbkS/1/what-is-binary-compatibility
CC-MAIN-2018-17
refinedweb
234
55.24
鸕鶿鸕鶿 Extensible Free Monad Effects Do one thing and do it well micro birds library series libraryDependencies += "us.oyanglul" %% "luci" % <version>" Table of Contents - 鸕鶿 The ProblemThe Problem When you want to mix in some native effects into your Free Monad DSL, some effects won't work for instance, we have two effe...
https://index.scala-lang.org/jcouyang/luci/luci/0.3.2?target=_2.12
CC-MAIN-2020-50
refinedweb
1,111
52.8
Threaded View Answered: Use XmlReader/AutoBeans to parse XML that has attributes in the element? Answered: Use XmlReader/AutoBeans to parse XML that has attributes in the element? Can the XmlReader in conjunction with AutoBeans process an XML message that has attributes within the root node element? The GXT example (wh...
http://www.sencha.com/forum/showthread.php?249236-Use-XmlReader-AutoBeans-to-parse-XML-that-has-attributes-in-the-element&p=912361&mode=threaded
CC-MAIN-2014-42
refinedweb
585
53.65
rudi 18 Posted January 12, 2013 (edited) Hi everybody, and a (late) Happy New Year!Reading up the help files I'm not sure, if I got the steps to open / use / disconnect / shutdown the TCP services correctly, server and client side.This is a basic draft, please correct me, if I missed something important, tx.Server side...
https://www.autoitscript.com/forum/topic/147425-autoit-tcp-functions-how-to-use-correctly-order/
CC-MAIN-2018-43
refinedweb
517
54.93
Content All Articles Python News Numerically Python Python & XML Community Database Distributed Education Getting Started Graphics Internet OS Programming Scientific Tools Tutorials User Interfaces ONLamp Subjects Linux Apache MySQL Perl PHP Python BSD Cooking with Python, Part 2 Pages: 1, 2 Credit: David Eppstein, Tim...
http://archive.oreilly.com/pub/a/python/excerpt/pythonckbk_chap1/index1.html?page=2
CC-MAIN-2015-40
refinedweb
1,052
54.05
Applies to: C166 C Compiler I have C166 compiler v1.13. Why is it impossible to use return(0); in a function which is declared as: void function_name (void) The reason for the error/warning message is because a void function, by definition, does not return a value. When you include the return (0) statement, you are say...
http://infocenter.arm.com/help/topic/com.arm.doc.faqs/ka9099.html
CC-MAIN-2017-22
refinedweb
117
57.67
C Programming/Memory management In C, you have already considered creating variables for use in the program. You have created some arrays for use, but you may have already noticed some limitations: - the size of the array must be known beforehand - the size of the array cannot be changed in the duration of your program...
https://en.wikibooks.org/wiki/C_Programming/Memory_management
CC-MAIN-2017-34
refinedweb
1,429
52.19
01 February 2010 23:20 [Source: ICIS news] HOUSTON (ICIS news)--US major Dow Chemical may have lined up a private-equity firm to buy its styrene group, Styron, producers and traders said on Monday, the day before the company's fourth-quarter earnings announcement. A producer said it was unlikely that any company would ...
http://www.icis.com/Articles/2010/02/01/9330719/market-talk-rises-on-possible-buyer-for-dows-styron.html
CC-MAIN-2015-11
refinedweb
178
54.52
hi all, i need to get all the data in the list (which is posted in the form) and store it, separating each list item with comma's. Its really clear in the code...this is what ive tried so far..it doesnt compile and it seems to complain about this line of code photos = form["photolist"]...thanks for any help html form--...
https://www.daniweb.com/programming/software-development/threads/22312/get-posted-form-data-in-python
CC-MAIN-2018-17
refinedweb
120
70.09
Padre::DB::Session - Padre::DB class for the session table my @sessions = Padre::DB::Session->select; This class allows storing in Padre's database the session that Padre knows. This is useful in order to quickly restore a given set of files. This is the primary table, you also need to check Padre::DB::SessionFiles. my...
http://search.cpan.org/~plaven/Padre-1.00/lib/Padre/DB/Session.pm
CC-MAIN-2017-43
refinedweb
301
54.32
Search: Search took 0.03 seconds. - 8 Oct 2010 2:01 AM Inside the drag start of panel 1 , I don't know How can I get the element ( source and component var are equals to ContentPanel) - 8 Oct 2010 1:56 AM Thank you for your quickly answer. How can I cancel the drag interaction of the panel 1 ? Maybe, It's means that th...
https://www.sencha.com/forum/search.php?s=fb6bc6ba3bdd7a4b8cdb861c11e06b62&searchid=13303257
CC-MAIN-2015-48
refinedweb
755
80.01
Hello every one. I just got XP and I installed Visual Studio 6.0 on my computer. When I opened Visual C++ 6.0 I wanted to compile a free-bug error code. Then I checked it with a regular simple code like the "Hello World" program. It didnt't work. It said an error. Why?? It was a simple code that every code should have ...
http://cboard.cprogramming.com/cplusplus-programming/65907-problem-visual-cplusplus-6-0-a.html
CC-MAIN-2014-35
refinedweb
188
79.56
. These functions are declared in the header file `gsl_odeiv.h'._system datatype. int (* function) (double t, const double y[], double dydt[], void * params) int (* jacobian) (double t, const double y[], double * dfdy, double dfdt[], void * params); J(i,j) = dfdy[i * dimension + j]where dimensionis the dimension of the...
http://linux.math.tifr.res.in/programming-doc/gsl/gsl-ref_25.html
CC-MAIN-2017-39
refinedweb
871
55.58
Now that you hopefully have the required supplies (Raspberry Pi, male-female jumper wires, bread-board, resistor and LED light), you're ready to tackle a basic example of using GPIO (General Purpose Input Output). Because we're using multiple devices here, it may be a bit confusing with how we're communicating with the...
https://pythonprogramming.net/gpio-example-raspberry-pi/
CC-MAIN-2019-26
refinedweb
794
73.88
xlsx files produced in some environments are incompatible/invalid I recently came across an issue where openpyxl on my dev machine was producing perfectly valid xlsx files, but the same code was producing incompatible xlsx files on my staging server. I traced this down to my staging server having lxml installed while m...
https://bitbucket.org/openpyxl/openpyxl/issues/252
CC-MAIN-2019-04
refinedweb
543
66.74
Nmap Development mailing list archives Hello devs, I have two ideas for NSE, I will keep these brief for now but based on the response I may flesh this ideas out further. - NSE for Ncat NSE is extremely useful for rapidly writing simple network programs, currently this programmers are attached to the Nmap scanning engi...
http://seclists.org/nmap-dev/2009/q2/841
CC-MAIN-2014-41
refinedweb
301
52.02
We know that one can set attributes of a function like this: def foo(): pass foo.__setattr__("nameattr","myname") def foo(): #self.__setattr__("nameattr","myname") pass You can just put the assignment inside the body of the function: def foo(): foo.nameattr = value Or: def foo(): setattr(foo, "nameattr", value) There i...
https://codedump.io/share/BF3OWVBrqBPX/1/how-to-set-attributes-of-a-function-when-defining-this-function
CC-MAIN-2017-39
refinedweb
216
64.81
Red Hat Bugzilla – Bug 86339 Update to glibc-2.3.2-4.80 breaks SSH Last modified: 2016-11-24 09:49:16 EST Description of problem: After Upgrade to glibc-2.3.2-4.80 as per the RHSA-2003:089 - Security Advisory, sshd will disconnect remote connections after providing the username. No errors are logged in /var/log. Versio...
https://bugzilla.redhat.com/show_bug.cgi?id=86339
CC-MAIN-2017-17
refinedweb
1,134
70.02
Hi Maeda-san, Bjorn, Although the ACPI spec says that SCI is 'active-low, level' interrupt, there are many platforms that doesn't follow the rule (what I've seen are almost active-high, level). I think Maeda-san's case is just a wrong polarity. Usually those platforms would describe the polarity and trigger of SCI in '...
http://www.gelato.unsw.edu.au/archives/linux-ia64/0403/9013.html
CC-MAIN-2020-24
refinedweb
521
51.58
How Do I detect an OS version? In Win32 SDK, we have an API GetVersionEx that returns the information in OSVERSIONINFO structure. And then we can look at the values of various members of structures to decide what version of operating system we are running on. To accomplish the same task, .NET SDK provides a class named...
https://www.c-sharpcorner.com/UploadFile/kamran_shakil/find-an-operating-system-version/
CC-MAIN-2018-13
refinedweb
305
59.09
Yet Another Dataset Proposal Contents Informative Introduction When working with RDF, it is often desirable to have a data structure that can comprise multiple RDF graphs. This is especially true when dealing with data on the web, where data may come from multiple sources with different levels of information quality, a...
https://www.w3.org/2011/rdf-wg/wiki/Yet_Another_Dataset_Proposal
CC-MAIN-2017-22
refinedweb
1,341
71.34
JavaScript Weekly Archives | Search | Latest Issue | RSS Search Issues » 18 Subscribe now » ONE e-mail each Friday. Easy to unsubscribe. No spam — your e-mail address is safe. Archive | Read this issue on the Web JavaScript Weekly Issue 18 March 18, 2011 It's issue 18 and it's March 18 (the 6th birthday of Ajax - did y...
http://javascriptweekly.com/issues/18
CC-MAIN-2015-22
refinedweb
925
70.33
What’s the Score? Our game is missing something vital…a way to know who is the best player…a way for one player to beat the other…a game has to have a winner! In this part we’ll add scoring to our game. Here’s how we’ll do it: - Add goals - Add a game manager script to keep track of the scores - Display the current sco...
http://unity.grogansoft.com/beginners-guide-create-a-pong-clone-in-unity-part-7/
CC-MAIN-2019-09
refinedweb
1,906
62.98
import "go.dedis.ch/kyber/util/random" Package random provides facilities for generating random or pseudorandom cryptographic objects. Bits chooses a uniform random BigInt with a given maximum BitLen. If 'exact' is true, choose a BigInt with _exactly_ that BitLen, not less Bytes fills a slice with random bytes from ran...
https://godoc.org/go.dedis.ch/kyber/util/random
CC-MAIN-2020-40
refinedweb
147
60.92
Swish 1.0, our Swift networking library, is out! Swish came to life through working on many client projects and writing more or less the same networking stack over and over. Our goals with Swish are: - Be able to test our networking layer. - Keep the networking layer self contained. - By default, decode JSON into domai...
https://thoughtbot.com/blog/introducing-swish-1-0-protocol-based-networking-for-ios
CC-MAIN-2020-40
refinedweb
376
53.92
Abstract An Atom document is very close to being an RDF document. This page aims to track the gap between the formats. The intent is to see what would be required for an Atom document to be an RDF document consisting of elements taken from the OWL ontology such as AtomOWL . There is no interest in making the inverse tr...
http://www.intertwingly.net/wiki/pie/AtomAsRDF
crawl-001
refinedweb
320
58.52
BBC micro:bit Bryn's Concentrated Clocks Introduction This game is based on code written with Bryn during one of our lessons. Bryn took an example program from the page on the matrix - the one which does a slideshow of the built-in images. He removed all of the images except the ones that were clock hands. He adjusted ...
http://multiwingspan.co.uk/micro.php?page=concentrate2
CC-MAIN-2017-22
refinedweb
407
73.27
Hi all, I am a relatively inexperienced programmer, but I am really eager to do the hard yards and learn. To produce the code below, I have spent about 4 hours reading textbooks and searching the internet, so try not to laugh at it! Thanks in advance for any advice you may offer! My problem is...Thanks in advance for a...
https://cboard.cprogramming.com/cplusplus-programming/129634-ifstream-text-file-search-word-gather-block-data.html
CC-MAIN-2017-22
refinedweb
538
72.36
I have a working PHP app running in Bluemix that I want to extend to call a RESTful service (Insights for Twitter). Since PHP has no built-in way to call the service, I looked around and decided to use Guzzle. I downloaded Guzzle 6.0.2 from its Git and imported the zip into my httdocs/vendor path and renamed the import...
https://developer.ibm.com/answers/questions/268091/how-to-get-guzzle-working-in-my-laravel-app-on-blu.html?sort=votes
CC-MAIN-2019-18
refinedweb
462
64.2
Bug #15596 Kernel.warn without arguments should do the same as Kernel.warn(nil) Description Kernel.warn without arguments does not print an empty line to $stderr. This is inconsistent with Kernel.puts and it feels weird, because it does not act like a regular Ruby method would (if it was written in Ruby instead of C, i...
https://bugs.ruby-lang.org/issues/15596
CC-MAIN-2019-26
refinedweb
425
61.26
Back to: Java Tutorials For Beginners and Professionals Polymorphism in Java with Examples In this article, I am going to discuss Polymorphism in Java with Examples. Please read our previous where we discussed Wrapper Classes in Java with Examples. It is one of the primary pillars of the object-oriented programming con...
https://dotnettutorials.net/lesson/polymorphism-in-java/
CC-MAIN-2022-27
refinedweb
1,977
55.84
Originally published on m4x.io I recently started adding more content to my blog and in the process I decided having a communication channel with my audience, if there's any, would be quite useful. Disqus it's a "comment as a service" platform that give you all the tools you need to have this feature on your applicatio...
https://dev.to/neomaxzero/add-disqus-to-your-react-app-in-a-glance-p
CC-MAIN-2021-17
refinedweb
708
66.13
. Another component of this detection is adjusting the permissions of the device to be accessible to non-root users and groups. --attribute-walk --path=$(udevadm info --query=path --name= - To get the path of a bare USB device which does not populate any subordinate device you have to use the full USB device path. Star...
https://wiki.archlinux.org/title/Udev_(%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87)
CC-MAIN-2022-40
refinedweb
670
52.8
NAME vhold, vdrop, vdropl - acquire/release a hold on a vnode SYNOPSIS #include <sys/param.h> #include <sys/vnode.h> void vhold(struct vnode *vp); void vdrop(struct vnode *vp); void vdropl(struct vnode *vp); DESCRIPTION The vhold() function increments the v_holdcnt of the given vnode. If the vnode has already been adde...
http://manpages.ubuntu.com/manpages/intrepid/man9/vdropl.9freebsd.html
CC-MAIN-2015-22
refinedweb
152
72.76
Trouble using imported images from Photos Hi, I am currently teaching some young kids to code using Pythonista, our current project is Pac Man. As the kids are young I am having to take some shortcuts. For instance instead of building the background with tiles, I just want to load it from an image. So I have saved some...
https://forum.omz-software.com/topic/5141/trouble-using-imported-images-from-photos
CC-MAIN-2022-27
refinedweb
419
73.98
Bug :. For example, to create a new console application we only need to execute the following command e:\test\new\dotnet new console When this command is executed it will create two files, one with csproj extension and the second one with cs extension for you new.csproj program.cs The contents of the program.cs file wi...
https://techrepository.in/bug-dotnet-cli-template-engine-produces-invalid-code-if-name-of-the-directory-is-a-valid-c-keyword
CC-MAIN-2018-39
refinedweb
351
54.93
So I'm programming along in a nice, up to date, object oriented fashion. I regularly make use of the various aspects of OOP that PHP implements but I am wondering when might I need to use closures. Any experts out there that can shed some light on when it would be useful to implement closures? PHP will support closures...
https://www.codesd.com/item/closures-in-php-and-hellip-what-exactly-are-they-and-when-would-you-need-to-use-them.html
CC-MAIN-2019-18
refinedweb
183
60.24
4. I/O Tutorial¶ Before getting into machine vision topics we’re going to talk about I/O pin control on your OpenMV Cam. It’s important you know how to toggle I/O pins, transmit and receive serial data, and put your OpenMV Cam to sleep so that you can create a system that’s able to “sense”, “plan”, and “act” in one pac...
http://docs.openmv.io/openmvcam/tutorial/io_tutorial.html
CC-MAIN-2017-26
refinedweb
305
69.72
See also: IRC log Present: Jonathan, Mike, Martin, David, Hugo, Eric, Michael Regrets: Chair: DavidF Scribe: UNKNOWN <hugo> Agenda: <hugo> Reading from ... DONE: Marsh to send email to member ws-cg list to ask where motivation for OASIS coordination meeting ... ACTION: David to check about possibility of collocating a ...
http://www.w3.org/2002/ws/cg/3/09/30-minutes.html
CC-MAIN-2014-35
refinedweb
800
74.29
Writing software has become an art. I have always felt that programmers who write software that targets a "windowing" environment have one of two choices: In my experience, I have found that if the software looks good or exciting or just generally appealing to the end user, the process of adoption of the software in th...
http://www.codeproject.com/Articles/5269/CKCSideBannerWnd-An-MFC-Banner-Control-that-Can-Ad?fid=25061&df=90&mpp=50&sort=Position&spc=Relaxed&select=3609806&tid=669776
CC-MAIN-2015-18
refinedweb
1,866
62.27
I'm trying to get this to work... here is the pastebin if you'd rather look at it through that Anyway, when using an iterator to call the Draw() method nothing actually draws. Pressing space in the example will draw them as Draw() is being called directly. What am I doing wrong/how can I correct this? Hehe don't ask wh...
https://www.allegro.cc/forums/thread/589963
CC-MAIN-2018-17
refinedweb
1,314
76.82
C++ Annotated: Jan – Mar 2017 Today we are happy to share our next compilation of C++ news with you. C++ Annotated: January – March 2017 In this edition: C++ in 2017 The C++ ecosystem This blog post about the C++ ecosystem in 2017 is worth a special mention. Written in January, it overviews nicely the main expectations...
https://blog.jetbrains.com/clion/2017/04/cpp-annotated-january-march-2017/
CC-MAIN-2020-45
refinedweb
1,519
60.04
Directory Listing For some experiments arguments fixed. remove Super LU from everywhere, we never supported it and never will directly. remove pastix from everywhere. We never supported it and never will directly. off-by-one errors. type fixes in debug mode and savanna lib reference fix. paso: allow saving to matrix ma...
https://svn.geocomp.uq.edu.au/escript/branches/clazy/paso/?view=log&pathrev=6513
CC-MAIN-2019-04
refinedweb
1,765
61.53
XML can also be used with datasets. The DataSet class, described in Chapter 18, has methods for both reading and writing XML. In this section, you’ll learn how to place XML data in a dataset and how to write data from a dataset to an XML file. To read data into a dataset, you use the ReadXml method of the DataSet class...
http://etutorials.org/Programming/visual-c-sharp/Part+IV+Data+Access+and+XML/Chapter+19+XML/Using+XML+with+Datasets/
CC-MAIN-2017-22
refinedweb
868
51.65
Conceptually, shell:jirb *is* a compound task. I read that as "in the shell namespace, execute the jirb task". It isn't logically parametrized at all, it just happens to be dynamically created. The clincher for me is the fact that the shell:* namespace is finite and well-defined, whereas test (which *should be* logical...
http://mail-archives.apache.org/mod_mbox/buildr-users/200901.mbox/%3C5c99d0330901051530j6d4828e8m1fbd34262b6a3594@mail.gmail.com%3E
CC-MAIN-2018-13
refinedweb
244
74.08
crosvm: aarch64 guest support - removes old ARMv7a (32-bit) bindings as we're only supporting aarch64 guests right now - switches both ARMv7 and aarch64 builds to use aarch64 kvm bindings - adds support for ARMv8 Linux guest with dynamic flattened-device-tree CQ-DEPEND=990894 BUG=chromium:797868 TEST=./build_test passe...
https://chromium.googlesource.com/chromiumos/platform/crosvm/+/2ffa0cbe5bb41beea81fd2d14a7f781747bb955e
CC-MAIN-2018-34
refinedweb
195
58.28