text
stringlengths
20
1.01M
url
stringlengths
14
1.25k
dump
stringlengths
9
15
lang
stringclasses
4 values
source
stringclasses
4 values
I am writing a program that utilises a large number of files. Does Python feature an inbuilt class for file paths, or does one have to be implemented by the user (like below): class FilePath: def __init__(path): shazam(path) def shazam(self, path): """ something happens, path is formatted, etc """ self.formatted_path =...
https://codedump.io/share/J37fOIo1Gwgw/1/python-dedicated-class-for-file-names
CC-MAIN-2018-26
en
refinedweb
Aditya Ghosh, president, whole-time director, Indigo Airlines said the government’s proposal to cap airfares on regional routes at Rs 2,500 is a holistic move to expand the market, on a day when the shares of the airline’s parent company InterGlobe Aviation soared 17 per cent on debut trade. (PTI) IndiGo’s President Ad...
https://www.financialexpress.com/economy/proposed-airfare-cap-on-regional-routes-a-holistic-move-indigo-president-aditya-ghosh/163989/
CC-MAIN-2018-26
en
refinedweb
Artifact d9f3f38a645379ab75eff8ab4925fa2d678944c7: - File tclreadline.n] .TH tclreadline n "@PATCHLEVEL_STR@" "Johannes Zellner" .\" FILE: "/home/joze/src/tclreadline/tclreadline.n.in" .\" LAST MODIFICATION: "Mit, 10 Jan 2001 06:29:33 +0100 (joze)" .\" (C) 1998 - 2001 by Johannes Zellner, <johannes@zellner.org> .\" $Id...
http://chiselapp.com/user/rkeene/repository/tclreadline/artifact/d9f3f38a645379ab
CC-MAIN-2018-26
en
refinedweb
* JavaDocRule27 * @author Pavel Vlasov28 * @version $Revision: 1.2 $29 */30 public class JavaDocRuleFixTestCase {31 32 /**33 * Field documentation34 */35 public int z;36 37 /**38 * Method39 * documentation40 */41 public void doIt() {42 43 }44 }45 46 Java API By Example, From Geeks To Geeks. | Our Blog | Conditions of ...
http://kickjava.com/src/org/hammurapi/inspectors/testcases/fixes/JavaDocRuleFixTestCase.java.htm
CC-MAIN-2018-26
en
refinedweb
__SETFPUCW(3) Linux Programmer's Manual __SETFPUCW(3) __setfpucw - set FPU control word on i386 architecture (obsolete) #include <i386/fpu_control.h> void __setfpucw(unsigned short control_word); __setfpucw() transfers control_word to the registers of the FPU (floating-point unit) on the i386 architecture. This was use...
http://man7.org/linux/man-pages/man3/__setfpucw.3.html
CC-MAIN-2018-26
en
refinedweb
Send a message to a channel #include <sys/neutrino.h> int MsgSendvs( int coid, const iov_t* siov, int sparts, void* rmsg, int rbytes ); int MsgSendvs_r( int coid, const iov_t* siov, int sparts, void* rmsg, int rbytes ); libc Use the -l c option to qcc to link against this library. This library is usually included autom...
https://www.qnx.com/developers/docs/6.4.1/neutrino/lib_ref/m/msgsendvs.html
CC-MAIN-2018-26
en
refinedweb
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace pigLatin { class PigLatin { static void Main(string[] args) { string english = Convert.ToString("txtEnglsih.Text"); string Vowels = "AEIOUaeiou"; string firstLetter=null; string restOftheWord; s...
https://www.dreamincode.net/forums/topic/292919-error/page__st__15
CC-MAIN-2018-26
en
refinedweb
#include <FFPlanNode.h> Definition at line 6 of file FFPlanNode.h. List of all members. Definition at line 8 of file FFPlanNode.h. 37 of file FFPlanNode.cc. Definition at line 15 of file FFPlanNode.h. [protected] Definition at line 21 of file FFPlanNode.cc. Referenced by plan(). Definition at line 16 of file FFPlanNod...
http://tekkotsu.org/dox/classFFPlanNode.html
CC-MAIN-2018-26
en
refinedweb
Dealing with Data In this chapter you'll learn about the following: - Rules for naming C++ variables - C++'s built-in integer types: unsigned long, long, unsigned int, int, unsigned short, short, char, unsigned char, signed char, and bool - The climits file, which represents system limits for various integer types - Nu...
http://www.informit.com/articles/article.aspx?p=352319&amp;seqNum=4
CC-MAIN-2018-26
en
refinedweb
ttyname, ttyname_r, isatty, ttyslot— #include <unistd.h>char * ttyname(int fd); int ttyname_r(int fd, char *name, size_t namesize); int isatty(int fd); #include <stdlib.h>int ttyslot(void); FILEtyped. ttyname() function returns the NUL-terminated name if the device is found and isatty() is true; otherwise a null pointe...
https://man.openbsd.org/ttyslot.3
CC-MAIN-2018-26
en
refinedweb
PMCONNECTLOGGER(3) Library Functions Manual PMCONNECTLOGGER(3) __pmConnectLogger - connect to a performance metrics logger control port #include "pmapi.h" #include "libpcp.h" int __pmConnectLogger(const char *hostname, int pid);.. pmcd(1), pmlc(1), pmlogger(1), PMAPI(3) and __pmControlLog(3). PM_ERR_PERMISSION no permi...
http://man7.org/linux/man-pages/man3/__pmconnectlogger.3.html
CC-MAIN-2018-26
en
refinedweb
KTRACE(2) MidnightBSD System Calls Manual KTRACE(2) NAME ktrace — process tracing LIBRARY Standard C Library (libc, −lc) SYNOPSIS #include <sys/param.h> #include <sys/time.h> #include <sys/uio.h> #include <sys/ktrace.h> int ktrace(const char *tracefile, int ops, int trpoints, int pid); DESCRIPTION The ktrace() system c...
http://www.midnightbsd.org/documentation/man/ktrace.2.html
CC-MAIN-2015-48
en
refinedweb
in reply to Re: Perl vs. Python for prime numbers in thread Perl vs. Python for prime numbers We could save typing and electrons: use Math::Prime::Util qw/forprimes/; forprimes { say } 1000; # optionally takes range a,b [download] Some Python ways to do this, all of which are *much* faster than the OP code when we want...
http://www.perlmonks.org/index.pl?node_id=1040264
CC-MAIN-2015-48
en
refinedweb
Hello, I enabled initramfs under General Setup in the kernel configuration. I pointed the initramfs source to a cpio archive containing a simple init program: #include <stdio.h> #include <unistd.h> int main(int argc, char *argv[]) { printf("Hello world!\n"); sleep(999999999); }? Regards, Daniel On Wed, Feb 27, 2008 at ...
http://sourceforge.net/p/user-mode-linux/mailman/message/18691776/
CC-MAIN-2015-48
en
refinedweb
11 May 1998: This document is a submission to the W3C. Please see Acknowledged W3C Submissions regarding its disposition. This document discusses XML based mechanisms for distributed object communication on the Web. It is not intended to be a final specification. Rather, this document is a report on a proof of concept ...
http://www.w3.org/TR/1998/NOTE-webbroker-19980511/
CC-MAIN-2015-48
en
refinedweb
Hey, I'm reading now a C++ tutorial from cprogramming.com, lesson about a structures. And I see now and example of pointers in structures:And I'm confused about that part:And I'm confused about that part:Code:#include <iostream> using namespace std; struct xampl { int x; }; int main() { xampl structure; xampl *ptr; str...
http://cboard.cprogramming.com/cplusplus-programming/148610-i-feel-like-stupid-pointers.html
CC-MAIN-2015-48
en
refinedweb
[Date Index] [Thread Index] [Author Index] Re: Localizing Large Numbers of Variables in a DynamicModule: << With[{args = {x1,x2,x3,x4,x5}}, DynamicModule[args, foo@@args; goo@@args; ... ] ] < Yes this allows the arguments to be referred to within the body of the "With" but the question really came in two parts, the fir...
http://forums.wolfram.com/mathgroup/archive/2008/Feb/msg00674.html
CC-MAIN-2015-48
en
refinedweb
You can subscribe to this list here. Showing 6 results of 6 > On 5/22/2009 9:13 AM mohsen rahmanian apparently wrote: >> When I use gnuplot-py on windows xp with python 2.5.1 and run demo.py I get this: >> IOError: [Errno 22] Invalid argument On 5/22/2009 5:34 PM Brian Connell apparently wrote: > I saw this problem whe...
http://sourceforge.net/p/gnuplot-py/mailman/gnuplot-py-users/?viewmonth=200905
CC-MAIN-2015-48
en
refinedweb
When designing a Scala library, you can partition the services offered by the library into traits. This gives your users more flexibility: they can mix into each class only the services they need from your library. For example, in ScalaTest you create a basic suite of tests by mixing in any of several core Suite traits...
http://www.artima.com/scalazine/articles/selfless_trait_patternP.html
CC-MAIN-2015-48
en
refinedweb
Details - Type: Improvement - Status: Closed - Priority: Trivial - Resolution: Fixed - Affects Version/s: None - Fix Version/s: None - Component/s: Java - Compiler - Labels:None - Patch Info:Patch Available Description Generated java code for Thrift structs should have doc strings from the .thrift file. The information...
https://issues.apache.org/jira/browse/THRIFT-179
CC-MAIN-2015-48
en
refinedweb
"Serge E. Hallyn" <serge@hallyn.com> writes:> Quoting Eric W. Beiderman (ebiederm@xmission.com):>> From: Eric W. Biederman <ebiederm@xmission.com>>> >> Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>>> --->> fs/attr.c | 8 ++++---->> fs/exec.c | 10 +++++----->> fs/fcntl.c | 6 +++--->> fs/ioprio.c | 4 ++-->> fs/...
https://lkml.org/lkml/2012/4/20/543
CC-MAIN-2015-48
en
refinedweb
Configuration manager for freshbooks-cli Configuration manager for freshbooks-cli freshbooks-cli is a command-line interface to the FreshBooks API. freshbooks-cli-config implements the config subcommand for freshbooks-cli. --key, -k [String] - A configuration key to operate on. If --value is not set, the current value ...
https://www.npmjs.com/package/freshbooks-cli-config
CC-MAIN-2015-48
en
refinedweb
player_audio_seq_item Struct Reference Player audio sequence item. More... #include <player_interfaces.h> Collaboration diagram for player_audio_seq_item: Detailed Description Player audio sequence item. This describes a single sequence element, the link field is used for chord type playback when a series of notes are ...
http://playerstage.sourceforge.net/doc/Player-cvs/player/structplayer__audio__seq__item.html
CC-MAIN-2015-48
en
refinedweb
Since its birth, Java programming language has become a very popular programming language, covering many technical fields such as the Internet, Android applications, back-end applications, big data and so on. Therefore, the performance analysis and tuning of Java applications is also a very important topic. The perform...
https://developpaper.com/software-performance-test-analysis-and-tuning-practice-performance-analysis-and-tuning-of-java-applications-excerpts-from-manuscripts/
CC-MAIN-2022-33
en
refinedweb
rotate an unsigned integer to the right #include <stdlib.h> unsigned int _rotr( unsigned int value, unsigned int shift ); The _rotr() function rotates the unsigned integer, value, to the right by the number of bits specified in shift. If you port an application using _rotr() between a 16-bit and a 32-bit environment, y...
https://users.pja.edu.pl/~jms/qnx/help/watcom/clibref/src/_rotr.html
CC-MAIN-2022-33
en
refinedweb
Fl a Flutter app using Firebase Cloud Messaging. This tutorial will only deal with configuration for the Android platform. First, what are push notifications? Push Notifications are a sort of pop-up messaging medium that alerts app users to what’s going on in the app. They are also an important way to amplify user enga...
https://envo.app/how-to-add-push-notifications-to-a-flutter-app-using-firebase-cloud-messaging/
CC-MAIN-2022-33
en
refinedweb
On 4/10/06, Steven Bethard <steven.bethard at gmail.com> wrote: > On 4/10/06, Guido van Rossum <guido at python.org> wrote: > > Are there other proto-PEPs being worked on? I would appreciate if the > > authors would send me a note (or reply here) with the URL and the > > status. > > This is the Backwards Incompatibilit...
https://mail.python.org/pipermail/python-3000/2006-April/000704.html
CC-MAIN-2022-33
en
refinedweb
Answer: The program in Python is as follows: import random secretNum = random.randint(1,10) userNum = int(input("Take a guess: ")) while(userNum != secretNum): print("Incorrect Guess") userNum = int(input("Take a guess: ")) print("You guessed right") Explanation: This imports the random module This generates a secrete ...
https://answer-ya.com/questions/351209-in-three-to-five-sentences-describe-how-good-e-mail-work-habits.html
CC-MAIN-2022-33
en
refinedweb
20 Python Gem Libraries Buried In the Installation Waiting To Be Found Get to know Python’s standard libraries like never before Introduction Most people think Python’s mass dominance is due to its powerful packages like NumPy, Pandas, Sklearn, XGBoost, etc. These are third-party packages written by professional develo...
https://ramseyelbasheer.io/2022/08/04/20-python-gem-libraries-buried-in-the-installation-waiting-to-be-found/
CC-MAIN-2022-33
en
refinedweb
- MongoEngine Tutorial - MongoEngine - Home - MongoEngine - MongoDB - MongoEngine - MongoDB Compass - MongoEngine - Object Document Mapper - MongoEngine - Installation - MongoEngine - Connecting to MongoDB Database - MongoEngine - Document Class - MongoEngine - Dynamic Schema - MongoEngine - Fields - MongoEngine - Add/...
https://www.tutorialspoint.com/mongoengine/mongoengine_fields.htm
CC-MAIN-2022-33
en
refinedweb
How to manage zip file Hi. I have to manage a zip file (not gzip, just zip). Can somenone suggest me a way to do it (on both Linux and Windows)? qCompress and qUncompress does not work. Regards. The only answer is zlib, you just need to decide the flavour - QuaZIP (handles only .zip, wrapper around zlib) - KArchive (su...
https://forum.qt.io/topic/74306/how-to-manage-zip-file
CC-MAIN-2022-33
en
refinedweb
While FusionAuth is fundamentally a single-tenant solution, we do support multiple tenants within a single-tenant instance. In this post I’ll outline a few of the common use cases we solve with our tenancy feature. White labeled Identity We have several clients that, like us, are also software companies. With these cli...
https://fusionauth.io/blog/2018/09/24/multi-tenancy-in-a-single-tenant-architecture
CC-MAIN-2022-33
en
refinedweb
I am trying to host a Streamlit app on Azure Compute Instance resource. It appears that accessing the instance is possible through https://{instanceName}-{internalPort}.northeurope.instances.azureml.ms (with an Azure-provided security layer in between). To smoketest this I created a simple Flask app and verified I coul...
https://discuss.streamlit.io/t/hosting-streamlit-on-azure-compure-instance/23618
CC-MAIN-2022-33
en
refinedweb
A managed runtime aimed at running games distributed over multiple nodes Project description Epic Server EpicMan Server is a SANS-IO Async application server that runs your code over multiple 'Nodes'. This has the added effect of not being limited to a single core for running your code and mitigating some of the effect...
https://pypi.org/project/epicserver/
CC-MAIN-2022-33
en
refinedweb
Add a Web Dashboard to a React Application - 2 minutes to read This article assumes that you implement a client-server architecture. An ASP.NET Core or an ASP.NET MVC application serves as the backend (server side). The client (frontend) application includes all the necessary styles, scripts and HTML-templates. Note th...
https://docs.devexpress.com/Dashboard/400683/web-dashboard/dashboard-component-for-react/add-web-dashboard-to-a-react-application
CC-MAIN-2022-33
en
refinedweb
This one borks on missing: package com.sun.net.ssl package javax.xml.namespace package javax.xml.rpc I do not want to bring in non-libre stuff from Sun, as that's hopeless to mirror and get sources for. The last two seem to exist in libre form, but the former will be trickier. It's not vital to any of our current pack...
https://bugs.gentoo.org/show_bug.cgi?id=45990
CC-MAIN-2022-33
en
refinedweb
If i have to execute an external program (for example, in the frontend that i created for convert, from ImageMagick) i have 2 possibilities: i can call one function between the exec* family, or i can call the system function: so, which in your opinion is the best? The only difference that i know (but i may be in error)...
https://grokbase.com/t/python/python-list/06122eh7x3/running-external-programs-what-is-the-best-way
CC-MAIN-2022-33
en
refinedweb
MUD%2C object-oriented MUD%2C object-oriented, aka MUD, object-oriented, is an actively used programming language created in 1993. The MOO programming language is a relatively simple programming language used to support the MOO Server. It is dynamically typed and uses a prototype-based object-oriented system, with synt...
https://codelani.com/languages/moo.html
CC-MAIN-2019-35
en
refinedweb
Data Structures have been a boon to the programming world as they simplify programming to a great extent. Stack class in Java is a part of Collection framework that simplifies various operations like push, pop, etc. In this article we explore this concept in detail. Following pointers will be explored in this article: ...
https://www.edureka.co/blog/stack-class-in-java/
CC-MAIN-2019-35
en
refinedweb
No idea why this happened. Unity went to black screen, possibly something to do with video card driver problem, regardless, it stopped responding and I have to close it to restart it. Upon restart, I notice all my sprite images are missing, only with box colliders, and I went to inspector. It says "the associated scrip...
https://answers.unity.com/questions/434324/unity-crashed-then-alll-scripts-cant-be-loaded.html
CC-MAIN-2019-35
en
refinedweb
Often times, the need to verify the conditions present in our program arises. The assert keyword in Java allows the users to verify or test the assumptions made during the program. This article will introduce you to Assertion In Java. Following pointers will be covered in this article, - Declaring Assertion In Java - E...
https://www.edureka.co/blog/assertion-in-java/
CC-MAIN-2019-35
en
refinedweb
Dealing with callbacks as props in React Nikita Mostovoy ・8 min read TL;DR - Don't mix JSX and business-logic in one place, keep your code simple and understandable. - For small optimizations, you can cache function in class properties for classes or use the useCallbackhook for function components. In this case, pure c...
https://dev.to/xnimorz/dealing-with-event-handlers-in-react-540j
CC-MAIN-2019-35
en
refinedweb
Managing offline map areas¶ ahead of time to make going offline faster and easier for the field worker. This guide describes how to use the ArcGIS API for Python to create preplanned offline map areas for use in the ArcGIS Runtime SDKs and in the future, with apps like Collector. To learn about the general concept and ...
https://developers.arcgis.com/python/guide/managing-offline-map-areas/
CC-MAIN-2019-35
en
refinedweb
Am 04.07.2018 um 07:26 schrieb Egor Skriptunoff <egor.skriptunoff@gmail.com>:Hi!Let me start (n+1)-th thread about "global by default" feature of Lua. My suggestion is to replace "global by default" approach with "nothing by default" by introducing special syntax for accessing global variables: $print("Hello world") --...
http://lua-users.org/lists/lua-l/2018-07/msg00032.html
CC-MAIN-2019-35
en
refinedweb
The text below is based on my 2016 notes on Python, uvloop and Go after a colleague came back from Europython conference. It shows that on python side, even though uvloop lightly wraps libuv that is known to be fast, the performance drops significantly right after pure python code starts to be added into request handle...
https://erp5.nexedi.com/blog/NXD-Document.Blog.UVLoop.Python.Benchmark
CC-MAIN-2019-35
en
refinedweb
A new Flutter package.: carousel_hero: ^0.0.1 You can install packages from the command line: with Flutter: $ flutter pub get Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more. Now in your Dart code, you can use: import 'package:carousel_hero/carousel_hero.dart'; We ...
https://pub.dev/packages/carousel_hero
CC-MAIN-2019-35
en
refinedweb
To. So we will discuss: - Setup of your cluster certificate - Setup of Azure AD - Azure Cluster creation - Testing your Admin and Read-only user login Setting up your cluster certificate My purpose for using Azure Active Directory (AAD) was to setup an admin user and a read-only user so they could access the Service Fa...
https://blogs.msdn.microsoft.com/ncdevguy/2017/01/09/securing-an-azure-service-fabric-cluster-with-azure-active-directory-via-the-azure-portal-2/
CC-MAIN-2019-35
en
refinedweb
Le vendredi 04 juillet 2014 à 19:01 +0200, Yann Droneaud a écrit : > Le vendredi 04 juillet 2014 à 18:24 +0200, Yann Droneaud a écrit : > > Hi, > > > > I'm a bit puzzled regarding the behavor of make: I don't understand why > > a make function is executed twice when stored in a variable which is > > expanded as part of...
https://lists.gnu.org/archive/html/help-make/2014-07/msg00003.html
CC-MAIN-2019-35
en
refinedweb
Writing code is tricky enough. You shouldn’t have to spend hours improving its readability or worry about unnecessary typos causing build errors. Ranorex 6.0 now makes a ton new code editor enhancements available, which will help you quickly write clean and easily maintainable test scripts. Here’re 7 of the most fantas...
https://www.ranorex.com/blog/code-editor-features/
CC-MAIN-2019-35
en
refinedweb
Java language offers you to work with several loops. Loops are basically used to execute a set of statements repeatedly until a particular condition is satisfied. Here, I will tell you about the ‘while’ loop in Java. The topics included in this article are mentioned below: - What is while loop in Java? - What is an Inf...
https://www.edureka.co/blog/java-while-loop/
CC-MAIN-2019-35
en
refinedweb
// This is a work-in-process procedural map generator for an idea of mine. // For now, I am generating the co-ordinates of the map and then display them. // With the 'room' structure in place I should be able to create larger and more detailed packages for the rooms which form the 'building blocks' of the map. #includ...
http://www.cplusplus.com/forum/beginner/105759/
CC-MAIN-2017-04
en
refinedweb
alabaster 0.5.0 A configurable sidebar-enabled Sphinx theme This theme is a modified "Kr" Sphinx theme from @kennethreitz (especially as used in his [Requests]() project), which was itself originally based on @mitsuhiko's theme used for [Flask]() & related projects. A live example of what this theme looks like can be s...
https://pypi.python.org/pypi/alabaster/0.5.0
CC-MAIN-2017-04
en
refinedweb
#include <math.h> double a, b; long c; c = (long) ceil( a / b ); #include <math.h> long a, b, c; c = (long) ceil( (double)a/(double)b ); long a, b, c; c = (a - 1) / b + 1; Please enable Javascript in your browser, before you post the comment! Now Javascript is disabled. Your name/nickname Your email WebSite Subject (Ma...
http://www.devx.com/tips/Tip/13968
CC-MAIN-2017-04
en
refinedweb
This action might not be possible to undo. Are you sure you want to continue? Luck in Entrepreneurship and Venture Capital: Evidence from Serial Entrepreneurs Paul Gompers, Anna Kovner, Josh Lerner, and David Scharfstein* July 2006 Abstract. * Harvard University. Gompers, Lerner, and Scharfstein are also affiliates of ...
https://www.scribd.com/document/501271/Serial-Entrepreneur-July-06
CC-MAIN-2017-04
en
refinedweb
Archive! . Atmosphere! . Hitchiker Guide to the Atmosphere Framework using WebSocket, Long-Polling and Http Streaming The Atmosphere Framework easily allow the writing of web application that support, transparently, SSE (Server Side Events), JSONP, WebSocket, Long-Polling and Http Streaming. The Atmosphere Framework al...
http://jfarcand.wordpress.com/category/jquery/
CC-MAIN-2014-15
en
refinedweb
Exception handling for Windows Runtime apps in C# or Visual Basic Learn how to handle exceptions (or errors) in Windows Runtime apps in C# or Visual Basic. You can handle exceptions as Microsoft .NET exceptions with try-catch blocks in your app code, and you can process app-level exceptions by handling the UnhandledExc...
http://msdn.microsoft.com/en-us/library/windows/apps/dn532194
CC-MAIN-2014-15
en
refinedweb
"Fernando Pérez" <fperez528 at yahoo.com> wrote in message news:9u0jor$2li$1 at peabody.colorado.edu... > Ursus Horibilis wrote: > > > Is there a way to force the Python run time system to ignore > > integer overflows? I was trying to write a 32-bit Linear > > Congruential Pseudo Random Number Generator and got clobber...
https://mail.python.org/pipermail/python-list/2001-November/079361.html
CC-MAIN-2014-15
en
refinedweb
I had a productive meeting with Dr. Bob Fuller, University of Nebraska, emeritus, yesterday, a long time associate on that First Person Physics proposal to NSF (close, no cigar). He's working on the Karplus legacy, in turn stemming from Piaget. Science teaching went through a more successful transformation to "construc...
https://mail.python.org/pipermail/edu-sig/2009-January/008990.html
CC-MAIN-2014-15
en
refinedweb
Recent changes to feature-requests Support for CDATA end (]]>) "literal" in string2014-02-22T23:54:25Z2014-02-22T23:54:25ZLajos Cseppentő<div class="markdown_content"><p>Sorry, the good link: <a href="" rel="nofollow"></a></p></div>Support for CDATA end (]]>) "literal" in string2014-02-22T23:53:46Z2014-02-22T23:53:46ZL...
http://sourceforge.net/p/simple/feature-requests/feed.atom
CC-MAIN-2014-15
en
refinedweb
10 August 2010 06:08 [Source: ICIS news] SINGAPORE (ICIS)--MEGlobal has nominated its September 2010 Asian Contract Price (ACP) for monoethylene glycol (MEG) at $870/tonne (€661/tonne), up by $30/tonne from its August nomination, a company official said on Tuesday. “Our September MEG ACP … reflects the short term suppl...
http://www.icis.com/Articles/2010/08/10/9383497/meglobal-hikes-september-meg-acp-nomination-by-30tonne.html
CC-MAIN-2014-15
en
refinedweb
All about Async/Await, System.Threading.Tasks, System.Collections.Concurrent, System.Linq, and more… A common problem users run into when writing parallel applications is the lack of the thread-safety support in the .NET collection classes. Users typically need to implement their own synchronization mechanism for achie...
http://blogs.msdn.com/b/pfxteam/archive/2008/06/18/8614596.aspx?PageIndex=1
CC-MAIN-2014-15
en
refinedweb
#include <Xm/Print.h> Widget XmPrintSetup( Widget video_widget, Screen *print_screen, String print_shell_name, ArgList args, Cardinal num_args); A function that does the appropriate setting and creates a realized XmPrintShell that it returns to the caller. This function hides the details of the Xt to set up a valid pri...
http://www.makelinux.net/man/3/X/XmPrintSetup
CC-MAIN-2014-15
en
refinedweb
Line reads Analying the bug in the Simple Dot Com Game Should read Analyzing the bug in the Simple Dot Com Game Reads: "Do you believe than a technical book..." it should read: "Do you believe that a technical book..." to increase the chance that the content gets coded coded into more should read to increase the chanc...
http://www.oreilly.com/catalog/errata.csp?isbn=9780596004651
CC-MAIN-2014-15
en
refinedweb
The goal for this project was to allow a user to input the name and age of a person, as many times as they want, until they type "quit". After they type quit, the program is to print the name and age of the youngest person, and the oldest person. So far, I have a (probably not good) way for the user to input all the in...
http://www.javaprogrammingforums.com/file-i-o-other-i-o-streams/1100-more-java-homework-help.html
CC-MAIN-2014-15
en
refinedweb
Savable in Node Based MultiViewElement By Geertjan on Jan 07, 2013 Some time ago, Timon Veenstra from Ordina wrote about how to create MultiViewElements for Nodes. A follow up question is... how to enable the Save Action for MultiViewElements that have been created for Nodes? The constructor of a MultiViewElement alway...
https://blogs.oracle.com/geertjan/date/201301?page=1
CC-MAIN-2014-15
en
refinedweb
This is a long post, but I tried to keep it clean and concise. Please don't just skip over it because it has a lot of stuff - I really need some help. I want to get a project off on the right foot but lack the experience to be sure I'm doing it as efficiently [0] as possible. I'm creating a set of classes to implement ...
https://mail.python.org/pipermail/python-list/2004-June/256008.html
CC-MAIN-2014-15
en
refinedweb
On Tue, 2010-02-02 at 13:39 -0500, Jon Masters wrote:> On Tue, 2010-02-02 at 19:36 +0100, Patrick McHardy wrote:> > Jon> > ct_net pointer pointing to &init_net. I'll take care of this> > tommorrow.> > Ok. I'll leave this box running with the hack. I think at the very least> that this specific issue needs to get fixed a...
http://lkml.org/lkml/2010/2/2/325
CC-MAIN-2014-15
en
refinedweb
NAME namespace.conf - the namespace configuration file DESCRIPTION The. The script receives the polyinstantiated directory path and the instance directory path as its arguments. The /etc/security/namespace.conf file specifies which directories are polyinstantiated, how they are polyinstantiated, how instance directorie...
http://manpages.ubuntu.com/manpages/maverick/man5/namespace.conf.5.html
CC-MAIN-2014-15
en
refinedweb
NAME pmcd - performance metrics collector daemon SYNOPSIS pmcd [-f] [-i ipaddress] [-l logfile] [-L bytes] [-n pmnsfile] [-p port[,port ...] [-q timeout] [-T traceflag] [-t timeout] [-x file] DESCRIPTION pmcd is the collector used by the Performance Co-Pilot (see PCPIntro(1)) to gather performance metrics on a system. ...
http://manpages.ubuntu.com/manpages/oneiric/man1/pmcd.1.html
CC-MAIN-2014-15
en
refinedweb
Opened 3 years ago Closed 3 years ago #7880 closed defect (fixed) "ioerror: invalid mode: Ur" in htfile.py Description Python 2.4 complains about invalid mode Ur in htfile.py, line 209 def _get_users(self, filename): f = open(filename, 'Ur') for line in f: user = line.split(':', 1)[0] Solved it by simply changing mode ...
http://trac-hacks.org/ticket/7880
CC-MAIN-2014-15
en
refinedweb
- Nick Lansley Decoding TV Teddy – Part Two: Programming and Audio Output As a purely fun and academic exercise, I’m going attempt to decode the TV Teddy audio track embedded in a TV Teddy video programme, and output the audio as a separate file. I’ll then try and play back both the audio file and the YouTube video in ...
https://www.nicklansley.com/post/decoding-tv-teddy-part-two-programming-and-audio-output
CC-MAIN-2020-45
en
refinedweb
16 AnswersNew Answer Example findall(regex,"12345")=234 General case: find string w.o first and last. 16 AnswersNew Answer Oma Falk Based on the question: "How can regex find the middle 3 letters of a 5 char-word?" I'm assuming the word can include any non-whitespace alphanumeric character like this one: "12345" The re...
https://www.sololearn.com/Discuss/2272451/how-can-regex-find-the-middle-three-letters-of-a-5char-word
CC-MAIN-2020-45
en
refinedweb
Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll Deployment Options8:26 with James Churchill Regardless of your specific development, testing, and deployment workflow, you'll need a way to apply pending migrations to databases hosted in shared envi...
https://teamtreehouse.com/library/deployment-options
CC-MAIN-2020-45
en
refinedweb
Bug Description Just upgraded from 4.4.4 on 10.04 and received the following error. Configure local and remote Printers The service 'Printer Configuration' does not provide an interface 'KCModule' with keyword 'system- Thanks for submitting this issue and helping to make Kubuntu better! I have tried to reproduce this p...
https://bugs.launchpad.net/kubuntu-ppa/+bug/591980
CC-MAIN-2020-45
en
refinedweb
Patterns and Guards Elixir provides pattern matching, which allows us to assert on the shape or extract values from data-structures. Patterns are often augmented with guards, which give developers the ability to perform more complex checks, albeit limited. This page describes the semantics of patterns and guards, where...
https://hexdocs.pm/elixir/master/patterns-and-guards.html
CC-MAIN-2020-45
en
refinedweb
Page 1 Introduction Welcome to the Python Language Companion for Starting Out with Programming Logic and Design, 4th Edition, by Tony Gaddis. You can use this guide as a reference for the Python Programming Language as you work through the textbook. Each chapter in this guide corresponds to the same numbered chapter in...
https://www.scribd.com/document/395703225/Python-Language-Companion-1-pdf
CC-MAIN-2019-35
en
refinedweb
PHP localization file for use in Laravel/F3/Kohana PHP framework. Example <?php return array( "boolean_key" => "--- true ", "empty_string_translation" => "", "key_with_description" => "Check it out! This key has a description! (At least in some formats)", "key_with_line-break" => "This translations contains a line-brea...
https://phrase.com/docs/guides/formats/php-laravel/
CC-MAIN-2019-35
en
refinedweb
53007/delimiter-on-the-data I have a file with records as below. s.no,name,Country 101,Raju,India,IN 102,Reddy,UnitedStates,US here the my country column has data as "India,IN" which is single value and it has comma as well. Can you let me know how to handle this data when we read the file using comma delimiter in spar...
https://www.edureka.co/community/53007/delimiter-on-the-data
CC-MAIN-2019-35
en
refinedweb
For my school project ' if this, then that ' I had to make something Interactive with the use of an arduino. I chose to create this automatic dice tower. In this project I'll show you how I put it together. The tower itself is simple, its just a wooden case with an extra tray to catch the dice. On top of the tower are ...
https://www.instructables.com/id/Arduino-Automatic-Dice-Tower/
CC-MAIN-2019-35
en
refinedweb
A recent set of requirements I’ve been playing with deals with passwords. This one specifically handles password expiration. Given that I’m working with ASP.NET MVC I know I can rest assured that there’s some great (read awesome) way of implementing a given requirement. This is exactly what happened and I want to show ...
http://www.leniel.net/2012/05/user-password-expired-filter-aspnet-mvc.html
CC-MAIN-2017-43
en
refinedweb
Ok so Im trying to create a constructor that reads input from a text file. Which I got it to do. Then adds the information to a LinkedList. public class CourseCatalog<T> { private BufferedReader read; private LinkedList<Course> catalog; public CourseCatalog(String filename) throws FileNotFoundException { catalog = new ...
https://www.daniweb.com/programming/software-development/threads/323163/how-do-you-add-string-input-from-a-text-to-a-linked-list
CC-MAIN-2017-43
en
refinedweb
With the rate at which new software languages and technologies are appearing, its a tough job for a software engineer to keep up with the latest developments and trends as well as keeping existing skills sharp. Just as you feel you master one language or technology, a new one comes along and your apprenticeship starts ...
http://stephendoyle.blogspot.com/2007_07_01_archive.html
CC-MAIN-2017-43
en
refinedweb
Error importing pygments.lexers.web on Python 2.5 {{{ $ python Python 2.5 (r25:51908, May 15 2012, 16:19:31) [GCC 4.1.2 20080704 (Red Hat 4.1.2-52)] on linux2 Type "help", "copyright", "credits" or "license" for more information. import pygments.lexers.web Traceback (most recent call last): File "<stdin>", line 1, in <...
https://bitbucket.org/birkenfeld/pygments-main/issues/778/error-importing-pygmentslexersweb-on
CC-MAIN-2017-43
en
refinedweb
I can make the front part of laravel Echo work with pusher. In my app.js import Echo from "laravel-echo" window.Echo = new Echo({ broadcaster: 'pusher', key: 'MY_KEY', // I use my own key. cluster: 'eu', encrypted: true }); gulp Echo.channel('survey').listen('survey', function(e) { console.log('test'); }); if you are s...
https://codedump.io/share/4Dw6dEiaEDZi/1/event-broadcating-laravel-echo-fails-receiving-broadcasts
CC-MAIN-2017-43
en
refinedweb
, with the alpha version of the article coming up, i suggest that we make a= =20 full blown ChemBrowser (tm) that demos much of the functionality of the C= DK=20 library... I would like to see a java application that can switch views (2D, 3D, orb= ital, table of atoms, spectra), do calculations (NMR), copy molecule fro...
https://sourceforge.net/p/cdk/mailman/message/4917019/
CC-MAIN-2017-43
en
refinedweb
Poser + Genesis DSON Importer module not found edited December 1969 in Technical Help (nuts n bolts) Hi! Not sure what I'm doing wrong, here... installed the Genesis to Poser importer package (Great idea, by the way!); go to my DAZ People folder, click on the Genesis entry, and get the following error message: Tracebac...
http://www.daz3d.com/forums/viewthread/9476/P15/
CC-MAIN-2015-40
en
refinedweb
#include <hallo.h> * Joerg Schilling [Sun, Oct 29 2006, 02:49:32PM]: > Eduard Bloch <edi@gmx.de> wrote: > > > #include <hallo.h> > > * Joerg Schilling [Sun, Oct 29 2006, 10:51:58AM]: > > > Eduard Bloch <blade@master.debian.org> wrote: > > > > > > > > Let me repeat: > > > > > > > > > > In order to investigate on the cla...
https://lists.debian.org/cdwrite/2006/10/msg00112.html
CC-MAIN-2015-40
en
refinedweb
. > 2) something that doesn't use namespaced tags to identify dynamic > scopes (clashes with #1) Would be nice. But since I don't like 1, no problem here. ;-) > 3) something that doesn't use the name taglib The name does have evil connotations. Do you have a suggestion for a new name? > > That's pretty much all you hav...
http://mail-archives.apache.org/mod_mbox/cocoon-dev/200412.mbox/%3C7AE08032-456E-11D9-AA5C-000393B3DE96@hard-bop.com%3E
CC-MAIN-2015-40
en
refinedweb
>>, which use the (%xx) escape mechanism just like URLs, so it can be freely used in regular expressions without doubling. Strings are concatenated by just putting them one after each other without any operator in between.. it’s saintmode list .saintmode_threshold can be set to the maximum list size. Setting a value of...
http://manpages.ubuntu.com/manpages/lucid/man7/vcl.7.html
CC-MAIN-2015-40
en
refinedweb
Service Enablement of CORBA Applications through Oracle Service Bus By Ricardo Ferreira-Oracle on Jan statement in mind, it is reasonable to think that an good ESB must be able to handle different types of systems and technologies found in legacy systems, no matter if this system was built last year, five years ago or ...
https://blogs.oracle.com/middlewareplace/tags/soap
CC-MAIN-2015-40
en
refinedweb
Greetings, The amounts that the trust pays for your son's expenses are not income to you and the payments to you for administration are income to you. This payment to you is an expense of the trust. The trust will file a tax return (and is required if it has more than $600 of income). Even if not required, it may be be...
http://www.justanswer.com/tax/109aq-trustee-disabled-sons-account.html
CC-MAIN-2015-40
en
refinedweb
ROUTE(4) BSD Programmer's Manual ROUTE(4) route - kernel packet forwarding database #include <sys/socket.h> #include <net/if.h> #include <net/route.h> int socket(PF_ROUTE, SOCK_RAW, int in- terfaces, each protocol family installs a routing table entry for each interface when it is ready for traffic. Normally the protoc...
https://www.mirbsd.org/htman/i386/man4/route.htm
CC-MAIN-2015-40
en
refinedweb
Name | Synopsis | Interface Level | Parameters | Description | Return Values | Context | Examples | See Also #include <sys/varargs.h> #include <sys/ddi.h> #include <sys/sunddi.h> char *vsprintf(char *buf, const char *fmt, va_list ap); Solaris DDI specific (Solaris DDI). Pointer to a character string. Pointer to a chara...
http://docs.oracle.com/cd/E19082-01/819-2256/vsprintf-9f/index.html
CC-MAIN-2015-40
en
refinedweb
Python Programming, news on the Voidspace Python Projects and all things techie. Python and Threading In my Python programming so far I've managed to avoid threads altogether. I learned a lot whilst working on ConfigObj with Nicola Larosa. He has a pathological hatred of threads, which I inherited by proxy. In order to...
http://www.voidspace.org.uk/python/weblog/arch_d7_2006_11_04.shtml
CC-MAIN-2015-40
en
refinedweb
NetBeans: the Java EE 6 IDE Bonjour Comment Java? today is some type of historical milestone for Java EE 6: This is Milestone 1 of NetBeans 6.8 and Java EE 6 support with the latest GlassFish v3 (build 57). The bundle is only 132Mb and contains everything you need to start with Java EE 6: the IDE, the Java EE 6 current...
https://weblogs.java.net/blog/ludo/archive/2009/08/netbeans_the_ja.html
CC-MAIN-2015-40
en
refinedweb
and here is the orignal file where i got the code. bascially all i want to do is take this file and put the code into a JFrame so its easier to add more features and move things around Type: Posts; User: beginner123 and here is the orignal file where i got the code. bascially all i want to do is take this file and put ...
http://www.javaprogrammingforums.com/search.php?s=5fd59c4f5f55d4ed25b14cf219a898e5&searchid=1814150
CC-MAIN-2015-40
en
refinedweb
Hi, T E Schmitz <mailreg@numerixtechnology.de> schrieb am 06.08.2004 17:53:35: > Hello, > > >>>. >>> >> For backwards compatibility we would need to leave the existing methods >> as is. There are I guess two ways forward, either we generate a second >> set of methods that do left joins or we add an option to the genera...
http://mail-archives.apache.org/mod_mbox/db-torque-dev/200408.mbox/%3COF37B106F9.B6A67961-ONC1256EEC.002EF425-C1256EEC.0031F2D1@seitenbau.net%3E
CC-MAIN-2015-40
en
refinedweb
Jhoel Esmejarda wrote:@Vishal Shaw Package? uhmm.. I think I should finish first the Head First Java book, I'm stuck in Chapter 5 Extra-Strength Methods, I don't know yet the package but I will try to learn it bit by bit. Thanks with the comments. Rajdeep Biswas wrote:Hi Jhoel, Its encouraging that you are putting your...
http://www.coderanch.com/t/596495/java/java/Code-Optimization-Part
CC-MAIN-2015-40
en
refinedweb
The second most distinguished fault, with almost as many special cases and discussion as the MustUnderstand fault I talked about last week, ended up not making it into the product. Some form of the fault is still in there of course, but it lost its mouthful of a name: the InvalidCardinalityAddressing fault. An InvalidC...
http://blogs.msdn.com/b/drnick/archive/2006/12/27/a-historical-awkwardly-named-fault.aspx
CC-MAIN-2015-40
en
refinedweb
After you install Oracle Identity Manager, you may have to perform certain postinstallation tasks before you can use the application. Some of the postinstallation tasks are optional, depending on your deployment and requirement. This chapter discusses the following topics: Starting Oracle Identity Manager Stopping Orac...
http://docs.oracle.com/cd/E14049_01/doc.9101/e14047/post_install.htm
CC-MAIN-2015-40
en
refinedweb