text
stringlengths
20
1.01M
url
stringlengths
14
1.25k
dump
stringlengths
9
15
lang
stringclasses
4 values
source
stringclasses
4 values
Scala supports the notion of case classes. Case classes are just regular classes that are: Here is an example for a Notification type hierarchy which consists of an abstract super class Notification and three concrete Notification types implemented with case classes SMS, and VoiceRecording. abstract class Notification ...
http://docs.scala-lang.org/tutorials/tour/case-classes
CC-MAIN-2017-04
en
refinedweb
James Youngman <address@hidden> writes: > I was testing on a Glibc system, and so wasn't picking up the gnulib > version of fnmatch(). Silly me. Won't other people have the same problem? Can you modify m4/fnmatch.m4 to detect the problem, and if so then use the gnulib version instead of the glibc version? But in any ev...
http://lists.gnu.org/archive/html/bug-gnulib/2005-06/msg00066.html
CC-MAIN-2017-04
en
refinedweb
This is the mail archive of the cygwin-apps mailing list for the Cygwin project. On Oct 10 10:24, Corinna Vinschen wrote: > > > > >? Index: include/cygwin/in.h =================================================================== RCS file: /cvs/src/src/winsup/cygwin/include/cygwin/in.h,v retrieving revision 1.18 retrievi...
http://cygwin.com/ml/cygwin-apps/2012-10/msg00118.html
CC-MAIN-2017-04
en
refinedweb
NAME rint - round to closest integer SYNOPSIS #include <math.h> double rint(double x); DESCRIPTION The rint() function rounds x to an integer value according to the prevalent rounding mode. The default rounding mode is to round to the nearest integer. RETURN VALUE The rint() function returns the integer value as a floa...
http://manpages.ubuntu.com/manpages/precise/pt/man3/rint.3.html
CC-MAIN-2017-04
en
refinedweb
Lazy in pre-initiating all the beans at start up: - Takes long time to start the application. Since BeanFactory has to initiate all the beans even if it is unnecessary. - More memory for storing all the beans. also read: Based on the above impacts, some applications required beans to initiate only when they are require...
http://javabeat.net/how-to-lazy-initialize-spring-beans/
CC-MAIN-2017-04
en
refinedweb
I am try to make a mousedown function work on ios however cant seem to fix the issuse. I know the problem is with the code below any help would be greatful! bindInteractions: function(){ // bind interactions used during live play this.playfield.on('mousedown','touchstart', _.throttle(_.bind(function(event){ this.fireGu...
http://www.devsplanet.com/question/35271692
CC-MAIN-2017-04
en
refinedweb
=IF(COUNT(C7:H7)=0, "-", IF(COUNT(C7:H7)<6, "RL", IF(COUNT(C7:H7)>6, "Over", IF(MIN(C7/C$5,D7/D$5,E7/E$5,F7/F$5,G7/G$5,H7/H$5)<45%, "Resit", SUM(C7:H7) ) ) ) ) I have following items in my formula: I have a range in java implemented as a class which is divided into sub-ranges. The implementation is roughly as follows: ...
http://bighow.org/tags/range/1
CC-MAIN-2017-04
en
refinedweb
import java.util.ListIterator ;19 20 /** 21 * Defines a list iterator that can be reset back to an initial state.22 * <p>23 * This interface allows an iterator to be repeatedly reused.24 *25 * @since Commons Collections 3.026 * @version $Revision: 1.4 $ $Date: 2004/02/18 01:15:42 $27 * 28 * @author Stephen Colebourne2...
http://kickjava.com/src/org/apache/commons/collections/ResettableListIterator.java.htm
CC-MAIN-2017-04
en
refinedweb
Any method which takes a single parameter can be used as an infix operator in Scala.. Here is the corresponding code in a more traditional object-oriented programming language syntax: blog comments powered by Disqusblog comments powered by Disqus def not(x: MyBool) = x.negate def xor(x: MyBool, y: MyBool) = x.or(y).and...
http://docs.scala-lang.org/tutorials/tour/operators
CC-MAIN-2017-04
en
refinedweb
Code removed from the question The error happens because you haven't set any cell widgets, and so cellWidget() will always return None. However, this is irrelevant, since you actually need to query the checked-state of the table-widget items (which is what you have made checkable). Your code should probably look more l...
https://codedump.io/share/e4Hw5urUNRCb/1/get-table-row-values-based-on-whether-qcheckbox-is-checked
CC-MAIN-2017-04
en
refinedweb
This). In this document, unless otherwise clarified: @interface). Other "terminology notes" will appear occasionally throughout the document.,.) Each top-level class resides in a source file of its own.. Terminology Note: Horizontal alignment is the practice of adding a variable number of additional spaces in your code...
http://checkstyle.sourceforge.net/reports/google-java-style.html
CC-MAIN-2017-04
en
refinedweb
Red Hat Bugzilla – Full Text Bug Listing Description of problem: $ cat foo.c && gcc foo.c -lcurses && ./a.out #include <curses.h> int main() { flash(); return 0; } Segmentation fault (core dumped) Version-Release number of selected component (if applicable): ncurses-libs-5.7-9.20100703.fc14.x86_64 How reproducible: Alw...
https://bugzilla.redhat.com/show_bug.cgi?format=multiple&id=707344
CC-MAIN-2017-04
en
refinedweb
Opened 5 years ago Closed 5 years ago Last modified 5 years ago #17548 closed New feature (wontfix) updated simplejson version Description It would be nice to have a bundled simplejson version that supports the use_decimal feature which has been added in version 2.1.0. import simplejson as json from decimal import Deci...
https://code.djangoproject.com/ticket/17548
CC-MAIN-2017-04
en
refinedweb
Download presentation Presentation is loading. Please wait. Published byMaximillian Smith Modified about 1 year ago 1 Kinect + TFS aka Kinban Jeremy Novak Farm Credit Services of America 2 Agenda Why we built it The Glue Kinect & SDK TFS API Lessons Learned Resources 3 Why FCSA leaders sponsored Geekfest – Sept 2011 Re...
http://slideplayer.com/slide/4242143/
CC-MAIN-2017-04
en
refinedweb
Consider the following code (in C++11): int a = -11, b = 3; int c = a / b; // now c == -3 int div_neg(int dividend, int divisor){ if(dividend >= 0) return dividend / divisor; else return (dividend - divisor + 1) / divisor; } I'm not aware of any intrinsics for it. I would simply apply a correction to standard division ...
https://codedump.io/share/o4YV2E9z6H3X/1/division-with-negative-dividend-but-rounded-towards-negative-infinity
CC-MAIN-2017-04
en
refinedweb
Post your Comment Parallel Processing & Multitasking Parallel Processing & Multitasking Multitasking & Multithreading Multitasking.... In multitasking only one CPU is involved but it can switches from one program multitasking and multithreading multitasking and multithreading what is the difference between multitasking...
http://www.roseindia.net/discussion/18408-Parallel-Processing-&-Multitasking.html
CC-MAIN-2014-10
en
refinedweb
Templated BLAS wrapper. More... #include <Teuchos_BLAS.hpp> The Teuchos::BLAS class provides functionality similar to the BLAS (Basic Linear Algebra Subprograms). The BLAS provide portable, high- performance implementations of kernels such as dense vector sums, inner products, and norms (the BLAS 1 routines), dense mat...
http://trilinos.sandia.gov/packages/docs/r10.12/packages/teuchos/doc/html/classTeuchos_1_1BLAS.html
CC-MAIN-2014-10
en
refinedweb
#include <NOX_LAPACK_Group.H> #include <NOX_LAPACK_Group.H> Inheritance diagram for NOX::LAPACK::Group: [virtual] Applies the inverse of the Jacobian matrix to the given input vector and puts the answer in result. Computes where is the Jacobian, is the input vector, and is the result vector. The "Tolerance" parameter s...
http://trilinos.sandia.gov/packages/docs/r7.0/packages/nox/doc/html/classNOX_1_1LAPACK_1_1Group.html
CC-MAIN-2014-10
en
refinedweb
Copyright © 2003 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C liability, trademark, document use, and software licensing rules apply. This document describes CC/PP (Composite Capabilities/Preference Profiles) structure and vocabularies. A CC/PP profile is a description of device capabilities and user preferences. ...
http://www.w3.org/2003/07/ccpp-SV-PR/diff-20030728.html
CC-MAIN-2014-10
en
refinedweb
ResolveLocaleName function Finds a possible locale name match for the supplied name. Syntax Parameters - lpNameToResolve [in, optional] Pointer to a name to resolve, for example, "en-FJ" for English (Fiji). - lpLocaleName [out, optional] Pointer to a buffer in which this function retrieves the locale name that is the m...
http://msdn.microsoft.com/en-in/library/windows/apps/dd319112.aspx
CC-MAIN-2014-10
en
refinedweb
Manual by: Christine M. Gianone, Frank da Cruz, and Jeffrey Altman Software by: Jeffrey Altman, Frank da Cruz, Thomas Wu, and Max Evarts Software version: 2.1.3, 1 January 2003 Seventh Edition 1 January 2003 Copyright © 1996, 2003, Trustees of Columbia University in the City of New York. Previously Copyright © 1996, 20...
http://www.columbia.edu/kermit/k95manual/kermit95.html
CC-MAIN-2014-10
en
refinedweb
Your Account Hear us Roar I created the subdirectory com\onjava and tried to compile com.onjava.login.java from there. I get a compile error: com.onjava.login.java:8: class login is public, should be declared in a file named login.java public class login extends HttpServlet { ^ 1 error Stuck so early on, too! Please he...
http://www.oreillynet.com/cs/user/view/cs_msg/15233
CC-MAIN-2014-10
en
refinedweb
ncclient 0.4.0 Python library for NETCONF clients ncclient is a Python library that facilitates client-side scripting and application development around the NETCONF protocol. ncclient was developed by Shikar Bhushan. It is now maintained by Leonidas Poulopoulos (@leopoul) This version includes a merge of Juniper Networ...
https://pypi.python.org/pypi/ncclient/0.4.0
CC-MAIN-2014-10
en
refinedweb
Device detection is useful when requests by mobile devices need to be handled differently from requests made by desktop browsers. The Spring Mobile Device module provides support for server-side device detection. This support consists of a device resolution framework, site preference management, and site switcher. Add ...
http://docs.spring.io/spring-mobile/docs/1.0.0.M3/reference/html/device.html
CC-MAIN-2014-10
en
refinedweb
/* * 6.h,v 1.2.2.2 2001/07/03 11:01:49 ume Exp $ */ /* $KAME: esp.h,v 1.16 2000/10/18 21:28:00FC1827/2406 Encapsulated Security Payload. */ #ifndef _NETINET6_ESP6_H_ #define _NETINET6_ESP6_H_ #include <sys/appleapiopts.h> #ifdef KERNEL_PRIVATE extern int esp6_output(struct mbuf *, u_char *, struct mbuf *, struct secasv...
http://opensource.apple.com/source/xnu/xnu-1504.9.17/bsd/netinet6/esp6.h
CC-MAIN-2014-10
en
refinedweb
java.util.TreeMap.subMap() Method Description The subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) method is used to return a view of the portion of this map whose keys range from fromKey to toKey. If fromKey and toKey are equal, the returned map is empty unless fromExclusive and toExclusive are b...
http://www.tutorialspoint.com/java/util/treemap_submap_inclusive.htm
CC-MAIN-2014-10
en
refinedweb
During the recent launch of the latest version of the Apple iPad, Rackspace Cloud Sites customer gdgt.com handled more than 55 million requests and more than 110,000 concurrent connections in less than six hours. And gdgt.com is not alone. There are a host of examples that illustrate why web agencies turn to the Cloud ...
http://www.rackspace.com/blog/rackspace-cloud-sites-update-adds-new-features/
CC-MAIN-2014-10
en
refinedweb
Business Processes and Rules: Siebel eBusiness Application Integration Volume IV > Data Mapping Using Scripts > The Siebel Data Transformation Functions are a framework for building data transformation maps. Data transformation maps act as import and export filters, preparing data from an external system for entry into...
http://docs.oracle.com/cd/B31104_02/books/EAI4/EAI4_DataMapUsScripts3.html
CC-MAIN-2014-10
en
refinedweb
Hi, I need to mainten a profile database with login, password, telephone numbers and so on. I think I need to know how tomcat is handeling the request flow. My goal is to achive the following (if there are better ways to it, please let me know). Profile profile = request.getSessio().getProfile(); if( ! profile.loggedIn...
http://mail-archives.apache.org/mod_mbox/tomcat-users/200406.mbox/%3C44BE7B96C73B3F4A90A290E3336F67960170A7E9@ntvgrex2.via.no%3E
CC-MAIN-2014-10
en
refinedweb
Dns Class Provides simple domain name resolution functionality. For a list of all members of this type, see Dns Members. System.Object System.Net.Dns [Visual Basic] NotInheritable Public Class Dns [C#] public sealed class Dns [C++] public __gc __sealed class Dns [JScript] public class Dns Thread Safety Any public stati...
http://msdn.microsoft.com/en-US/library/system.net.dns(v=vs.71).aspx
CC-MAIN-2014-10
en
refinedweb
IBM Business Analytics Classroom Training offers a broad range of courses to suit your applications, roles and timelines, ensuring rapid use and implementation of your software purchase. You get in-depth and hands-on training with minimal distractions on the latest business analytics product releases. The benefits of C...
http://www-01.ibm.com/software/analytics/training-and-certification/classroom_training.html
CC-MAIN-2014-10
en
refinedweb
In this Programme, you’ll learn C++ Program to Check Whether a Number can be Express as sum of prime numbers. To nicely understand this example to find sum of prime numbers, you should have the knowledge of following C++ programming topics: - for Loop - C++ if, if…else and Nested if…else - Functions - Types of User-def...
https://coderforevers.com/cpp/cpp-program/sum-prime-numbers/
CC-MAIN-2020-16
en
refinedweb
Pitfalls in designing the application’s business layer Even the simplest software can sometimes tangle up into spaghetti code and become a nightmare to navigate, especially in legacy systems. In this article, view some bad code from an application’s business layer and how to fix it with better design practices. Take ca...
https://jaxenter.com/code-app-business-layer-167569.html
CC-MAIN-2020-16
en
refinedweb
28 February 2018 0 comments Python, Django, Javascript This is a quick-and-dirty how-to on how to use csso to handle the minification/compression of CSS in django-pipeline. First create a file called compressors.py somewhere in your project. Make it something like this: import subprocess from pipeline.compressors impor...
https://api.minimalcss.app/plog/csso-and-django-pipeline
CC-MAIN-2020-16
en
refinedweb
Document Scanning Made Easy for iOS WeScan WeScan makes it easy to add scanning functionalities to your iOS app! It's modelled after UIImagePickerController, which makes it a breeze to use. Features - [x] Fast - [x] Live scanning of documents - [x] Edit detected rectangle - [x] Auto scan and flash support - [x] Lightwe...
https://iosexample.com/document-scanning-made-easy-for-ios/
CC-MAIN-2020-16
en
refinedweb
From: Daniel James (daniel_james_at_[hidden]) Date: 2008-06-17 18:23:28 On 17/06/2008, Igor R <boost.lists_at_[hidden]> wrote: > > I'd like to define hash_value() for some types defined in Boost, in > order to use those types in hashed containers. It seems that the only > way to do this is to define hash_value() in nam...
https://lists.boost.org/boost-users/2008/06/37271.php
CC-MAIN-2020-16
en
refinedweb
Using HTTPS to access TeamCity server On this page: - Accessing the server via HTTPS - Configuring JVM - Useful tools in analyzing certificates issues This document describes how to configure Java applications to use HTTPS for communicating with the server. We assume that you have already configured HTTPS in your TeamC...
https://www.jetbrains.com/help/teamcity/2019.1/using-https-to-access-teamcity-server.html
CC-MAIN-2020-16
en
refinedweb
Hi everyone, in the previous article, we discussed about lifecycle methods in react native. With that knowledge, you already have gotten basic skills to develop a simple app. In this article, we are going to discuss how to Fetch data from API in React Native. In previous articles, you learnt only the important things i...
http://coderaweso.me/fetch-data-from-api-react-native/
CC-MAIN-2020-16
en
refinedweb
Plot slicing image with custom indicator in master frame cause unexpected result I have developed a custom indicator which is plotted in master frame. In order to reduce the size of saved image, I added start and end parameters in plot function like this: plot(plotter=myPlotter, start=startbar, end=endbar). However, I ...
https://community.backtrader.com/topic/1241/plot-slicing-image-with-custom-indicator-in-master-frame-cause-unexpected-result/1
CC-MAIN-2020-16
en
refinedweb
How to add more than one EllipseItem to a Scene..? I want to add around 11-12 QGraphicsEllipseItems to a scene. How can i achieve this using ellipseOne = scene->addEllipse(0,0,10,10,blackpen,redBrush); . . . . ellipseTwelve = scene->addEllipse(0,0,10,10,blackpen,redBrush); Apart from this is there any other way. Thanks...
https://forum.qt.io/topic/79904/how-to-add-more-than-one-ellipseitem-to-a-scene
CC-MAIN-2017-47
en
refinedweb
Having some trouble figuring this out. Seems like the original design was easy to follow but in the new design without the static Api there are so many ways to implement this. I am not finding any one way that is understandable. Plenty of start to finish videos and tutorials but with code syntax that I just don't know....
https://codedump.io/share/AU7U2OxeXz01/1/automapper-implementation-post-static-api
CC-MAIN-2017-47
en
refinedweb
I am developing a project that uses MongoDB (with C# driver) and DDD. I have a class (aggregate) which have a property which type is an interface. In another class, I have implemented this interface. This class has another property which type is an interface and is setted with another implemented class. The code below ...
https://codedump.io/share/G7z8tvAF6nEL/1/deserialize-object-as-an-interface-with-mongodb-c-driver
CC-MAIN-2017-47
en
refinedweb
Hans Nowak <wurmy at earthlink.net> wrote in news:3D4F4CD6.2060609 at earthlink.net: >>> >>> define_twice().func_name >>>'_twice' >> >> >> That's not a binding. > > Maybe not, but it has a name, and can therefore hardly be called > "anonymous". Sure, the function is not bound to any name in the > current local or globa...
https://mail.python.org/pipermail/python-list/2002-August/137360.html
CC-MAIN-2017-47
en
refinedweb
2008 Code Jam Beta Triangle Trilemma We compute the (signed) area of a triangle using the cross-product to. If zero, then the triangle is degenerate. Otherwise, we compare squares of distances to determine if the triangle is isosceles or scalene, then use the cosine rule to see if there is an obtuse (negative cosine) o...
http://crypto.stanford.edu/~blynn/haskell/2008-beta.html
CC-MAIN-2017-47
en
refinedweb
(Im using VS C++ EE 2008) Hi people, i have had a strange problem today. Im currently programming something to do with Physics. I have searched the Internet already for the answer, including this site. The problem is: error C2064: term does not evaluate to a function taking 1 arguments For the other topics i saw this i...
https://www.daniweb.com/programming/software-development/threads/194404/please-help-me-with-strange-error
CC-MAIN-2017-47
en
refinedweb
Hi Hemanth, thanks for your reply. Yes, this partially answered to my question. I know how hash partitioner works and I guessed something similar. The piece that I missed was that mapred.task.partition returns the partition number of the reducer. So, putting al the pieces together I undersand that: for each key in the ...
http://mail-archives.apache.org/mod_mbox/hadoop-hdfs-user/201303.mbox/%3CCAFnReZYUSVgX5_sc9yZ455ApWrYBC4WoFRrKA+GBZXbT0GM_-Q@mail.gmail.com%3E
CC-MAIN-2017-47
en
refinedweb
On 2011-12-16 22:40, Daniel Dehennin wrote: > Niels Thykier <niels@thykier.net> writes: > >> Hi, > > Hello, > Hi, Thanks for the feedback. I am quoting your reply in full for the sake of debian-lint-maint. :) > [...] > >> I am proposing the "Vendor Data Files" as an extension to the current >> "Vendor Profiles". It is ...
https://lists.debian.org/debian-derivatives/2011/12/msg00010.html
CC-MAIN-2015-18
en
refinedweb
Patent application title: INTERFACES AND METHODS FOR GROUP POLICY MANAGEMENT Inventors: Ullattil Shaji (Sammamish, WA, US) Rahul Gupta (Bellevue, WA, US) Derek C.y. Cheng (Issaquah, WA, US) William J. Whalen (Seattle, WA, US) Carey Tanner (Gold Bar, WA, US) Mike A. Treit, Jr. (Bellevue, WA, US) Assignees: Microsoft Cor...
http://www.faqs.org/patents/app/20090222884
CC-MAIN-2015-18
en
refinedweb
Here's a simple recipe that worked for me. It is quite inspired by the AjaxDojoFormSub example, except that this one is expected to function with: def register(request): # write the view here pass Then, we should definitely try to explain the client side: [...] Attachments (2) - ajax.js (2.1 KB) - added by erob@… 8 yea...
https://code.djangoproject.com/wiki/AJAX/Dojo/RefactoredFormSubmit?version=3
CC-MAIN-2015-18
en
refinedweb
(see bottom for a working vbscript code snippet of what I want to do - dump all of the groups a user is in) My problem is twofold. First, I can't reference the system.directoryServices namespace at all. I'm using visual studio 2003, .net framework 1.1 I can't seem to get to the any of the classes in the directoryServic...
http://forums.devx.com/showthread.php?146220-vb-net-problems-accessing-Active-Directory-and-DirectoryServices-namespace
CC-MAIN-2015-18
en
refinedweb
...one of the most highly regarded and expertly designed C++ library projects in the world. — Herb Sutter and Andrei Alexandrescu, C++ Coding Standards Calculate the comparable distance measurement of two geometries. The free function comparable_distance does not necessarily calculate the distance, but it calculates a ...
http://www.boost.org/doc/libs/1_47_0/libs/geometry/doc/html/geometry/reference/algorithms/distance/comparable_distance.html
CC-MAIN-2015-18
en
refinedweb
Uncyclopedia:Pee Review/UnNews:Chuck Norris on secularism: the single greatest threat that America has ever faced (quick) From Uncyclopedia, the content-free encyclopedia edit UnNews:Chuck Norris on secularism: the single greatest threat that America has ever faced One of the hidden gold pages that I wrote all by mysel...
http://uncyclopedia.wikia.com/wiki/Uncyclopedia:Pee_Review/UnNews:Chuck_Norris_on_secularism:_the_single_greatest_threat_that_America_has_ever_faced_(quick)
CC-MAIN-2015-18
en
refinedweb
i know the ip address of a hacker then how to find location of hacker using java code ?or any suggestions to move forward? i know the ip address of a hacker then how to find location of hacker using java code ?or any suggestions to move forward? ok.this discussion gives me lot of usefull information .ok now i move fort...
http://www.javaprogrammingforums.com/search.php?s=a25866c403bde9a6d11252a6ae2f0976&searchid=1514519
CC-MAIN-2015-18
en
refinedweb
#include <courierauth.h> options is the options field from authinfo (which can be NULL). As described in auth_generic(3)[1] (and the others), it is a comma-separated list of "keyword=value" pairs. auth_getoption searches options for a keyword. If options does not have the keyword, auth_getoption returns NULL with errno...
http://www.makelinux.net/man/3/A/auth_getoption
CC-MAIN-2015-18
en
refinedweb
- Memory - system() problem - Is there a way to qualify a namespace from only one library? - Time and pg_dump info - Direct Input Visual Studio Directx - suspend execution of a program - file i/o help - Documenting with Doxygen - Connecting to Oracle Problem - Newbie needs help plz - Directory and System Problem - Simp...
http://cboard.cprogramming.com/sitemap/f-3-p-462.html?s=8334c6ef533d712ad741585f2069927d
CC-MAIN-2015-18
en
refinedweb
, "Oracle Recommends JDK Version 6 Update 29 for Oracle Service Bus 11g Release 1 (11.1.1.7.0)" Section 2.1.11, "Installing Oracle Service Registry in the Same Domain as Oracle SOA Suite" Section 2.1.12, "Problems Installing in Thai and Turkish Locales" This section contains the following: Section 2.1.1.1, "Installing...
http://docs.oracle.com/cd/E29542_01/doc.1111/e14770/install.htm
CC-MAIN-2015-18
en
refinedweb
NAME strsep - extract token from string SYNOPSIS #include <string.h> char *strsep(char **stringp, const char *delim); DESCRIPTION The strsep() function returns the next token from the string stringp which is delimited by delim. The token is terminated with a ‘\0’ char‐ acter and stringp is updated to point past the tok...
http://manpages.ubuntu.com/manpages/gutsy/pt/man3/strsep.3.html
CC-MAIN-2015-18
en
refinedweb
17 November 2009 14:34 [Source: ICIS news] (Recasts fifth paragraph) LONDON (ICIS news)--Shell Chemicals has successfully started up its 750,000 tonne/year monoethylene glycol (MEG) plant at the Shell Eastern Petrochemicals Complex (SEPC) in Singapore, the company said on Tuesday. “The commissioning of the MEG plant is...
http://www.icis.com/Articles/2009/11/17/9264357/shell-starts-up-750000-tonneyear-meg-plant-in-singapore.html
CC-MAIN-2015-18
en
refinedweb
The source code for this document uses polyglot markup, polyglot markup. The following shapes use SVG elements. Polyglot markup introduces undeclared (native) default namespaces for the the root SVG element ( svg) and respects the mixed-case element names and values when appropriate, as described in the section on Elem...
http://www.w3.org/TR/html-polyglot/SamplePage.html
CC-MAIN-2015-18
en
refinedweb
Feb 09, 2011 03:08 PM|erik001|LINK Hello, I'm using MVC 3 RTM, client side validation has been disabled. I have a simple model with one integer field. Server side validation does not accept numbers including one or more thousandseparators. It shows: "The value '1,000' is not valid for QuantityInStock". It does not matt...
http://forums.asp.net/t/1651374.aspx
CC-MAIN-2015-18
en
refinedweb
Chuck Geiger wrote: . . . Cannot make a static reference to the non-static field Data.var (this was why my original post had "static" on the first line. . . . I got it wrong when I wrote: . . . . . . public final class GeogData { . . . @Override public int hashCode() { long bits = Double.doubleToLongBits(longitude); in...
http://www.coderanch.com/t/586493/java/java/Accessing-Object-properties
CC-MAIN-2015-18
en
refinedweb
Using transactions As the App Engine documentation states, A transaction is a Datastore operation or a set of Datastore operations that either succeed completely, or fail completely. If the transaction succeeds, then all of its intended effects are applied to the Datastore. If the transaction fails, then none of the ef...
http://www.javabeat.net/google-app-engine-java-and-gwt-application-development/2/
CC-MAIN-2015-18
en
refinedweb
Java why to create directory structure as web-inf & classes & lib - Java Beginners why to create directory structure as web-inf & classes & lib we... actually what is the reason behind this creating this directory structure? actually what internally the process will be take place from this directory structure EJB direc...
http://www.roseindia.net/tutorialhelp/comment/95044
CC-MAIN-2015-18
en
refinedweb
One of the pleasant surprises in the wonderful world for J2EE (and J2SE since the Tiger Release) is JMX. It may sound complex: a not so easy acronym, targeted at management, nothing to do with web development – JMX did not fly from the very beginning (J2EE 1.4, JSR-3). However, gradually, with JMX support in J2SE, MBea...
https://technology.amis.nl/2007/05/11/jmx-java-management-extension-paving-the-way-for-manageable-applications-javaone-2007/
CC-MAIN-2015-18
en
refinedweb
You will see the answer on this page: A single +, it just tells the compiler that it is a positive value. +3 means 3 is positive, thats all Well about usage of +, there is short hand methods in C++, Like this; d+=5 Here it means d=d+5. But since it uses 2 operands, its no longer unary operator (Just mentioned, so that ...
https://www.daniweb.com/software-development/cpp/threads/401152/what-does-unary-do
CC-MAIN-2015-18
en
refinedweb
public class QOutputStream extends QPOutputStream The "Q" encoding is similar to the "Quoted-Printable" content- transfer-encoding defined in RFC 2045. It is designed to allow text containing mostly ASCII characters to be decipherable on an ASCII terminal without decoding. out close, flush, output, write, write clone, ...
http://www.gnu.org/software/classpathx/javamail/javadoc/gnu/mail/util/QOutputStream.html
CC-MAIN-2015-18
en
refinedweb
ulif.rest 0.1.0 ReStructuredText extensions. ulif.rest is a package that provides some ReStructuredText extensions. The extensions collected in this package provide support for some of the markup used in RestructuredText documents of the stock Python documentation toolchain. Also a pygments directive (written by Georg ...
https://pypi.python.org/pypi/ulif.rest/0.1.0
CC-MAIN-2015-18
en
refinedweb
Packages a bit of a Slackware backlog which I am getting rid of now, thanks to my automated build scripts (creating these packages took time, not effort). LibreOffice The Libre Office developers had published their 3.6.5 release last week, and I finally felt good enough to build packages. I did a quick examination and ...
http://alien.slackbook.org/blog/packages-for-libreoffice-3-6-5-calibre-and-steamclient-and-lots-of-movement-on-the-horizon/
CC-MAIN-2015-18
en
refinedweb
2013-01-01T18:58:58Z The Flask Mega-Tutorial, Part XIII: Dates and Times This is the thir (this article) - Part XIV: I18n and L10n - Part XV: Ajax - Part XVI: Debugging, Testing and Profiling - Part XVII: Deployment on Linux (even on the Raspberry Pi!) - Part XVIII: Deployment on the Heroku Cloud A quick note about git...
http://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xiii-dates-and-times
CC-MAIN-2015-18
en
refinedweb
The following sections are included in this chapter: Requirements for using UCP Basic Connection Steps in UCP Basic Connection Example Using UCP the classpath of an application. A database that supports SQL. Advanced features, such as Oracle RAC and Fast Connection Failover, require an Oracle Database. UCP for JDBC pro...
http://docs.oracle.com/cd/E11882_01/java.112/e12265/get_started.htm
CC-MAIN-2015-18
en
refinedweb
QGLWidget performance questions Hello, I've been developing an application in Qt and have noticed a few strange performance issues in QGLWidget. My application consists of a central QGLWidget that fills the screen (1920x1200 for these tests), which I update in a timing loop. I noticed that there's a considerable delay ...
https://forum.qt.io/topic/22093/qglwidget-performance-questions/1
CC-MAIN-2022-21
en
refinedweb
Monitor a directory for new files Project description SpongeBot Monitor a directory for new files When instantiating a new SpongeBot, you need to provide it with a path to a directory and a callback function. The callback function is called each time a new file is added to the directory, passsing the name of the new fi...
https://pypi.org/project/spongebot/
CC-MAIN-2022-21
en
refinedweb
In this post, we are sharing Docker image for OpenCV 3.4.3, and the recently released OpenCV 3.4.4 and OpenCV 4.0. In addition to OpenCV, the image also has dlib and a Facial Landmark Detection example code. Every day we receive a few emails and comments on our posts about OpenCV and Dlib installation. Even with the de...
https://learnopencv.com/install-opencv-docker-image-ubuntu-macos-windows/
CC-MAIN-2022-21
en
refinedweb
Show duplicate rows sorted (1) By anonymous on 2020-06-12 10:58:50 [source] Hello, I am selecting duplicates in the "name" column of a table called "Records" using this query. select * from Records tab_a join (select name from Records group by name having count(name) > 1) tab_b on tab_a.name = tab_b.name The problem wi...
https://sqlite.org/forum/forumpost/f3b9379a90
CC-MAIN-2022-21
en
refinedweb
After trying out the assembled gadget for vehicles and people on the road, I wanted to tweak the solution to cater the solution for the Indian situation. The Indian traffic conundrum is so unique that it demands custom solutions. To start with, we need to train object detection models with Indian vehicles such as truck...
https://hackaday.io/project/182303-multi-domain-depth-ai-usecases-on-the-edge/log/199425-solution-1-adas-cas-tweaking-for-indian-conditions
CC-MAIN-2022-21
en
refinedweb
Provided by: busybox-static_1.27.2-2ubuntu3_amd64 NAME BusyBox - The Swiss Army Knife of Embedded Linux SYNTAX busybox <applet> [arguments...] # or <applet> [arguments...] # if symlinked Linux kernel. BusyBox provides a fairly complete POSIX environment for any small or embedded system. BusyBox is extremely configurabl...
https://manpages.ubuntu.com/manpages/bionic/en/man1/busybox.1.html
CC-MAIN-2022-21
en
refinedweb
The QueryResult class represents the result of a query executed by execSql() More... #include <qgsabstractdatabaseproviderconnection.h> The QueryResult class represents the result of a query executed by execSql() It encapsulates an iterator over the result rows and a list of the column names. Rows can be retrieved by i...
https://api.qgis.org/api/structQgsAbstractDatabaseProviderConnection_1_1QueryResult.html
CC-MAIN-2022-21
en
refinedweb
tkd 1.1.14 GUI toolkit for the D programming language based on Tcl/Tk To use this package, run the following command in your project's root directory: Manual usage Put the following dependency into your project's dependences. Why Tcl/Tk? Tkd development was initiated based on the performance and uptake of the Tkinter t...
https://code.dlang.org/packages/tkd
CC-MAIN-2022-21
en
refinedweb
How To: Creating a Custom Document Type Thomas Robbins — Mar 19, 2010 cmsdocument typekentico Content needs to be driven by the demands of business. While there are an enormous amount of document types in Kentico, business specific schemas are inevitable. Custom document types enable system administrators to create dat...
https://devnet.kentico.com/articles/how-to--creating-a-custom-document-type
CC-MAIN-2022-21
en
refinedweb
Did you know you can use C# to control the general-purpose I/O (GPIO) pins on your Raspberry Pi? Learn how to write a .NET app to drive an LED with this tutorial. Wiring the Circuit The electronics for this project will consist of a current-limiting resistor connected to a single LED in series. consider the following s...
https://wellsb.com/csharp/iot/raspberry-pi-gpio-csharp-led/
CC-MAIN-2022-21
en
refinedweb
Heyas, I only created a new discussion as I can't find anything on the web about this and honestly expected intellij to do this better than fb4. When creating a new skin the definition can be done from the smart menu after giving the skin a name, and then it'll ask for a package and create a skin. But thats it. Any dep...
https://intellij-support.jetbrains.com/hc/en-us/community/posts/206924045-Better-Skin-and-Custom-component-generation-FLEX-?page=1
CC-MAIN-2020-10
en
refinedweb
Build WordPress App with React Native #9: a simple share kris Originally published at kriss.io on ・ Here, we are going to add the share button and implement its feature as well. The feature makes the article sharable to the social media accounts when pressing the share button. For that, we are going to make use of the ...
https://dev.to/kris/build-wordpress-app-with-react-native-9-a-simple-share-2mja
CC-MAIN-2020-10
en
refinedweb
x:Static Markup Extension References any static by-value code entity that is defined in a Common Language Specification (CLS)–compliant way. The static property that is referenced can be used to provide the value of a property in XAML. XAML Attribute Usage <object property="{x:Static prefix:typeName.staticMemberName}" ...
https://docs.microsoft.com/en-us/dotnet/desktop-wpf/xaml-services/xstatic-markup-extension?view=netframework-4.8
CC-MAIN-2020-10
en
refinedweb
Hebrews Thompson_Hebrews_JDE_djm.indd 1 10/10/08 10:23:49 AM C om m e n t a r i e s o n the N e w T e s t a m e n t General Editors Mikeal C. Parsons and Charles H. Talbert A d v i s o ry B o a r d Paul J. Achtemeier Loveday Alexander C. Clifton Black Susan R. Garrett Francis J. Moloney Thompson_Hebrews_JDE_djm.indd 2 ...
https://pl.b-ok.org/book/2378026/9772f3?dsource=recommend
CC-MAIN-2020-10
en
refinedweb
ASP.NET SignalR is a new HTTP technology that allows for a persistent connection between a client and a server. Check out for more information on SignalR. Here is a tutorial on creating a simple “Chat” SignalR server application using C# and ASP.NET MVC 4 in Visual Studio 2012. The client application will be an ASP.NET...
http://blog.medhat.ca/2013/04/
CC-MAIN-2020-10
en
refinedweb
Off the back of the Interface Monitoring post I had created a class that queries the Ens.AlertRequest global and returns the entries between 6pm the night before and 6am in the morning. I tested this build in our T&D environments and the build worked very well. However in our production environment the query is being t...
https://community.intersystems.com/post/ensalertrequest-summary-queries-timing-out
CC-MAIN-2020-10
en
refinedweb
Binds a RecordSet object or other data provider to a UI component or other data consumer using a custom function that you create to format the data. Binds a RecordSet object or other data provider to a UI component or other data consumer using special string replacements. The DataGlue object allows developers to easily...
http://etutorials.org/Macromedia/Fash+remoting.+the+definitive+guide/Part+III+Advanced+Flash+Remoting/Chapter+15.+Flash+Remoting+API/DataGlue+Object/
CC-MAIN-2020-10
en
refinedweb
- Type: Bug - Status: Open (View Workflow) - Priority: Minor - Resolution: Unresolved - Component/s: blueocean-plugin - - Environment:Jenkins 2.57 BlueOcean 1.0.1 Problem There appears to be a mismatch between what the Blue Ocean API returns that causes the UI to become disoriented and hide information when dealing wit...
https://issues.jenkins-ci.org/browse/JENKINS-44493
CC-MAIN-2020-10
en
refinedweb
Provides data for a chart control's ChartControl.CustomDrawSeries (WebChartControl.CustomDrawSeries) event. Namespace: DevExpress.XtraCharts Assembly: DevExpress.XtraCharts.v19.2.dll public class CustomDrawSeriesEventArgs : CustomDrawSeriesEventArgsBase Public Class CustomDrawSeriesEventArgs Inherits CustomDrawSeriesEv...
https://docs.devexpress.com/CoreLibraries/DevExpress.XtraCharts.CustomDrawSeriesEventArgs
CC-MAIN-2020-10
en
refinedweb
a grep through allegro's include files showed me the use of the variable name 'aspect' in the following file : matrix.h. This makes allegro completely unusable by the aspectc++ weaver () since aspect is the keyword for defining aspects (as class is a keyword for defining classes in regular C++). this is a big bummer fo...
https://www.allegro.cc/forums/thread/483246/483246
CC-MAIN-2020-10
en
refinedweb
Lithium Framework: Getting Started. There are a few things we will do in this respect. We will set up a Controller to route URL requests to. This Controller will get and process some information from the database with the help of a data Model. This information will then be displayed in the browser using a View. All sta...
https://www.sitepoint.com/lithium-framework-getting-started/
CC-MAIN-2020-10
en
refinedweb
Dart is the programming language for Flutter, Google's UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase. This codelab introduces you to Dart, with a focus on features that Java developers might not expect. You can be writing Dart functions in 1 minute...
https://codelabs.developers.google.com/codelabs/from-java-to-dart/index.html?index=..%2F..codemotion-2016
CC-MAIN-2020-10
en
refinedweb
Just wanted to share this indicator I've been working on in case anyone sees any value. The basic idea is to determine trend while reducing the false positives in moving averages. So instead of caring about whether a price is above or below a MA, it looks at the relationship between the mean of the price for n periods ...
https://www.quantopian.com/posts/market-bias-indicator
CC-MAIN-2018-30
en
refinedweb
Luuk de Reus1,936 Points Python syntax error (I'm noobie) I can't figure it out... anyone got some time to help me? def add(lol,lmao): try: lol = float(lol) lmao = float(lmao) except ValueError: return None else: return(lol + lmao) 1 Answer Ken AlgerTreehouse Teacher Luuk; Your last return statement needs to be indente...
https://teamtreehouse.com/community/python-syntax-error-im-noobie
CC-MAIN-2018-30
en
refinedweb
Agilent 3.125 Gb/s Serial BERT N5980A User Guide Notices © Agilent Technologies, Inc. 2006 N5980-91010 Edition Revision 1.0 May 2006 Printed in Germany Agilent Technologies, Deutschland GmbH Herrenberger Str. 130 Warranty. 71034 Böblingen, Germany Technology Licenses For Assistance and Support The hardware and/or softw...
https://manualzz.com/doc/2016167/agilent-technologies-j3916a-computer-hardware-user-manual
CC-MAIN-2018-30
en
refinedweb
Subscriber portal Hi All, I am writing windows store app and phoe app in c# We have portable class library which have comman logic for both store and phone app. In store app we have list view. to fetch more records in list view we don't want to implement ISupportIncrementalLoading class, as it is not available in porta...
https://social.msdn.microsoft.com/Forums/en-US/ff875439-ee49-4707-a79c-64d256484ff4/how-to-detect-list-view-scroll-end-to-fetch-more-records?forum=winappswithcsharp
CC-MAIN-2018-30
en
refinedweb
JUnit Theories: First Thoughts One of my favourite additions to JUnit 4.4 was the @Theory annotation which allows us to write parameterised tests rather than having to recreate the same test multiple times with different data values or creating one test and iterating through our own collection of data values. Previousl...
https://markhneedham.com/blog/2008/12/12/junit-theories-first-thoughts/
CC-MAIN-2018-30
en
refinedweb
The 1.0.43 version of the Python client was released on April 24, 2015 and can be downloaded here. This release boasts the following features: - Allow for a ‘None’ as the set value for index creation methods. Support scans and queries against a namespace alone, with the set given as None. (AER-3462) - Consistent Unicod...
https://discuss.aerospike.com/t/python-client-release-1-0-43-april-24-2015/1261
CC-MAIN-2018-30
en
refinedweb
ot::NetworkSourceModule Class ReferenceThe module and factory to drive the reception of network event updates. More... [Network Classes] #include <NetworkSourceModule.h> Inheritance diagram for ot::NetworkSourceModule: Detailed DescriptionThe module and factory to drive the reception of network event updates. It builds...
http://studierstube.icg.tugraz.at/opentracker/html/classot_1_1NetworkSourceModule.php
CC-MAIN-2016-22
en
refinedweb
There have been times when users (particularly from the Windows development arena) come to the Tcl community perplexed as to how to get started.Some of the issues they face are: - What are the best tools for writing Tcl programs? - How do I run Tcl programs? - How do I debug Tcl programs? - Where do I find useful Tcl o...
http://wiki.tcl.tk/3599
CC-MAIN-2016-22
en
refinedweb