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
Building JavaScript Demos With TypeScript 2.2.1, Webpack 2, And Angular 2.4.9 CAUTION: This is the first time that I've used Webpack and I am in no way a Webpack expert. Actually, I'm barely a novice. This is just me trying to get my GitHub-based demo workflow to run using Webpack - the scope of this is no larger than ...
https://www.bennadel.com/blog/3242-building-javascript-demos-with-typescript-2-2-1-webpack-2-and-angular-2-4-9.htm
CC-MAIN-2019-26
refinedweb
3,540
55.03
42064/how-do-i-use-the-xor-operator-in-python-regular-expression $ to match the end of the ...READ MORE Hi. Good question! Well, just like what ...READ MORE If you're already normalizing the inputs to ...READ MORE What i found is that you can use ...READ MORE You can use np.maximum.reduceat: >>> _, idx = np.unique(g, ....
https://www.edureka.co/community/42064/how-do-i-use-the-xor-operator-in-python-regular-expression
CC-MAIN-2021-21
refinedweb
119
81.19
Among the hundreds of new feature announcements at Build, one gem is hidden in plain sight: an improvement to the Kudu platform (Windows Azure Web Sites) which enables you to capture a dump file of your website’s process across the wire. No more remoting into the destination VM, fiddling around with tool downloads, and...
http://blogs.microsoft.co.il/sasha/2013/07/01/capturing-dumps-of-windows-azure-web-sites/
CC-MAIN-2013-48
refinedweb
286
58.72
Unicode data in Django This document is for Django's SVN release, which can be significantly different from previous releases. Get old docs here: 0.96, 0.95. New in Django development version (section 10.3.2 for MySQL 5.1) for details on how to set or alter the database character set encoding. - PostgreSQL users, refer...
http://www.djangoproject.com/documentation/unicode/
crawl-001
refinedweb
288
59.4
/* Copyright (C) 1996 N.M. Maclaren Copyright (C) 1996 The University of Cambridge This includes code that really should have been part of ANSI/ISO C, but was left out for historical reasons (despite requests to define ftty), plus the get_lock() and log_message() functions. */ #include "header.h" #include <sys/types.h>...
http://opensource.apple.com/source/ntp/ntp-45.1/ntp/sntp/unix.c
CC-MAIN-2016-36
refinedweb
338
57.67
The shapefile format does not allow for specifying the map projection of the data. When ESRI created the shapefile format everyone worked with data in only one projection. If you tried to load a layer in a different projection into your GIS weird things would happen. Not too long ago as hardware capability increased ac...
http://geospatialpython.com/2011/02/create-prj-projection-file-for.html
CC-MAIN-2017-26
refinedweb
501
64.41
This project is done by Jaeyoung Lim Overview In this project I have built a usb2ppm interface, which is a programmable board that can generate ppm signals. Commands can be programmed to come from potentiometers or command from a PC connected via a USB cable. There are some literature that explains how to control the c...
https://404warehouse.net/2015/08/08/usb2ppm-interface-for-accessing-transmitter-trainer-ports/
CC-MAIN-2017-17
refinedweb
680
52.9
Cache::Memory - Memory based implementation of the Cache interface use Cache::Memory; my $cache = Cache::Memory->new( namespace => 'MyNamespace', default_expires => '600 sec' ); See Cache for the usage synopsis. The Cache::Memory class implements the Cache interface. This cache stores data on a per-process basis. This ...
http://search.cpan.org/dist/Cache-2.01/lib/Cache/Memory.pm
crawl-003
refinedweb
216
56.15
After completing this chapter, you will be able to Use the XDocument and XElement classes in the System.Xml.Linq namespace. Searching for items in an XML file In this chapter, you’ll continue working with data in a Visual Studio 2013 application. In Chapter 17 you learned how to establish a connection to a database by ...
https://www.oreilly.com/library/view/microsoft-visual-basic/9780735673380/ch18.html
CC-MAIN-2018-47
refinedweb
119
51.99
The debugging process in the programming world is usually tedious, not easy and take a lot of time. That's why there are many developers that focus on how to improve the development process on multiple technologies. In PHP, some people have become the idea of implementing such a debugging bar that the PHP developer can...
https://ourcodeworld.com/articles/read/577/php-debug-bar-display-profiling-data-from-any-part-of-your-application-in-any-php-project
CC-MAIN-2018-17
refinedweb
569
56.76
Abstract adapter class for recording audio signals. More... #include <audiorecorderadapter.h> Abstract adapter class for recording audio signals. The class has an internal circlar buffer which holds the incoming audio data for a maximum of a few seconds. The user can retrieve the data in form of vector (packet) by call...
http://doxygen.piano-tuner.org/class_audio_recorder_adapter.html
CC-MAIN-2022-05
refinedweb
1,013
53.78
[Previous] [Contents] [Next] Remove Duplicate Entries from a List The Problem: So far, so goodthe membership list is now in the format "Membershipnumber Tab Lastname, Firstname," and I've sorted it into ascending order using Table Sort. But I can already see a ton of duplicate entries that I'll need to knock out. The S...
http://www.brainbell.com/tutorials/ms-office/Word/Remove_Duplicate_Entries_From_A_List.htm
crawl-002
refinedweb
177
64
Modular Multiplication Without Overflow May 28, 2013 Let’s begin with an example, calculating 56 * 37 modulo 100 using 8-bit arithmetic, so no intermediate total may be 256 or greater. We start by representing a = 56 = 3 * 16 + 8 and b = 37 = 2 * 16 + 5, so: a1 = 8 a2 = 3 b1 = 5 b2 = 2 Then the four intermediate produc...
https://programmingpraxis.com/2013/05/28/modular-multiplication-without-overflow/2/
CC-MAIN-2016-36
refinedweb
611
67.12
#include <Wire.h> #include <LiquidCrystal_I2C.h>#define lcdAddr 0x20 // set the address of the I2C device the LCD is connected to// create an lcd instance with correct constructor for how the lcd is wired to the I2C chipLiquidCrystal_I2C lcd(lcdAdrr, 4, 5, 6, 0, 1, 2, 3, 7, NEGATIVE); // addr, EN, RW, RS, D4, D5, D6, D...
http://forum.arduino.cc/index.php?topic=142255.msg1070267
CC-MAIN-2016-40
refinedweb
452
80.62
How do I close the browser window at the end of a Selenium test? I have googled for the answer, but the .stop()so frequently mentioned doesn't work for me. The Chrome window the test was running in remains open. def test_getResults(self): sel = selenium('localhost', 4444, "*chrome", '') sel.start() # do stuff def tearD...
https://libstdc.com/us/q/sqa/1941
CC-MAIN-2021-25
refinedweb
916
68.97
Eval Functions To create an eval function, the following abstract class must be extended. The parameter T is the return type of the eval function. public abstract class EvalFunc<T extends Datum> { abstract public void exec(Tuple input, T output) throws IOException; } Input to the Functions The arguments to the function...
http://wiki.apache.org/pig/EvalFunction?action=diff
CC-MAIN-2016-22
refinedweb
492
58.72
prefixed XHTML elements are not rendered properly VERIFIED INVALID Status () ▸ DOM People (Reporter: Manos Batsis, Unassigned) Tracking Firefox Tracking Flags (Not tracked) Details Attachments (3 attachments, 1 obsolete attachment) Short version: XHTML Elements that are serialized and appended to document via innerHTML...
https://bugzilla.mozilla.org/show_bug.cgi?id=263144
CC-MAIN-2018-17
refinedweb
918
61.67
BookBeaming From OLPC <discontinued project> Danielfuhry 21:29, 17 February 2009 (UTC) - creator felt it would require reverse engineering or NDA... (but there are many ways to achieve this goal) Description & Goals Summary BookBeaming receives static content using a conventional World Space satellite radio. Status The...
http://wiki.laptop.org/index.php?title=BookBeaming&oldid=227039
CC-MAIN-2015-48
refinedweb
351
51.55
Hello guys, I want to create a custom panel for my online simulator using matrix keypad 4x3 and library USBKeyboard that can send key stroke to pc for simulate the normal usb keyboard. my idea is the follow: ARDUINO UNO board, connect the keypad with an IC PCF8574P( with address 0x20) and wire library for use only two ...
https://forum.arduino.cc/t/4x3-matrix-keypad-and-usbkeyboard-emulation/109485
CC-MAIN-2021-43
refinedweb
338
53
This simple app allows you to use the MSN web search. Instead of taking space off of your taskbar it simply seats on the notification area and can be invoked by double-clicking the "systray" icon or via right-click menu. It will also work as a web address bar, meaning that you can type an http address and will be redir...
http://channel9.msdn.com/Forums/Sandbox/MSN-System-Tray-Web-Search
CC-MAIN-2015-18
refinedweb
1,867
76.11
Creating & Importing Data for ArcGIS geographic formatting & spatial dataframes also be that the people researching AI algorithms aren’t interested in making themselves obsolete, but I doubt it; the drive to automate and simplify your own workflow is generally too high for such far-flung fears. Sourcing Proper Data Let...
https://mark-s-cleverley.medium.com/creating-importing-data-for-arcgis-394166e27fda?readmore=1&source=---------1----------------------------
CC-MAIN-2021-10
refinedweb
654
53.41
On 21/04/2010 19:38, Bas van Dijk wrote: > On Tue, Apr 20, 2010 at 12:56 PM, Simon Marlow<marlowsd at gmail.com> wrote: >> On 09/04/2010 12:14, Bertram Felgenhauer wrote: >>> >> > > I can see how forkIOWithUnblock (or forkIOWithUnnmask) can introduce a wormhole: > > unmaskHack1 :: IO a -> IO a > unmaskHack1 m = do > mv...
http://www.haskell.org/pipermail/libraries/2010-April/013545.html
CC-MAIN-2014-10
refinedweb
422
51.99
Personal Security System Using Arduino Introduction: from this tutorial, I hope you learn how to use a buzzer and LED's to display how far away an object is from the ultrasonic sensor. Step 1: Assemble Materials Materials required are: (1x) Arduino Uno (1x) Breadboard (1x) HC-SRO4 Ultrasonic Sensor (1x) Buzzer (1x) Gre...
http://www.instructables.com/id/Personal-Security-System-Using-Arduino/
CC-MAIN-2017-43
refinedweb
1,672
57
4 replies on 1 page. Most recent reply: Oct 25, 2006 7:18 PM by Ivan Lazarte Although barely two years old, the Dojo project, like most things Ajax these days, has gone through a fast and furious pace of development. Judging from its list of available features, Dojo aims to be nothing less than a complete API and toolk...
http://www.artima.com/forums/flat.jsp?forum=276&thread=181997
CC-MAIN-2017-43
refinedweb
488
55.13
Not like SSH wasn’t pretty secure before, due to encryption, but every step towards security helps. I took note to his advice on moving SSH to a non-standard port: Security though obscurity you scoff? Perhaps. But it’s easy, causes no inconvenience, and might just reduce the number of attacks. That sounds like a winner...
http://midspot.wordpress.com/2006/10/31/great-article-on-securing-ssh/
crawl-002
refinedweb
255
60.65
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. method calling problem in openErp/python hi, i have a problem understanding how to call methods on objects in openERP: example: s...
https://www.odoo.com/forum/help-1/question/method-calling-problem-in-openerp-python-24887
CC-MAIN-2017-04
refinedweb
442
69.72
20 June 2012 08:06 [Source: ICIS news] SINGAPORE (ICIS)--Qatar Petrochemical Co (QAPCO) will start up its 300,000 tonne/year low density polyethylene (LDPE) plant, or LDPE-3, at Mesaieed in ?xml:namespace> The source did not specify the reason for the delay from the previous target start-up date of end-May. “The [new] ...
http://www.icis.com/Articles/2012/06/20/9571126/qatars-qapco-to-start-up-ldpe-3-unit-on-20-21-june.html
CC-MAIN-2015-11
refinedweb
122
69.62
Nearby: SWAD-Europe events page | Workshop home page | Workshop Announcement | Attendees | Position papers Next day Friday 2003-11-14 02:19:49 <dmwaters> {server notice} Ok guys, that server is you. I will restart the server once configs are done pushing and when I've updated dns 02:22:43 Disconnected from irc.freenode...
http://www.w3.org/2001/sw/Europe/events/20031113-storage/logs/2003-11-13.html
crawl-002
refinedweb
3,792
62.01
Tool for fixing trivial problems with your code. Project description pybetter Tool for fixing trivial problems with your code. Originally intended as an example for my PyCon Belarus 2020 talk about LibCST. Usage Simply provide a valid Python source code file as one of the argument and it will try to fix any issues it c...
https://pypi.org/project/pybetter/
CC-MAIN-2021-04
refinedweb
783
62.68
Launching multiple instances of same ROS node (with different names) The problem is in simulating two independent different robots in Gazebo: Copter and Rover with same mavros functionality. (Two independent instances of mavros would do great) Can two instances of mavros nodes be run using different names? So, I tried ...
https://answers.ros.org/question/247783/launching-multiple-instances-of-same-ros-node-with-different-names/
CC-MAIN-2021-04
refinedweb
640
66.13
$ cnpm install rollup-plugin. babel 7.x npm install --save-dev rollup-plugin-babel@latest babel 6.x npm install --save-dev rollup-plugin-babel@3 import { rollup } from 'rollup'; import babel from 'rollup-plugin-babel'; rollup({ entry: 'main.js', plugins: [ babel({ exclude: 'node_modules/**' }) ] }).then(...) All option...
https://npm.taobao.org/package/rollup-plugin-babel
CC-MAIN-2020-16
refinedweb
542
51.24
Bugs item #728330, was opened at 2003-04-27 02:21 Message generated for change (Comment added) made by rwgk You can respond by visiting: Category: Installation Group: Python 2.3 Status: Open >Resolution: Remind >Priority: 9 Submitted By: Ralf W. Grosse-Kunstleve (rwgk) Assigned to: Neal Norwitz (nnorwitz) Summary: Don'...
http://mail.python.org/pipermail/python-bugs-list/2004-May/023150.html
CC-MAIN-2013-20
refinedweb
3,646
68.97
/* -*- . * Portions created by the Initial Developer are Copyright (C) 2006 * the Initial Developer. All Rights Reserved. * * Contributor(s): * Robert O'Callahan <robert@ocallahanLINEBREAKER_H_ #define NSLINEBREAKER_H_ #include "nsString.h" #include "nsTArray.h" #include "nsILineBreaker.h" class nsIAtom; /** * A receiv...
http://xulrunner.sourcearchive.com/documentation/1.9.1.9-3/nsLineBreaker_8h-source.html
CC-MAIN-2018-05
refinedweb
770
54.52
02-01-2017 11:39 AM Through a lot of experimentation, I was able to integrate a Python package manager called Anaconda with the NX Open API. Is it possible to do the same with cmake or an open source library like Google's Draco? The online documentation just stated this.... When you perform linking in a C++ project, yo...
https://community.plm.automation.siemens.com/t5/NX-Programming-Customization-Forum/integrating-open-source-C-libraries/td-p/388794
CC-MAIN-2017-47
refinedweb
180
65.01
![endif]--> a Arduino library for the MAX7221 and MAX7219 These two chips provide an easy way to control either an array of 64 LEDs or up to 8 digits of 7-segment displays. A detailed description of the hardware and a schematic can be found here. As a teaser here is a picture of my rather crappy (but working) testbed.....
http://playground.arduino.cc/Main/LedControl
CC-MAIN-2018-05
refinedweb
3,187
71.75
Mat−oriented Let us understand how Matplotlib can be used to plot a sine function in a plot − import matplotlib.pyplot as plt import numpy as np data = np.arange(0.0, 4.0, 0.1) y = 2 + np.sin(2 * np.pi * data) fig, ax = plt.subplots() ax.plot(data, y) ax.set(xlabel='x-axis data', ylabel='y-axis data',title='A simple pl...
https://www.tutorialspoint.com/how-can-matplotlib-be-used-to-create-a-sine-function-in-python
CC-MAIN-2022-05
refinedweb
150
70.7
> gzip_win.zip > getopt.c /* Getopt for GNU. #ifndef __STDC__ # ifndef const # define const # endif #endif /* This tells Alpha OSF/1 not to define a getopt prototype in . */ #ifndef _NO_PROTO #define _NO_PROTO #endif #include #include "tailor. */ #endif /* GNU C library. */ /* If GETOPT_COMPAT is defined, `+' as well...
http://read.pudn.com/downloads64/sourcecode/windows/file/224321/getopt.c__.htm
crawl-002
refinedweb
154
71.82
Debugging "Plugin Crash" In the meantime you might want to checkout Tools/Xml Tools 2.4.9 Unicode/ I’ve forked the XPatherizerNPP github project and it can be downloaded here: Thank you for suggestion on the other plugin! XML Tools seems a bit unstable, also its XPath component doesn’t seem to work correctly. Attemptin...
https://community.notepad-plus-plus.org/topic/15320/debugging-plugin-crash/13?lang=en-US
CC-MAIN-2022-33
refinedweb
834
58.18
Tech Off Thread14 posts Forum Read Only This forum has been made read only by the site admins. No new threads or comments can be added. Set IIsWebDirectory Permissions via WMI in C# Conversation locked This conversation has been locked by the site admins. No new comments can be made. Let's say I just uploaded a directo...
https://channel9.msdn.com/Forums/TechOff/45432-Set-IIsWebDirectory-Permissions-via-WMI-in-C
CC-MAIN-2017-51
refinedweb
905
50.94
Parent Directory | Revision Log Whitespace. (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!) Updating remote-id in metadata.xml (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!) Update ebuild to EAPI 5. Specify LICENSE more precise...
https://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/app-emacs/php-mode/Manifest?sortby=author&view=log&hideattic=0&r1=1.17
CC-MAIN-2020-16
refinedweb
505
55.5
doublespace.java Write a method named doubleSpace that accepts a Scanner for an input file and a PrintStream for an output file as its parameters, writing into the output file a double-spaced version of the text in the input file. You can achieve this task by inserting a blank line between each line of output. import j...
http://www.chegg.com/homework-help/questions-and-answers/write-method-named-doublespace-accepts-scanner-input-file-printstream-output-file-paramete-q3211830
CC-MAIN-2014-23
refinedweb
132
54.93
. Glaubitz posted his thoughts about Linux Mint: Well, Linux Mint is generally very bad when it comes to security and quality. First of all, they don't issue any Security Advisories, so their users cannot -- unlike users of most other mainstream distributions [1] -- [2].. Another example of such a hi-jack are their new...
http://www.infoworld.com/article/3036600/linux/is-linux-mint-a-crude-hack-of-existing-debian-based-distributions.html
CC-MAIN-2016-22
refinedweb
1,333
58.01
Functional programming is a programming paradigm in C# that is frequently combined with object oriented programming. C# enables you to use imperative programming using object-oriented concepts, but you can also use declarative programming. In declarative programming, you are using a more descriptive way to define what ...
https://www.codeproject.com/articles/375166/functional-programming-in-csharp?fid=1710661&df=90&mpp=25&sort=position&spc=relaxed&tid=4270152
CC-MAIN-2016-50
refinedweb
8,549
52.19
. POLITICS Translated byC.D.C. REEVEARISTOTLE PoliticsARIS TOTLE Politics Translated, by C.D.C. Reeve 09 08 07 06 4 5 6 7 8 9 Aristotle [Politics. English] Politics/ Aristotle; translated, with introduction and notes, by C.D.C. Reeve. p. em. Includes bibliographical references and indexes. ISBN 0-87220-389-1 (cloth). I...
https://ru.scribd.com/document/384249201/Aristotle-Politics-Hackett-1998-pdf
CC-MAIN-2020-10
refinedweb
80,674
57.3
Python - Switch Case Implementation Unlike C++/Java, Python does not have a built-in switch case statement. Due to this, it is quite common to think of using if-elif-else control statement for each switch cases. But there is a other way around to implement switch statement in Python. The powerful dictionary mapping whi...
https://www.alphacodingskills.com/python/notes/python-switch-case-implementation.php
CC-MAIN-2021-31
refinedweb
201
60.95
374 votes 1 answers just getting started using shopify js api and getting an error when trying to run my angular application I'm getting this error in the console. __WEBPACK_IMPORTED_MODULE_1_shopify_buy___default.a is not a constructor import Client, {Config} from 'shopify-buy'; const config = new Config({ domain: 'so...
https://e1commerce.com/items/just-getting-started-using-shopify-js-api-and-getting-an-error-when-trying-to-ru
CC-MAIN-2022-40
refinedweb
263
51.04
Make a Twitter Clone With This Flask TutorialYamil Asusta Technical Flask is a lightweight Python micro framework. And by micro, they mean it’s super easy to use. Batteries are not included. (But you can inject batteries as you go!) This tutorial will show you how to use Flask to create a Twitter clone. Most of my tuto...
https://sendgrid.com/blog/make-twitter-clone-flask-tutorial/
CC-MAIN-2016-18
refinedweb
606
66.84
On Wed, 2005-01-26 at 08:44 -0800, Casey Schaufler wrote: > --- "Timothy R. Chavez" <chavezt gmail com> wrote: > > > Ok, if you're watching /home/casey/viruses and you > > mv/rename() > > viruses/ to fuzzybunnys/, you will lose the watch. > > That is not what I would expect from an object > standpoint. I specified the ...
https://www.redhat.com/archives/linux-audit/2005-January/msg00251.html
CC-MAIN-2015-18
refinedweb
496
68.2
Java theory and practice Going wild with generics, Part 1 Understanding wildcard capture Content series: This content is part # of # in the series: Java theory and practice This content is part of the series:Java theory and practice Stay tuned for additional content in this series.. We've all had a few head-scratching ...
https://www.ibm.com/developerworks/java/library/j-jtp04298/index.html
CC-MAIN-2019-22
refinedweb
2,486
57.5
Add item to java array Here is the layout index num 0 [10] 1 [20] 2 [30] 35 here) 3 [40] Move elements down 4 [50] 5 [60] 6 [70] then my method is public static void method(int[] num, int index, int addnum) { } How can I add 35? Tried this: public static void method(int[] num, int index, int addnum) { int index = 10; f...
https://daily-blog.netlify.app/questions/1894652/index.html
CC-MAIN-2021-21
refinedweb
884
65.86
Posted 12 Jan 2011 Link to this post Hi, I want to create a unit test for the CheckUser method presented below... In that method we create a new instance of a class named LoginService. Inside my unit test, I know how to arrange my LoginService instance so that the mocking framework will replace the original call to Val...
http://www.telerik.com/forums/mocking-an-object-instanciation
CC-MAIN-2017-22
refinedweb
259
58.42
What no-one tells you about getting started with BenchmarkDotNet BenchmarkDotNet is a package for benchmarking (timing) .Net routines. It does correctly what you would do wrong if you were trying to time code yourself using System.Diagnostics.Stopwatch and gaffer tape. Like, it does timed rounds of volume testing, warm...
https://stegriff.co.uk/upblog/what-no-one-tells-you-about-getting-started-with-benchmarkdotnet/
CC-MAIN-2022-05
refinedweb
356
61.67
Jupyter to load, explore, and transform some data. After the data has been prepared, we will train a model. From the project menu, click Workspaces. Click Open Last Workspace or Open in the workspace created in Step 3. In /mnt, you can see data.csv. If not, go to Step 4 to download the dataset. Use the New menu to cre...
https://admin.dominodatalab.com/en/3.6/user_guide/288e42/step-5--develop-your-model/
CC-MAIN-2022-27
refinedweb
798
60.21
Documentation Using Shotgun Pipeline Toolkit Actions Developing Apps for Shotgun Installation, Updates and Development Configuration Options Release Notes History The Shotgun Engine makes it possible to integrate Shotgun Pipeline Toolkit Apps right into Shotgun. These will appear inside of Shotgun on the Action menu an...
https://support.shotgunsoftware.com/hc/en-us/articles/219032918-Shotgun-Integration
CC-MAIN-2019-26
refinedweb
811
58.28
: To make the changes described above double click on each entry to bring up the “Template Information” dialog seen below, or its counterpart the “Stencil Information” dialog. =). If. using System; using System.Collections.Generic; using System.Text; using IVisio = Microsoft.Office.Interop.Visio; public class TextUtili...
http://blogs.msdn.com/b/visio/archive/2006/08.aspx?PostSortBy=MostViewed&PageIndex=1
CC-MAIN-2014-15
refinedweb
590
64.91
IRC log of tagmem on 2004-11-22 Timestamps are in UTC. 20:07:46 [RRSAgent] RRSAgent has joined #tagmem 20:08:31 [Chris] Meeting: tag f2f 20:08:37 [Chris] Chair: Norm 20:08:42 [Chris] Scribe: TimBL 20:08:50 [timbl_] Norm: Next meeting is f2f next week. i can't come the second day (Tuesday) 20:08:50 [Chris] Agenda: 20:09...
http://www.w3.org/2004/11/22-tagmem-irc
CC-MAIN-2017-04
refinedweb
2,518
70.13
I would like to concatenate multiple string variables in BPMN inside 'Input Data Mapping' using expression, but so far it doesn't work. It always interprets the whole expression as string and does not apply any operators or methods. I have tried: "bla" + variable return ("bla" + variable); getProcessVariable(variable) ...
https://developer.jboss.org/thread/250327
CC-MAIN-2019-30
refinedweb
155
55.13
This is your resource to discuss support topics with your peers, and learn from each other. 09-07-2012 10:41 AM I am instantiating MyNetwork class on a button click in my app class. Hence constructor in MyNetwork class is called in which i am checking network availability. Once a network is found available, a sendReque...
http://supportforums.blackberry.com/t5/Native-Development/Error-while-establishing-a-Http-connection-Once-request-finished/m-p/1902655
CC-MAIN-2015-48
refinedweb
986
50.02
User Name: Published: 25 Aug 2008 By: Dino Esposito Dino Esposito talks about idiomatic design and some potential issues with the List type. Let me start from a blog post that Krzysztof Cwalina—a prominent member of the .NET Framework team—made some time ago. You find it at. In the post, Krzysztof doesn’t recommend usi...
http://dotnetslackers.com/articles/net/List-and-Object-oriented-Design-Principles.aspx
crawl-003
refinedweb
1,934
53.81
A model backed by a QgsVectorLayerCache which is able to provide feature/attribute information to a QAbstractItemView. More... #include <qgsattributetablemodel.h>. Constructor. Launched when attribute value has been changed. Returns the number of columns. Returns data on the given index. Returns the context in which th...
http://www.qgis.org/api/classQgsAttributeTableModel.html
CC-MAIN-2014-42
refinedweb
290
62.64
33 parameters for a function?! Seriously!? #21 Members - Reputation: 1685 Posted 09 January 2009 - 06:00 PM A few cases we have some strange stuff because we init classes only using the classA foo = {...} syntax instead of classA foo(...); and so there are wrapper macros that EMULATE the constructor format and thus can...
http://www.gamedev.net/topic/520322-33-parameters-for-a-function-seriously/page-2
CC-MAIN-2013-48
refinedweb
1,599
51.28
Is it true that we cannot use Composite Primary key when we opt for EJB 1.1 & Weblogic 5.1 as the development platform. If it is possible would anyone help in providing some direction to achieve my goal in developing a system, my database system would be on SQL. Murali Thantry Discussions EJB programming & troubleshoot...
http://www.theserverside.com/discussions/thread.tss?thread_id=5269
CC-MAIN-2014-15
refinedweb
234
53.98
If you are reading the book, you can get the notebooks by cloning this repository on GitHub and running the notebooks on your computer. Or you can read (but not run) the notebooks on GitHub: Chapter 7 Notebook (Chapter 7 Solutions) Chapter 8 Notebook (Chapter 8 Solutions) Chapter 9 Notebook (Chapter 9 Solutions) I'll p...
https://allendowney.blogspot.com/2017/01/third-batch-of-notebooks-for-think-stats.html
CC-MAIN-2018-51
refinedweb
1,777
60.21
Contents This document is an introduction to how you can extend paster and Paste Script for your system – be it a framework, server setup, or whatever else you want to do. paster is a two-level command, where the second level (e.g., paster help, paster create, etc) is pluggable. Commands are attached to Python Eggs, i....
http://pythonpaste.org/script/developer?highlight=paster%20create
CC-MAIN-2015-27
refinedweb
885
59.3
qt-opengl is a missing dependency for x11-libs/qt-webkit. With qt-opengl installed, emerge qt-webkit is successful. Reproducible: Always make[2]: Leaving directory '/var/tmp/portage/dev-qt/qtwebkit-5.2.1/work/qtwebkit-opensource-src-5.2.1_build/Source' cd WebKit2/ && ( test -e Makefile.WebProcess || /var/tmp/portage/de...
https://bugs.gentoo.org/show_bug.cgi?id=448178
CC-MAIN-2021-10
refinedweb
433
52.76
You are browsing a read-only backup copy of Wikitech. The live site can be found at wikitech.wikimedia.org Obsolete talk:Media server/Distributed File Storage choices I haven't been closely involved with this, and don't have a ton of time to devote to this over the next couple of days, but just a couple of questions: -...
https://wikitech-static.wikimedia.org/wiki/Obsolete_talk:Media_server/Distributed_File_Storage_choices
CC-MAIN-2022-33
refinedweb
2,034
70.13
Quokka Clone In 10 Minutes - VSCode Extention Tutorial July 22, 2019 In this tutorial, we’ll learn how to create a VSCode extension that will communicate with Node Inspector to collect execution data - basically a Quokka.js clone. For those who don’t know what Quokka.js is - it’s a live scratchpad for Javascript/Typesc...
https://maksimivanov.com/posts/quokka-clone/
CC-MAIN-2019-43
refinedweb
1,357
51.95
import "github.com/spf13/hugo/hugolib" alias.go author.go config.go gitinfo.go handler_base.go handler_file.go handler_meta.go handler_page.go hugo_info.go hugo_sites.go hugo_sites_build.go media.go menu.go multilingual.go page.go pageCache.go pageGroup.go pageSort.go page_collections.go page_output.go page_paths.go pa...
https://godoc.org/github.com/spf13/hugo/hugolib
CC-MAIN-2017-22
refinedweb
3,715
58.89
Bonjour, After updating my laptop system to the latest update (OS X 10.11.5) today, I’ve “lost” the XQuartz display … ! So I’ve decided to re-build root from scratch. It worked without problems BUT I’m still “missing” the graphic display when I run a python script !!! Here is the simplest example : from ROOT import * M...
https://root-forum.cern.ch/t/strange-behavior-of-graphic-display-with-latest-os-x/21153
CC-MAIN-2022-27
refinedweb
212
75.1
This post is meant for new and or aspiring data scientists trying to decide what model to use for a problem. This post will not be going over data wrangling. Which hopefully, you know, is the majority of the work a data scientist does. I’m assuming you have some data ready, and you want to see how you can make some pre...
https://www.thinkdataanalytics.com/how-to-select-an-initial-model-for-your-data-science-problem/
CC-MAIN-2021-49
refinedweb
874
58.99
A lot of people aren't aware that you can combine Microsoft's .NET Framework with the Linux operating system by using the Open Source mono project. This article will get you started on installing mono and running basic .NET applications on Linux. Two of the most popular topics on Builder AU, and indeed in the wider ind...
https://www.techrepublic.com/article/gallery-installing-and-using-mono-on-ubuntu/
CC-MAIN-2019-18
refinedweb
834
54.93
Created on 2011-04-26.14:11:01 by geoffbache, last changed 2014-09-17.02:20:34 by zyasoft. sys.meta_path is documented as for CPython, but it only seems to work for imports of Python modules. For example, if you run this code: import sys class MyFinder: def find_module(self, name, *args): print "Checking", name sys.met...
http://bugs.jython.org/issue1742
CC-MAIN-2015-22
refinedweb
161
62.95
I want to determine the minimum bandwidth required for my J2EE Application (Struts & Hibernate) . I have deployed it in JBoss Server . I am running / accessing the application in a distributed... Type: Posts; User: rameshiit19 I want to determine the minimum bandwidth required for my J2EE Application (Struts & Hibernat...
http://www.javaprogrammingforums.com/search.php?s=02777deae04ac56e54f8aa21890931c4&searchid=1075596
CC-MAIN-2014-41
refinedweb
775
69.68
Step 3.1: Create a Jupyter Notebook and Initialize Variables In this section, you create a Jupyter notebook in your Amazon SageMaker notebook instance and initialize variables. To create a Jupyter notebook Create the notebook. Open the notebook instance, by choosing Open next to its name. The Jupyter notebook server pa...
https://docs.aws.amazon.com/sagemaker/latest/dg/ex1-prepare.html
CC-MAIN-2019-04
refinedweb
154
66.13
Scala vs. F#: Comparing Functional Programming Features F# and Scala, two relatively recent programming languages, provide most .NET and Java software developers with new functional programming features that are worth understanding and evaluating. (Read a Short Briefing on Functional Programming for a primer on how fun...
http://www.developer.com/lang/other/article.php/3883051/Scala-vs-F-Comparing-Functional-Programming-Features.htm
CC-MAIN-2014-10
refinedweb
768
50.77
What is encapsulation and what's the point of it? We'll take a look at the meaning and benefits of encapsulation in this tutorial. We'll also see an example of encapsulation in the real world by looking at the API document for the String class. In this tutorial we'll build on the previous tutorial on the public, privat...
https://caveofprogramming.com/java-video/java-for-complete-beginners-video-part-27-encapsulation-api-docs.html
CC-MAIN-2018-09
refinedweb
204
55.03
Hi Bellow is an example of my help system im working on:- My question is the couts..Do they take up any cycles? e.g cout << "...........\n"; cout << "...........\n"; can also be written as: cout << ".........\n" << ".........\n"; is the second one more efficent becuase it states less couts? Thank You For Your Help Alex...
http://cboard.cprogramming.com/cplusplus-programming/64046-cout-question.html
CC-MAIN-2014-10
refinedweb
128
96.99
Calling java method in BPEL assign stepKarthikeyan RS Feb 24, 2012 7:14 AM I need your valuable support for the below issues. Kindly provide any possible solution My queries : We have used JCAPS and developed bpel2.0 processes.Now we need to convert those into JBoss bpel using this JBDStudio. I am facing below issues w...
https://developer.jboss.org/message/719765
CC-MAIN-2019-26
refinedweb
832
54.42
Why would anyone want to do this with a language like Python? Fortunately this is not a question I’ve had to ask myself since the answer seems pretty obvious to me. But basically that’s what this article is all about. Over the next few pages we’ll be looking at some of the different places you could use Python to autom...
http://www.devshed.com/c/a/Python/Imagine-Python/
CC-MAIN-2014-52
refinedweb
1,439
66.03
| Join Last post 07-06-2008 1:56 AM by Paul Linton. 3 replies. Sort Posts: Oldest to newest Newest to oldest? Well See the example below. Key is that you have to have an IEqualityComparer implemented 1 static void Main(string[] args) 2 { 3 4 List A = new List { new Test { ID = 1, Name = "John" }, new Test { ID = 2, Nam...
http://forums.asp.net/p/1285223/2467709.aspx
crawl-002
refinedweb
453
68.1
ECMASCRIPT 2015 or ES6 has introduced many changes to JavaScript. JavaScript ES6 has introduced new syntax and new awesome features to make your code more modern and more readable. Originally published by Adesh at zeptobook.comWhat is ES6? ECMASCRIPT 2015 or ES6 has introduced many changes to JavaScript. JavaScript ES6...
https://morioh.com/p/y7BwGAvnzblM
CC-MAIN-2020-05
refinedweb
1,652
68.57
Hi Team, For this digit_sum task I have written below code and which giving me correct ouput but not sure why in codecademy console at bottom a message is coming and the course is not progressing.The NEXT button is in disabled state. “Did you create a function called digit_sum? Your code threw a “global name ‘digit_sum...
https://discuss.codecademy.com/t/digit-sum/285170
CC-MAIN-2018-51
refinedweb
118
67.69
1. I have a schema that starts like: 2. I have an instance document that starts like: Code: Select all <xs:schema 3. I have a catalog that starts like: Code: Select all <something xmlns=""> 4. oXygen sees the namespace declaration in the instance document, looks in the catalog and finds out the location of the local co...
https://www.oxygenxml.com/forum/post16562.html
CC-MAIN-2020-24
refinedweb
299
60.75
GIS Library - Date functions. More... #include <time.h> #include <grass/gis.h> Go to the source code of this file. GIS Library - Date functions. (C) 2001-2008 by the GRASS Development Team This program is free software under the GNU General Public License (>=v2). Read the file COPYING that comes with GRASS for details....
https://grass.osgeo.org/programming6/date_8c.html
CC-MAIN-2018-43
refinedweb
106
71.51
Introduction to Scala Interview Questions And Answers Scala is a general-purpose programing language providing support for functional programming and a strong static type system. I was designed by Martin Ordersky and it has first appeared on 20 January 2004. The file extension is scala or .sc. Scala combines object-ori...
https://www.educba.com/scala-interview-questions/
CC-MAIN-2020-10
refinedweb
1,050
68.36
Assert Yourself: A Detailed Minitest Tutorial This post introduces automated testing with Ruby’s Minitest software, with an emphasis on using assertions. It discusses basic test scaffolding; assertions and refutations; skipping and flunking tests; setup and teardown. Note: This article was originally published on the L...
https://launchschool.medium.com/assert-yourself-a-detailed-minitest-tutorial-f186acf50960
CC-MAIN-2022-05
refinedweb
5,991
62.78
Bugzilla – Bug 17234 Typos around Dialect in MEX Last modified: 2012-05-31 00:14:03 UTC (from poehlsen at itm.uni-luebeck.de ) Hello, as far as I discovered, the dialect is a mex:QNameSerialization instead of a xs:Qname as before. Are there any information available, why this was changed? Since "Normative text within t...
https://www.w3.org/Bugs/Public/show_bug.cgi?id=17234
CC-MAIN-2014-15
refinedweb
219
56.05
Utilizing Delphi Codes in VC Without Using a DLL Environment: VC 4.1 or higher, Windows 9x/NT/2000/ME/XP Abstract Introduction There are many free codes and components in the Delphi world. How can we utilize them in VC? A usual scenario will be: First, make a DLL in Delphi that exports some functions. Then, we call the...
http://www.codeguru.com/cpp/w-p/dll/importexportissues/article.php/c3647/Utilizing-Delphi-Codes-in-VC-Without-Using-a-DLL.htm
CC-MAIN-2014-42
refinedweb
1,662
65.42
Converts "<b>hi</b>" into "<b>hi</b>"Converts "<b>hi</b>" into "<b>hi</b>"Code: String.prototype.stripHTML=function(){ return this.replace(/\&/g,"\&").replace(/\</g,"\<").replace(/\gt/g,"\>") } Printable View Converts "<b>hi</b>" into "<b>hi</b>"Converts "<b>hi</b>" into "<b>hi</b>"Code: String.prototype.stripHTML=func...
http://www.webdeveloper.com/forum/printthread.php?t=61883&pp=15&page=9
CC-MAIN-2016-26
refinedweb
799
60.01
Historically, moving from a Linux mail system- such as Postfix/Dovecot -to a Windows mail system- such as Smartermail -was not a seamless process. Mail formats are so largely different that it is next to impossible to copy mail over. Users were best suited to POP3 all mail off the Postfix server and then connect to the...
http://www.codeproject.com/script/Articles/View.aspx?aid=35901
CC-MAIN-2014-35
refinedweb
417
64
Start of abstract interpretation in Lever Today I provided introspection features to Lever: import optable optable.enc # encoding table. optable.dec # decoding table. function.spec.argc # required arguments function.spec.optional # optionals, null allowed if missing. function.spec.is_variadic # has variadic argument? f...
http://boxbase.org/entries/2017/apr/10/lever-abstract-interpretation/
CC-MAIN-2018-34
refinedweb
426
58.58
Red Hat Bugzilla – Bug 475997 sytem-config-lvm crashed with 'IndexError: list index out of range' Last modified: 2009-08-28 02:13:08 EDT Description of problem: - Remote login to server - Execution of 'system-config-lvm' - GUI pops up, additional pop-up 'Reloading LVM. Please wait.' appears - GUI Version-Release number...
https://bugzilla.redhat.com/show_bug.cgi?id=475997
CC-MAIN-2017-34
refinedweb
374
60.11
I'm using xamarin forms, but the widget was built in the android project. I have many instances of the same widget, each contains different accounts of the user . I'm saving widgetId and account as a key, value in CrossSettings. But right now all the widgets are updating whenever I call OnUpdate(). I need to get the ex...
https://forums.xamarin.com/discussion/101001/xamarin-widget-get-the-data-from-textview
CC-MAIN-2019-39
refinedweb
200
61.63
A recipe to help setup a buildbot master and slaves Introduction This package provides 2 recipes for helping you manage your buildbot master and slave. We purposefully do not provide machinery for generating project configuration. Creating and managing your master To create a buildbot master, add something like this to...
https://pypi.org/project/isotoma.recipe.buildbot/
CC-MAIN-2017-39
refinedweb
474
57.57
Ill try that, thanks --- Update --- Didn't seem to work, any other ideas? Ill try that, thanks --- Update --- Didn't seem to work, any other ideas? Hey, im currently making a 3D modeling program in java (its for a game). And, everything was working fine until yesterday. Eclipse shows no errors, and this shouldn't be ha...
http://www.javaprogrammingforums.com/search.php?s=e98c737a34da41a6af42070259b3a06c&searchid=477533
CC-MAIN-2013-20
refinedweb
268
79.46
MATLAB Newsgroup i typed ; import java.awt.AWTException; import java.awt.Robot; import java.awt.event.KeyEvent; keyboard=Robot; ch=getKeyCode(); i also typed ch=keyboard.getKeyCode(); it didnt work again.. How can i run it properly ? "andandgui isler" <bosisler_ist@hotmail.com> wrote in message <i8mt0s$4qn$1@fred.mathw...
http://www.mathworks.com/matlabcentral/newsreader/view_thread/293408
CC-MAIN-2015-18
refinedweb
292
56.62
Top Features People Giving Check-In Worship Accounting Events Church Connect Resources Support Videos Our Story Start For Free Blog Home / Migrating To ChurchTrac Online Giving Migrating To ChurchTrac Online Giving Around this time every year, we begin to see flocks of birds migrate south to warmer weather. In the same...
https://www.churchtrac.com/articles/migrating-to-churchtrac-online-giving
CC-MAIN-2021-49
refinedweb
868
63.19
We have seen how Collections class methods made Java Programmer job easy to operate on data structure elements and we have discussed nearly 25 operations like comparing, sorting and searching etc. with good example codes. Now it is the turn with Arrays class. Almost the same methods exist with Arrays class but useful t...
https://way2java.com/collections/class-arrays-api-methods/
CC-MAIN-2020-50
refinedweb
607
59.6
This Tutorial Provides Detailed Explanation of Deque or “Double-ended Queue” in Java. You will learn about Deque Interface, API Methods, Implementation, etc: The Deque or “double-ended queue” in Java is a data structure in which we can insert or delete elements from both the ends. The deque is an interface in Java belo...
https://www.softwaretestinghelp.com/deque-in-java/
CC-MAIN-2021-17
refinedweb
884
57.47
IR Remote Controlled Led With Arduino Introduction: IR Remote Controlled Led With Arduino Hey guys! This is my first instructable. It was after spending some time on the net and with a IR remote I figured out how to use it. So I thought I would make it easy for the newbies.I have simply clubbed two programs both not my...
http://www.instructables.com/id/IR-Remote-Controlled-Led-With-Arduino/
CC-MAIN-2017-43
refinedweb
655
74.69