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
A Python application runs on a single thread, unless you explicitly enable multithreading. Why is multithreading useful? Code in Python is ran in sequence, one instruction after another. If you define a function that sleeps 3 seconds and then prints something, like this: import time def greet(): time.sleep(3) print('he...
https://flaviocopes.com/python-multithreading/
CC-MAIN-2021-17
refinedweb
328
71.75
Agenda See also: IRC log <scribe> Scribe: Ed Rice Propose next teleconference: 28 November - conflict with AC meeting? Regrets Tim, Norm, Vincent and likely Henry Norm: Propose cancel next week meeting Ed +1 <timbl> +1 Resolved, next weeks meeting will be cancelled. Propose next teleconference: 5 Dec Propose Noah as sc...
http://www.w3.org/2006/11/21-tagmem-minutes.html
CC-MAIN-2014-52
refinedweb
909
72.05
When I first started using ReSharper a couple years ago and with each subsequent release, I’ve had a lot of fun just exploring all of those “little” features that sometimes go unnoticed, but yet, can greatly increase your productivity in Visual Studio. With the latest 3.0 release, I’m in that mode again. I’m finding ma...
http://lostechies.com/joeybeninghove/2007/06/28/resharper-3-0-like-a-kid-in-a-candy-store-again/
CC-MAIN-2014-52
refinedweb
297
53.95
PTP/testing/6.x Contents Test Plan for PTP 6.x Release This plan describes the tests that will be undertaken to verify the 6.x series of PTP releases - Eclipse 6.0.0 will be available June 27, 2012 with the Eclipse Juno (4.2) Simultaneous release. Test Setup The following steps should be carried out prior to testing PT...
http://wiki.eclipse.org/index.php?title=PTP/testing/6.x&oldid=305150
CC-MAIN-2014-52
refinedweb
616
62.48
SYNOPSIS #include <libaio.h> int io_destroy(aio_context_t ctx); Link with -laio. DESCRIPTION io_destroy() removes the asynchronous I/O context from the list of I/O contexts and then destroys it. io_destroy() can also cancel any out- standing asynchronous I/O actions on ctx and block on completion. RETURN VALUE On succe...
http://www.linux-directory.com/man2/io_destroy.shtml
crawl-003
refinedweb
129
69.99
Any function prototypes, and type definitions that can be exported from a source code file are put in a header file. From the point of view of the main application, these functions are external. The compiler reads the included header file and knows where a particular function comes from. Without this it would just repo...
http://cplus.about.com/od/glossar1/g/headerdefn.htm
CC-MAIN-2014-10
refinedweb
190
75
You should be used to installing new modules using pip. You have probably used a requirements.txt file to install multiple modules together with the command. pip install -r requirements.txt But what about if you need more flexibility. Why would you ever need more flexibility? If you look at my introduction to YAML post...
https://quackajack.wordpress.com/tag/import/
CC-MAIN-2018-47
refinedweb
263
59.4
hi there I want to give a for loop in my programm that if any student fails in more than four subject he will not be able to go to the next level. if average is less than 40 then the student will be failed . i tried in many ways. but compiler is not taking at all. below i am just showing the logs for the loop but not t...
https://www.daniweb.com/programming/software-development/threads/140459/looping-problem
CC-MAIN-2018-43
refinedweb
131
91.31
I am really new to coding and I have been teaching myself how to code by using EDX.org. This week I have been studying about Cryptography and I have to create a Vigenère’s cipher. I wrote the code and for the most part, it's correct. However when I compiled the program, it's showing a segmentation error. I have been tr...
https://codedump.io/share/RTjcuaAKbgXD/1/segmentation-fault-in-c-while-coding-vigen232res-cipher
CC-MAIN-2017-09
refinedweb
514
59.84
Here's an interesting bit of Python code I hacked together – it's a script that takes an image and warps it so that it is tileable (making it suitable for a repeating backgound or a texture in a game). If you use it on a photograph, it will come out looking like a fair-ground mirror. But it works well when applied to a...
http://www.willmcgugan.com/2009/7/18/make-tilable-backgrounds-with-python/
CC-MAIN-2014-10
refinedweb
381
76.32
Fix the use of units in Gecko RESOLVED FIXED in mozilla1.9alpha3 Status () People (Reporter: roc, Assigned: sharparrow1) Tracking (Depends on 2 bugs, Blocks 4 bugs) 500997, 513837, 97861, 322938, 353860, 369618, 369684, 369690, 369693, 369698, 369882, 370006, 370444, 370466, 370553, 370629, 370631, 373381, 375172, 3766...
https://bugzilla.mozilla.org/show_bug.cgi?id=177805
CC-MAIN-2019-18
refinedweb
21,576
63.39
I just installed the Mac OSX Alpha and wanted to get started trying to write a plugin but i'm getting this error in my console whenever I save anything after importing sublimeplugin"ImportError: No module named sublimeplugin" Here are the contents of my file I'm doing just to test things out: import sublime, sublimeplu...
https://forum.sublimetext.com/t/importerror-no-module-named-sublimeplugin/1128
CC-MAIN-2017-22
refinedweb
782
65.52
Azure Storage Updated: July 16, 2015. For an overview of Azure Storage, see Introduction to Microsoft Azure Storage. An Azure storage account is a secure account that gives you access to services in Azure Storage. Your storage account provides the unique namespace for your storage resources. There are two types of stor...
https://msdn.microsoft.com/en-us/library/azure/gg433040
CC-MAIN-2015-48
refinedweb
299
64.2
Only if creating the world, you will be god. I want to learn from this site. whats dis actually means......... Post your Comment Actions in Struts Actions in Struts Hello Sir, Thanks for the solutions you have sent me. i wanted examples on Struts DispatchAction,Forword Action ,Struts lookupDispatchAction,Struts mapping...
http://roseindia.net/discussion/20979-Struts2-Actions.html
CC-MAIN-2015-40
refinedweb
792
56.66
# Various things in MetaPost What is the best tool to use for drawing vector pictures? For me and probably for many others, the answer is pretty obvious: Illustrator, or, maybe, Inkscape. At least that's what I thought when I was asked to draw about eight hundred diagrams for a physics textbook. Nothing exceptional, j...
https://habr.com/ru/post/454376/
null
null
2,770
51.99
Every join point has a single set of modifiers - these include the standard Java modifiers such as public, private, static, abstract etc., any annotations, and the throws clauses of methods and constructors. These modifiers are the modifiers of the subject of the join point. The following table defines the join point s...
https://www.eclipse.org/aspectj/doc/next/adk15notebook/join-point-modifiers.html
CC-MAIN-2021-43
refinedweb
106
69.48
Can you add energenie sockets as controlled devices. I looked in list but it seems very limited. Energenie Can you add energenie sockets as controlled devices. can you share a link to the device? sure you can connect it. add a device using and then use energenie library to control it from the dashboard wow. thanks . wh...
https://community.mydevices.com/t/energenie/11455
CC-MAIN-2019-13
refinedweb
594
75
for generic components:() RGB, LED, back RyanteckRobot robot = RyanteckRobot() curses module. This module requires that Python is running in a terminal in order to work correctly, hence this recipe will not work in environments like IDLE. If you prefer a version that works under IDLE, the following recipe should suffi...
https://gpiozero.readthedocs.io/en/v1.2.0/recipes.html
CC-MAIN-2019-51
refinedweb
145
58.89
(367) Hi, guys, I'm Henrique, a 23 years old Backend Engineer from Blumenau, Brazil who has been developing software for 5 years. I'm an architecture and backend enthusiast, mostly familiar with Java. I look forward to keep on learning and keeping up with the changes in the tech world with you guys! Heyyy 👋 , glad to...
https://practicaldev-herokuapp-com.global.ssl.fastly.net/thepracticaldev/welcome-thread-v103-4dap
CC-MAIN-2022-27
refinedweb
2,379
76.32
#include <posix_status.hpp> This class represents the status returned by a child process after it has terminated. It contains some methods not available in the status class that provide information only available in POSIX systems. Creates a posix_status object from an existing status object. Creates a new status object...
http://www.highscore.de/boost/process/reference/classboost_1_1process_1_1posix__status.html
CC-MAIN-2018-05
refinedweb
120
58.08
Many, Chris Boyd Hi, I’m currently assigned to a task to do some web parts for the new project server 2007. Unfortunately as I haven’t even started yet while trying out calling the web services through the PSI I got stuck with what I can only guess are authentification problems. I’ve been going through every single pos...
http://blogs.msdn.com/b/project_programmability/archive/2006/10/16/getting-started-with-the-psi.aspx
CC-MAIN-2015-27
refinedweb
1,857
60.14
Control.FRPNow.Core Description Synopsis - data Event a - data Behavior a - never :: Event a - switch :: Behavior a -> Event (Behavior a) -> Behavior a - whenJust :: Behavior (Maybe a) -> Behavior (Event a) - futuristic :: Behavior (Event a) -> Behavior (Event a) - data Now a - async :: IO a -> Now (Event a) - asyncOS ...
https://hackage.haskell.org/package/frpnow-0.18/docs/Control-FRPNow-Core.html
CC-MAIN-2017-30
refinedweb
1,017
62.31
A one sample t-test is used to determine whether or not the mean of a population is equal to some value. This tutorial explains how to conduct a one sample t-test in Python. Example: One Sample t-Test in Python Suppose a botanist wants to know if the mean height of a certain species of plant is equal to 15 inches. She ...
https://www.statology.org/one-sample-t-test-python/
CC-MAIN-2022-21
refinedweb
298
72.26
Design and manufacture systems with flash memory¶ The tools can be used to target xCORE devices that use SPI flash memory for booting and persistent storage. The xCORE flash format is shown in Flash format diagram. The flash memory is logically split between a boot and data partition. The boot partition consists of a f...
https://www.xmos.ai/documentation/XM-014363-PC-4/html/tools-guide/tutorials/design-with-flash/flash.html
CC-MAIN-2022-21
refinedweb
872
51.28
Error Handling Netpbm Programming Library Errors As part of Netpbm’s mission to make writing graphics programs quick and easy, Netpbm recognizes that no programmer likes to deal with error conditions. Therefore, very few Netpbm programming library functions return error information. There are no return codes to check. ...
https://manpag.es/YDL61/1+error
CC-MAIN-2021-49
refinedweb
1,189
63.49
Hi there... I am pretty much a newbie working with Flash, so I would really appreciate any kind of help. I have created a game, with lot of "brain burn" and getting help from the web, however, when I tried to put an exit button, even if I copied the AS3 code, it did not work. This is what I Have import flash.events.Mou...
https://forums.adobe.com/thread/1160167
CC-MAIN-2017-30
refinedweb
253
50.73
@cholmes Thanks for the feedback! Quick piece of background, we are in the process of creating a backup archive of about 110TB of historical aerial imagery and we are looking to store STAC metadata with it. So I think for now we are looking to start using STAC internally until we can use it in anger for a bit to make s...
https://gitter.im/SpatioTemporal-Asset-Catalog/Lobby?at=5f96e36857fe0a4f3035b050
CC-MAIN-2020-50
refinedweb
175
53.68
#include <vga.h> void vga_setwritepage(int page); vga_setreadpage(3) allows a different 64K memory chunk to be modified by reads from this memory window. This is a very useful feature for screen to screen pixmap copies. However, not all cards support this in all graphics modes. Check vga_modeinfo(3) for availability. E...
http://www.makelinux.net/man/3/V/vga_setwritepage
CC-MAIN-2014-52
refinedweb
106
60.01
Windows CE kernel and storage technologies and system tools. Posted by: Sue Loh The Windows CE Monte Carlo profiler works with support from the BSP. All of our sample BSPs implement the profiler support, but a lot of OEMs seem hesitant to implement it. Perhaps it looks like too much work or is too complicated. Well I'm...
http://blogs.msdn.com/ce_base/archive/2006/01/23/516637.aspx
crawl-002
refinedweb
503
54.93
Data. An item that is part of a list is called datum, with the plural being data, but data can also be used for singular. The group of items, or data, that makes up a list is referred to as a set of data. Data Set Creation To support the creation and management of a set of data, the .NET Framework provides the DataSet ...
http://www.functionx.com/vcsharp/dataset/Lesson01.htm
CC-MAIN-2013-20
refinedweb
110
68.16
Copyright © 2004 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C liability, trademark, document use, and software licensing rules apply. This is an internal working draft. Last Modified: $Date: 2004/02/27 11:55:44 $ 1 Motivation 2 Types of Metadata in XHTML Documents 3 Document Metadata 3.1 Top-level Metadata with me...
http://www.w3.org/MarkUp/2004/02/xhtml-rdf.html
crawl-001
refinedweb
3,798
50.57
import "github.com/grailbio/bigmachine". bigmachine.go doc.go expvar.go local.go machine.go profile.go status.go supervisor.go system.go RpcPrefix is the path prefix used to serve RPC requests. Init initializes bigmachine. It should be called after flag parsing and global setup in bigmachine-based processes. Init is a ...
https://godoc.org/github.com/grailbio/bigmachine
CC-MAIN-2020-40
refinedweb
1,037
52.66
Happy Canada Day everyone! I’m back from a fabulous week in California and looking forward to taking a break from giving PowerPoint presentations. Today, to follow up on my recent series on string concatenation, here’s a fairly easy little puzzle. I have a perfectly ordinary local variable: string s = ""; Can you come ...
https://ericlippert.com/2013/07/01/a-string-concatenation-puzzle/
CC-MAIN-2019-39
refinedweb
1,497
64.61
Welcome to this review of the Pluralsight course Angular 2: Getting Started (Updated). Introduction to Components This module builds our first component, the “App component”. What is a component? An Angular component is made up of a: - Template (for view layout, created with HTML, with bindings) -: ` My 1st Component `...
https://zombiecodekill.com/2016/12/06/angular-2-getting-started-components/
CC-MAIN-2022-21
refinedweb
371
55.95
Hello, I have a user object that gets instantiated / initialized on login. I have a javascript function that needs to utilize some of the properties of that user object. In the HTML am trying to figure out how to take that session var / object called currentUser and get the FirstName property. I tried: myFunction('<%= ...
http://forums.devx.com/showthread.php?137570-getting-object-property-from-session-var-in-HTML
CC-MAIN-2015-18
refinedweb
175
54.32
current position:Home>10 minutes to learn how to play excel easily with Python 10 minutes to learn how to play excel easily with Python 2022-02-02 00:46:27 【Dream, killer】 Preface When you need to be right every day Excel Do a lot of repetitive operations , If you only rely on manual work, it will waste time , And very...
https://en.pythonmana.com/2022/02/202202020046263710.html
CC-MAIN-2022-27
refinedweb
1,074
69.68
How do I do that? I don't know how to place the text file in the same directory as the java file. How do I do that? I don't know how to place the text file in the same directory as the java file. Hello so for this problem i have to read a text file but for some reason it won't let me do it. this is my code: import java...
http://www.javaprogrammingforums.com/search.php?s=2f1ced3be6d99ce062f1191cbf668bfb&searchid=258905
CC-MAIN-2016-36
refinedweb
621
85.79
CURLOPT_HTTP09_ALLOWED - Man Page allow HTTP/0.9 response Synopsis #include <curl/curl.h> CURLcode curl_easy_setopt(CURL *handle, CURLOPT_HTTP09_ALLOWED, long allowed); Description Pass the long argument allowed set to 1L to allow HTTP/0.9 responses. A HTTP/0.9 response is a server response entirely without headers and...
https://www.mankier.com/3/CURLOPT_HTTP09_ALLOWED
CC-MAIN-2021-39
refinedweb
168
53.78
interface IBand { int ID {get;set;} string Name {get;set;} void GetStatus(); } public class Band : IBand { public int ID { get; set; } public string Name { get; set; } public Band() { GetStatus(); } public void GetStatus() { ID = 555; Name = "Ring"; Console.WriteLine("Base Class Called"); } } public class ABand : Band,...
http://geekswithblogs.net/rgupta/archive/2008/10/13/125816.aspx
crawl-002
refinedweb
235
54.66
(Photo by Perfect Snacks on Unsplash) This time we shall start to see some practical applications of what we saw so far. I'm already excited, aren't you as well? One note of method: we could build up the final project all at once, but then we will not see much improvements, we will only see what is needed to create the...
https://practicaldev-herokuapp-com.global.ssl.fastly.net/davidedelpapa/yew-tutorial-07-dr-ferris-i-presume-web-geography-injected-with-rust-p-i-57g6
CC-MAIN-2021-04
refinedweb
7,906
62.88
I'm trying to build a soundboard that plays samples on a button press. I have the sounds playing and stopping on the button press, however, I cant for the life of me figure out how to get the sounds to play on a continuous loop until the button is pressed again. I've search google and the forums and figure it has somet...
https://www.raspberrypi.org/forums/viewtopic.php?p=1422881
CC-MAIN-2019-51
refinedweb
169
66.44
Hello, trying to get some code converted from Visual C++ 6 to gcc. I've got pretty far, but as a C++ newbie I'm little bit lost with templates. It would be very nice if somebody could help me to get this working (with explanation please so I can learn). A possibility would also be to convert this template to a normal f...
https://cboard.cprogramming.com/cplusplus-programming/94187-convert-visualcplusplus-template-gcc.html
CC-MAIN-2018-05
refinedweb
142
57.61
Matplotlib is the "grandfather" data visualisation tool for data in Python - it offers unparalleled control over graphs and diagrams for data, and lets us annotate and customise figures to our heart's content. Matplotlib is built upon for other important modules we'll use later, such as Seaborn, which is more used for ...
https://nbviewer.jupyter.org/github/HiPyLiv/HiPyProject/blob/master/%5BVISUALISATION%5D%20A%20Deeper%20Look%20Into%20Matplotlib/A%20Deeper%20Look%20Into%20Matplotlib.ipynb
CC-MAIN-2019-09
refinedweb
1,628
59.4
The information in this post is out of date. EF6 RTM is now available. Visit msdn.com/data/ef for the latest information on current and past releases of EF. A couple of months back we released EF6 Alpha 2, since then we’ve been adding new features, polishing existing features and fixing bugs. Today we are pleased to an...
https://blogs.msdn.microsoft.com/adonet/2013/02/27/ef6-alpha-3-available-on-nuget/
CC-MAIN-2019-35
refinedweb
4,156
55.13
Synopsis Utility routines for ChIPS (CIAO contributed package) Syntax import chips_contrib.utils from chips_contrib.utils import * The module provides the following routines: xlabel(text) ylabel(text) title(text) xlog() ylog() xylog() xlin() ylin() xylin() xlim() ylim() xylim() add_ds9_contours() Description The chips_...
https://cxc.cfa.harvard.edu/chips/ahelp/chips_utils.html
CC-MAIN-2020-10
refinedweb
448
59.94
Note: I'm aware another thread similar to this has been posted, however that one only describes mainly about configuring windows firewall. This guide gives more of a breif overview and a list of other things you can do to IMPROVE your protection with windows firewall. With the release of SP2 for Windows XP, it came wit...
http://www.antionline.com/printthread.php?t=270227&pp=10&page=1
CC-MAIN-2017-22
refinedweb
1,505
61.16
PhpStorm 6.0.1 EAP build 129.177/196 We continue to refine the IDE and work on plugin APIs. This build addresses both aspects by implementing a much requested feature purely relying on php-openapi. It required numerous adjustments – and much more are still pending, but we have a great progress.. The feature above is im...
https://blog.jetbrains.com/webide/2013/04/phpstorm-6-0-1-eap-build-129-177/
CC-MAIN-2021-17
refinedweb
1,148
67.76
: import numpy and import matplotlib does work in the interactive python shell. thanks, Archana. On 3/31/07, Tommy Grav <tgrav@...> wrote: > > I do not immediately see why the error occurs. Hopefully someone else > can add their input. Off the cuff it seems like matplotlib has not been > installed properly. Can you con...
https://sourceforge.net/p/matplotlib/mailman/message/13646262/
CC-MAIN-2017-04
refinedweb
654
61.22
dotCMS and the Scripting Worlds CollideAug 16, 2009 The Problem Although Velocity is great and dotCMS has a bunch of rich web tooling, sometimes it is easier or more practical to use a script in another language. While it is possible to provide any kind of custom tooling or logic one might need through the use of Viewt...
https://dotcms.com/blog/post/dotcms-and-the-scripting-worlds-collide
CC-MAIN-2021-43
refinedweb
1,017
64.2
2 Function Fundamentals Written by Massimo Carli In Chapter 1, “Why Functional Programming”, you learned that functional programming means programming with functions in the same way that object-oriented programming means programming with objects. Objects and functions are very different beasts. Objects, at first sight,...
https://www.raywenderlich.com/books/functional-programming-in-kotlin-by-tutorials/v1.0/chapters/2-function-fundamentals
CC-MAIN-2022-21
refinedweb
7,187
63.39
Whenever I run the program, I get the following error: NameError at /table/ name 'models' is not defined from django.shortcuts import render def display(request): return render(request, 'template.tmpl', {'obj': models.Book.objects.all()}) from django.db import models class Book(models.Model): author = models.CharField(...
https://codedump.io/share/OPWOTFJ0Bwwl/1/why-am-i-getting-the-following-error-nameerror-name-39models39-is-not-defined
CC-MAIN-2017-17
refinedweb
122
57.23
Disclaimer: The information in this article & source code are published in accordance with the final [V1] bits of the .NET Framework This sample shows how to use Windows XP Windows Image Acquisition (WIA) Scripting with .NET and C#. It is useful for integrating with scanners, digital cameras, webcams and still-video. N...
http://www.codeproject.com/Articles/2303/WIA-Scripting-and-NET?fid=3908&df=90&mpp=10&sort=Position&spc=None&tid=3977846
CC-MAIN-2014-52
refinedweb
833
51.04
I'm using two gertbot h-bridge boards and a Raspberry pi 2 model B to control 3 stepper motors with python 3. I've freed up the uart and can control my motors by using Gert's GUI. I can also control the motors with my own python code BUT this only works if I've first run Gert's GUI and hit the 'connect' button. Looking...
https://www.raspberrypi.org/forums/viewtopic.php?t=162756
CC-MAIN-2019-18
refinedweb
399
51.99
Deploy FastAPI on Deta¶ Warning The current page still doesn't have a translation for this language. But you can help translating it: Contributing. In this section you will learn how to easily deploy a FastAPI application on Deta using the free plan. 🎁 It will take you about 10 minutes. A basic FastAPI app¶ - Create a...
https://fastapi.tiangolo.com/tr/deployment/deta/
CC-MAIN-2021-17
refinedweb
650
74.08
Wikiversity:Subpages Wikiversity allows creation of subpages for articles in the main namespace. Subpages are given names such as "Page/Subpage". Subpages are used to help organise individual projects such as courses, seminars, and research projects. Example of a main namespace page with a subpage. Contents Courses[edi...
https://en.wikiversity.org/wiki/Wikiversity:Subpages
CC-MAIN-2017-13
refinedweb
528
56.35
Download Images from a Web Page using Python Want to share your content on python-bloggers? click here. In this article we will discuss how to download images from a web page using Python. Table of Contents - Introduction - Get HTML content from URL - Finding and extracting image links from HTML - Downloading images fr...
https://python-bloggers.com/2021/02/download-images-from-a-web-page-using-python/
CC-MAIN-2022-40
refinedweb
786
60.35
Hi everyone. I have been using Linux since nearly 3 years and recently, during a reading on computer security i came up on the following question: Is my computer and my private life really secure ? Indeed not. my private life isn't 100 % secure and I wish I could make it a little safer from intruders. Considering I am ...
http://fixunix.com/security/17688-how-secure-my-computer-print.html
CC-MAIN-2015-06
refinedweb
233
63.8
There are more than 82 crypto wallets available for you to use for your next smart contract or DApp. However, not all of these wallets are usable; some cannot be integrated with your smart contract, or don’t offer software development kits (SDKs). A good wallet for a smart contract supports blockchain interoperability,...
https://blog.logrocket.com/5-blockchain-wallets-smart-contract-dapp/
CC-MAIN-2022-40
refinedweb
1,415
52.19
Process.Start works great on windows, and very simply as well. But it seems a bit funkier on OSX. I got it working to just launch an application normally. But I cannot figure out how to get it to launch an application with arguments on OSX. More specifically I am trying to launch a command line application with argumen...
https://answers.unity.com/questions/161444/how-to-use-processstart-with-arguments-on-osx-in-a.html
CC-MAIN-2019-39
refinedweb
548
59.09
At the Forge - jQuery to get all the tr tags with a class of even. Each call to $() might return zero, one or a number of objects matching that selector. That is, if you were to say: $('#blahblah') // jQuery and there isn't any such item, jQuery happily will return the set of elements matching that query—an empty set. ...
https://www.linuxjournal.com/magazine/forge-jquery
CC-MAIN-2020-29
refinedweb
1,134
70.53
How to integrate jQuery with Tapestry 5. Introduction Unfortunatly it is not possible to use a current jQuery release out of the box with Tapestry 5. But only one small step is necessary to make them play together well. It is necessary to adjust the jQuery sources, because Tapestry 5 uses the Prototype Javascript libra...
https://wiki.apache.org/tapestry/Tapestry5HowToIntegrateJQuery?action=diff
CC-MAIN-2017-30
refinedweb
353
59.09
Hi. I would like announce of new version of pyplusplus (0.5). What is this? The pyplusplus is a framework of components for creating C++ code generator for boost.python library Code generation with the pyplusplus framework is a very flexible and highly configurable process. You can find an introduction to pyplusplus at...
https://mail.python.org/pipermail/cplusplus-sig/2005-October/009419.html
CC-MAIN-2014-10
refinedweb
214
60.41
Thanks to the FileManager tutorial, I’ve figured out how to open a Finder window and I’ve made the first steps on my project. Now I’m trying to work out how to stash away an input file and an output directory for later use (it will be used to construct an ffmpeg script that will run if I want to re-encode or rewrite me...
https://forums.raywenderlich.com/t/stashing-file-urls-away-for-later-use/84794
CC-MAIN-2020-29
refinedweb
446
51.75
. Facebook implements OAuth 2.0 as its standard authentication mechanism, but provides a convenient way for you to get an access token for development purposes, and we'll opt to take advantage of that convenience in this notebook. For details on implementing an OAuth flow with Facebook (all from within IPython Notebook...
http://nbviewer.jupyter.org/github/ptwobrussell/Mining-the-Social-Web-2nd-Edition/blob/master/ipynb/Chapter%202%20-%20Mining%20Facebook.ipynb
CC-MAIN-2017-47
refinedweb
1,573
57.37
Ticket #6791 (closed Feature Requests: fixed) Support boost::array Description boost::hash_value appears to lack support for boost::array. Could you add it? Isn't it possible to support all containers in a generic way? Attachments Change History comment:1 Changed 4 years ago by danieljames - Owner changed from danielja...
https://svn.boost.org/trac/boost/ticket/6791
CC-MAIN-2016-40
refinedweb
204
62.98
While I was preparing another demo, I ran into an interesting problem that hadn’t occurred to me before. I was building a sample e-commerce site and thought it would be nice to always display the category list on the left hand side of every page. The first way I could think of was always passing that data in every acti...
http://blogs.msdn.com/b/nunos/archive/2010/02/04/quick-tips-about-asp-net-mvc-pass-data-to-your-master-page.aspx
CC-MAIN-2015-06
refinedweb
550
50.26
(Transferred from the wiki by Peter) Introduction Welcome to C++ ! I am going to teach you some basics of a very powerfull programming language called C++. C++ is language base on the famous C langugae and was created originally by Bjarne Stroustrup in 1979 . Data types and variables There are seven basic data types in...
http://www.linuxhomenetworking.com/forums/showthread.php/18753-C-plus-plus-tutorial
CC-MAIN-2014-42
refinedweb
518
70.73
From: Sven Stork (stork_at_[hidden]) Date: 2007-09-06 04:56:54 On Thursday 06 September 2007 02:29, Jeff Squyres wrote: > Unfortunately, <iostream> is there for a specific reason. The > MPI::SEEK_* names are problematic because they clash with the > equivalent C constants. With the tricks that we have to play to make >...
http://www.open-mpi.org/community/lists/users/2007/09/3979.php
CC-MAIN-2014-52
refinedweb
637
76.93
I want to show you a few more key points about inferno that are useful in building a grid. I'll show a really simple example of feeding data to all the worker processes. Setup the grid as described in my last post. This example is a multicore grep(1), so I want to send filenames to multiple grep workers. The are many d...
http://code.google.com/p/inferno-lab/wiki/SimpleGridPartTwo
crawl-003
refinedweb
462
76.66
Modern front-end frameworks require you to download a development environment, complete with dependencies, and compile your code before even trying to view it on your browser. Is this a good thing? Is the problem that we are building more complex sites, or is it that the frameworks are complex in their own right, intro...
https://www.toptal.com/javascript/are-big-front-end-frameworks-bad?utm_campaign=blog_post_are_big_front_end_frameworks_bad&utm_medium=email&utm_source=blog_subscribers&utm_campaign=Toptal%20Engineering%20Blog&utm_source=hs_email&utm_medium=email&utm_content=59459408&_hsenc=p2ANqtz-_4OvqG3y_B8x6Do3IinwWOn6CJdn71poq2sAtY...
CC-MAIN-2021-04
refinedweb
3,609
69.72
im trying to make this game. Its common and its my first project. Game: import random import time def displayIntro(): print "You are in a land full of dragons." print "You are exploring and come upon two caves." print "In one cave, the dragon is friendly." print "In the other, the dragon will eat you alive" def chooseC...
http://forums.devshed.com/python-programming/936980-help-please-last-post.html
CC-MAIN-2016-30
refinedweb
183
78.35
T he Electronic Magazine of O riginal Peer-Reviewed Survey Articles ABSTRACT - Oscar Bryan - 2 years ago - Views: Transcription 1 SECOND QUARTER 2005, VOLUME 7, NO. 2 IEEE C OMMUNICATIONS SURVEYS T he Electronic Magazine of O riginal -Reviewed Survey Articles A SURVEY AND COMPARISON OF PEER-TO-PEER OVERLAY NETWORK SCHE...
http://docplayer.net/8317983-T-he-electronic-magazine-of-o-riginal-peer-reviewed-survey-articles-abstract.html
CC-MAIN-2018-34
refinedweb
20,939
53.31
Mapping an input file to different RDDs I have a text file consisting of columns of integers. Assuming that I have N number of columns, I need to have N-1 number of PairRDDs. Each PairRDD has one of the 0 to N-2 columns of my file as Key and the last column as Value. Number of columns in my file varies each time I run ...
http://codegur.com/48248964/mapping-an-input-file-to-different-rdds
CC-MAIN-2018-05
refinedweb
384
65.32
@geekie/navigator We developed this navigator library at Geekie when developing our first React Native app and getting upset by the transitions of the (now deprecated) Navigator library that shipped with React Native. After evaluating some of the options, we decided that none had the APIs and transitions that would sui...
https://reactnativeexample.com/a-minimal-navigator-library-for-react-native/
CC-MAIN-2021-17
refinedweb
830
55.74
The task every developer fears "Hey, I sometimes get a timeout when I want to see the last gazillion days of activity in the dashboard. What gives?" This problem started happening for a project I work on a few months ago. Through a lucky sequence of events I was able to push the problem back a couple of months ... most...
https://swizec.com/blog/how-to-make-your-django-app-slow/
CC-MAIN-2021-43
refinedweb
817
73.27
Building Mobile Apps With Angular or Vue.js and NativeScript {N} Building Mobile Apps With Angular or Vue.js and NativeScript {N} In this tutorial, we go over to quickly make mobile applications using NativeScript plus Angular and NativeScript plus Vue.js. Join the DZone community and get the full member experience.Joi...
https://dzone.com/articles/building-mobile-apps-with-angular-and-nativescript
CC-MAIN-2019-51
refinedweb
2,150
57.87
Welcome to part 2 of our 3 part series on user authentication with Titanium Mobile. Titanium is an open source cross compiler that allows you to write iPhone and Android (soon to be blackberry too!) applications using Javascript. No Objective-C required! We will be using PHP as the server side code and my database will...
https://code.tutsplus.com/tutorials/titanium-user-authentication-part-2--mobile-3742
CC-MAIN-2020-29
refinedweb
1,697
51.85
React 17 is out and it has been 2.5 years since the release of React 16, React 16.x included many new changes like Hooks,Context etc.,But the new React 17 has no new features but it's a right move they have done this time before going to that let's see some minor changes which has happened - Changes to Event Delegation...
https://dev.to/gouthamjm/react-17-why-it-s-so-important-il6
CC-MAIN-2020-40
refinedweb
533
55.51
This is a video of a home with Chinese Drywall. I took a video of the house to save investors 000 + by knowing what to look for in a home prior to purcha… Video Rating: 4 / 5 This is a video of a home with Chinese Drywall. I took a video of the house to save investors 000 + by knowing what to look for in a home prior t...
http://www.imsdbe.com/drywall-stamped-china-chinese-drywall-what-to-look-for-before-investing-in-properties/
CC-MAIN-2018-05
refinedweb
417
84.17
Export rosbag content issues (frames drop or can't open with ROS API)baptiste-mnh Jun 22, 2018 8:55 AM Hi! Since de 2.12.0 release of the SDK, their is a tool (rs-convert) which can export the PNG images and the PLYs. But I got this issues : problems in rs_convert · Issue #1919 · IntelRealSense/librealsense · GitHub "E...
https://communities.intel.com/thread/126676
CC-MAIN-2018-39
refinedweb
889
60.72
array manipulation - Java Beginners [] nums, int val) { } Hi friend, Read in detail with array example at: manipulation We'll say that a value is "everywhere array example - Java Beginners array example hi!!!!! can you help me with this question... dependents to Employee that is an array of Dependent objects, and inst...
http://www.roseindia.net/tutorialhelp/comment/80744
CC-MAIN-2014-10
refinedweb
1,588
64.1
IMPORTANT Generic methods with generic params cannot be used in Source XML as in-rule methods or rule actions. Use plain .Net class(es) if your source object declares generic methods. If applied to a source object, references an external qualified public method as an in-rule method. To qualify, the method must return a...
https://codeeffects.com/Doc/Business-Rule-External-Method-Attribute
CC-MAIN-2021-31
refinedweb
411
57.87
liberty, equality, and boxed primitive types I want to understand how equality works in Scala. It's a complicated topic that's been going on for ten years. Major concerns are: - null - Unboxed number types - Boxed number types - Reference types - Collections (especially of F[+A]) Understanding equality means knowing ho...
http://eed3si9n.com/liberty-equality-and-boxed-primitive-types
CC-MAIN-2020-34
refinedweb
2,636
55.95
On Mon, 28 Jul 2008, Mike Travis wrote:> > Sorry, I didn't know that was the protocol. And yes, the clever idea of> compacting the memory is a good one (wish I would have thought of it... ;-)> But, and it's a big but, if you really have 4096 cpus present (not NR_CPUS,> but nr_cpu_ids), then 2MB is pretty much chump cha...
http://lkml.org/lkml/2008/7/28/320
CC-MAIN-2015-06
refinedweb
278
70.33
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9a1) Gecko/20051017 Firefox/1.6a1 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9a1) Gecko/20051017 Firefox/1.6a1 Each "output", "input", and "select1" element inside a repeat will generate an error in the JavaScript Console for e...
https://bugzilla.mozilla.org/show_bug.cgi?id=312848
CC-MAIN-2017-26
refinedweb
553
58.48
outside air also attach themselves to people and animals, making clothing, shoes, bags, and pets convenient vehicles for carrying mold indoors (3). - Shannon Davis - 1 years ago - Views: Transcription 1 TECHNICAL RESOURCE SHEET frequently asked questions about mold The presence of unwanted or excessive moisture in buil...
http://docplayer.net/998410-Outside-air-also-attach-themselves-to-people-and-animals-making-clothing-shoes-bags-and-pets-convenient-vehicles-for-carrying-mold-indoors-3.html
CC-MAIN-2016-50
refinedweb
4,552
52.49
Faster playback start means more people watching your video. That's a known fact. In this article I'll explore techniques you can use to accelerate your media playback by actively preloading resources depending on your use case. Credits: copyright Blender Foundation | . TL;DR Video preload attribute If the video source...
https://developers.google.cn/web/fundamentals/media/fast-playback-with-video-preload?hl=pl
CC-MAIN-2018-39
refinedweb
2,116
57.67
♦ ; ♦ VOL. I. CALDWELL, IDAHO TERRITORY, SATURDAY, JANUARY 20, 1884. NO. 7. The Caldwell Tribune Is Published Every Saturday at Caldwell, Idaho Territory. BY W. J, CUDDY. OFFICE, 509 MARKET AVENUE. sUMSClUITION: One Year.... Six Months... Three Months. $ 0.00 1.50 1.00 ) Single Copy, Ten Cents. (öfAdvertistug rates giv...
https://chroniclingamerica.loc.gov/lccn/sn86091092/1884-01-26/ed-1/seq-1/ocr/
CC-MAIN-2022-05
refinedweb
5,208
62.17
I'm currently setting up a fairly complex bash configuration which shall be used on multiple machines. I try to find out if it is possible to determine whether I'm logged in via SSH or on a local machine. This way I could, for instance, set some aliases depending on that fact. Like aliasing halt to restart since stoppi...
http://serverfault.com/questions/187712/how-to-determine-if-im-logged-in-via-ssh
crawl-003
refinedweb
569
71.65
stylo: test _namespace _rule .html fails for several cases RESOLVED FIXED in Firefox 56 Status () P2 normal People (Reporter: xidorn, Assigned: xidorn) Tracking (Blocks: 1 bug) Firefox Tracking Flags (firefox56 fixed) Details Attachments (2 attachments) There are 17 failures in layout/layout/test/test_namespace_rule.ht...
https://bugzilla.mozilla.org/show_bug.cgi?id=1355715
CC-MAIN-2018-47
refinedweb
598
63.29
One of the challenges one faces when doing multi language support in WPF is when one has several projects in one solution (i.e. a business layer & ui layer) and you want multi language support. Typically each solution would have a resource file – meaning if you have 3 projects in a solution you will have 3 resource fil...
http://blog.markpearl.co.za/Centralizing-a-resource-file-among-multiple-projects-in-one-solution-(C-and-WPF)
CC-MAIN-2019-04
refinedweb
317
65.96
So I've had it in the back of my mind to give GLFW another look at some point for possible inclusion into Derelict 2. Today, I did. A new version was released late last year (2.7) and a new branch that streamlines the API (3.0) has been started. I really like the new branch. So, being the spontaneous sort of fellow I a...
https://www.gamedev.net/blogs/blog/1140-d-bits/?page=1&sortby=entry_num_comments&sortdirection=desc
CC-MAIN-2018-09
refinedweb
1,364
74.9
Just as any other data adapter class, OleDbDataAdapter provides a Fill method that callers can use to add tables to a DataSet object. The OleDbDataAdapter class is defined in the System.Data.OleDb namespace, and you typically use it as follows: OleDbDataAdapter da = new OleDbDataAdapter(); DataSet ds = new DataSet(); d...
http://etutorials.org/Programming/Web+Solutions+based+on+ASP.NET+and+ADO.NET/Part+III+Interoperability/Interoperable+Web+Applications/Adapting+Recordset+Objects+to+DataSet+Objects/
crawl-001
refinedweb
1,512
56.86
Are you sure? This action might not be possible to undo. Are you sure you want to continue? By SWATI GOENKA (08BSHYD0871) RELIANCE INDUSTRIES LIMITED 1 A REPORT ON PROJECT FINANCING OF RPL AND PRE AND POST MERGER VALUATION OF RIL - RPL By SWATI GOENKA (08BSHYD0871) ICFAI BUSINESS SCHOOL MAY 15, 2009 2 AUTHORISATION Thi...
https://www.scribd.com/doc/161597253/Share-Capital-Rpl
CC-MAIN-2018-17
refinedweb
32,739
51.38
, and some other Super Simple Python projects we’ve done, plotting a random dataset will make use of the random library. We’ll also introduce a new library, matplotlib. matplotlib is a critical library for data scientists, and the default plotting library for Python. Before we start with the program, we’ll need to use ...
https://pythonalgos.com/super-simple-python-plot-a-random-dataset/
CC-MAIN-2022-27
refinedweb
323
76.01
The nosey programmer’s guide to Kotlin and Dart Kotlin and Dart are the new kids of the block that have actually been around for years. Recently they have come into the mainstream as the languages of choice for Android and Flutter development respectively. This article is for the ‘nosey programmer’ — those of us who ar...
https://medium.com/snapp-mobile/the-nosey-programmers-guide-to-kotlin-and-dart-cce36d8b35cc?source=---------2------------------
CC-MAIN-2019-47
refinedweb
3,087
59.09
User:SPIKE/PLS-09 From Uncyclopedia, the content-free encyclopedia This file concerns my entries in the 8th Poo Lit Surprise competition in 2009. edit Clip-on tie Since you're a noob, I'm just dropping by to note that your entry, User:SPIKE/Clip-on tie, as it currently stands, is invalid. It's exactly the same as Clip-...
http://uncyclopedia.wikia.com/wiki/User:SPIKE/PLS-09
CC-MAIN-2014-52
refinedweb
295
64.61
IEnumerable.Equals seems to call the wrong Equals method IEnumerable.Equals seems to call the wrong Equals method - You probably want to use SequenceEqual. (new[]{1,2,3}).SequenceEqual(new[]{ 1,2,3}) // True (new[]{1,2,3}).SequenceEqual(new[]{3,2,1}) Enumerable.SequenceEqual Method (System.Linq) - Determines whether tw...
http://www.brokencontrollers.com/article/10727606.shtml
CC-MAIN-2019-26
refinedweb
2,296
54.52
Beat Any Website into Shape with Greasemonkey Greasemonkey is a Firefox extension by Aaron Boodman, which allows you to run personal DHTML scripts (known as "user scripts") on any Website. User scripts are essentially bookmarklets that run automatically, but because they do, they’re a whole lot more useful. Ever used a...
https://www.sitepoint.com/beat-website-greasemonkey/
CC-MAIN-2020-10
refinedweb
3,995
56.18
I am just trying to figure out basic classes/objects. I am trying to write a program where it will return the area of a triangle. I realize this can be done easier another way but I am just trying to figure out how these things work.... Code : import java.util.Scanner; class Triangle { double height; double base; doubl...
http://www.javaprogrammingforums.com/%20whats-wrong-my-code/29152-objects-classes-printingthethread.html
CC-MAIN-2016-18
refinedweb
134
52.05