text
stringlengths
454
608k
url
stringlengths
17
896
dump
stringclasses
91 values
source
stringclasses
1 value
word_count
int64
101
114k
flesch_reading_ease
float64
50
104
1 Off Topic discussions / Re: Slowing Down But Not Hitting the Brakes« Last post by mauro on Today at 10:13:57 am » Condolence. Most of our fathers-mothers made us the kind of person we now are, also wherever not directly wanting that. OS2World.com Forum is back !!! Remember to visit OS2World at: Are you using a multi...
https://www.os2world.com/forum/index.php?PHPSESSID=c9q7m2mtra1qdh5uckrafeljft&action=recent
CC-MAIN-2022-21
refinedweb
596
67.25
We incremental compilation for Kotlin/JS by default - Brings improvements to Kotlin/Native As always, we’d like to thank our numerous external contributors. The complete list of changes for this release can be found in the change log. Let’s dive in! Faster Gradle builds by parallelizing tasks The Kotlin Gradle plugin c...
https://blog.jetbrains.com/kotlin/2019/01/kotlin-1-3-20-released/?replytocom=47103
CC-MAIN-2019-13
refinedweb
2,140
54.32
Now that we have written a few programs let us look at the instructions that we used in these programs. There are basically three types of instructions in C: - Type Declaration Instruction - Arithmetic Instruction - Control Instruction The purpose of each of these instructions is given below: (a) Type Declaration Instr...
http://www.loopandbreak.com/c-instructions/
CC-MAIN-2021-17
refinedweb
898
65.32
As enterprises move workloads to the cloud, transparency and visibility across development and operations (DevOps) teams are really important. The real power of the Slack messaging platform is to help teams collaborate and coordinate their work no matter where they are located, in the field office, at home, or anywhere...
https://developer.ibm.com/devpractices/devops/tutorials/integrate-a-cicd-pipeline-to-a-kubernetes-cluster-with-slack/
CC-MAIN-2020-50
refinedweb
1,583
64.41
Simple HTTP server I repurposed some generic micropython HTTP server code to run on the gpy import machine; from machine import Pin pins = [machine.Pin(i, machine.Pin.IN) for i in ('P23', 'P22', 'P21')] print (pins) () It's supposed to show the status of the pins in a table but when I run it & try to login I get [Pin('...
https://forum.pycom.io/topic/4625/simple-http-server
CC-MAIN-2022-33
refinedweb
265
72.05
I need to install a package from PyPi straight within my script. Maybe there’s exists module or distutils (distribute, pip) ability which allows me just execute something like pypi.install('requests') and requests will be installed into my virtualenv, and I should not type pip install requests in my shell? You can also...
https://exceptionshub.com/installing-python-module-within-code.html
CC-MAIN-2022-05
refinedweb
241
62.78
Protocol Buffers, for data exchange with a server beyond JSON Protocol Buffers is a data definition language created by Google that can be compared to IDL, but is much simpler. Its syntax, based on the C language, evokes that of JSON, with the difference of the use of typed variables. Google has defined this language f...
http://www.scriptol.com/programming/protocol-buffers.php
CC-MAIN-2016-40
refinedweb
644
55.74
Ant 1.6 introduces support for XML namespaces. This page tries to show what this means, how it can be used, and where potential problems exist in the current implementation (as of 1.6 beta 3). History All releases of Ant prior to Ant 1.6 do not support XML namespaces. No support basically implies two things here: - Ele...
http://wiki.apache.org/ant/NewAntFeaturesInDetail/XmlNamespaceSupport?action=diff
CC-MAIN-2016-40
refinedweb
404
60.24
iPath Struct Reference [Geometry utilities] #include <igeom/path.h> Detailed Description A path in 3D. An object or camera can use this object to trace a path in 3D. This is particularly useful in combination with csReversibleTransform::LookAt(). Definition at line 40 of file path.h. Member Function Documentation Calcu...
http://www.crystalspace3d.org/docs/online/api-1.4.1/structiPath.html
CC-MAIN-2016-40
refinedweb
192
55.5
Code. Collaborate. Organize. No Limits. Try it Today. In this article we show how odeint can be adapted to work with VexCL. odeint is a library for solving ordinary differential equations (ODE) numerically with C++. ODEs are important in many scientific areas and hence numerous applications for odeint can be found. Vex...
http://www.codeproject.com/Articles/429183/Solving-ordinary-differential-equations-with-OpenC
CC-MAIN-2014-15
refinedweb
2,222
54.93
Design-Time Code Generation by using T4 Text Templates Note This article applies to Visual Studio 2015. If you're looking for Visual Studio 2017 documentation, use the version selector at the top left. We recommend upgrading to Visual Studio 2017. Download it here.. Note A model is a data source that describes a partic...
https://docs.microsoft.com/en-us/visualstudio/modeling/design-time-code-generation-by-using-t4-text-templates?view=vs-2015
CC-MAIN-2018-47
refinedweb
720
50.02
fn:resolve-QName( qname as xs:string?, element as element() ) as xs:QName? Returns. Sometimes the requirement is to construct an xs:QName without using the default namespace. This can be achieved by writing: if ( fn:contains($qname, ":") ) then ( fn:resolve-QName($qname, $element) ) else ( fn:QName("", $qname) ) If the...
https://docs.marklogic.com/fn:resolve-QName
CC-MAIN-2022-27
refinedweb
271
52.39
The Module Import in JavaScript Has a Drawback 1. Named imports and autocomplete Let's say you write a simple JavaScript module: javascript // stringUtils.jsexport function equalsIgnoreCase(string1, string2) {return string1.toLowerCase() === string2.toLowerCase();} This is a module stringUtils. The module has a named e...
https://dmitripavlutin.com/javascript-import-module-drawback/
CC-MAIN-2021-49
refinedweb
489
66.44
I… If you ever feel the need to host a database on a server and do not have the resources to do so, you can setup the database locally on a laptop and expose the service to the outside world using ngrok. Please be aware that using ngrok has it’s own advantages and disadvantages and the connectivity isn’t as reliable as...
https://varun-verma.medium.com/?source=post_internal_links---------1----------------------------
CC-MAIN-2021-21
refinedweb
910
63.59
I just came back to and saw, that there have been no recent changes. I wonder, if this is the current state or if there has been further development on the topic. If not I'd like to make a few suggestions Describe memory offsets in multiples of the plattforms native pointer size (i.e. sizeof(ptrsize_t)). Currently the ...
http://forum.dlang.org/thread/e9arn9$uir$1@digitaldaemon.com
CC-MAIN-2014-35
refinedweb
315
63.8
Afternoon, I'm working on a DOM-based application which I want to be compatible with as much of the installed base of Python DOM implementations as possible. I'm using DOM Level 2 Namespace-aware Core methods only, with an importer layer that fixes up known bugs in widely-deployed DOMs. I've checked minidom from Python...
https://mail.python.org/pipermail/xml-sig/2003-March/009315.html
CC-MAIN-2017-39
refinedweb
166
57.47
PWM sound output PWM signal can change the brightness of LEDs. You must be quite familiar with it through some projects. What's more, it allows the buzzer to generate sounds. This example shows how to use the PWMOut to generate notes. It plays musical notes from 1 to 7 repeatedly. What you need - SwiftIO Feather (or Sw...
https://docs.madmachine.io/tutorials/general/simpleio/pwm-sound-output
CC-MAIN-2022-21
refinedweb
341
69.48
#include "dmx.h" #include "dmxstat.h" #include "dmxlog.h" #include "Xos.h" Used to compute a running average of value. Turn on XSync statistic gathering and printing. Print every interval seconds, with lines for the first displays. If interval is NULL, 1 will be used. If displays is NULL, 0 will be used (meaning a line...
http://dmx.sourceforge.net/html/dmxstat_8c.html
CC-MAIN-2017-17
refinedweb
183
70.39
/*************************************************** Write a program that allows the user to enter a sequence of "moves" and prints out their position after the moves. Moves are: left - means a 90 deg counter clockwise turn (in place) right - means a 90 deg clockwise turn (in place) step - means step forward 1 unit sto...
https://www.usna.edu/Users/cs/lmcdowel/courses/si204/S10/classes/class10_TE2v2_cpp.htm
CC-MAIN-2018-22
refinedweb
300
84.07
Program To Check Whether A Number Is A Perfect Number Or Not In this blog, we will create a program in C# to check if an entered number is a perfect number or not. Program To Check Whether A Number Is A Perfect Number Or Not Introduction Perfect numbers. Program to check perfect number using System; using System.Collec...
https://tutorialslink.com/Articles/Program-To-Check-Whether-A-Number-Is-A-Perfect-Number-Or-Not/2364
CC-MAIN-2021-43
refinedweb
436
67.45
Bugs item #3526361, was opened at 2012-05-13 11:38 Message generated for change (Tracker Item Submitted) made by You can respond by visiting: Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Non...
http://sourceforge.net/p/pyopengl/mailman/pyopengl-devel/?viewmonth=201205
CC-MAIN-2014-10
refinedweb
726
65.93
In this series looking at features introduced by every version of Python 3, this is the first looking at Python 3.5. In it we examine one of the major new improvements in this release, new syntax for coroutines. This is the 8th of the 15 articles that currently make up the “Python 2to3” series. As I approach the halfwa...
https://www.andy-pearce.com/blog/posts/2021/Apr/python-2to3-whats-new-in-35-part-1-coroutines/
CC-MAIN-2021-49
refinedweb
4,618
61.77
[download]. Whilst not completely oblivious to the problem you are seeking to address, I think there are (at least) two problems with what you are proposing: And none of the existing layers would 'go away' in the process. Backward compatibility, not to mention vested interests, mean that all the existing layers will n...
http://www.perlmonks.org/index.pl?node_id=950529
CC-MAIN-2015-48
refinedweb
2,092
71.44
Python Effector - Step Effector Spline imitate On 19/02/2013 at 13:39, xxxxxxxx wrote: Hi, Could any one help me with getting the spline data, from a user data on a python effector, to control the strength the effector has on the clones, similar to the spline in the Step Effector. Im trying to make use of util.RangeMap...
https://plugincafe.maxon.net/topic/6956/7832_python-effector--step-effector-spline-imitate
CC-MAIN-2020-40
refinedweb
691
67.04
7.6. Estimating a probability distribution nonparametrically with a kernel density previous recipe, we applied a parametric estimation method. We had a statistical model (the exponential distribution) describing our data, and we estimated a single parameter (the rate of the distribution). Nonparametric estimation deals...
https://ipython-books.github.io/76-estimating-a-probability-distribution-nonparametrically-with-a-kernel-density-estimation/
CC-MAIN-2019-09
refinedweb
878
52.15
When QLabel widgets. These widgets have the size Vertical Policy set to Preferred which automatically resizes the widgets down to fit the available space. The results are unreadable. Problem of Too Many Widgets.png Settings the Vertical Policy to Fixed keeps the widgets at their natural size, making them readable again...
https://www.pythonguis.com/tutorials/pyqt6-qscrollarea/
CC-MAIN-2022-40
refinedweb
1,087
62.38
Introduction Neural networks are one of the methods for creating artificial intelligence in computers. They are a way of solving problems that are too difficult or complicated to solve using traditional algorithms and programmatic methods. Some believe that neural networks are the future of computers and ultimately, hu...
http://www.primaryobjects.com/CMS/Article105
CC-MAIN-2015-32
refinedweb
3,335
59.9
Almost half a million ArrayList<String> words too much? I put together a ~400,000 word list for my password generating program. It has 3 modes which choose words from this list, and I fear that the program will lag or be slow to load. Do I need to add some extra efficiency lines of code to keep it snappy? Here is what ...
http://www.java-index.com/java-technologies-archive/519/new-to-java-5196830.shtm
crawl-001
refinedweb
192
75.71
Created on 2003-08-27 12:48 by jepler, last changed 2003-08-30 23:52 by rhettinger. This issue is now closed. Hello. Recently, Generator Comprehensions were mentioned again on python-list. I have written an implementation for the compiler module. To try it out, however, you must be able to rebuild Python from source, b...
http://bugs.python.org/issue795947
crawl-003
refinedweb
304
55.64
Amazons since couple years without any problem and now that they are providing a platform with two Tesla M2050s to test my CUDA apps, I just want to say Thank You Amazon. already received the AMI. Therefore, you can skip the set up part. benefiting. Utilizing GPUs to do general purpose scientific and engineering comput...
http://www.codeproject.com/script/Articles/View.aspx?aid=314776
CC-MAIN-2016-44
refinedweb
215
55.03
There. I assume that you have already a good idea what Prometheus, Grafana and OpenShift are and that you have access to an OpenShift cluster which allows you to download docker images from the internet. The example has been tested with OpenShift 3.7 and might not work with older OpenShift versions. The first step will...
https://labs.consol.de/de/development/2018/01/19/openshift_application_monitoring.html
CC-MAIN-2021-04
refinedweb
2,230
53.31
33123/machine-learning-and-python-code So, I recently started with Machine Learning and coding in Python. I've been trying to figure out the partition method used in the Amazon fine food review data from kaggle and its code. What i also can't understand, is the purpose of the last 3 lines of code. %matplotlib inline im...
https://www.edureka.co/community/33123/machine-learning-and-python-code
CC-MAIN-2019-39
refinedweb
313
53.37
fredrikj.net / blog / Additional results August 26, 2016 The preprint Short addition sequences for theta functions (arXiv:1608.06810) by Andreas Enge, Bill Hart and myself is now available. We prove some nice new theorems about integer sequences of a very simple kind, namely successive values of quadratic polynomials s...
http://fredrikj.net/blog/2016/08/additional-results/
CC-MAIN-2017-13
refinedweb
2,393
51.01
Category:Wren-gmp This is an example of a library. You may see a list of other libraries used on Rosetta Code at Category:Solutions by Library. Wren-gmp is a module which brings the speed and power of the GNU Multiple Precision Arithmetic Library ('GMP') to the Wren programming language. It consists of three classes: M...
http://rosettacode.org/wiki/Category:Wren-gmp
CC-MAIN-2022-27
refinedweb
375
68.7
I tend to think that pie charts should be avoided in 99% of the cases that they are used in. Unless your goal is to mislead (which is sometimes the case!), or you have a strict use case for them, you can normally find a better way to communicate your point. That being said, just because we won’t do something, doesn’t m...
https://fcpython.com/tag/pie-chart
CC-MAIN-2018-51
refinedweb
434
70.23
We. We have just published an article on how to use the Navigator and Tabbar React components. Please take a look here after reading this article. Onsen UI 1.x was built on top of Angular. The Angular dependency made it hard for us to develop React components for Onsen UI 1.x since Angular and React don’t play well tog...
https://onsen.io/blog/react-onsen-ui-preview/
CC-MAIN-2018-47
refinedweb
1,134
65.73
I couldn’t find anything related to this and the closest post was this: From the wiki: SDL_GetWindowSurface - SDL Wiki You may not combine this with 3D or the rendering API on this window. But it seems to work with X11 and also with a software renderer on wayland, kmsdrm and X11. Tested on the git version. Using sway f...
https://discourse.libsdl.org/t/sdl-getwindowsurface-works-with-renderer-on-x11/37782
CC-MAIN-2022-33
refinedweb
183
51.34
OpenGL Discussion and Help Forums > OpenGL Developers Forum > OpenGL under Windows > Error of "GL_HISTOGRAM was not declared" PDA View Full Version : Error of "GL_HISTOGRAM was not declared" JCheng 05-03-2010, 03:22 AM My program came with error of "GL_HISTOGRAM was not declared", but I did include <gl.h> at its header...
https://www.opengl.org/discussion_boards/archive/index.php/t-170871.html?s=850dd9b2a9a5466583fc0bc0b3a637b0
CC-MAIN-2018-05
refinedweb
157
72.53
Windows 8: Go mobile with Windows 8 Many of the improvements made to Windows 8 are designed to streamline and help you manage mobile connectivity. Billy Anders People want the same level of mobility on their PCs as they get on their smartphones. It’s unlikely that they just want to connect to the Internet. They want to...
https://technet.microsoft.com/en-us/library/dn237242.aspx
CC-MAIN-2017-22
refinedweb
2,298
53.21
subprocess execute shell - Calling. See the documentation. stream = os.popen("some_command with args")will do the same thing as os.systemexcept. See the documentation. The Popenclass of the subprocessmodule. This is intended as a replacement for os.popenbut. The callfunction from the subprocessmodule. This is basically...
http://code.i-harness.com/en/q/15c8c
CC-MAIN-2019-09
refinedweb
748
60.61
C++ coutPritesh Cout : Display Output to User Using Screen(Monitor) In C++ Insertion operator is used to display value to the user. The value may be some message in the form of string or variable. Syntax : Display Value to User cout << variable; Explanation : Insertion Operator - Include <iostream.h> header file to use...
http://www.c4learn.com/cplusplus/cpp-cout/
CC-MAIN-2019-39
refinedweb
461
56.66
intermediate Store is a data structure that holds a state and a function for extracting a representation of it. If we think in a component oriented fashion when building user interfaces, this datatype is the most basic unit. This structure is also a Comonad because it represents a lazy unfolding of all possible states ...
https://arrow-kt.io/docs/arrow/data/store/
CC-MAIN-2018-51
refinedweb
186
58.48
On Sat, Jul 26, 2014 at 10:04 PM, Eric W. Biederman<ebiederm@xmission.com> wrote:> David Drysdale <drysdale@google.com> writes:>>> The last couple of versions of FreeBSD (9.x/10.x) have included the>> Capsicum security framework [1], which allows security-aware>> applications to sandbox themselves in a very fine-graine...
https://lkml.org/lkml/2014/7/28/408
CC-MAIN-2017-51
refinedweb
760
52.49
02 March 2012 11:11 [Source: ICIS news] (adds analyst comments, background) By Nurluqman Suratman ?xml:namespace> SINGAPORE “We just did a pre-feasibility study with a partner. We will do a year-long feasibility study and decide whether to go ahead [with the cracker project],” the spokesperson said, without elaborating...
http://www.icis.com/Articles/2012/03/02/9537611/thailands-ivl-mulls-building-us-shale-gas-based-cracker.html
CC-MAIN-2013-20
refinedweb
266
50.87
Suppose, we have a list and the power of a list is defined by the sum of (index + 1) * value_at_index over all indices. Alternatively, we can represent it like this − $$\displaystyle\sum\limits_{i=0}^{n-1} (i+1)\times list[i]$$ Now, we have a list nums that has N positive integers. We can select any singular value in t...
https://www.tutorialspoint.com/program-to-find-out-the-maximum-final-power-of-a-list-in-python
CC-MAIN-2021-49
refinedweb
442
62.31
Asked by: Reading SharePoint List from Console Application Question I'm writing a console application that needs to access a SharePoint list on a remote server. It needs to read the "table" from the list (do not need to write/modify, just read the data), and then process the data into a report (filtering it by date, mo...
https://social.msdn.microsoft.com/Forums/en-US/87b6c6eb-9561-472b-b9ed-5417c0a724e8/reading-sharepoint-list-from-console-application?forum=sharepointdevelopmentprevious
CC-MAIN-2022-05
refinedweb
848
69.72
How many times you want the loop to iterate. That is the statements within the code block of a for loop will execute a series of statements as long as a specific condition remains true. Every for loops defines initializer, condition, and iterator sections. Syntax: The for loop initialize the value before the first step...
http://csharp.net-informations.com/statements/csharp-for-loop.htm
CC-MAIN-2015-11
refinedweb
368
59.43
Okay, I was given this problem, its another of those file I/O streams and I was wondering how I can change this code to be more "efficient" and change a lot of things. I'm having trouble on what I should change and what I should keep. Please help me out on this one. Thank you! Oh, this code does work by the way. Please...
https://www.daniweb.com/programming/software-development/threads/480984/write-a-program-that-reads-in-a-set-of-positive-integers-representing-test
CC-MAIN-2018-34
refinedweb
589
56.89
In today’s Programming Praxis exercise, we have to write a program to generate form letters. Let’s get started, shall we? First, some imports: import Control.Applicative ((*>), (<*>), (<$>)) import Text.CSV import Text.Parsec The format for the message template is simple enough to do with a plain recursive algorithm, a...
http://bonsaicode.wordpress.com/2010/11/30/programming-praxis-form-letters/
CC-MAIN-2013-48
refinedweb
183
63.8
. - The Creating Web Sites section contains articles related the basics of Web page construction. - Content Design and Presentation deals with issues involving layout, positioning, and CSS. - The Data Storage and Cookies section includes persistence and other data management concepts. - Integrating Sites and Services p...
https://blogs.msdn.microsoft.com/ie/2009/04/23/recent-changes-to-ie-content-on-msdn/
CC-MAIN-2016-07
refinedweb
2,524
63.59
4904/locating-child-nodes-in-selenium-webdriver I am using Selenium WebDriver to automate my web application. I am able to find tags using By.xpath. But I find lots of child nodes within the main node. Example: <div id="id_1"> <div> <span /> <input /> </div> </div> I tried the following: WebElement div1 = driver.findEl...
https://www.edureka.co/community/4904/locating-child-nodes-in-selenium-webdriver
CC-MAIN-2020-16
refinedweb
161
53.47
Hello, I am writing a script in python to perform a segmentation. I noticed, though, that I cannot use some packages because when I extract the shape of my images using img.shape, the number of channels is not at the end as expected but it is in second position. As an example: I have an image composed of 250 pixels in ...
https://forum.image.sc/t/image-shape-gives-number-of-channels-at-the-wrong-position/48726
CC-MAIN-2021-10
refinedweb
154
71.55
Oh, hmm. Actually, when I run: from mojo.UI import * print(getTestInstalledFonts()) ...I get an empty list. This gets populated with test installed fonts once I make them. Perhaps the opening error message could just be made more clear? Or maybe it's not needed at all, if Robofont automatically de-installs test fonts ...
https://forum.robofont.com/topic/269/crash-with-testinstalled-font/
CC-MAIN-2019-22
refinedweb
139
75.91
Important: Please read the Qt Code of Conduct - why when i want copy (with memcpy)struct array to char array , character array is null?? - stackprogramer last edited by kshegunov why when i want copy (with memcpy)struct array to char array , character array is null?? #include <iostream> #include <string.h> using namesp...
https://forum.qt.io/topic/80200/why-when-i-want-copy-with-memcpy-struct-array-to-char-array-character-array-is-null
CC-MAIN-2021-43
refinedweb
366
81.02
RationalWiki:Saloon bar/Archive39 Contents - 1 New study gives insight into the power of minority extremists - 2 Lexicon - 3 Curling up in a ball and crying for the future of humanity - 4 Not cool - 5 Books - 6 Humorous BON wandalism - 7 Has this come up yet? - 8 Griffin on Question Time - 9 WND poll fun - 10 Logic dic...
https://rationalwiki.org/wiki/RationalWiki:Saloon_bar/Archive39
CC-MAIN-2022-21
refinedweb
23,945
70.63
01 December 2010 18:03 [Source: ICIS news] LONDON (ICIS)--The Styrolution joint venture (JV) between BASF and INEOS will just hand more power to an already-small pool of producers, European acrylonitrile-butadiene styrene (ABS) consumers said on Wednesday. Buyers complained that there were only four main ABS manufactur...
http://www.icis.com/Articles/2010/12/01/9415816/styrolution-implications-concern-europe-abs-players.html
CC-MAIN-2014-42
refinedweb
472
56.39
94578/without-filling-required-required-fields-printed-console Hello, For your query you can refer this one: Hope it helps you!! This worked for me. Check this out import ...READ MORE Have you tried this one? ...READ MORE Hi Esha, you can get the number ...READ MORE Hey Joel, you can use following lines ...READ MORE Th...
https://www.edureka.co/community/94578/without-filling-required-required-fields-printed-console
CC-MAIN-2021-31
refinedweb
143
69.58
Implementation status: to be implemented Synopsis #include <stdio.h> #include <wchar.h> wint_t btowc(int c); Description The function transforms a single byte to a wide character. Arguments c - a character to be transformed. The behavior of this function is affected by the LC_CTYPE category of the current locale. Retur...
https://phoenix-rtos.com/documentation/libphoenix/posix/btowc
CC-MAIN-2020-34
refinedweb
105
60.21
@Fil thanks for pointing out the Mozilla's App Manfiest! @Ken I think prudent that Apache Cordova listen to BlackBerry's experience with the widget spec. We're both using it in similar ways and Apache Cordova will likely hit the same areas for customization. Ken, can you elaborate on how BB10 will be deviating even fur...
http://mail-archives.apache.org/mod_mbox/incubator-callback-dev/201205.mbox/%3CCAP7NMPqRFMMbKnBCiRpVq+ZkK4AkiZHURqH__8qWeT6jFbekzg@mail.gmail.com%3E
CC-MAIN-2017-13
refinedweb
529
76.11
05 November 2012 11:12 [Source: ICIS news] SINGAPORE (ICIS)--China National Offshore Corp (CNOOC) is expected to spend about $5.0bn (€3.9bn) on Queensland Curtis LNG (QCLNG), in which the company has acquired an equity interest, ratings firm Moody’s Investor Service said on Monday. The amount will cover the acquisition...
http://www.icis.com/Articles/2012/11/05/9610679/cnooc-likely-to-spend-5bn-on-queensland-curtis-lng.html
CC-MAIN-2015-11
refinedweb
276
58.32
So, I run meteor test --driver-package practicalmeteor:mocha and it takes maybe a minute to a minute and a half to run a test. It there an obvious gotcha here that I’m missing? Meteor test very long build times Today i tried wallaby js. It’s expensive but i was immediatly hooked and had to bought it, what a time saver ...
https://forums.meteor.com/t/meteor-test-very-long-build-times/20599/10
CC-MAIN-2019-04
refinedweb
738
65.73
PetClinic is a sample application demonstrating the usage of Spring Python. It uses CherryPy as the web server object. A detailed design document (NOTE: find latest version, and click on raw) is part of the source code. You can read it from here or by clicking on a hyperlink while running the application. Assuming you ...
https://docs.spring.io/spring-python/1.1.x/reference/html/samples.html
CC-MAIN-2017-39
refinedweb
2,332
52.46
Test::Assert - Assertion methods for those who like JUnit. # Use as imported methods # package My::Test; use Test::Assert ':all'; assert_true(1, "pass"); assert_true(0, "fail"); use Test::More; assert_test(sub { require_ok($module) }); # Use for debugging purposes # Assertions are compiled only if Test::Assert was used...
http://search.cpan.org/~dexter/Test-Assert-0.0504/lib/Test/Assert.pm
CC-MAIN-2015-32
refinedweb
680
58.38
This module is an AnyEvent user, you need to make sure that you use and run a supported event loop. Loading this module will install the necessary magic to seamlessly integrate IO::AIO into AnyEvent, i.e. you no longer need to concern yourself with c...MLEHMANN/AnyEvent-AIO-1.1 - 21 Jul 2009 03:34:51 GMT - Search in di...
https://metacpan.org/search?q=AnyEvent-AIO
CC-MAIN-2016-36
refinedweb
280
64.81
Word embeddings or word vectors represent each word numerically so that the vector matches how that word is used or what it means. Vector encodings are learned by considering the context in which the words appear. Words that appear in similar contexts will have similar vectors. For example, the vectors for “leopard”, “...
https://thecleverprogrammer.com/2020/09/11/word-embeddings-in-machine-learning/
CC-MAIN-2021-43
refinedweb
711
58.99
#include <gromacs/analysisdata/dataframe.h> Value type wrapper for non-mutable access to a data frame. Default copy constructor and assignment operator are used and work as intended. Typically new objects of this type are only constructed internally by the library and in classes that are derived from AbstractAnalysisDa...
https://manual.gromacs.org/current/doxygen/html-lib/classgmx_1_1AnalysisDataFrameRef.xhtml
CC-MAIN-2021-17
refinedweb
326
60.72
In the context of .NET applications, settings are data that are not the main input or output of a program, but are nonetheless necessary for the program to function. Like business data, settings can change. An example of a setting is a folder path or a Web Service URI. Settings are often stored in application configura...
http://www.codeproject.com/Articles/136152/Create-a-Custom-Settings-Provider-to-Share-Setting?fid=1600764&df=90&mpp=10&noise=1&prof=True&sort=Position&view=None&spc=Relaxed
CC-MAIN-2013-48
refinedweb
1,725
55.24
What is the most efficient algorithm for counting the number of factors of an integer? What is the most efficient algorithm for counting the number of factors of an integer? It think that the 'policy' of every forum is that you post your code,thus your attempt of achieving what you are asking,and based on that improve ...
http://cboard.cprogramming.com/c-programming/150328-efficient-algorithm-counting-number-factors.html
CC-MAIN-2016-40
refinedweb
1,009
69.72
When two pure tones are nearly in tune, you hear beats. The perceived pitch is the average of the two pitches, and you hear it fluctuate as many times per second as the difference in frequencies. For example, an A 438 and an A 442 together sound like an A 440 that beats four times per second. (Listen) As the difference...
https://www.johndcook.com/blog/2016/03/30/acoustic-roughness/
CC-MAIN-2017-43
refinedweb
582
73.47
genGDRTests.pl - Creates GDR test files from test sql scripts. This version creates no test conditions for anything other than the main test file. All files, other than the main test files are fixed, are the same for each generated test. Test is run tw2ce to generate tests only for stable values. (Dates are still a pro...
http://search.cpan.org/~dedmedved/VSGDR-UnitTest-TestSet/genGDRTests.pl
CC-MAIN-2014-10
refinedweb
172
55.03
- × A React framework for building text editors. Filed under user interfaceShow All Before getting started, please be aware that we recently changed the API of Entity storage in Draft. The latest version, v0.10.0, supports both the old and new API. Following that up will be v0.11.0which will remove the old API. If you ...
https://www.javascripting.com/view/draft-js
CC-MAIN-2019-13
refinedweb
258
60.92
Over a year ago, when I first tried the OLPC/Sugar software, I was fascinated by the activities in TamTam applications. Had any of them been available in my time, I may even have liked attending, go to:. Getting started You will need to install the following packages: csound and csound-python. Csound requires an XML-li...
http://opensourceforu.com/2009/05/creating-rhythmic-noise/
CC-MAIN-2016-36
refinedweb
1,002
67.55
Having to interpret strings and extract information always has been necessary and is mostly related to writing complex looking code and logic. Many things can be handled with tokenizers, however with these, there is not much room for different variants of a string or separators that vary from case to case. Regular expr...
http://www.codeproject.com/Articles/23074/A-Tiny-Variable-String-Splitter?msg=2407548
CC-MAIN-2013-48
refinedweb
1,788
60.14
The world's most popular open source database Russell Dyer is the editor for the MySQL Knowledge Base and the author of MySQL in a Nutshell (O'Reilly 2005). He has written on MySQL for several magazines including Unix Review, SysAdmin and ONlamp.com and lives in New Orleans. By Russell Dyer. MySQL can be embedded with ...
http://dev.mysql.com/tech-resources/articles/embedding-mysql-server.html
crawl-002
refinedweb
2,485
62.58
Hi all i was making a functionality to upload an image .. the package import flash.filesystem.file works in desktop app but in web app i am unable to import the package..how come this... Hi, The package, flash.filesystem.file is available in AIR application not in Web application is there alternate way for this web..i ...
https://forums.adobe.com/thread/531045
CC-MAIN-2017-17
refinedweb
284
50.94
You have two cows From Uncyclopedia, the content-free encyclopedia You have two cows is the philosophical truth of the entire world. Category two may contain contributions from the Internet as well as Uncyclopedia contributors. Correction. You had two cows. Category One: Misc. - U.S. Democracy - You have two cows. Peop...
http://uncyclopedia.wikia.com/wiki/You_have_two_cows?oldid=65171
CC-MAIN-2015-32
refinedweb
9,434
85.49
I am trying to create a method in a class that will create a console window to the desired size. However I am having some serious issues with this seemingly simple task. This code below is a hash together of code from Adrianxw's site and some stuff I found here. This code here works exactly as expected. But the second ...
https://cboard.cprogramming.com/windows-programming/44086-console-resizing-printable-thread.html
CC-MAIN-2017-13
refinedweb
198
52.66
This looks at the top 1000 terms used in ooo-dev post subjects since this project moved to Apache in June 2011. The only thing I removed was "Re:", since that would have dominated the cloud and is machine, not user written In this particular cloud, I used all posts, including responses. So if a term was used in a thre...
http://mail-archives.apache.org/mod_mbox/incubator-ooo-dev/201206.mbox/%3CCAP-ksoiVK0x2gPtSCex=69dzB9a1nUwwQUtxCryHLvSyrLFgOw@mail.gmail.com%3E
CC-MAIN-2014-15
refinedweb
189
71.65
Hello,This is some of the things that I still need to do to get gnulib to the point of compiling on OpenVMS. * Config.h OpenVMS needs __UNIX_PUTC macro defined for putc_unlocked and friends to be visible. * lib/passfd.c This needs "_X_OPEN_SOURCE_EXTENDED" for the XPG4 V2 features in the code to compile on OpenVMS. Spe...
https://lists.gnu.org/archive/html/bug-gnulib/2017-07/msg00021.html
CC-MAIN-2019-47
refinedweb
613
64.81
C# - Partial Class Each class in C# resides in a separate physical file with a .cs extension. C# provides the ability to have a single class implementation in multiple .cs files using the partial modifier keyword. The partial modifier can be applied to a class, method, interface or structure. For example, the following...
https://www.tutorialsteacher.com/csharp/csharp-partial-class
CC-MAIN-2019-18
refinedweb
513
50.02
MS Dynamics CRM 3.0 I have a very simple SAX script from which I get results like 'Title1:Description','Title2:Description'. I want to split each result on the colon, using the two resulting elements as key/value pairs in a dictionary. I've tried a couple different approaches with lists etc, but I keep getting an 'Inde...
http://www.megasolutions.net/python/Splitting-SAX-results-78728.aspx
CC-MAIN-2013-48
refinedweb
189
52.76
From my observations as a Java developer working on Windows workstations, NTFS is slow compared to Linux filesystems. Question is, is there anything in the NTFS driver that can be manually tuned, for example give it more memory for cache? Enable some experimental algorithms? If that's not available, is there perhaps an...
http://superuser.com/questions/240731/windows-with-a-better-filesystem/240787
CC-MAIN-2014-42
refinedweb
805
64
I came across this construct in an Angular example and I wonder why this is chosen: _ => console.log('Not using any parameters'); I understand that the variable _ means don't care/not used but since it is the only variable is there any reason to prefer the use of _ over: () => console.log('Not using any parameters'); S...
https://javascriptinfo.com/view/45617/using-underscore-variable-with-arrow-functions-in-es6-typescript
CC-MAIN-2020-50
refinedweb
858
62.27
I am trying to make a program that will convert a decimal number to its binary equivilant. It will output the first number but I am having trouble figuring out how to use the previously found quotient to find a new quotient. I tried using loops to do this and they are always infinite. Here is the code I have written so...
https://cboard.cprogramming.com/cplusplus-programming/71366-converting-decimal-binary-numbers-using-recursion.html
CC-MAIN-2017-17
refinedweb
124
51.72
CodePlexProject Hosting for Open Source Software Aug 24 2:48 PM(1 post) first post: sblankenship wrote: I noticed an issue this morning with date comparisons. they appear ... Jan 25 9:08 PM(1 post) first post: Xifeidanhu wrote: I try to use LessThanOrEqualTo to compare int, but it is not workin... Jul 26, 2016 10:19 AM...
http://foolproof.codeplex.com/discussions/topics/general
CC-MAIN-2017-39
refinedweb
242
78.28
Its not an uncommon request (in fact I got one in email today) to want to receive: 1. Non-XML data in a receive-port 2. XML messages of differing XML schemas within a single receive port So how do you do that with BizTalk Server? 1. Set the messagetype property on your receive port to System.xml.xmldocument (yes I know...
https://blogs.msdn.microsoft.com/scottwoo/2004/06/02/untyped-receive-ports-in-biztalk-server-2004/
CC-MAIN-2017-13
refinedweb
484
71.44
17 July 2008 17:11 [Source: ICIS news] By Nigel Davis LONDON (ICIS news)--The legal structures may have been agreed but the difficult work lies ahead for ?xml:namespace> The opportunities are significant as polymer and petrochemicals demand grows on the back of the expanding economy. The much larger Braskem is ahead of...
http://www.icis.com/Articles/2008/07/17/9141170/insight-quattor-to-make-mark-on-brazil-petchems.html
CC-MAIN-2014-41
refinedweb
449
51.38
This article defines the fundamentals of C# in detail. Question 1: Variables and its DeclarationAnswer A variable is an entity whose value can keep changing. For example,. Various types of data such as a character, an integer or a string can be stored in variables. Based on the type of data that needs to be stored in a...
https://www.c-sharpcorner.com/UploadFile/d0a1c8/basics-content-in-C-Sharp-net/
CC-MAIN-2022-05
refinedweb
4,211
59.6
Definition of ATM Program in C The ATM Program in C is written in C programming language which provides an ease to read and comprehend the instructions used. This program for using ATM machine is built on the concept of handling an account individually. It can be defined as actually simple code structure of ATM transac...
https://www.educba.com/atm-program-in-c/
CC-MAIN-2022-40
refinedweb
1,084
58.52
you today… You see, over the past few weeks I’ve gotten some really great emails from fellow PyImageSearch readers. These emails were short, sweet, and to the point. They were simple “thank you’s” for posting actual, honest-to-goodness Python and OpenCV code that you could take and use to solve your own computer visio...
https://www.pyimagesearch.com/2014/08/25/4-point-opencv-getperspective-transform-example/
CC-MAIN-2019-35
refinedweb
8,197
73.47
On 2010-11-29, Stefan Bodewig wrote: > On 2010-11-23, Kevin Connor Arpe wrote: >> Regarding the namespace issue, no one I talked to at my office knew >> anything about classloaders. I wasn't sure how to describe it, but I >> don't want users to need to be a Java expert to understand the docs... > The problem is you nee...
http://mail-archives.apache.org/mod_mbox/ant-dev/201011.mbox/%3C87k4jwrtwa.fsf@v35516.1blu.de%3E
CC-MAIN-2014-52
refinedweb
191
72.56
Create and Deploy a Next.js and FaunaDB-Powered Node.js App with ZEIT Now Create a Next.js and FaunaDB-Powered Node.js App and deploy it with ZEIT Now. FaunaDB is a serverless cloud database that gives you low-latency access to your app data around the world. This guide walks you through creating a Next.js app that rec...
https://zeit.co/guides/deploying-nextjs-nodejs-and-faunadb-with-zeit-now
CC-MAIN-2020-16
refinedweb
913
61.33
GNOME 3.8 for openSUSE 12.3 – GO GET ITPosted on April 11th, 2013 45. 37 responses to “GNOME 3.8 for openSUSE 12.3 – GO GET IT” Dear Dominique, first of all thanks for the great work. I would like to report a couple of issues that I noticed: 1) First of all, during the installation zypper asks me to remove avahi. I did...
http://dominique.leuenberger.net/blog/2013/04/gnome-3-8-for-opensuse-12-3-go-get-it/
CC-MAIN-2016-30
refinedweb
2,524
59.6
>> Shortest Word Distance II in C++ Suppose there is a class that receives a list of words in the constructor, there will be a method that takes two words word1 and word2 and find the shortest distance between these two words in the list. That method will be called repeatedly many times with different parameters. Let u...
https://www.tutorialspoint.com/shortest-word-distance-ii-in-cplusplus
CC-MAIN-2022-33
refinedweb
438
51.65
This patch adds notification whenever a vm starts or stops. Signed-off-by: Anthony Liguori <aliguori us ibm com> diff --git a/vl.c b/vl.c index f78cabb..ca0bcf9 100644 --- a/vl.c +++ b/vl.c @@ -164,6 +164,8 @@ int main(int argc, char **argv) #include "libslirp.h" #endif +#include "wait.h" + //#define DEBUG_UNUSED_IOPOR...
https://www.redhat.com/archives/libvir-list/2009-April/msg00182.html
CC-MAIN-2015-11
refinedweb
243
58.69
J... object is used for returning the URL of the current JSP page.Example :  Implicit Objects In JSP ; config : An implicit object config, specifies the configuration of JSP page'... : An implicit object page, specifies the current JSP page. This object is an instance...Implicit Objects In JSP In this section we will r...
http://www.roseindia.net/tutorialhelp/comment/22946
CC-MAIN-2014-52
refinedweb
2,556
57.16
One of the most useful things you can do with an Arduino is use it to control higher voltage electronic devices. Any device you normally plug into a wall outlet can be activated by a sensor or controlled in other ways with the Arduino. The possibilities are endless considering the variety of sensors and modules availab...
https://www.circuitbasics.com/build-an-arduino-controlled-power-outlet/?recaptcha-opt-in=true
CC-MAIN-2020-29
refinedweb
3,384
71.75
## no critic (Modules::ProhibitExcessMainComplexity) package DateTime; use 5.008004; use strict; use warnings; use warnings::register; use namespace::autoclean 0.19; our $VERSION = '1.54'; use Carp; use DateTime::Duration; use DateTime::Helpers; use DateTime::Locale 1.06; use DateTime::TimeZone 2.44; use DateTime::Type...
https://metacpan.org/release/DateTime/source/lib/DateTime.pm
CC-MAIN-2021-04
refinedweb
13,497
54.52
Introduction Overview Bookmarks are widely-used part of the World Wide Web browsers. They are a mechanism through which a user can return to specific sites already visited, much like their book counterparts. Recently, bookmarks have become a feature for user with regards to browsing their file system, as a way to acces...
http://www.freedesktop.org/wiki/Specifications/desktop-bookmark-spec/?action=Load
CC-MAIN-2013-20
refinedweb
1,712
50.57
A metricset is the part of a Metricbeat module that fetches and structures the data from the remote service. Each module can have multiple metricsets. In this guide, you learn how to create your own metricset. If you want to create your own Beat that uses Metricbeat as a library, see Creating a Beat based on Metricbeat...
https://www.elastic.co/guide/en/beats/devguide/6.2/creating-metricsets.html
CC-MAIN-2019-43
refinedweb
1,464
50.94