text
stringlengths
20
1.01M
url
stringlengths
14
1.25k
dump
stringlengths
9
15
lang
stringclasses
4 values
source
stringclasses
4 values
------------------------------------------------------------------ This file is part of bzip2/libbzip2, a program and library for lossless, block-sorting data compression. bzip2/libbzip2 version 1.0.6 of 6 September 2010 Copyright (C) 1996-2010 Julian Seward <jseward@bzip.org> Please read the WARNING, DISCLAIMER and PA...
http://opensource.apple.com/source/bzip2/bzip2-27/bzip2/CHANGES
CC-MAIN-2016-07
en
refinedweb
- OSI-Approved Open Source (6) - GNU General Public License version 2.0 (3) - GNU Library or Lesser General Public License version 2.0 (2) - Academic Free License (1) - Apache License V2.0 (1) - Common Development and Distribution License (1) - Common Public License 1.0 (1) - GNU General Public License version 3.0 (1) ...
http://sourceforge.net/directory/development/interpreters/os:mswin_server2003/os:os_groups/
CC-MAIN-2016-07
en
refinedweb
Hi, I found this simple code. I am new to threads and i want to know how this code can be modified so that 5balls can be created and bounced off the boundaries. Will that require multiple threads - one for each ball? Do help me with this. I have been on this since yesterday! Code : import java.applet.Applet; import jav...
http://www.javaprogrammingforums.com/%20threads/9207-bouncing-balls-printingthethread.html
CC-MAIN-2016-07
en
refinedweb
Import excel data into SQL server -- ASP.net, C#, DTS -- how?? Discussion in 'ASP .Net' started by Rathtap, Jun 30, 2003. Want to reply to this thread or ask your own question?It takes just 2 minutes to sign up (and it's free!). Just click the sign up button to choose a username and then you can ask your own questions ...
http://www.thecodingforums.com/threads/import-excel-data-into-sql-server-asp-net-c-dts-how.58568/
CC-MAIN-2016-07
en
refinedweb
Can anyone please explain to me how to change the insertion point of the text ("Hello, World!") to wherever the cursor happens to be whenever the plugin is activated? import sublime, sublime_plugin class ExampleCommand(sublime_plugin.TextCommand): def run(self, edit): self.view.insert(edit, 0, "Hello, World!") You will...
https://forum.sublimetext.com/t/chage-hello-world-to-insert-at-cursor-position/9270/5
CC-MAIN-2016-07
en
refinedweb
Hi, fellow RxJS streamer! 👋 Today I want to share a JS/TS package that allows you to access props of objects on Observables: source$.subscribe(o => console.log(o?.a?.b?.c)) // turn ↑ into ↓ source$.a.b.c.subscribe(console.log) tl;dr: github.com/kosich/rxjs-proxify A simple use case: read the msg property of each value...
https://practicaldev-herokuapp-com.global.ssl.fastly.net/rxjs/turn-a-stream-of-objects-into-an-object-of-streams-2aed
CC-MAIN-2021-04
en
refinedweb
Does anybody know if it's possible to rsync files into an annex folder without constantly overwriting already annexed files? I know that the -L option will de-reference links on the source side, but I don't see any option for doing the same on the target side. I have two machines -- alpha and beta. Alpha doesn't know a...
https://git-annex.branchable.com/forum/rsync_into_annex_without_overwriting_links__63__/
CC-MAIN-2021-04
en
refinedweb
I have my own static library which has two versions - lite & pro. It's in private repo. I've added separate private Podspec for each version. Libs are as compiled static .a files with header files (not open source). Adding to project like this: # common cocoapods stuff here abstract_target 'CommonPods' do # some other ...
https://codedump.io/share/tcT9EgoUJHXo/1/how-to-add-lite-amp-pro-version-of-library-via-cocoapods
CC-MAIN-2018-22
en
refinedweb
0 it's a beginner's problem. I am trying to calculate sum of the first 15 factorials. I know int isn't large enough for the sum, so I used unsigned long long but it still didn't work. why?? Thanks for helping! #include <iostream> #include <cmath> #include <iomanip> #include <cstring> using namespace std; int main() { c...
https://www.daniweb.com/programming/software-development/threads/475544/why-doesn-t-the-unsigned-long-long-work
CC-MAIN-2018-22
en
refinedweb
OGSF library - query (lower level functions) More... #include <math.h> #include <grass/gis.h> #include <grass/ogsf.h> Go to the source code of this file. OGSF library - query (lower level functions) GRASS OpenGL gsurf OGSF Library (C) 1999-2008 by the GRASS Development Team This program is free software under the GNU G...
http://grass.osgeo.org/programming7/gs__query_8c.html
CC-MAIN-2018-22
en
refinedweb
Get the mute status of the audio input (to the far end) of the current voice call. #include <audio/audio_manager_volume.h> int audio_manager_get_voice_input_mute(bool *mute) true if the input of the voice call is being muted, false otherwise. The audio_manager_get_voice_input_mute() function returns the mute status of ...
http://www.qnx.com/developers/docs/6.6.0_anm11_wf10/com.qnx.doc.audiomanager.lib_ref/topic/audio_manager_get_voice_input_mute.html
CC-MAIN-2018-22
en
refinedweb
Opened 10 years ago Closed 10 years ago #6541 closed (fixed) wrong description of default Manager in documentation Description On it is written "If you use custom Manager objects, take note that the first Manager Django encounters (in order by which they’re defined in the model) has a special status. Django interprets ...
https://code.djangoproject.com/ticket/6541
CC-MAIN-2018-22
en
refinedweb
In 2017 we made two of our web optimisation products – Mirage and Rocket Loader – even faster! Combined, these products speed up around 1.2 billion web-pages a week. The products are both around 5 years old, so there was a big opportunity to update them for the brave new world of highly-tuned browsers, HTTP2 and modern...
https://networkfights.com/2018/02/02/how-we-made-our-page-load-optimisations-even-faster/
CC-MAIN-2018-22
en
refinedweb
By default, Visual C++ links C and C++ applications and DLLs to its C (and C++) Runtime Libraries. All of the C language and most of the basic C++ language infrastructure is provided in MSVCRT(D).dll. The STL components are provided in MSVCP50(D).dll for Visual C++ 5.0, and MSVCP60(D).dll for Visual C++ 6.0. I'll refer...
http://www.drdobbs.com/windows/avoiding-the-visual-c-runtime-library/184416623
CC-MAIN-2018-22
en
refinedweb
#include <RTSQLTransaction.hh> Inherits fatalmind::Command< PT >< fatalmind::SQL::ResourceType< TM > >. List of all members. It takes a Command to be executed within a transaction. In case you would like to put more commands into one transactions, combine them first as BatchCommand and pass the BatchCommand to the Tran...
http://www.fatalmind.com/software/ResourcePool/cplusplus/doc/classfatalmind_1_1SQL_1_1RTSQLTransaction.html
CC-MAIN-2018-22
en
refinedweb
Porcelain in Dulwich "porcelain" is the term that is usually used in the Git world to refer to the user-facing parts. This is opposed to the lower layers: the plumbing. For a long time, I have resisted the idea of including a porcelain layer in Dulwich. The main reason for this is that I don't consider Dulwich a full r...
http://www.advogato.org/person/ctrlsoft/diary/101.html
CC-MAIN-2015-40
en
refinedweb
: On Windows Vista: Configuring the JDBC Distributed Transaction import java.net.Inet4Address; import java.sql.*; import java.util.Random; import javax.transaction.xa.*; import javax.sql.*; import com.microsoft.sqlserver.jdbc.*; public class testXA { public static void main(String[] args) throws Exception { // Create v...
http://blogs.msdn.com/b/dataaccesstechnologies/archive/2011/10/27/unable-to-do-remote-sql-stored-procedure-debugging-from-vs2010.aspx
CC-MAIN-2015-40
en
refinedweb
One of the problems with code quality tools is that they tend to overwhelm developers with problems that aren't really problems -- that is, false positives. When false positives occur, developers learn to ignore the output of the tool or abandon it altogether. The creators of FindBugs, David Hovemeyer and William Pugh,...
http://www.ibm.com/developerworks/java/library/j-findbug1/
CC-MAIN-2016-07
en
refinedweb
Add clientListener dynamically?601554 Aug 4, 2008 6:38 PM I would like to add a clientListener to input components via a phaseListener before the page is rendered. I've attempted this to no avail and now I'm wondering if it's feasible. If anyone could point me in the right direction, I would appreciate it. Thanks, Matt...
https://community.oracle.com/message/2693923
CC-MAIN-2016-07
en
refinedweb
Several people have problems using the XML class to load and save their data. It can get confusing when an XMLNode at one level looks and acts the same as an XMLNode at another level. I loved the idea of XML, but it always seemed more work than it was worth to get it to work correctly. tlhIn'toq posted an XML solution ...
http://www.dreamincode.net/forums/topic/191471-reading-and-writing-xml-using-serialization/page__pid__1121835__st__0
CC-MAIN-2016-07
en
refinedweb
I've been thinking for a while about a series of blog posts I'd like to write explaining various Entity Framework concepts, particularly those related directly to writing code using the framework--by that I mean that I will concentrate more on using the API to write object-oriented programs which do data access and les...
http://blogs.msdn.com/b/dsimmons/archive/2007/09/15/concepts-part-i-connection-strings-context-lifetimes-metadata-resources.aspx
CC-MAIN-2016-07
en
refinedweb
As per 5.2.8-1 we could import RTTI objects into the std namespace by adding the following to typeinfo.h: namespace std { using ::type_info; using ::bad_cast; } // namespace std Suggestion based on use of RTTI in boost any container (the any container stores arbitrary types in a typesafe container). Richard
http://www.digitalmars.com/archives/cplusplus/1838.html
CC-MAIN-2016-07
en
refinedweb
Hi, > Just a short question ... what problems are you actually having with Jira? Is it the availability of an instance? The migration of Issues allready reported to Adobe? It's the migration. Infrastructure have recently upgraded to a newer version of JIRA and Alex has supplied then with a new dump that should be compa...
http://mail-archives.apache.org/mod_mbox/incubator-flex-dev/201206.mbox/%3C9BACFA14-177F-4C1B-845B-368007C451D3@classsoftware.com%3E
CC-MAIN-2016-07
en
refinedweb
Text processing is one of the most common tasks in application development. Whether it is a Java Servlet or a VOIP application, the conversion from a raw text-based input message to a machine-readable internal representation almost always requires parsing (or tokenization), which, in its current form, refers to a proc...
http://www.xml.com/pub/a/2004/05/19/parsing.html
CC-MAIN-2016-07
en
refinedweb
Though the title is from the famous story by O. Henry, this article has nothing to do with the plot of that story and can be also titled: The examples for this article can be divided into two separate groups but because they use the same programming technique I decided to unite them under one title. These examples are ...
http://www.codeproject.com/Articles/544451/The-Roads-We-Take
CC-MAIN-2016-07
en
refinedweb
You can subscribe to this list here. Showing 25 50 100 250 results of 44 I just downloaded the 0.50 tar.gz and found the fonts folder appears to be awol. other than that it is working great :) john -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 jdhunter@... ha scritto: >? Ok, I have removed the python2.3-numeric-ext dep...
http://sourceforge.net/p/matplotlib/mailman/matplotlib-devel/?viewmonth=200402
CC-MAIN-2016-07
en
refinedweb
Implementing. List<T>.Sort() method uses the default comparer Comparer(T).Default for type T to determine the order of list elements. The Comparer(T).Default property. If you use system types like String, default comparer works fine. This is because String class implements IComparable interface. If you see the definiti...
http://weblogs.asp.net/yaneshtyagi/implementing-sorting-in-generic-list-list-lt-t-gt
CC-MAIN-2016-07
en
refinedweb
In this penultimate part of a series, I develop a basic client-side cache class in PHP. It uses the local storage mechanism packaged with HTML5 to save, retrieve and manipulate data in the browser. If you're a conscientious PHP developer who wants to build scalable object-oriented applications, and still don't know wha...
http://www.devshed.com/c/a/PHP/Create-A-ClientSide-Cache-in-PHP/
CC-MAIN-2013-48
en
refinedweb
I tried to make the variables self explanatory. This program updates the console every 5 seconds with lps: Loops per second, and most of the other variables used in the program. #include<iostream> #include<time.h> int main() { using namespace std; #define WAIT 5 //5 seconds time_t timer_start = time(NULL); time_t timer...
http://www.gamedev.net/index.php?app=forums&module=extras&section=postHistory&pid=5011001
CC-MAIN-2013-48
en
refinedweb
This object provides the functionality of both a GeomVertexReader and a GeomVertexWriter, combined together into one convenient package. More... #include "geomVertexRewriter.h" List of all members. This object provides the functionality of both a GeomVertexReader and a GeomVertexWriter, combined together into one conve...
http://www.panda3d.org/reference/1.8.0/cxx/classGeomVertexRewriter.php
CC-MAIN-2013-48
en
refinedweb
On Oct 12, 2009, at 22:28 , Uwe Hollerbach wrote: > parsePrefixOf n str = > string (take n str) >> opts (drop n str) >> return str > where opts [] = return () > opts (c:cs) = optional (char c >> opts cs) Seems to me this will succeed as soon as it possibly can... > myTest = myPrefixOf 1 "banana" > <|> myPrefixOf 1 "cho...
http://www.haskell.org/pipermail/haskell-cafe/2009-October/067733.html
CC-MAIN-2013-48
en
refinedweb
Christian Schoenebeck declaimed: > > I've been trying to switch from mbox to maildir, but exim won't deliver > > to my maildirs. Here's the relevant section of my exim.conf: > > I replaced the local_delivery section by: > > local_delivery: > driver = appendfile > create_directory = true > directory_mode = 700 > directo...
http://lists.debian.org/debian-user/2002/06/msg03952.html
CC-MAIN-2013-48
en
refinedweb
How to: Find Existing Files and Directories in Isolated Storage You can also search for existing directories and files using an isolated storage file. Remember that within a store, file and directory names are specified with respect to the root of the virtual file system. Also, file and directory names in the Windows f...
http://msdn.microsoft.com/en-us/library/zd5e2z84(v=vs.80).aspx
CC-MAIN-2013-48
en
refinedweb
Open Source Killing Commercial Developer Tools 742 jexrand recommends an interview with John De Goes in which he argues: "The tools market is dead. Open source killed it." The software developer turned president of N-BRAIN explains the effect that open source has had on the developer tools market, and how this forced t...
http://tech.slashdot.org/story/08/06/10/0228220/open-source-killing-commercial-developer-tools?sdsrc=nextbtmnext
CC-MAIN-2013-48
en
refinedweb
On 16 Feb 2008, at 5:04 PM, Donn Cave wrote: > > On Feb 16, 2008, at 3:46 PM, Philippa Cowderoy wrote: > >>! > > Ironically, the simple task of reading a file is more work than I > expect > precisely because I don't want to bother to handle exceptions. I > mean, > in some applications it's perfectly OK to let an except...
http://www.haskell.org/pipermail/haskell-cafe/2008-February/039698.html
CC-MAIN-2013-48
en
refinedweb
Writing Javascript is not trivial. With all the dynamicity it brings, function level scoping, lack of class syntax and all makes it really hard to tackle. Well, no longer... I wasn't a javascript developer until 3-4 months ago, and all the things i mentioned above beat me on an occasion. Then I met Closure Tools at wor...
http://tech.pro/tutorial/1256/introduction-to-closure-tools
CC-MAIN-2013-48
en
refinedweb
File APIs for Java Developers Manipulate DOC, XLS, PPT, PDF and many others from your application. A friendly place for programming greenhorns! Big Moose Saloon Search | Java FAQ | Recent Topics Register / Login JavaRanch » Java Forums » Databases » Object Relational Mapping Author Can anyone tell why is this query not...
http://www.coderanch.com/t/515248/ORM/databases/query-valid
CC-MAIN-2013-48
en
refinedweb
XML::RSS::LibXML - XML::RSS with XML::LibXML: <rss version="2.0" xml: ... <channel> <tag attr1="val1" attr2="val3">foo bar baz</tag> </channel> </rss> All of the fields in this construct can be accessed like so: $rss->channel->{tag} # "foo bar baz" $rss->channel->{tag}{attr1} # "val1" $rss->channel->{tag}{attr2} # "val...
http://search.cpan.org/~dmaki/XML-RSS-LibXML-0.3102/lib/XML/RSS/LibXML.pm
CC-MAIN-2013-48
en
refinedweb
05 January 2011 07:23 [Source: ICIS news] By Yu Guo SINGAPORE (ICIS)--Asian polyethylene terephthalate (PET) bottle-grade chip prices, on an uptrend since the last quarter, are expected to rise further this year on higher raw material costs with demand expected to remain strong, according to industry players. Feedstock...
http://www.icis.com/Articles/2011/01/05/9423018/outlook-11-asia-pet-prices-seen-firmer-on-raw-material-costs.html
CC-MAIN-2013-48
en
refinedweb
Its good Its good Collections Framework Collections Framework Java provides the Collections Framework. In the Collection Framework... or objects. Set is the interface of the collections framework which Collections Framework The Collections Framework provides a well-designed set of interfaces.... The collections framewo...
http://www.roseindia.net/tutorialhelp/allcomments/2967
CC-MAIN-2013-48
en
refinedweb
Computer Science Archive: Questions from March 11, 2012 - Anonymous askedprivate static int NUM_O... Show more • Show less public class Calculator { private double register; //holds temporary results private static int NUM_OP; //default constructor public Calculator() { register = 0; } public void clear() //clears regi...
http://www.chegg.com/homework-help/questions-and-answers/computer-science-archive-2012-march-11
CC-MAIN-2013-48
en
refinedweb
We start by setting up a new project. File/New File or Project /Felgo/New – Empty Felgo 3 Project and finally press Choose…. In the next window you choose a name and a location for your project. Next you choose your development kit. MinGW is typically used for windows. However, you need to pick a development kit depend...
https://felgo.com/doc/how-to-make-2048-game-1-tutorial/
CC-MAIN-2020-16
en
refinedweb
[ ] Scott Giles commented on NIFI-7279: ----------------------------------- I don't have access to a development computer right now. I'm basically stuck with a tablet. > Redis Detect Duplicate Issue > ---------------------------- > > Key: NIFI-7279 > URL: > Project: Apache NiFi > Issue Type: Bug > Affects Versions: 1.1...
https://www.mail-archive.com/issues@nifi.apache.org/msg94709.html
CC-MAIN-2020-16
en
refinedweb
Azure Mobile Apps iOS SDK 3.2.0 release October 13, 2016 We are excited to bring you the latest release of our Mobile Apps iOS client SDK 3.2.0. We've added Refresh Token feature, updated with iOS 10 support, and made performance improvement. October 13, 2016 We are excited to bring you the latest release of our Mobile...
https://azure.microsoft.com/en-ca/blog/author/yuaxu/
CC-MAIN-2020-16
en
refinedweb
Mysensor usb gateway serial problem Hello, could somebody help me and say why it doesn't work? // Enable debug prints to serial monitor #define MY_DEBUG // Enable and select radio type attached //#define MY_RADIO_RF CHILD_ID 3 #define BUTTON_PIN 3 #define RELAY_PIN void before() { for (int sensor=1, pin=RELAY_PIN; sens...
https://forum.mysensors.org/topic/10635/mysensor-usb-gateway-serial-problem/3?lang=en-US
CC-MAIN-2020-16
en
refinedweb
DEBSOURCES Skip Quicknav sources / linux / 4.19.20-1 / drivers / mcb / Kconfig 12345678910111213141516171819202122232425262728293031323334353637383940 # # MEN Chameleon Bus (MCB) support # menuconfig MCB tristate "MCB support" default n depends on HAS_IOMEM This is a MCB carrier on a LPC or non PCI device. If build as ...
https://sources.debian.org/src/linux/4.19.20-1/drivers/mcb/Kconfig/
CC-MAIN-2020-16
en
refinedweb
F# IntelliSense Improvements in Visual Studio 11 Beta IntelliSense is the identifier auto-completion facility in Visual Studio. As a developer, IntelliSense is critical to my productivity, as it allows me to easily work with thousands of functions from different namespaces and classes without having to constantly leave...
https://devblogs.microsoft.com/fsharpteam/tag/visual-studio-11-beta/
CC-MAIN-2020-16
en
refinedweb
Cinder/blueprints/read-only-volumes - Launchpad Entry: Read-only volumes - Created: 3 July 2013 - Contributors: Anastasia Guzikova Contents - 1 Summary - 2 Release Note - 3 Rationale - 4 User stories - 5 Design - 5.1 How can you use Read Only volumes - 5.2 Workflow - 6 Implementation - 7 Assumptions - 8 Test/Demo Plan ...
https://wiki.openstack.org/wiki/Cinder/blueprints/read-only-volumes
CC-MAIN-2020-16
en
refinedweb
Hello SYCL Hello SYCL At this point we assume that you have set up the pre-requisites for developing using ComputeCpp and we will proceed by writing our first SYCL application. 'Hello SYCL' #include <iostream> #include <CL/sycl.hpp> namespace sycl = cl::sycl; int main(int, char**) { <<Setup host storage>> <<Initialize ...
https://developer.codeplay.com/products/computecpp/ce/guides/sycl-guide/hello-sycl
CC-MAIN-2020-16
en
refinedweb
I am trying to print an integer in Python 2.6.1 with commas as thousands separators. For example, I want to show the number 1234567 as 1,234,567. How would I go about doing this? I have seen many examples on Google, but I am looking for the simplest practical way. It does not need to be locale-specific to decide betwee...
https://pythonpedia.com/en/knowledge-base/1823058/how-to-print-number-with-commas-as-thousands-separators-
CC-MAIN-2020-16
en
refinedweb
I'm trying to randomly generate coordinate transformations for a fitting routine I'm writing in python. I want to rotate my data (a bunch of [x,y,z] coordinates) about the origin, ideally using a bunch of randomly generated normal vectors I've already created to define planes -- I just want to shift each plane I've def...
https://codedump.io/share/0M6wTZYD00FZ/1/coordinate-transformations-from-a-randomly-generated-normal-vector
CC-MAIN-2017-43
en
refinedweb
Vibration Device Vibration Device Vibration Device Vibration Device Class Definition public : sealed class VibrationDevice : IVibrationDevice public sealed class VibrationDevice : IVibrationDevice Public NotInheritable Class VibrationDevice Implements IVibrationDevice // You can use this class in JavaScript. - Attribut...
https://docs.microsoft.com/en-us/uwp/api/Windows.Phone.Devices.Notification.VibrationDevice
CC-MAIN-2017-43
en
refinedweb
If you've done anything long term in the Web industry, it's likely that you will have come across "Base64 Encoding" at some point. Base64 is the encryption format used by browsers when implementing very simple username and password form of basic authentication. If you ask anyone these days, however, for a serious point...
http://mobile.codeguru.com/columns/dotnet/base64-encoding-from-c.html
CC-MAIN-2017-43
en
refinedweb
User:RAHB/Talk Archive) Reap From Sycamore:)— Sir Sycamore (talk) 12:38, 20 August 2008 (UTC) Hey. Just wanted to let you know that Captcha isn't letting me do Pee Reviews or Submit my articles for them. Please fix this.--The Unread 21:58, 21 August 2008 (UTC) - There's a problem with new accounts and capture or someth...
http://uncyclopedia.wikia.com/wiki/User:RAHB/Talk_Archive_7
CC-MAIN-2015-06
en
refinedweb
Software applications are constantly updated to fix bugs and to add new function. How to deliver updates to your user base is a very important enterprise infrastructure consideration, especially when your user base is large and spread out. In a worldwide organization, it is not pragmatic to send out a technician to ins...
http://www.ibm.com/developerworks/lotus/library/sametime-updates/index.html
CC-MAIN-2015-06
en
refinedweb
12 November 2008 14:00 [Source: ICIS news] LONDON (ICIS news)--INEOS plans to combine the management of its European olefins and polyolefins businesses into a new combined entity called INEOS Olefins & Polymers Europe, the UK-based petrochemicals major said on Wednesday. ?xml:namespace> Effective 1 December the combine...
http://www.icis.com/Articles/2008/11/12/9171091/ineos-combines-europe-olefins-and-polymers-units.html
CC-MAIN-2015-06
en
refinedweb
17 June 2011 16:00 [Source: ICIS news] (releads with contract confirmation and adds detail throughout) LONDON (ICIS)--The European methanol third-quarter contract price has been confirmed at €295/tonne ($415/tonne), down by €10/tonne from the second quarter, after the majority of major market players agreed to the pric...
http://www.icis.com/Articles/2011/06/17/9470707/europe-q3-methanol-confirmed-at-295tonne-down-by-10t.html
CC-MAIN-2015-06
en
refinedweb
04 July 2011 11:41 [Source: ICIS news] HONG KONG (ICIS)--Saudi Aramco is seeking investors for a potential purified terephthalic acid (PTA) project in the kingdom, a company official said on Monday. The official said that this was in order to off-take paraxylene (PX) from its 700,000 tonne/year unit when it comes on st...
http://www.icis.com/Articles/2011/07/04/9474640/saudi-aramco-seeks-investors-for-potential-pta-project.html
CC-MAIN-2015-06
en
refinedweb
Editor's note: this document is out of date and remains here for historic interest. See Synopsis 6 for the current design information. As soon as she walked through my door I knew her type: she was an argument waiting to happen. I wondered if the argument was required... or merely optional? Guess I'd know the parameter...
http://www.perl.com/pub/2003/07/
CC-MAIN-2015-06
en
refinedweb
Joe Duffy, Huseyin Yildiz, Daan Leijen, Stephen Toub - Parallel Extensions: Inside the Task Parallel - Posted: Feb 19, 2008 at 11:00 AM - 31,117. Noooo! Leave C# alone! One of the reasons C# is nice and easy to learn is that it's core keyword set is quite compact. If you start adding lots of keywords here there and eve...
http://channel9.msdn.com/Shows/Going+Deep/Joe-Duffy-Huseyin-Yildiz-Daan-Leijen-Stephen-Toub-Parallel-Extensions-Inside-the-Task-Parallel
CC-MAIN-2015-06
en
refinedweb
i would like to drive with arrow keys, but can find very little documentation on this and the code i did find didn't make sense to me. Have you installed Processing? Have you looked at the zillions of examples? File + Examples... + Basics + Input + Keyboard, for instance. Modify that to print the index of the key that ...
http://forum.arduino.cc/index.php?topic=152094.msg1143123
CC-MAIN-2015-06
en
refinedweb
GETHOSTNAME(3) BSD Programmer's Manual GETHOSTNAME(3) gethostname, sethostname - get/set name of current host #include <unistd.h> int gethostname(char *name, size_t namelen); int sethostname(const char *name, size_t namelen); The gethostname() function returns the standard host name for the current processor, as previo...
http://www.mirbsd.org/htman/sparc/man3/gethostname.htm
CC-MAIN-2015-06
en
refinedweb
The idea behind Greasemonkey is pretty simple. It's a Firefox extension, installed in the same way as any other Firefox extension (find it via the Tools > Addons menu and hit Install). However, it doesn't do anything in and of itself: what it does is to enable you to run scripts, either by other people or by yourself, ...
http://www.techradar.com/news/internet/the-beginner's-guide-to-greasemonkey-scripting-598247
CC-MAIN-2015-06
en
refinedweb
#include <apr_network_io.h> The pool to use... The hostname Either a string of the port number or the service name for the port The numeric port The family IPv4 sockaddr structure IPv6 sockaddr structure Union of either IPv4 or IPv6 sockaddr. How big is the sockaddr we're using? How big is the ip address structure we'r...
http://apr.apache.org/docs/apr/0.9/structapr__sockaddr__t.html
CC-MAIN-2015-06
en
refinedweb
iPcGravityCallback Struct ReferenceInherit this class if you want to know when gravity is applied to a certain iPcLinearMovement. More... #include <propclass/linmove.h> Inheritance diagram for iPcGravityCallback: Detailed DescriptionInherit AddGravityCallback in iPcLinearMovement, and remove with RemoveGravityCallback ...
http://crystalspace3d.org/cel/docs/online/api-1.2/structiPcGravityCallback.html
CC-MAIN-2015-06
en
refinedweb
An editable text view, extending AutoCompleteTextView, that can show completion suggestions for the substring of the text where the user is typing instead of necessarily for the entire thing. You must provide a MultiAutoCompleteTextView.Tokenizer to distinguish the various substrings. The following code snippet shows h...
http://developer.android.com/reference/android/widget/MultiAutoCompleteTextView.html
CC-MAIN-2015-06
en
refinedweb
csVector3 Class Reference [Geometry utilities] #include <csgeom/vector3.h> Detailed Description A 3D vector. Definition at line 57 of file vector3.h. Constructor & Destructor Documentation Conversion from double precision vector to single. Member Function Documentation Return a textual representation of the vector in t...
http://www.crystalspace3d.org/docs/online/api-1.4/classcsVector3.html
CC-MAIN-2015-06
en
refinedweb
You can click on the Google or Yahoo buttons to sign-in with these identity providers, or you just type your identity uri and click on the little login button. We were at La Cantine on May 21th 2012 in Paris for the "PyCon.us Replay session". La Cantine is a coworking space where hackers, artists, students and so on ca...
http://www.logilab.org/view?rql=Any%20X%20WHERE%20T%20tags%20X%2C%20T%20eid%2098359%2C%20X%20is%20BlogEntry
CC-MAIN-2015-06
en
refinedweb
Dialog and get user's input in Submlime 2 and some basic things I learned about about Sublime. Any suggestions or fixes would be appreciated. Or... if you could test it on Windows / Linux. It's been a lot of fun learning about Sublime, and I hope to write a plugin soon and do more examples. See current version here (Gi...
http://www.sublimetext.com/forum/viewtopic.php?f=2&t=13277&p=51463
CC-MAIN-2015-06
en
refinedweb
New in version 0.3June 25th, 2010 - Pattern bindings in case statements are now like any other assignment -- scoped to the entire function and in the same namespace as all the other locals. Patterns no longer create a new scope, and the variables they create no longer shadow existing locals. It is now a type error if a...
http://linux.softpedia.com/progChangelog/Mars-Giuca-Changelog-52664.html
CC-MAIN-2015-06
en
refinedweb
CS::Threading::ScopedLock< T > Class Template Reference This is a utility class for locking a Mutex. More... #include <csutil/threading/mutex.h> Detailed Description template<typename T> class CS::Threading::ScopedLock< T > This is a utility class for locking a Mutex. 163 of file mutex.h. The documentation for this cla...
http://www.crystalspace3d.org/docs/online/api-2.0/classCS_1_1Threading_1_1ScopedLock.html
CC-MAIN-2015-06
en
refinedweb
Just a follow-up to this issue. It appears my test program *was* invalid, but I discovered why SDL wouldn't load properly. As you can see in my initial bug report, SDL was attempting to convert a command line from UCS-2-INTERNAL to UTF-8 using win-iconv. "C" (as my test program had) is *definitely* invalid input! After...
https://cygwin.com/pipermail/cygwin/2016-March/226758.html
CC-MAIN-2021-25
en
refinedweb
So far we have been looking at Python functions viewed as any function in any language might be described, but as promised, Python functions are completely different. They are objects. This is something that you only find in languages that have been influenced by the early experimental object oriented languages such as...
https://www.i-programmer.info/programming/python/12437-programmers-python-function-objects.html?start=1
CC-MAIN-2021-25
en
refinedweb
Referencing Common Values Between Apps/Projects Date Published: 23 July 2017 A pretty common scenario in building real world business software is the need to share certain pieces of information between multiple projects or applications. Frequently these fall into the category of configuration settings, and might includ...
https://ardalis.com/referencing-common-values-between-apps-projects/
CC-MAIN-2021-25
en
refinedweb
On Mon, 2005-04-04 at 11:44 -0400, Deron Meranda wrote: > I was, though, expecting ls -Z to show the applied label. So the filesystem > context is being applied, but you can't see it via ls -Z? I guess that makes > sense now that I think about it, but it was a little surprising. I > kind of expected > the context= opti...
https://listman.redhat.com/archives/fedora-selinux-list/2005-April/msg00015.html
CC-MAIN-2021-25
en
refinedweb
Model Binding Decimal Values’s look at the scenario. Suppose you have the following class (Jogadoris a soccer player in Portugese): public class Jogador { public int ID { get; set; } public string Name { get; set; } public decimal Salary { get; set; } } And you have two controller actions, one that renders a form used ...
http://haacked.com/archive/2011/03/19/fixing-binding-to-decimals.aspx/
CC-MAIN-2021-25
en
refinedweb
As I was putting together the coord_proj ggplot2 extension I had posted a gist that I shared on Twitter. Said gist received a comment (several, in fact) and a bunch of us were painfully reminded of the fact that there is no built-in way to receive notifications from said comment activity. @jennybryan posited that it co...
https://www.r-bloggers.com/roll-your-own-gist-comments-notifier-in-r/
CC-MAIN-2018-34
en
refinedweb
Working with Windows Registry using Windows API – Part 3 (How to Create a Registry Key) How to Create a Registry Key You may recall that the function used for creating new registry keys is RegCreateKeyEx(). Its syntax is : LONG RegCreateKeyEx (HKEY hKey, LPCTSTR lpSubKey, DWORD Reserved, LPTSTR lpClass, DWORD dwOptions...
https://www.wincodebits.in/2015/08/working-with-registry-using-windows-api_18.html
CC-MAIN-2018-34
en
refinedweb
import "go.chromium.org/luci/luci_notify/notify" commits.go emailgen.go gitiles.go notify.go pubsub.go srcman.go func BlamelistRepoWhiteset(notifications notifypb.Notifications) stringset.Set BlamelistRepoWhiteset computes the aggregate repository whitelist for all blamelist notification configurations in a given set o...
https://godoc.org/go.chromium.org/luci/luci_notify/notify
CC-MAIN-2018-34
en
refinedweb
Advertising --- Comment #1 from Chad H. <innocentkil...@gmail.com> --- (In reply to comment #0) > This may be actually impossible, but I'm filing a bug to discuss strategies > for > preventing mirrors of Wikipedia from including pages we NOINDEX. A good > example > of this is user pages or user talk pages, and the new...
https://www.mail-archive.com/wikibugs-l@lists.wikimedia.org/msg318043.html
CC-MAIN-2018-34
en
refinedweb
Parallel LINQ is a set extension method created for LINQ to Objects. If you want to learn about standard LINQ, you can read my other post here. The main difference between them is that Parallel LINQ executes the code in parallel, which could improve the performance and execution speed of the application, whileLINQ does...
https://www.tr.freelancer.com/community/articles/parallel-linq
CC-MAIN-2018-34
en
refinedweb
It's not the same without you Join the community to find out what other Atlassian users are discussing, debating and creating. How can I get the data from the API for how long an issue (epic) spent in each status, or at least in an "In Progress" status, so that I can calculate cycle time? Yes, I've seen the control cha...
https://community.atlassian.com/t5/Jira-questions/How-can-I-get-cycle-time-for-epics-via-the-API/qaq-p/199782
CC-MAIN-2018-34
en
refinedweb
China 15.6 inch notebook laptop with Intel Z8350 CPU support Win 10 os US $132.5-155.5 / Piece 1 Piece (Min. Order) Shenzhen GST Communication Co., Ltd. 94.4% import used computers wholesale used computers and laptops US $120-450 / Set 5 Sets (Min. Order) Shenzhen Riguan Photoelectric Co., Ltd. 96.5% Delux Smart Voice ...
https://www.alibaba.com/showroom/used-laptops-no-os.html
CC-MAIN-2018-34
en
refinedweb
Prime; import javax.faces.context.FacesContext; import javax.faces.convert.*; import com.facade.DogFacade; import com.model.Dog; @FacesConverter(forClass = com.model.Dog.class) public class DogConverter implements Converter { @Override public Object getAsObject(FacesContext arg0, UIComponent arg1, String arg2) { DogFac...
https://www.javacodegeeks.com/2012/07/full-web-application-tomcat-jsf_4954.html
CC-MAIN-2016-40
en
refinedweb
Hi, On 23 août 2012, at 10:52, Florin Pinte <fpinte@yahoo.com> wrote: > Hello, > >. I'm having trouble understanding the issue here. >. Then, you could probably do the following: - install ApacheDS (the Directory Server not the Studio) using specific windows installer - use Apache Directory Studio to : - Edit the confi...
http://mail-archives.apache.org/mod_mbox/directory-users/201208.mbox/%3CDBF7E15A-BDCC-4DD9-B6FD-10F0FFF6762B@marcelot.net%3E
CC-MAIN-2016-40
en
refinedweb
This, and the following few blogs, takes a look at the whole social scene by demonstrating the use of Spring Social, and I’m going to start by getting very basic. If you’ve seen the Spring Social Samples you’ll know that they contain a couple of very good and complete ‘quickstart’ apps; one for Spring 3.0.x and another...
https://www.javacodegeeks.com/2012/06/getting-started-with-spring-social.html
CC-MAIN-2016-40
en
refinedweb
Created on 2011-06-19 17:25 by haypo, last changed 2012-01-08 09:35 by rosslagerwall. This issue is now closed. [271/356/1] test_concurrent_futures Traceback (most recent call last): File "/home2/buildbot/slave/3.x.loewis-sun/build/Lib/multiprocessing/queues.py", line 268, in _feed send(obj) File "/home2/buildbot/slave...
http://bugs.python.org/issue12364
CC-MAIN-2016-40
en
refinedweb
This article presents a checksum routine for UPD/IP packets using 32-bit groupings. See RFC 768 to read about the UDP protocol and the UDP checksum. In particular, you need to understand the pseudo header used for the UDP checksum. See RFC 1071 for a discourse on the theory of the internet checksum. I use winpcap () to...
http://www.codeproject.com/Articles/5543/32-bit-UDP-Checksum?fid=29434&df=90&mpp=25&sort=Position&spc=Relaxed&tid=681104&noise=3&prof=False&view=Quick
CC-MAIN-2016-40
en
refinedweb
This action might not be possible to undo. Are you sure you want to continue? 2006 Edition OfficeReady Business Plan User Guide and Business Plan eBook A Guide to preparing a winning business plan Written by Michael P. Griffin and TemplateZone Table of Contents Introduction OfficeReady Browser What is a template? Why a...
https://www.scribd.com/doc/135047692/Tips-for-Writing-a-Business-Plan
CC-MAIN-2016-40
en
refinedweb
/* pathexp.h -- The shell interface to the globbing library. */ /* Copyright (C) 1987-2007 (_PATHEXP_H_) #define _PATHEXP_H_ #if defined (USE_POSIX_GLOB_LIBRARY) # define GLOB_FAILED(glist) !(glist) #else /* !USE_POSIX_GLOB_LIBRARY */ # define GLOB_FAILED(glist) (glist) == (char **)&glob_error_return extern int noglob_...
http://opensource.apple.com//source/bash/bash-86.1/bash-3.2/pathexp.h
CC-MAIN-2016-40
en
refinedweb
BlackBerry 10 - Sharing using NfcShareMa nager Introduction This article is part of a series intended to help developers wishing to exploit Near Field Communication (NFC) in their BlackBerry® 10 applications. Readers of this article should have some pre-existing knowledge of the fundamental architecture of NFC systems ...
https://supportforums.blackberry.com/t5/tkb/articleprintpage/tkb-id/Cascades@tkb/article-id/58
CC-MAIN-2016-40
en
refinedweb
Ralf S. Engelschall wrote: > - Prepare the rename.cf file for APX_=ap_ because as we've seen in the > debates the what-is-API-and-what-is-not problematic cannot be and > shouldn't be solved _THIS TIME_. Instead we concentrate on just solving > the HIDE veto by doing the general ap_-renaming for clean namespaces. > The ...
http://mail-archives.apache.org/mod_mbox/httpd-dev/199804.mbox/%3C352E5603.9942F427@algroup.co.uk%3E
CC-MAIN-2016-40
en
refinedweb
We pay for user submitted tutorials and articles that we publish. Anyone can send in a contributionLearn Studio glitches… so I pressed F5 and was proved wrong after getting the following runtime error: Compiler Error Message: BC30560: ‘ScriptManager’ is ambiguous in the namespace ‘System.Web.UI’ After doing some checki...
http://www.dev102.com/2008/03/21/ajax-scriptmanager-error-bc30560/
CC-MAIN-2016-40
en
refinedweb
Results 1 to 5 of 5 - Join Date - Aug 2005 - Location - Sri Lanka - 4 NEED HELP >> How Do I Sort a Structure Array???? C... :? - Join Date - Oct 2004 - Location - /dev/random - 404 Sorry, no code... But, this is what you can do.... What you can do is maintain an additional array as an indexing structure. This array wou...
http://www.linuxforums.org/forum/programming-scripting/44260-need-help-how-do-i-sort-structure-array-c-language.html
CC-MAIN-2016-40
en
refinedweb
This document is a user guide for a compiler contributed to xtc that implements the Jeannie programming language. The latest official version of this user guide is here:. This guide is also available in pdf format:. The current Jeannie project members are Robert Grimm, Martin Hirzel, Byeoncheol “BK” Lee, and Kathryn Mc...
http://cs.nyu.edu/rgrimm/xtc/jeannie.html
CC-MAIN-2016-40
en
refinedweb
#include <FastSPI_LED.h>#include <SD.h>File myFile;const int chipSelect = 4;String fileNam = "3.bmp";unsigned int height = 1;unsigned long bitmapOffset = 0x36;unsigned long filePosition = 0;#define NUM_LEDS 64int frameDelay = 1; //number of millis between animated framesstruct CRGB { unsigned char r; unsigned char g; u...
http://forum.arduino.cc/index.php?topic=124035.msg932334
CC-MAIN-2016-40
en
refinedweb
[ ] ASF subversion and git services commented on OPENJPA-1986: ---------------------------------------------------------- Commit 1580907 from [~jpaheath] in branch 'openjpa/branches/2.2.1.x' [ ] OPENJPA-1986: Extra queries being generated when cascading a persist - added another/similar check to the ones added by Rick....
http://mail-archives.apache.org/mod_mbox/openjpa-dev/201403.mbox/%3CJIRA.12505332.1303922693048.132271.1395679012290@arcas%3E
CC-MAIN-2016-40
en
refinedweb
Missing from the current Nutch documentation (Tutorial, FAQ) is a list of features. This wiki page could help, if someone who knows the answers can edit it. (Please reformat this text and divide into feature lists, questions and questions & answers). Features - Fetching, parsing and indexation in parallel and/ou distri...
http://wiki.apache.org/nutch/OldFeatures
CC-MAIN-2016-40
en
refinedweb
Walkthrough: Downloading Assemblies on Demand with the ClickOnce Deployment API Using the Designer By default, all the assemblies included in a ClickOnce application are downloaded when the application is first run. However, there might be parts of your application that are used by a small set of the demands them. To c...
https://msdn.microsoft.com/en-us/library/ak58kz04.aspx
CC-MAIN-2016-40
en
refinedweb
. These flags control what variation of the language are permitted. Leaving out all of them gives you standard Haskell 98. This simultaneously enables all of the extensions to Haskell 98 described in Chapter 7, except where otherwise noted. This option enables the language extension defined in the Haskell 98 Foreign Fu...
http://www.haskell.org/ghc/docs/6.2/html/users_guide/ghc-language-features.html
CC-MAIN-2014-15
en
refinedweb