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
. This works now... The JVM runner doesn't use javac to compile; the runner uses the JVM's builtin compiler that it gets from javax.tools.ToolProvider.getSystemJavaCompiler(), and loads the result into a thread. If there's no fixture, it infers the class from the code and runs <Class>.main() (all of this is done in clo...
https://www.codewars.com/kumite?page=290
CC-MAIN-2020-34
refinedweb
971
58.08
Hi, On 08/30/2018 02:47 PM, Heiko Schocher wrote: on the imx6ull the input_val for uart5 rx function of pin MX6UL_PAD_UART5_RX_DATA__UART5_DCE_RX is 7 and not 5 as on the imx6ul. With this patch, console on an imx6ull based board works with uart5. Signed-off-by: Heiko Schocher <hs@xxxxxxx> This is already fixed on v4.1...
https://lkml.iu.edu/hypermail/linux/kernel/1808.3/04537.html
CC-MAIN-2022-27
refinedweb
171
51.55
how to use "MovableText"? I found this class on api documentaion() Its description said "description: This create create a billboarding object that display a text." () So , I imaged that my gazebo window would be like this (). Because this class is under the namespace"rendering", I thought "MovableText" should be used ...
http://answers.gazebosim.org/question/8263/how-to-use-movabletext/
CC-MAIN-2019-51
refinedweb
109
73.78
11 April 2012 10:46 [Source: ICIS news] SINGAPORE (ICIS)--?xml:namespace> China’s Sinopec reduced spot toluene output by more than 10,000 tonnes in east China in April, as the country raised gasoline and diesel prices by yuan (CNY) 600/tonne ($95.1/tonne) from 20 March, a company source said. Maoming Petrochemical, whi...
http://www.icis.com/Articles/2012/04/11/9548945/chinas-toluene-prices-likely-to-rise-on-limited-supply.html
CC-MAIN-2015-22
refinedweb
106
63.49
Beta Build 160008 I thought I'd start a new thread for this build, the old one is getting a bit unwieldy... As promised in the release notes, here are a few examples of what you can do with the ctypesmodule... Be warned: This is pretty advanced stuff – it's very easy to shoot yourself in the foot with this, just like w...
https://forum.omz-software.com/topic/1588/beta-build-160008
CC-MAIN-2018-05
refinedweb
2,056
62.17
I was once told that I'm not good at being bad at things, and that is absolutely true. There's nothing that frustrates me more than a steep learning curve. Logically, I know that failure is a part of growth; emotionally, I'm a perfectionist and I hate to fail. This, obviously, is not the best trait to have in the field...
https://dev.to/kathryngrayson/understanding-the-hierarchy-of-competence-8mb
CC-MAIN-2022-21
refinedweb
3,012
70.23
Get the highlights in your inbox every week. Calling subs and typing in Perl 6 Calling subs and typing in Perl 6 In the ninth article in this series comparing Perl 5 to Perl 6, learn about the subtle differences in visibility of subroutines and the (gradual) typing core feature. Subscribe now. Visibility of subroutines...
https://opensource.com/article/18/12/calling-subs-and-typing-perl-6
CC-MAIN-2022-05
refinedweb
1,684
57.5
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Yesterday, Philipp Gortan wrote: >thanks for all interesting answers. Well, using the sysconf() function >looks like the smoothest way to do the job, even though it's not as >easily nested into autoconf as my dirty hack... how would you add the c >code to the program? can i...
http://lists.gnu.org/archive/html/autoconf/2002-08/msg00126.html
CC-MAIN-2014-35
refinedweb
335
52.7
Just shortening the last solution a bit further... class MedianFinder { multiset<int> data; multiset<int>::iterator mid; public: void addNum(int num) { data.insert(num); mid = data.size() == 1 ? data.begin() : next(mid, data.size() % 2 - (num < *mid)); } double findMedian() { return (*mid + *next(mid, 1 - data.size() %...
https://discuss.leetcode.com/topic/78144/find-median-from-data-stream
CC-MAIN-2018-17
refinedweb
416
67.15
How I Built 🍣This Sushi Does Not Exist🍣 December 19, 2020 | 4 min read | 624 views You may already know, where you can get an infinite number of portrait photos generated by StyleGAN2 [1]. There are variants such as: I’ve been a big fan of this series, and today, I finally got to release 🍣This Sushi Does Not Exist🍣...
https://hippocampus-garden.com/sushigan/
CC-MAIN-2022-27
refinedweb
720
56.66
How to Create a Personalized wikiHow Welcome Message The welcome message is often the first interaction a new user will have with another person when they come to wikiHow. A personal welcome message can demonstrate that wikiHow is powered by real people who want to help new users. At the same time, an unprofessional lo...
http://www.wikihow.com/Create-a-Personalized-wikiHow-Welcome-Message
crawl-001
refinedweb
1,242
63.9
09 November 2010 15:22 [Source: ICIS news] RIO DE JANEIRO (ICIS)--Braskem is targeting an increase of $50/tonne (€36/tonne) for all grades of polyethylene (PE) sold in ?xml:namespace> The price hikes would take effect in the second half of November, said Braskem export manager Marco Cione. Cione was speaking on the sid...
http://www.icis.com/Articles/2010/11/09/9408730/apla-10-braskem-targets-50tonne-pe-hikes-in-colombia.html
CC-MAIN-2013-20
refinedweb
112
62.48
Hi Rob, Rob Cermak wrote: > For: >" > > In Firefox 3.0.7, nothing is returned in the browser... might be a > browser issue. That is a Firefox issue. It doesn't show any content if the response code is 400. It actually acts as though no request has been issued. Very strange. > Curl shows the right stuff coming back: > >...
http://www.unidata.ucar.edu/mailing_lists/archives/thredds/2009/msg00056.html
CC-MAIN-2013-20
refinedweb
808
51.14
On Sun, Jun 17, 2007 at 12:44:08AM +0900, Tetsuo Handa wrote:> Greg KH wrote:> > A daemon using inotify can "instantly"[1] detect this and label the file> > properly if it shows up.> > > Same daemon can do the re-label.> > Can the daemon using inotify access to all pathnames in all process's> namespaces?I don't see why...
http://lkml.org/lkml/2007/6/16/131
CC-MAIN-2014-42
refinedweb
134
66.64
Central Authentication Service (CAS) implementation using Django microservices Microservices are popular these days and a lot of companies tend to move from monolithic architecture to distributed one. I’ve just finished implementing CAS for Django microservices at BeSmart. I tried to find some tutorials on the subject,...
https://medium.com/@adiletmaratov/central-authentication-service-cas-implementation-using-django-microservices-70c4c50d5b6f
CC-MAIN-2018-51
refinedweb
1,004
50.23
SUSI Web Chat now has indicators reflecting the message response status. When a user sends a message, he must be notified that the message has been received and has been delivered to server. SUSI Web Chat implements this by tagging messages with ticks or waiting clock icons and loading gifs to indicate delivery and res...
http://blog.fossasia.org/tag/artificial-intelligence/
CC-MAIN-2017-30
refinedweb
611
51.78
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 2.0.50727) Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.3) Gecko/20070309 Firefox/2.0.0.3 If the binding is declared in a custom namespace, the method document.getAnonymousNodes(this) returns null. This ...
https://bugzilla.mozilla.org/show_bug.cgi?id=378087
CC-MAIN-2017-39
refinedweb
461
69.38
<xsl:variable> Element Specifies a value bound in an expression. <xsl:variable name = QName select = Expression </xsl:variable> Attributes - name Required. The Qualified Names of the variable. The value of the attribute is an Expressions, and the value of the variable is the object that results from evaluating the expr...
https://docs.microsoft.com/en-us/previous-versions/dotnet/netframework-4.0/ms256447(v=vs.100)
CC-MAIN-2019-30
refinedweb
369
51.99
Introduction to Insertion Sort in Data Structure Insertion sort essentially works as per its name. As the name goes, it basically inserts the element at its correct position by following a step-by-step process. This algorithm is straightforward to implement and also performs the sorting operation quickly. It should be ...
https://www.educba.com/insertion-sort-in-data-structure/?source=leftnav
CC-MAIN-2021-43
refinedweb
1,023
61.26
By Alvin Alexander. Last updated: June 3 2016 Here's a quick post to help anyone that needs a quick JDBC Driver and URL reference when using Postgresql (Postgres) with Java (and JDBC). The basic Postgresql JDBC Driver and URL information you need is shown here: Postgresql (Postgres) URL (JDBC Connection) String: jdbc:p...
http://alvinalexander.com/java/java-postgresql-jdbc-driver-class-url-connection
CC-MAIN-2017-30
refinedweb
313
54.02
I don't know why it isn't showing on the templates when I think I implemented it right. the template is : <div class="row"> {% for volunteer_name in volunteer %} <div class="col-md-4 col-sm-6"> <div class="team-wrapper"> <div class="team-img"> <img src="{{ volunteer_name.img.url }}" class="img-responsive" alt="Image"> ...
https://practicaldev-herokuapp-com.global.ssl.fastly.net/highcenburg/data-not-showing-on-django-template-39jj
CC-MAIN-2020-29
refinedweb
568
52.56
Posted 04 Oct 2012 Link to this post Posted 10 Oct 2012 Link to this post Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate. Posted 27 Nov 2012 Link to this post The way I ended up resolving this issue was to include the ProvideBindingPath attribute on my VSPackage class file (in my context ...
http://www.telerik.com/forums/ilmerge-wpf-controls
CC-MAIN-2017-39
refinedweb
414
53.24
This is the mail archive of the libstdc++@sources.redhat.com mailing list for the libstdc++ project. > gcc/cp/call.c: build_new_function_call() > which kicks the error because > gcc/cp/call.c: tourney() > returns 0 because > gcc/cp/call.c: joust() > returns 0 because joust can't decide whether to pick the > ::std::__bu...
http://gcc.gnu.org/ml/libstdc++/2000-09/msg00109.html
crawl-001
refinedweb
247
64.71
Python is an interpreted high-level general-purpose programming language and python sleep() is one of the essential functions. The philosophical design of Python emphasizes code readability with the use of significant indentation. The language constructs as well as its object-oriented approach aim to help programmers w...
https://www.developerhelps.com/python-sleep/
CC-MAIN-2022-40
refinedweb
583
58.79
User Tag List Results 1 to 3 of 3 Thread: Post variable repost itself - Join Date - Jul 2004 - Location - NC - 194 - Mentioned - 0 Post(s) - Tagged - 0 Thread(s) Post variable repost itself Hello, I've encountered a strange problem w/ a find method in a big project I'm working on. One thing I must admit is I'm pretty n...
http://www.sitepoint.com/forums/showthread.php?447486-Post-variable-repost-itself
CC-MAIN-2015-35
refinedweb
288
51.11
import "github.com/mdlayher/netlink" Package netlink provides low-level access to Linux netlink sockets. If you have any questions or you'd like some guidance, please join us on Gophers Slack () in the #networking channel! This package is aware of Linux network namespaces, and can enter different network namespaces eit...
https://godoc.org/github.com/mdlayher/netlink
CC-MAIN-2019-35
refinedweb
3,466
50.33
As discussed in, pthread_once on at least ARM and PowerPC (but not x86_64) doesn't interact well with C++ exceptions thrown from the init routine. The following test case demonstrates the problem: it hangs in pthread_once until it's interrupted by SIGALRM. The test case runs successfully to completion on x86_64. $ cat ...
https://sourceware.org/bugzilla/show_bug.cgi?id=18435
CC-MAIN-2021-10
refinedweb
7,372
59.8
Here is my solution to HackerRank.com’s 30 days of code challenge, day 3. This is a basic introduction to conditional statements which I found a bit easy. My main take away from this was ensuring the quality of the input by making sure that the the input values were within the correct range and wrapping that conditiona...
https://ramonecung.com/blog/tag/java/
CC-MAIN-2020-10
refinedweb
255
62.31
Avoiding .Net — which, of course, contradicts the rules of COM. So while RCWs indeed mostly follow the rules of COM reference counting, they obviously do not do follow the rules in their entirety. Once I spotted this difference, it was easy to find an explanation of this very topic by Ian Griffiths, which is worth quot...
https://jpassing.com/2009/03/
CC-MAIN-2018-43
refinedweb
413
62.48
A lightweight Vue wrapper that abstracts away the wonkier parts of the Drag and Drop vue-drag-drop A lightweight wrapper that abstracts away the wonkier parts of the Drag and Drop API. The Drag and Drop API is pretty jank. Here are a handful of annoying issues: - Data transferred from a draggable element to a dropzone ...
https://vuejsexamples.com/a-lightweight-vue-wrapper-that-abstracts-away-the-wonkier-parts-of-the-drag-and-drop/
CC-MAIN-2020-10
refinedweb
311
59.6
This site uses strictly necessary cookies. More Information Hi there, I'm a relative beginner at Unity and C#, but I've been trying to solve this problem for days, have read countless articles and posts and am getting nowhere. Hoping someone here can help. Here's the overview: I am building an Android AR app using AR C...
https://answers.unity.com/questions/1745302/how-can-i-address-the-animator-of-a-prefab-from-a.html
CC-MAIN-2021-31
refinedweb
1,250
54.12
Red Hat Bugzilla – Bug 338601 python bindings for rpm_execcon not correct Last modified: 2008-06-16 22:41:34 EDT Fixed in devel (F8) but apparently needs backporting to F7. +++ This bug was initially created as a clone of Bug #276121 +++ Description of problem: The python bindings for rpm_execcon not correct: #!/usr/bi...
https://bugzilla.redhat.com/show_bug.cgi?id=338601
CC-MAIN-2016-44
refinedweb
220
51.55
. Thanks for sharing the information on the progress! I really think that the interdependencies of the JDK packages is the biggest argument against using the Java Platform. Nobody wants a monolithic architecture when it comes to software. I guess, in a perfect world we would have 'modules' with 'extensions', e.g.: logg...
https://blogs.oracle.com/alanb/entry/is_the_jdk_losing_its
CC-MAIN-2016-07
refinedweb
889
69.62
Data.Semigroup Contents Description. The use of (<>) in this module conflicts with an operator with the same name that is being exported by Data.Monoid. However, this package re-exports (most of) the contents of Data.Monoid, so to use semigroups and monoids in the same package just import Data.Semigroup Synopsis - clas...
http://hackage.haskell.org/package/semigroups-0.8.5/docs/Data-Semigroup.html
CC-MAIN-2015-48
refinedweb
220
52.94
4.1. Yule Walker example¶ The following example illustrate the usage of the aryule() function that allows you to estimate the autoregressive coefficients of a set of data. First, we need some packages: from pylab import * import scipy.signal from spectrum import * Then, we define a list of AR filter coefficients: a = [...
http://www.thomas-cokelaer.info/software/spectrum/html/user/tutorial_yulewalker.html
CC-MAIN-2018-39
refinedweb
402
55.84
Introduction Colaboratory, or “Colab” for short, are Jupyter Notebooks hosted by Google that allow you to write and execute Python code through your browser. It is easy to use a Colab and linked with your Google account. Colab provides free access to GPUs and TPUs, requires zero configuration, and easy to share your co...
https://www.analyticsvidhya.com/blog/2021/05/10-colab-tips-and-hacks-for-efficient-use-of-it/
CC-MAIN-2021-25
refinedweb
1,144
62.78
29 June 2012 For immediate release SilverStripe CMS and Framework 3 Stable Is Out Click for big version.. Click for big version. The stable version is ready to download now. Here is what’s new: The administrative interface • The latest version provides a brand new CMS UI for an even better user experience. The UI was r...
http://www.scoop.co.nz/stories/BU1206/S01084/silverstripe-cms-and-framework-3-stable-is-out.htm
CC-MAIN-2014-42
refinedweb
288
66.44
For most professional software developers, using application lifecycle management (ALM) is a given. Data scientists, many of whom do not have a software development background, often have not used lifecycle management for their machine learning models. That’s a problem that’s much easier to fix now than it was a few ye...
https://thousandrobots.com/10-mlops-platforms-to-manage-the-machine-learning-lifecycle/
CC-MAIN-2021-10
refinedweb
1,649
53.1
Hide Forgot Description of problem: When trying to install Fedora 29 Beta RC 1.1 on a firmware RAID device, Anaconda did not see it and I could not install to it. Using "lsblk", I realized that even the lsblk cannot see the disks as RAID0, but only as standalone disks (sdb and sdc). Version-Release number of selected c...
https://bugzilla.redhat.com/show_bug.cgi?id=1628192
CC-MAIN-2019-22
refinedweb
3,750
54.83
Garbage collection-Marcus exam 0 If somebody could give me a good explanation about the answer to this question,it would be great.Do the rules vary in any way when it concerns wrapper classes?I mean x,y are references to Integer objects right?Or do they just store the integer values? 0 According to me the answer should...
http://www.coderanch.com/t/243905/java-programmer-OCPJP/certification/Garbage-collection-Marcus-exam
CC-MAIN-2016-07
refinedweb
1,642
72.97
To main page Examples of programs that provide a Graphical User Interface. a) The C++ programs listed on this page are written so that the #include command #include <iostream.h> is in use. Because using include commands such as this one is a somewhat "old-fashioned" way to write C++ programs, some C++ compilers may pri...
http://www.naturalprogramming.com/all_example_programs.html
CC-MAIN-2013-20
refinedweb
263
59.84
I wanted to find the longest decreasing sub sequence inside a given list for example L = [1, 2, 1, 2, 1, 2, 1, 2, 1], the result should be [2,1] however I cant seem to produce that result. Can someone tell me why it doesn't work ? The output is something [0,2,1,2,1,2,1,2,1] Nevermind the first zero but the result shoul...
https://codedump.io/share/b3JScXwnqKRv/1/longest-decreasing-sublist-inside-a-given-list
CC-MAIN-2017-17
refinedweb
224
68.81
This java program prints Floyd's triangle. Java programming source code import java.util.Scanner; class FloydTriangle { public static void main(String args[]) { int n, num = 1, c, d; Scanner in = new Scanner(System.in); System.out.println("Enter the number of rows of floyd's triangle you want"); n = in.nextInt(); Syste...
http://www.programmingsimplified.com/java/source-code/java-program-print-Floyds-triangle
CC-MAIN-2017-09
refinedweb
136
51.65
CodePlexProject Hosting for Open Source Software I define styles for all different modules in theme. Each CSS file belongs to a certain module. Only theme knows which file is that. I want my view in module to include (via Require) a style defined in Theme via Style.Require. How can I do that in Orchard? Unless I misund...
http://orchard.codeplex.com/discussions/429330
CC-MAIN-2017-04
refinedweb
2,264
71.14
well here is my problem i had a task to transfrom sequence of decimals entered by user to binary so i did it but here comes my problem it turn out that i MUST have used at least 2 functions 1 main for input output and 1 which contains the code that solves the problem but this code is a if else statement in a loop which...
https://www.daniweb.com/programming/software-development/threads/327790/help-with-a-function
CC-MAIN-2018-43
refinedweb
212
62.55
I’m going to have to assume from the outset that you’ve read and followed the previous article. If you haven’t, then what follows will be rather useless to you. You can read the previous article here. The first thing that we need is some support code. G++ will be expecting some of these, but we will need to add some ot...
http://www.codeproject.com/Articles/39069/Beginning-Operating-System-Development-Part-Two?fid=1545511&df=90&mpp=10&noise=1&prof=True&sort=Position&view=None&spc=Relaxed&fr=11
CC-MAIN-2016-36
refinedweb
3,233
67.69
Manual¶ GPAW calculations are controlled through scripts written in the programming language Python. GPAW relies on the Atomic Simulation Environment (ASE), which is a Python package that helps us describe our atoms. The ASE package also handles molecular dynamics, analysis, visualization, geometry optimization and mor...
https://wiki.fysik.dtu.dk/gpaw/documentation/manual.html
CC-MAIN-2020-16
refinedweb
5,146
56.55
I fell in love with coding the moment I created my first CSS :hover effect. Years later, that initial bite into interactivity on the web led me to a new goal: making a game. Table of contentsTable of contents - What’s the game (and what’s that name)? - Choosing Nuxt - Achieving native app feel with the web - Vibration ...
https://css-tricks.com/what-i-learned-building-a-word-game-app-with-nuxt-on-google-play/
CC-MAIN-2022-21
refinedweb
7,780
67.38
There are many tools that control the quality of Java code, including Checkstyle, PMD, FindBugs, Cobertura, etc. All of them are usually used to analyze quality and build some fancy reports. Very often, those reports are published by continuous integration servers, like Jenkins. Qulice takes things one step further. It...
http://www.yegor256.com/2014/08/13/strict-code-quality-control.html
CC-MAIN-2017-22
refinedweb
995
72.87
# If your project is «Theatre» then use actors There is a story about an experience of using Actor Model in one interesting project of developing an automatic control system for a theatre. Below I'll tell my impressions, no more than that. Not so much time ago I participated in one exciting task: modernization of aut...
https://habr.com/ru/post/452464/
null
null
3,421
55.74
I have a docker container and service deployed in bluemix standard cluster environment. I can access it using the external port no which I gave it while creating NodePort service. Deployment file looks like - apiVersion: extensions/v1beta1 kind: Deployment metadata: name: watson-talk-pod spec: replicas: 1 template: met...
https://developer.ibm.com/answers/questions/441380/$%7B$value.user.profileUrl%7D/
CC-MAIN-2019-13
refinedweb
807
55.64
] .............6. 8....................14...... 8.................. 8....2... 7....1....... Aborting a Session....................9....... Re-Auth-Request-Type AVP......... 8................... Multi-Round-Time-Out AVP. 8............ Auth-Session-State AVP.............................. 8.. Origin-State-Id AVP...17........
https://www.scribd.com/doc/123205175/RFC-3588-Diameter-Base-Protocol
CC-MAIN-2017-09
refinedweb
38,577
51.75
Journey to Java: Episode 1 “Pilot” To learn a new skill or language with no incentive is hard. A majority of people won’t spend their scarce free time to learn something that they aren’t being paid for. Others will not spend their money on books or resources to invest into themselves to achieve their goals. If you are ...
https://adamadolfo8.medium.com/journey-to-java-episode-1-b043e58ed6f7
CC-MAIN-2021-43
refinedweb
821
69.31
Node:Arrays and hidden operators, Next:A warning about style, Previous:Postfix and prefix ++ and --, Up:Hidden operators and values Arrays and hidden operators Hidden operators can simplify dealing with arrays and strings quite a bit. Hiding operators inside array subscripts or hidding assignments inside loops can ofte...
http://crasseux.com/books/ctutorial/Arrays-and-hidden-operators.html
CC-MAIN-2017-43
refinedweb
227
51.58
Created on 2018-08-08 20:42 by bgailer, last changed 2018-10-28 09:55 by Anthony Sottile. Inconsistent tracebacks. Note that the traceback for bug.py does not reference the module file and line number. # bug.py def f(): f''' {d e}''' a=b import bug Traceback (most recent call last): File "<fstring>", line 1 (d e) ^ Syn...
https://bugs.python.org/issue34364
CC-MAIN-2019-22
refinedweb
202
82.95
Raspberry Pi Production Delayed By Factory's Assembly Flub 132." Why the magnetics? (Score:5, Interesting) Re:Why the magnetics? (Score:5, Informative) I had the exact same thought and googled magnetic jacks: Molex Magnetic Modular Jacks incorporate wire-wound components (magnetics) in standard RJ45 jacks. These integr...
http://hardware.slashdot.org/story/12/03/08/1413227/raspberry-pi-production-delayed-by-factorys-assembly-flub?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Slashdot%2Fslashdot%2Fto+%28%28Title%29Slashdot+%28rdf%29%29
CC-MAIN-2015-32
refinedweb
3,798
71.14
Is This Content Helpful? We're glad to know this article was helpful. Update and insert cursors fail when trying to edit SDE data using a Python script. For example, the script below should edit field values in an SDE feature class. This code runs without error, however, the attribute values are not changed. Code: from...
https://support.esri.com/en/technical-article/000007454
CC-MAIN-2018-22
refinedweb
199
63.15
CodePlexProject Hosting for Open Source Software I am trying to create Custom Orchard Map Module.Here is my model sample public class Map { public List<MapUrl> Urls {get;set;} } public class MapUrl public string Url {get;set;} public string Name {get;set;} public string Title {get;set;} User can able to add one or more...
http://orchard.codeplex.com/discussions/282918
CC-MAIN-2017-26
refinedweb
192
73.27
Here are a few things that might help you get adjusted to using Nose: 1. As mentioned in the Testing Efficiently with Nose tutorial, the convention is slightly different for running tests has changed. The format has changed: python manage.py test app.tests:YourTestCaseClass python manage.py test app.tests:YourTestCaseC...
http://hustoknow.blogspot.com/2011/12/moving-to-nose.html
CC-MAIN-2017-51
refinedweb
512
57.67
JSP date example JSP date example JSP date example Till now you learned about the JSP syntax...; The heart of this example is Date() function of the java.util Reading Request Information - Struts not using jsp & servlets I want to make icon and click icon open fist page Here is the video tutorial of: "Hello World JSP P...
http://roseindia.net/tutorialhelp/comment/46950
CC-MAIN-2016-07
refinedweb
654
66.94
Boston Python Workshop/1/Saturday/ColorWall Program graphical effects for a ColorWall using the Tkinter GUI toolkit. See the ColorWall in action here. Setup[edit] See the Friday setup instructions. Goals[edit] - Have fun experiment with and creating graphical effects. - Practice using functions and classes. - Get exper...
https://wiki.openhatch.org/wiki/Boston_Python_Workshop/1/Saturday/ColorWall
CC-MAIN-2019-51
refinedweb
229
53.07
I'm trying to send an email with custom recipient, subject and body in Python. This means I don't want to use Python's smtp packages, but something like webbrowser because I need this to open the default email client (Thunderbird in my case) with said arguments. import webbrowser webbrowser.open("mailto:?to=aaa@email.c...
https://codedump.io/share/YuSJXgGBGGtB/1/advanced-mailto-use-in-python
CC-MAIN-2017-47
refinedweb
559
73.07
* servlet not reloading on Tomcat 4.0 Shuaib Gill Ranch Hand Joined: May 29, 2001 Posts: 62 posted Feb 11, 2002 19:50:00 0 I wrote a simple Hello World servlet , compiled it and had it working on the web browser, so far so good. Next I changed the servlet, recompiled it and clicked on the Refresh button on the browser...
http://www.coderanch.com/t/81662/Tomcat/servlet-reloading-Tomcat
CC-MAIN-2014-10
refinedweb
777
66.84
In a world of devices and services there are many different kinds of developers. As Guggs and I spelled out a few weeks ago at Build, the kind of application that you’re building, and the tools you use to build it, impact how you get to your end product.. No matter what platform they start from, most developers also se...
https://blogs.msdn.microsoft.com/johnshews_blog/2014/05/15/a-look-back-at-build-using-the-web-apps-template-to-create-mobile-apps/
CC-MAIN-2016-30
refinedweb
387
62.07
Agda.Syntax.Internal Contents Synopsis - data Term - data Type = El Sort Term - data Sort - data Blocked t - = Blocked MetaId t - | NotBlocked t - type Args = [Arg Term] - data Tele a - type Telescope = Tele (Arg Type) - data Abs a = Abs { - telFromList :: [Arg (String, Type)] -> Telescope - telToList :: Telescope -> [...
http://hackage.haskell.org/package/Agda-2.2.10/docs/Agda-Syntax-Internal.html
CC-MAIN-2016-44
refinedweb
330
55.24
Table of Contents handlerton store_lock()Method external_lock()Method rnd_init()Method info()Method extra()Method rnd_next()Method INSERTto a Storage Engine UPDATEto a Storage Engine DELETEto a Storage Engine position()Method rnd_pos()Method CREATE TABLEOperations index_init() index_end() index_read()Method index_read_...
http://ldc.usb.ve/docs/mysql/custom-engine.html
crawl-003
refinedweb
4,005
58.28
Created on 2006-12-09 17:38 by taleinat, last changed 2015-09-14 02:29 by terry.reedy. If I define a class within a class, like this: class A: class B: pass def foo(self): pass The class browser shows that A contains foo, but it doesn't show B at all. Confirmed on trunk and py3k. The class browser relies on the pyclbr ...
http://bugs.python.org/issue1612262
CC-MAIN-2017-13
refinedweb
197
73.98
Ipython, numpy and opening files directly in pythonista Hi guys! I`m a starter with python and pythonista. I need it for university and would like to work at uni on my ipad. I have some questions regarding the topics in the titel: 1, Can I use ipython in pythonista 2, How can I open a file from the browser directly in ...
https://forum.omz-software.com/topic/3885/ipython-numpy-and-opening-files-directly-in-pythonista/4
CC-MAIN-2018-09
refinedweb
235
85.28
27 June 2005 22:59 [Source: ICIS news] HOUSTON (CNI)--US prompt benzene spot prices moved past $3/gal Monday for the first time since 27 April with traders citing rising crude prices for the increase. Traders said July spot business was completed today at $3.03/gal FOB USG. But later in the day traders said the July bi...
http://www.icis.com/Articles/2005/06/27/688507/us-july-benzene-spot-prices-at-3gal-highest-since.html
CC-MAIN-2014-52
refinedweb
239
76.32
Setting Up Python web server for Raspberry pi) sudo apt-get update sudo apt-get upgrade -y sudo apt-get install python-dev libevent-dev sudo apt-get install python-pip sudo pip install flask Now we will see how to serve static HTML files using flask. First we need to create python script that will server the requested ...
http://icircuit.net/setting-up-python-web-server-on-raspberry-pi/378
CC-MAIN-2017-13
refinedweb
326
72.26
Engine and Connection¶ GinoEngine is the core of GINO. It acts like a pool of connections but also does the work of assembling everyone together: Under the hood, engine is associated with a specific dialect instance on creation, e.g. asyncpg dialect. The dialect is actually a set of classes that implements GINO dialect...
http://gino.fantix.pro/en/latest/engine.html
CC-MAIN-2019-13
refinedweb
2,924
54.73
Hi, I am having problems with my C++ Programs on Sun Solaris server since I have upgraded my C++ compiler from Sun Forte Developer 7 compiler to Sun Studio 9 C++ complier 5.6. I have my own string class which I had issues but now compiles ok after puting option -library=iostream in my makefile. My string library make f...
https://www.daniweb.com/programming/software-development/threads/59503/what-is-the-use-of-define-_reentrant-in-my-code
CC-MAIN-2016-22
refinedweb
197
69.28
Making XML a native datatype is something we discussed in the past. This seems like something that's actually going to happen. Posted to xml by Ehud Lamm on 9/20/02; 2:34:57 PM This indeed looks interesting and will probably be something normal programmers will use. XDuce for example is another interesting language wit...
http://lambda-the-ultimate.org/classic/message4374.html
crawl-002
refinedweb
1,624
56.45
- 22 10 commits (Leigh's last change) 2. Collect up all the failed nodes and just send one mail message. This way we know "who done it" so we can smack em around if they nfree something they should not have. being loaded is a user image. "anchored" (^xxx$) then force it to be anchored by wrapping it. - 08 Oct, 2004 11 ...
https://gitlab.flux.utah.edu/emulab/emulab-devel/-/commits/478f5241f1199a10d59a2b4506e3990213d62be5
CC-MAIN-2021-25
refinedweb
215
83.25
GZFOPEN(3) BSD Programmer's Manual GZFOPEN(3) gzfopen, gzfdopen - deflated stream open functions #include <zlib.h> FILE * gzfopen(const char *path, const char *mode); FILE * gzfdopen(int filedes, const char *mode); The gzfopen() function opens the file whose name is the string pointed to by path and associates a zlib s...
http://www.mirbsd.org/htman/i386/man3/gzfopen.htm
CC-MAIN-2017-22
refinedweb
400
65.22
PHP Interview Questions and Answers Ques 6. How do you pass a variable by value? Ans. Just like in C++, put an ampersand in front of it, like $a = &$b Is it helpful? Add Comment View Comments Ques 7. Will comparison of string "10" and integer 11 work in PHP?Ans. Yes, internally PHP will cast everything to the integer t...
http://www.withoutbook.com/Technology.php?tech=6&page=2&subject=PHP%20Interview%20Questions%20and%20Answers
CC-MAIN-2019-43
refinedweb
191
71.51
Talk:Sugar From OLPC Sugar on a stick? Yes, but what version? I understand, but the link shows 2 versions of sugar. Do we need the x86_64 (64-bit) or the i686 (32-bit)? I assume you can recup this question to write the answer.Thy --SvenAERTS 13:02, 3 October 2014 (UTC) - See some guidance that has been added to the ref...
http://wiki.laptop.org/go/Talk:Sugar
CC-MAIN-2016-30
refinedweb
2,300
70.84
Created on 2007-08-29.09:01:11 by mehendran, last changed 2008-11-07.22:41:16 by pjenvey. When the call is made to the methods of obj which is of type PyStringDerived, StackOverflowError is thrown. for example ex.py ----- class weirdstr(str): def __getitem__(self, index): return weirdstr(2*str.__getitem__(self,index)) ...
http://bugs.jython.org/issue1783868
CC-MAIN-2016-44
refinedweb
181
79.16
21 June 2012 21:23 [Source: ICIS news] WASHINGTON (ICIS)--Economic data on near-term prospects for ?xml:namespace> The Conference Board, a 95-year-old business analysis group in The LEI represents a cumulative measure of ten different business and economic gauges, such as manufacturers’ new orders, residential building...
http://www.icis.com/Articles/2012/06/21/9571799/us-leading-indicators-rise-in-may-economy-to-muddle-through.html
CC-MAIN-2015-18
refinedweb
199
50.26
The following program I wrote to try out the DNS classes does not return my hosts ipv6 addresses only its ipv4 address. And I doing something wrong, or is this just not supported? The platform is windows vista and I have functioning ipv6 address on the machine. I don't seem to get back any addresses from using DNS::res...
http://pocoproject.org/forum/viewtopic.php?f=12&t=504
CC-MAIN-2016-22
refinedweb
130
58.99
The storable-record package With this package definition you can build a Storable instance of a record type from Storable instances of its elements. This is as simple as: import Foreign.Storable.Record as Store import Foreign.Storable (Storable (..), ) import Control.Applicative (liftA2, ) data Stereo a = Stereo (left,...
https://hackage.haskell.org/package/storable-record-0.0.1
CC-MAIN-2015-35
refinedweb
248
60.92
note BrowserUk <blockquote><i></i></blockquote> <p>I've been planning on doing so for a long time; but whenever I think about doing so, the same problems crop up. <p>What to call it? <p>I refuse to add anything to the Thread::* namespace as it is so overpopulated with broken and useless modules. <p>If I uploaded it to ...
http://www.perlmonks.org/index.pl?displaytype=xml;node_id=1022026
CC-MAIN-2014-41
refinedweb
234
75.54
By Scott Mauvais, MCSD Originally published April 4, 2002 --------------------------------------------- Confession: I wrote my first application with Microsoft Visual Basic .NET about a month ago. Not that I'm new to Microsoft Visual Basic??I've been using it regularly since version 2?but for some reason I never got ar...
http://www.linuxhomenetworking.com/forums/showthread.php/16127-Inheritance-in-Visual-Basic?mode=hybrid
CC-MAIN-2015-22
refinedweb
2,033
63.49
Hallvard B Furuseth wrote: > Terry Reedy writes: >> If you want to duplicate 2.x behavior, which does *not* work for all >> types... >> >> def py2key(item): return (str(type(item)), item) > > Nope. > sorted((-1, 2, True, False)) == [-1, False, True, 2] > sorted((-1, 2, True, False), key=py2key) == [False, True, -1, 2] ...
https://mail.python.org/pipermail/python-list/2008-November/488370.html
CC-MAIN-2014-15
refinedweb
178
68.16
Check out this stand-alone, intelligent "increasing buffer" class. It's useful for a Win32 SDK project without using MFC. Latest Array Handling Articles Implementing an Array of Buttons: The Shuffle Game Manage a group of buttons as an array in VC++. Standard Template Libraries: Using std::vector Arrays The vector arra...
https://www.codeguru.com/cpp/cpp/cpp_mfc/arrays/
CC-MAIN-2019-22
refinedweb
175
62.78
.Net Office Automation Error - sabato 13 settembre 2008 17:42Hi,I am using Visual Studio 2008 (C#) to do an application which create Microsoft Office Excel 2007 file.I have added reference to Microsoft Office Excel Library 12.0 and it was working fine in my computer.However when I installed the same software in another...
http://social.microsoft.com/Forums/it-IT/whatforum/thread/5697f77d-2a3f-41d2-83ea-32677d4e53b4
CC-MAIN-2013-20
refinedweb
286
56.55
Hello, If I create a module in my project, and put some methods in that module, I can conveniently make that module external and share it between multiple projects. That way I do not need to keep track of multiple versions of the same code. The same goes for classes; you can make them external and share them between pr...
https://forum.xojo.com/t/external-module-with-classes/34986
CC-MAIN-2022-33
refinedweb
135
77.47
Binding shapes to the Windows Phone 8.1 Here Maps control Binding shapes to the Windows Phone 8.1 Here Maps control Join the DZone community and get the full member experience.Join For Free Automist automates your software deliver experience. It's how modern teams deliver modern software. Intro Every time I meet someon...
https://dzone.com/articles/binding-shapes-windows-phone
CC-MAIN-2018-39
refinedweb
1,705
60.35
jQuery Library JavaScript code to make it easu to write JavaScript that will execute across browsers. Core set of features on which to build. Many extensions and plug-ins available. - Core - core o flibrary allows identification of code to execute only after document loaded, create DOM elements, iterate elements, etc. ...
https://www.gsys.biz/resources/70-515/jquery
CC-MAIN-2018-30
refinedweb
1,065
51.95
Flaw In Netgear Wi-Fi Routers Exposes Admin Password, WLAN Details 57 An anonymous reader writes A number of Netgear home wireless routers sport a vulnerability that can be misused by unauthenticated attackers [here's the report at seclists.org] to obtain the administrator password, device serial number, WLAN details, ...
https://hardware.slashdot.org/story/15/02/17/1512257/flaw-in-netgear-wi-fi-routers-exposes-admin-password-wlan-details
CC-MAIN-2017-34
refinedweb
2,724
71.65
should be considered as bug.. bye blackdrag ================ For more details, here's my original message to the mailing list with the same Subject as this issue's Summary: ========= (on Dec 19 2006) I've been playing with ranges and looking at the source code. I found the behaviour of "groovy.lang.IntRange.subList(int...
http://jira.codehaus.org/browse/GROOVY-1616
crawl-002
refinedweb
309
71.31
view raw I have some general questions about web.config and how it works regarding assembly reference. I've been playing around with the new Razor view engine and had some trouble getting it up and running. My problem started with a general The type or namespace name 'XXXXX' does not exist in the namespace 'XXXXX' (are...
https://codedump.io/share/jKTaMCW9znQu/1/adding-assembly-reference-within-webconfig
CC-MAIN-2017-22
refinedweb
217
55.95
Ruby 1.9 gives the ability to define variables that are just local to a block and do not close over variables of the same name in an outer scope: x = 10 proc { |;x| x = 20 }.call x #=> 10 scope(:x) { x = 20 } The solution I am choosing is based on bobbywilson0's idea. Here is how it works: x = 99 y = 98 scope { |x, y| ...
https://codedump.io/share/nJ0JPHQd7t8X/1/how-to-make-block-local-variables-the-default-in-ruby-19
CC-MAIN-2017-04
refinedweb
164
70.47
This page provides an overview of the Google Cloud Platform Service Broker. Introduction. Google Cloud services available via Service Broker are: - BigQuery - Cloud Bigtable - Pub/Sub - Cloud Spanner - Cloud SQL - Cloud Storage - Cloud Identity and Access Management You can find samples for each of these services in th...
https://cloud.google.com/kubernetes-engine/docs/concepts/google-cloud-platform-service-broker?hl=no
CC-MAIN-2020-10
refinedweb
542
57.27
Version 1.23.0 For an overview of this library, along with tutorials and examples, see CodeQL for C# . import semmle.code.cil.Instructions Gets the opcode name of this instruction, for example ldnull. ldnull Holds if this instruction passes control flow into the next instruction. Holds if this node flows to sink in zer...
https://help.semmle.com/qldoc/csharp/semmle/code/cil/Instructions.qll/type.Instructions$Opcodes$Stind_r8.html
CC-MAIN-2020-16
refinedweb
156
78.14
This, I covered the topic of primitives (basically the low-level system variables), objects, and wrappers. This discussion included all of the primitive types, as well as a brief description of how strings relate to these primitives. At the end of the article, I touched upon some of the JDK 1.5 Enhancements, specifical...
http://mobile.developer.com/design/article.php/3618826/Objects-and-Collections.htm
CC-MAIN-2017-30
refinedweb
1,338
51.89
I am working with multi-dimensional Numpy arrays. I have noticed some inconsistent behavior when accessing these arrays with other index arrays. For example: import numpy as np start = np.zeros((7,5,3)) a = start[:,:,np.arange(2)] b = start[0,:,np.arange(2)] c = start[0,:,:2] print 'a:', a.shape print 'b:', b.shape pri...
https://pythonquestion.com/post/numpy-multi-dimensional-array-indexing-swaps-axis-order/
CC-MAIN-2020-16
refinedweb
604
66.13
quicksort quicksort public static double median (double []A) { int n = A.length; quicksort(A); //sort the elements of A using quicksort if ((n % 2) == 1)return A[n/2]; else return (A[n/2 - 1] + A[n/2])/ 2.0 work - Java Beginners about project code - Java Beginners about project code Respected Sir/Mam, I need to develop...
http://www.roseindia.net/tutorialhelp/comment/98856
CC-MAIN-2014-23
refinedweb
2,292
64.51
�aspx�: public string SelectedDate { get { return (string)ViewState["selecteddate"]; } set { ViewState["selecteddate"]=value; } } public string FormatType { get { return (string)ViewState["format"]; } set { string val=(string)value; ViewState["format"]=val.ToUpper(); } The SelectedDate is to be entered in the format �...
http://www.codeproject.com/KB/webforms/DateTimePicker.aspx
crawl-002
refinedweb
380
57.67
Tim Holloway wrote:Stored procedures are something that I recommend avoiding where possible regardless of the framework you are using. Stored procedures tend to lock you into a particular database vendor plus they make it harder to determine where business data logic resides - on the DBMS server or in application code,...
https://www.coderanch.com/u/219988/tangara-goh
CC-MAIN-2021-43
refinedweb
488
66.07