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 |
|---|---|---|---|---|---|
08 September 2011 04:20 [Source: ICIS news]
By Helen Yan
?xml:namespace>
SINGAPORE
Non-oil grade 1502 SBR prices may fall to around or below $4,000/tonne (€2,840/tonne) CFR (cost and freight)
Feedstock BD prices plunged by $200/tonne to $3,450-3,500/tonne CFR northeast (NE) Asia in the week ended 31 August and are expe... | http://www.icis.com/Articles/2011/09/08/9490904/asia-sbr-prices-may-fall-further-as-feedstock-bd-tumbles.html | CC-MAIN-2014-52 | refinedweb | 324 | 54.8 |
11 minute read
Notice a tyop typo? Please submit an issue or open a PR.
Let's recap how we generate daily returns from a time series of pricing data.
Given a series of stock prices, the daily return on day
d is equal to the price at day
d divided by the price at
d - 1, minus one. For example, if the stock closed at $10... | https://www.omscs.io/machine-learning-trading/histograms-scatter-plots/ | CC-MAIN-2022-33 | refinedweb | 2,135 | 64.71 |
Advertisement
Set selected option
Hello,
Is there any ways for us to set selected option based on variables set by an action who render the jsp for success result?
like on your example, how can we automatically set the selected option of date, to option number 5 maybe.
retriving data in d action class
hi any one of u m... | http://roseindia.net/tutorialhelp/allcomments/4784 | CC-MAIN-2015-32 | refinedweb | 935 | 72.05 |
UFDC Home | Help | RSS Group Title: TropSoils field research brief ;, 34 Title: Farmer and crop responses to different sources of fertilizers : : a farmer-managed study on home gardens CITATION THUMBNAILS PAGE IMAGE ZOOMABLE Full Citation STANDARD VIEW MARC VIEW Permanent Link: Material Information Title: Farmer and cr... | http://ufdc.ufl.edu/UF00080610/00001 | CC-MAIN-2017-17 | refinedweb | 3,130 | 56.25 |
Download codeproject3.zip - 24.0 KB
Windows PowerShell (AKA Monad) is new CLI (Command Line Interface) provided by Microsoft.
PowerShell based on .NET Framework 2.0 and pass data as .NET objects.
In this article, you'll see how to develop command let (cmdlet, powershell commands) which support wildcard, and use ETS (Ex... | http://www.codeproject.com/KB/vista/PowerShell.aspx | crawl-002 | refinedweb | 1,155 | 58.58 |
…as you probably know, SAP has provided so called ‘Information Systems’ as part of their software offering since the 90’s. There is a Sales Information System, a Purchasing Information System, a Shop Floor Information System and many more. Each one of those has Info Structures which can be configured to collect data re... | https://blogs.sap.com/2012/09/19/inventory-analysis-with-the-lis-really/ | CC-MAIN-2017-51 | refinedweb | 877 | 55.78 |
...one of the most highly
regarded and expertly designed C++ library projects in the
world. — Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
To upgrade an existing document to a new version of quickbook, you will need to update the version in the docinfo block. For example, the existing docinfo block might l... | https://www.boost.org/doc/libs/1_66_0/doc/html/quickbook/versions.html | CC-MAIN-2021-49 | refinedweb | 980 | 63.09 |
Web browsers have supported custom plug-ins and extensions since the 1990s, giving users the ability to add their own features and tools for improving workflow or building closer integration with applications or databases running on back-end servers.
The Google Chrome browser supports extensions that add to its functio... | https://blog.janestreet.com/chrome-extensions-finding-the-missing-proof/ | CC-MAIN-2020-40 | refinedweb | 2,825 | 53.92 |
Net::FileMaker::XML::ResultSet
This module handles the hash returned by the Net::FileMaker::XML search methods. Don't call this module directly, instead use Net::FileMaker::XML.
Returns an hash with the fields' definition. See Net::FileMaker::XML::FieldsDefinition::Field.
Returns the http response for this call. Return... | http://search.cpan.org/~squeek/Net-FileMaker-0.064/lib/Net/FileMaker/XML/ResultSet.pm | CC-MAIN-2016-30 | refinedweb | 242 | 58.79 |
Agenda
See also: IRC log
This is the raw scribe log for the sessions on day three of the MultilingualWeb workshop in Dublin..
Change to agenda - Felix will go through data categories implementation commitments list first
Scribe: Jirka Kosek
led by Felix
Felix: review of agenda
<Arle> Key is *real* commitments, not just... | http://www.w3.org/2012/06/13-mlwDub-minutes.html | CC-MAIN-2013-48 | refinedweb | 5,370 | 62.88 |
This solution is an optimized version based on qgambit2's solution.
public class Solution { int minCount = Integer.MAX_VALUE; public int coinChange(int[] coins, int amount) { Arrays.sort(coins); count(amount, coins.length - 1, coins, 0); return minCount == Integer.MAX_VALUE ? -1 : minCount; } void count(int amount, int... | https://discuss.leetcode.com/topic/38905/optimized-2ms-java-recursive-solution-beats-99-95-o-1-memory | CC-MAIN-2017-47 | refinedweb | 517 | 68.1 |
From what I understand in the NEURON book (page 335), we could use the record method of the NetCon class to collect the spikes times of a given segment. In Python, I implemented the following example: ... ikes.ipynb
Code: Select all
from neuron import h cell1 = h.Section(name = 'cell1') cell1.insert('hh') cell2 = h.Sec... | https://www.neuron.yale.edu/phpBB/viewtopic.php?f=2&t=3555&p=15109 | CC-MAIN-2020-16 | refinedweb | 183 | 66.13 |
In the patrol project, you need to send real-time messages and start to remind tasks, so you have the opportunity to contact signalr. In the process of using, it is found that it is very simple to use signalr to realize communication. I think I will share it in three aspects:
1、 What is signalr
Asp.net signalr is a cla... | https://developpaper.com/asp-net-signalr-makes-real-time-communication-so-easy/ | CC-MAIN-2020-16 | refinedweb | 747 | 50.53 |
When writing code, the recorder pursues decoupling, and wants the program to see if the path file exists. The OS module is usually used to operate the file or path. If it does not exist, the file is created under the current path for subsequent operations. As far as I know, the OS module does not give a method to creat... | https://programmerah.com/error-when-manipulating-files-zipfile-badzipfile-file-is-not-a-zip-file-29688/ | CC-MAIN-2021-25 | refinedweb | 497 | 60.35 |
DEBSOURCES
Skip Quicknav
sources / nmap / 6.00-0.3+deb7u1 / payload
/***************************************************************************
* payload.cc -- Retrieval of UDP payloads. *
* *
**********************: payload.cc 28192 2012-03-01 06:53:35Z fyodor $ */
#include "nmap.h"
#include <errno.h>
#include <stdio... | https://sources.debian.org/src/nmap/6.00-0.3+deb7u1/payload.cc/ | CC-MAIN-2021-04 | refinedweb | 989 | 59.3 |
Get mouse position in world space
I'm making a game using Unity and I have a little issue, I need to know the mouse position in world space, for that I try to set a GameObject at the mouse position using this code :
Vector3 p = Input.mousePosition; Vector3 pos = Camera.main.ScreenToWorldPoint( p); testGameObject.transf... | http://quabr.com/47253050/get-mouse-position-on-world-space-unity | CC-MAIN-2018-39 | refinedweb | 1,274 | 57.27 |
I have a basic understanding of the Fourier Transform, though I’m trying to use it in a program and I’m confused on the specifics. Based on source code I can find online, the DFT takes a set of samples/numbers, performs a summation for each term, and returns a set of these summations which is the same size as the input... | https://proxieslive.com/how-does-each-element-in-the-output-array-of-a-dft-correspond-to-a-specific-frequency/ | CC-MAIN-2020-40 | refinedweb | 218 | 61.46 |
If you're ever asked to build a multi-lingual site in SharePoint, it quickly becomes apparent that there are a few extra considerations compared to a single language site. These could include:
- Information architecture
- Language/culture detection
- Deciding whether to use variations or not
- URL strategy
..and so on.... | https://www.sharepointnutsandbolts.com/2008/12/building-multi-lingual-sharepoint-sites.html | CC-MAIN-2019-18 | refinedweb | 2,982 | 70.94 |
a cell that represents a triangle strip More...
#include <vtkTriangleStrip.h>
a cell that represents a triangle strip 37 of file vtkTriangleStrip.h.
Definition at line 41 of file vtkTriangleStrip.h.
See the vtkCell API for descriptions of these methods.
Definition at line 48 of file vtkTriangleStrip.h.
Return the topol... | https://vtk.org/doc/nightly/html/classvtkTriangleStrip.html | CC-MAIN-2020-50 | refinedweb | 696 | 58.79 |
import "github.com/philhofer/fwd".
The extra methods for
fwd.Reader are
Peek,
Skip and
(*fwd.Reader).Peek, unlike
(*bufio.Reader).Peek, will re-allocate the read buffer in order to accommodate arbitrarily large read-ahead.
(*fwd.Reader).Skip skips the next
n bytes in the stream, and uses the
io.Seeker interface if the ... | https://fuchsia.googlesource.com/third_party/github.com/moby/moby/+/refs/tags/docs-v1.12.0-2016-07-29/vendor/src/github.com/philhofer/fwd | CC-MAIN-2021-10 | refinedweb | 769 | 67.25 |
The purpose of this example is to provide people with a simple class library that should be sufficient
to handle all of your console IO needs. I started off calling it Console IO but now that I'm finished with it I
realize there is no real output involved in this class library and its just Input and parsing.
As a compu... | http://www.codeproject.com/Articles/5737/Console-Input-in-C | crawl-003 | refinedweb | 458 | 70.02 |
Thread priority is "Odd"?
I am running a simple console app with four identical threads......C / D / E / F.
OS is Win7/64 Qt is 5.3.
I have set thread C to be "TimeCriticalPriority", and thread F to be "IdlePriority".
Is there any reason why F should be the fastest thread, and C the slowest?
Probably me doing something... | https://forum.qt.io/topic/44925/thread-priority-is-odd | CC-MAIN-2018-13 | refinedweb | 1,072 | 66.64 |
This is the 17th article in my series of articles on Python for NLP. In the last article, we started our discussion about deep learning for natural language processing.
The previous article was focused primarily towards word embeddings, where we saw how the word embeddings can be used to convert text to a corresponding... | https://stackabuse.com/python-for-nlp-movie-sentiment-analysis-using-deep-learning-in-keras/ | CC-MAIN-2019-35 | refinedweb | 3,836 | 54.73 |
So yes this Binary tree is one place where things will go wrong...
At some point we might need to include <stdint.h> or otherwise get uintptr_t defined.
Remember including headers is always an issue with the bootstrapping system as well...
uintptr_t can be used to define a variable the same size as a pointer (32 or 64 ... | http://ecere.org/community/viewtopic.php?f=28&p=1225&sid=7df56deb4a5715ac66c2e6a5fab2ac89 | CC-MAIN-2018-13 | refinedweb | 345 | 67.18 |
#include <io.h>
int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
_open("D:", 0x02 | 0x04);
UINT e = ::GetLastError();
cout << e;
}
int nRespond = _open("D:\\somefilename.txt", _O_WRONLY | _O_CREAT);
UINT e = ::GetLastError();
Programming.. Backtracking.
I need help with backtracking question.
In an election, five p... | https://www.codeproject.com/script/Forums/View.aspx?fid=1647&msg=5658479 | CC-MAIN-2019-51 | refinedweb | 447 | 62.17 |
How to Build a Multiplayer (.io) Web Game, Part 1
A deep dive into the client-side Javascript of an .io game.
| UPDATED
When Agar.io came out in 2015, it inspired a new .io game genre that has since exploded in popularity. I experienced the rise of .io games firsthand: I’ve built and sold 2 .io games in the past 3 year... | https://victorzhou.com/blog/build-an-io-game-part-1/ | CC-MAIN-2020-05 | refinedweb | 3,533 | 60.51 |
Introduction to Laravel Form Builder
Laravel Form Builder helps you to design forms for your projects on Laravel when you want to generate an application or create anything for the web. It helps you to design your website or application and embed the forms into it within minutes. It includes the CMS and Admin modules i... | https://www.educba.com/laravel-form-builder/?source=leftnav | CC-MAIN-2021-21 | refinedweb | 1,007 | 59.43 |
How To: Access a Service From a Workflow Application
This topic describes how to call a workflow service from a workflow console application. It depends on completion of the How to: Create a Workflow Service with Messaging Activities topic. Although this topic describes how to call a workflow service from a workflow ap... | https://docs.microsoft.com/en-us/dotnet/framework/wcf/feature-details/how-to-access-a-service-from-a-workflow-application | CC-MAIN-2019-39 | refinedweb | 629 | 57.27 |
One.
SQL Server 2012 provides some very nice features with AlwaysOn, but didn't have a paper/post/site readily handy to share. There is one available now, courtesy of SQLCAT.
We’ve all met them. The programmers that can’t program. They can hardly write anything that compiles on their own. Producing quality quality code... | http://www.dzone.com/mz/dotnet?page=42 | CC-MAIN-2014-10 | refinedweb | 725 | 55.34 |
#include <lqr.h>
All of these functions must be called before lqr_carver_resize(3). If called multiple times, the biases added at each call will sum up.
The function lqr_carver_bias_add_xy adds a bias to the x, y pixel of the image loaded into the LqrCarver object pointed to by carver
A typical value for bias_factor wo... | http://www.makelinux.net/man/3/L/lqr_carver_bias_add | CC-MAIN-2014-52 | refinedweb | 317 | 62.48 |
GetNamesInSel
From PyMOLWiki
Overview
This script returns the list of object names that exist in any given selection. For example, if you have 100 objects loaded (viz. ligand poses from small molecule docking) and select all atoms w/in some cutoff, then you have a selection. What objects are actually in that selection?... | http://pymolwiki.org/index.php/GetNamesInSel | CC-MAIN-2015-06 | refinedweb | 161 | 57.87 |
5 C Programming Tips You Must Learn to Get Started
If you’ve heard of programming, you’ve heard of C. It’s one of the oldest coding languages around. Some fear it, and others love it.
C has a reputation for being hard for beginners. There are many good reasons to learn the language, but there are a few essential tips t... | https://www.makeuseof.com/tag/c-programming-tips-to-get-started/ | CC-MAIN-2020-29 | refinedweb | 1,538 | 73.58 |
All postings are provided "AS IS" with no warranties, and confers no rights. You assume all risk for your use.
Some old foggies in the computing industry (myself included) remember a time when being called “skuzzy” was a complement because we thought the speaker was referring to SCSI, or the Small Computer System Inter... | http://blogs.msdn.com/brendangrant/ | crawl-002 | refinedweb | 4,402 | 62.61 |
changes.mady.by.user Paul King
Saved on Feb 18, 2011
...
def x = new java.util.concurrent.Exchanger()
def first=1..20, second=21..40, evens, odds
def t1 = Thread.start{ odds = first.collect{ it % 2 != 0 ? it : x.exchange(it) } }
def t2 = Thread.start{ evens = second.collect{ it % 2 == 0 ? it : x.exchange(it) } }
[t1, t... | http://docs.codehaus.org/pages/diffpages.action?pageId=228173508&originalId=194314507 | CC-MAIN-2014-41 | refinedweb | 127 | 87.72 |
#include <CStoreManager.h>
The CStoreManager class allows to easily make in-app purchase on supported platforms. You basically unlock features by running on transaction once the CotC servers have successfully verified the financial transaction.
Fetches a "catalog" of products available for purchase as configured on the... | http://cloudbuilder.clanofthecloud.mobi/doc/struct_cloud_builder_1_1_c_store_manager.html | CC-MAIN-2018-51 | refinedweb | 254 | 56.45 |
How to Create DataContracts and Translators for Entity Framework Objects
How to Create DataContracts and Translators for Entity Framework Objects
Join the DZone community and get the full member experience.Join For Free
Think I've just come up with a fool proof method for creating datacontracts and associated translato... | https://dzone.com/articles/how-create-datacontracts-and | CC-MAIN-2018-30 | refinedweb | 244 | 60.51 |
A variable in C is the name given to a memory location, where a program can store data. To uniquely identify a memory location, each variable must have a unique identifier. A program can store and manipulate the value stored using variable's identifier. Variables must be defined before their use in a program.
Rules for... | https://www.techcrashcourse.com/2015/05/c-programming-language-variables.html | CC-MAIN-2019-47 | refinedweb | 653 | 53 |
Your Account
Motion: Chapter 7 - Learning ActionScript 3.0
Pages: 1, 2, 3, 4
When these initializations are complete, it is safe to add the ball movie clip to the display list and, to round out the xmlLoaded()
function, create another listener to react to the end of the animation.
The listener's function, in lines 22 t... | http://archive.oreilly.com/pub/a/actionscript/excerpts/learning-as3/chapter-7.html?page=4 | CC-MAIN-2015-48 | refinedweb | 2,184 | 55.24 |
Opened 7 years ago
Closed 7 years ago
Last modified 3 years ago
#9176 closed Uncategorized (wontfix)
NoReverseMatch for optional arguments
Description
A number of URLs of my site have the form /<object_name>/something. The objects can have several representations, one of which is canonical, so I have a decorator that r... | https://code.djangoproject.com/ticket/9176 | CC-MAIN-2015-32 | refinedweb | 1,325 | 53.31 |
#include <iostream> #include <iomanip> #include <string> #include <cctype> #include <cstring> using namespace std; const int NUMROWS = 14; const int NUMSEATS = 7; //enum seatsType {A,B,C,D,E,F}; void initPlane(char plane[NUMROWS][NUMSEATS]) { int x,y; //strcpy(plane[2], "Row 1"); plane[0][0] = ' '; plane[0][1] = 'A'; p... | https://www.daniweb.com/programming/software-development/threads/157738/airplane-seating-assignmnet-homework-arrays | CC-MAIN-2017-17 | refinedweb | 638 | 64.48 |
Web Server on ESP3
Hi folks!
Today I’m going to share my project on testing the web server capabilities on ESP32 Node-MCU. This web server runs using wifi over a local network. You can make this local network simply by using your phone’s mobile hotspot. In this project, I will try to make 2 LED turns on and off using a... | https://medium.com/@xavierprasetyo89/web-server-on-esp3-2d2955e9ee1c?source=post_internal_links---------4---------------------------- | CC-MAIN-2021-39 | refinedweb | 589 | 72.97 |
I am trying to make a simple replicate of a terminal for a swing application.
I want to run a java class, and any of its errors or output to be displayed on a JTextPane.
The part where I am stuck is getting input from a JTextField , on a way similar to terminal(
type the command/ input hit enter ).
What I want is when ... | http://mail-archives.apache.org/mod_mbox/commons-user/201202.mbox/%3C19B9ECD6-93EE-44E8-93AA-114FB73BADB3@me.com%3E | CC-MAIN-2015-22 | refinedweb | 191 | 50.63 |
discusses the mechanics of developing Architect applications as part of a team. The MVC application architecture that Architect uses, not only creates applications that are robust and portable, but is also conducive to a team development environment. Specialists can contribute an appropriate portion of the code, user-... | http://docs.sencha.com/architect/4.1/guides/getting_started/developing_team_apps.html | CC-MAIN-2017-09 | refinedweb | 1,018 | 60.95 |
Create a way to group repositories/projects or folders (BB-1086)
I've a lot of repositories and would be great if there was some way to organize them. Something like folders or labels.
2015-09-06 Dan Bennett: Added link to an issue requesting support for labels (issue #11800). We will finish "projects" under this issue... | https://bitbucket.org/site/master/issues/2323/create-a-way-to-group-repositories | CC-MAIN-2018-22 | refinedweb | 14,944 | 72.46 |
PTHREAD_KILL(3) BSD Programmer's Manual PTHREAD_KILL(3)
pthread_kill - send a signal to a specified thread
#include <pthread.h> #include <signal.h> int pthread_kill(pthread_t thread, int sig);
The pthread_kill() function sends a signal, specified by sig, to a thread, specified by thread. If sig is 0, error checking is ... | http://mirbsd.mirsolutions.de/htman/sparc/man3/pthread_kill.htm | crawl-003 | refinedweb | 108 | 60.72 |
How you handle strings in your code can have surprising effects on performance speed. In this article, I shall look at two of the common issues that using strings can produce: use of temporary string variables and string concatenation.
There comes a time in every project when you have to start looking at coding standar... | http://www.codeproject.com/Articles/10318/Performance-considerations-for-strings-in-Csharp | CC-MAIN-2015-27 | refinedweb | 1,192 | 56.96 |
How to configure batch/fetch sizeQba C Jul 21, 2006 5:05 AM
Hi,
Recently I wrote a simple application (EJB3.0), which reads all rows of one unrelated table.
My problem is that I want to set batch (or fetch - i don't know which term is appropriate) size. As I look at the session trace in oracle 10g, i get, thath it is f... | https://developer.jboss.org/thread/25896 | CC-MAIN-2018-39 | refinedweb | 502 | 50.63 |
[PR4] Profile "name" vs "namespace" and documentation
[PR4] Profile "name" vs "namespace" and documentation
I've been struggling with this bug for a day now, and found the solution by looking at the "player" example (remember to fix the index.html, using sencha-touch-debug.js if you're planning on using this one) :
The... | http://www.sencha.com/forum/showthread.php?176515-PR4-Profile-quot-name-quot-vs-quot-namespace-quot-and-documentation&s=debce1f2d2638e87d83eaae9d09b4f5b&p=720984 | CC-MAIN-2013-48 | refinedweb | 244 | 60.35 |
import "github.com/luci/luci-go/server/internal"
Package internal is supporting code used by server.go.
doc.go pprof.go rediscache.go trace.go tracesampler.go
EnableOpenCensusTracing installs OpenCensus as a tracing backend for LUCI packages.
Sampler constructs an object that decides how often to sample traces.
The spe... | https://godoc.org/github.com/luci/luci-go/server/internal | CC-MAIN-2020-05 | refinedweb | 155 | 53.88 |
Symfony 4: Monolith vs Micro
This is the second installment in a series of articles about Symfony 4. The first one was about the current limitations of the Symfony Distribution model.. This meta-package contains all the Symfony components and some "core" bundles. Among other features, you get Twig and the Web Profiler.... | https://medium.com/@fabpot/symfony-4-monolith-vs-micro-52dc6b98c0c5 | CC-MAIN-2019-18 | refinedweb | 978 | 59.7 |
I read an article in SD Times that talked about how Microsoft (and .NET) does not support dynamic, or scripting languages as much as it should. First, let me say that I think scripting languages can be powerful when you need a severe amount of flexibility during run-time. Second, let me say that most applications don't... | http://geekswithblogs.net/flanakin/archive/2004/02/16/2161.aspx | crawl-002 | refinedweb | 853 | 72.66 |
Espressif IoT Development Framework Style Guide¶
About This Guide¶
Purpose of this style guide is to encourage use of common coding practices within the ESP-IDF.
Style guide is a set of rules which are aimed to help create readable, maintainable, and robust code. By writing code which looks the same way across the code... | https://docs.espressif.com/projects/esp-idf/en/latest/esp32/contribute/style-guide.html | CC-MAIN-2021-04 | refinedweb | 1,495 | 55.13 |
Hello fellow Tomcatists,
I'm trying to do something clever: I need to write a HttpServletResponse
object, which I am calling SuperResponse, that lets me have an escape(String)
method. That way, I can write a tag with code like this:
SuperResponse superResponse = (SuperResponse) pageContext.getResponse();
superResponse.... | http://mail-archives.apache.org/mod_mbox/tomcat-users/200205.mbox/%3C0205302126263F.06914@server.mp%3E | CC-MAIN-2014-10 | refinedweb | 432 | 53.81 |
I'm still kinda new to Groovy, just used it in a program called FileBot. Anyway, to sort some things well, without writing 10,000 lines of code, I want to be able use a range as the key in a map. So basically what I want to do is if 'a' is between '1' and '10' return 'x' value. I know I could write it out as
{a >= 1 &&... | https://codedump.io/share/wPlPjHmfZIff/1/groovy-use-range-as-key-in-map | CC-MAIN-2016-44 | refinedweb | 212 | 81.33 |
I'm trying to implement the Separation behaviour.
The author of AI for games describes it as:
The separation behavior is common in crowd simulations, where a number of char-
acters are all heading in roughly the same direction. It acts to keep the characters from
getting too close and being crowded.
So what he does is ... | http://www.gamedev.net/topic/647891-separation/ | CC-MAIN-2016-44 | refinedweb | 355 | 63.39 |
Every few years a new technology comes along that turns our industry upside down. Some of these technologies thrive, some mutate into something else, and many are revealed to be half-baked marketing fluff. Almost in military fashion, the arrival of a new technology is invariably preceded by an artillery barrage of hype... | https://flylib.com/books/en/2.37.1/the_microsoft_net_architecture_from_the_delphi_perspective.html | CC-MAIN-2020-05 | refinedweb | 6,873 | 55.34 |
In this program you will learn how to read a file and count number of lines in it. This is the simple program that opens a file and read one line at a time and count no of lines in a file.
Program first asks the user to enter the extension of the file and then it reads all the files with the input extension. Its reads ... | http://www.roseindia.net/java/example/java/io/NumberOfLine.shtml | CC-MAIN-2015-18 | refinedweb | 251 | 60.41 |
The objective of this post is to explain how to perform simple HTTP GET requests using the ESP32 and the Arduino environment. To do so, we will use the HTTPClient.h library.
Introduction. So, you will most likely need to update your version of the ESP32 Arduino support libraries. You can check here the instructions on ... | https://techtutorialsx.com/2017/05/19/esp32-http-get-requests/ | CC-MAIN-2018-39 | refinedweb | 1,218 | 65.22 |
Yoctopuce python API
Project Description
Yoctopuce Python API
This is Yoctopuce Python API. All required source files are in the Yoctopuce folder. You will find some small examples for every available Yoctopuce product in examples folder. The complete documentation is in the Documentation folder. The HTML documentation... | https://pypi.org/project/yoctopuce/1.10.27228/ | CC-MAIN-2018-17 | refinedweb | 156 | 54.32 |
#include "log_service_imp.h"
#include <mysqld_error.h>
#include "../sql/sql_error.h"
#include <mysql/components/component_implementation.h>
#include <mysql/components/service_implementation.h>
#include <mysql/components/services/component_status_var_service.h>
#include <mysql/components/services/component_sys_var_servi... | https://dev.mysql.com/doc/dev/mysql-server/latest/log__filter__dragnet_8cc.html | CC-MAIN-2019-43 | refinedweb | 846 | 59.3 |
Dear all,
I am trying to use the import function in eviews 10 but it is not working.
I write
cd D:\DSA
import(type=excelxml) D:\DSA\FQ.xlsm Range="input1!D3:CL2" @Freq A 2016
and eviews says that the file doesn't exist. I tried with different files and I get the same error message does not match expected format in "IMP... | http://forums.eviews.com/viewtopic.php?f=9&t=19207 | CC-MAIN-2018-47 | refinedweb | 185 | 70.94 |
How to wait until all Mediators are instanciated?
First of all I want to say, that I'm doing my first steps with Robotlegs. I've read the Robotlegs book and studied the repository documentation of RL2. For testing and evaluation purpose I've built a simple game similar to Simon with four buttons added dynamically to a ... | http://robotlegs.tenderapp.com/discussions/robotlegs-2/5-how-to-wait-until-all-mediators-are-instanciated | CC-MAIN-2019-22 | refinedweb | 710 | 57.57 |
The Java/Win32 integration project (Jawin) is a free, open source architecture for interoperation between Java and components exposed through Microsoft's Component Object Model (COM) or through Win32 Dynamic Link Libraries (DLLs). The current version of Jawin is 1.0.4, build 200111031306. You can download current sourc... | http://www.onjava.com/lpt/a/1026 | CC-MAIN-2015-06 | refinedweb | 4,219 | 56.25 |
Hi, I'm new here and I need help.
I have an array with all the PMIDs I get as my query in pubmed using Entrez.esearch, but I need the PMCID to after then access the full article. Can someone help me?
Hi, I'm new here and I need help.
I have an array with all the PMIDs I get as my query in pubmed using Entrez.esearch, b... | https://www.biostars.org/p/321100/ | CC-MAIN-2021-43 | refinedweb | 300 | 69.48 |
i have problem in gas sensor
hi guys.
i use gas sketch in site and several change this.but i have problem. after times sensor can not show any change . first (after upload code) this is true . but after some days. i test this with gas. but this is fix 0 and dont any change .
finally i use this sketch for send message e... | https://forum.mysensors.org/topic/5608/i-have-problem-in-gas-sensor/12?lang=en-US | CC-MAIN-2021-43 | refinedweb | 951 | 76.32 |
Intro: DIY Ultra High Vacuum Research Project
This instructable details a project that has been in the works for many years, a nuclear physics project done out of a sheer wish to learn and to hopefully inspire others to do similar. I desire no monetary gain, this is not a college project nor is it aimed at any specific... | https://www.instructables.com/id/Personal-Research-Project-Into-Ultra-High-Vacuum-P/ | CC-MAIN-2018-43 | refinedweb | 1,379 | 60.55 |
A class in java that can be created using ‘new’ keyword is called a concrete class in java. It is also known as the complete blueprint of its own self and can be instantiated. This class has the implementation of all the methods in it. Hence, this class can never contain any unimplemented methods. A concrete class can ... | https://www.developerhelps.com/concrete-class-in-java/ | CC-MAIN-2021-31 | refinedweb | 361 | 56.76 |
Hey, Scripting Guy! How can I write binary data to the registry?-- FG
Hey, FG. WMI’s Standard Registry Provider includes a method - SetBinaryData - that makes it relatively easy to write binary data to the registry. There’s one little catch to be aware of, but we’ll let you know what that is.
First, though, let’s take ... | http://blogs.technet.com/b/heyscriptingguy/archive/2005/02/24/how-can-i-write-binary-data-to-the-registry.aspx | CC-MAIN-2015-35 | refinedweb | 547 | 52.49 |
4.9: Parameters and Arguments
- Page ID
- 8571. Here is an example of a user-defined function that takes an argument:
def print_twice(bruce): print(bruce) print(bruce)
This function assigns the argument to a parameter named
bruce. When the function is called, it prints the value of the parameter (whatever it is) twice.... | https://eng.libretexts.org/Courses/Delta_College/Introduction_to_Programming_Concepts_-_Python/04%3A_Functions/4.09%3A_Parameters_and_Arguments | CC-MAIN-2021-43 | refinedweb | 221 | 63.39 |
The ear clipping triangulation algorithm. More...
#include <pcl/surface/ear_clipping.h>
The ear clipping triangulation algorithm.
The code is inspired by Flavien Brebion implementation, which is in n^3 and does not handle holes.
Definition at line 53 of file ear_clipping.h.
Definition at line 57 of file ear_clipping.h.... | http://docs.pointclouds.org/trunk/classpcl_1_1_ear_clipping.html | CC-MAIN-2018-43 | refinedweb | 150 | 55.5 |
I first discovered the iOS game Letterpress while reading Marco Arment's The Magazine (Letterdepressed, Josh Centers, Issue 5). I installed it immediately after finishing the article and was instantly hooked. It's a compelling mix of strategy and vocabulary demonstration. Easier to learn and quicker to play than Scrabb... | http://www.jeffknupp.com/blog/2013/01/04/creating-and-optimizing-a-letterpress-cheating-program-in-python/ | CC-MAIN-2015-48 | refinedweb | 2,415 | 69.18 |
params alternatives and similar packages
Based on the "Framework Components" category
plug9.9 8.2 params VS plugA specification and conveniences for composable modules in between web applications.
ex_admin9.8 0.0 params VS ex_adminExAdmin is an auto administration package for Elixir and the Phoenix Framework.
commanded... | https://elixir.libhunt.com/params-alternatives | CC-MAIN-2020-10 | refinedweb | 1,554 | 51.24 |
Exobrain::Message
version 0.06
Top-level role for all exobrain messages.
payload size => ( isa => 'Int' );
Convenience method which sets the 'payload' trait on an attribute, as well as marking it as 'ro' and required by default (these can be overridden).
my $namespace = $message->namespace;
Provides the namespace of th... | http://search.cpan.org/~pjf/Exobrain-0.06/lib/Exobrain/Message.pm | CC-MAIN-2015-35 | refinedweb | 179 | 58.18 |
Table of contents
- Given problem
- Solution with Encapsulation
- Some replacement ways for Encapsulation
- Benefits and Drawbacks
- CRC process to avoid violating encapsulation
- Wrapping up
Given problem
In procedural programming such as C, Pascal, we usually define some global variables to share states between funct... | https://ducmanhphan.github.io/2019-12-19-encapsulation-in-object-oriented-programming/ | CC-MAIN-2021-25 | refinedweb | 1,086 | 57.98 |
Why is foreach iterating with a const reference?
I try to do the following:
QList<QString> a; foreach(QString& s, a) { s += "s"; }
Which looks like it should be legitimate but I end up with an error complaining that it cannot convert from 'const QString' to 'QString &'.
Why is the Qt foreach iterating with a const refe... | http://www.brokencontrollers.com/faq/45860226.shtml | CC-MAIN-2019-51 | refinedweb | 276 | 68.81 |
had occasion to use a particular tool for the first time and found that it didn't work on my machine. This was weird, because nobody else seemed to have any problems running the same tool on their machines. So I set out to determine what was wrong...
Simplifying things ridiculously for the purposes of this example, I'... | http://blogs.msdn.com/b/delay/archive/2006/03/23/when-the-gac-makes-you-gack-part-1-how-something-can-be-both-in-and-not-in-the-gac-at-the-same-time.aspx?Redirected=true | CC-MAIN-2014-23 | refinedweb | 551 | 58.28 |
import your word document to JotForm.
However, that this can be achieved if you'll save it as an HTML file, here are the steps on how to do this:
1. Save or convert the word document as an HTML file. Here's a guide about it:
2. Host it on a web server as a web page.
3. Then copy the web link then import it by followin... | https://www.jotform.com/answers/801026-Can-I-import-a-word-document-and-convert-it-to-a-JotForm | CC-MAIN-2017-26 | refinedweb | 139 | 85.62 |
Global Domain Checker
Budget $750-1500 USD
This project is to build a new global domain check that is scalable, robust and fast.
Requirements
• Database support for local checks on banned words. This should be able to be applied both globally and on an individual namespace basis. Length based checks also need to be inc... | https://www.freelancer.com/projects/php-software-architecture/global-domain-checker/ | CC-MAIN-2017-39 | refinedweb | 200 | 75 |
This package lets you run your code directly in Atom using any Jupyter kernels you have installed..
Checkout our Medium blog post to see what you can do with Hydrogen.
For all systems, you'll need
1.6.0+
conda install jupyteror
pip install jupyter.
You can now run
apm install hydrogen or search for Hydrogen in the Inst... | https://atom.io/packages/greyatom-hydrogen | CC-MAIN-2019-51 | refinedweb | 2,271 | 63.59 |
NAME
lio_listio - list directed I/O (REALTIME)
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
#include <aio.h> int lio_listio(int mode, struct aiocb * const list[], int nent, struct sigevent *sig);
DESCRIPTION
The lio_listio() function initiates a list of I/O requests with a single function call. The list argument is ... | http://manpages.ubuntu.com/manpages/karmic/man2/lio_listio.2freebsd.html | CC-MAIN-2014-10 | refinedweb | 382 | 55.54 |
Today, we will explore a dataset on the modern Olympic Games, including all the Games from Athens 1896 to Rio 2016.
The data have been scraped from in May 2018.
Download the data sets
Let’s Start with importing the libraries
import numpy as np import pandas as pd import seaborn as sns from matplotlib import pyplot as p... | https://thecleverprogrammer.com/2020/05/27/data-science-project-olympic-games-data-exploration/ | CC-MAIN-2021-43 | refinedweb | 2,401 | 58.08 |
If you update the content of a page, you will again have to build and deploy your Next.js application for the new content to appear. This is be cause, once the HTML of the page is generated during the build time, the HTML content is not updated until the next build.
Next.js provides a functionality called Incremental S... | https://nirmalyaghosh.com/articles/what-is-incremental-static-re-generation-in-nextjs | CC-MAIN-2022-21 | refinedweb | 387 | 57.16 |
This class provides flexible generation of date format patterns, like "yy-MM-dd". More...
#include <dtptngen.h>
This class provides flexible generation of date format patterns, like "yy-MM-dd".
The user can build up the generator by adding successive patterns. Once that is done, a query can be made using a "skeleton", ... | http://icu-project.org/apiref/icu4c434/classDateTimePatternGenerator.html | CC-MAIN-2018-05 | refinedweb | 494 | 57.27 |
/>
.
As a simple but hopefully enlightening programming exercise I have put together this short Python program to list all the prefixes along with their corresponding powers and multipliers.
If you are the sort of person who reads programming blogs like this one you will know that using kilo, mega, giga etc. to prefix ... | https://www.codedrome.com/si-prefixes-in-python/ | CC-MAIN-2020-34 | refinedweb | 737 | 64.71 |
The QDomDocumentType class is the representation of the DTD in the document tree. More...
#include <qdom.h>
Inherits QDomNode.
List of all member functions.
The QDomDocumentType class allows read-only access to some of the data structures in the DTD: it can return a map of all entities() and notations(). In addition th... | http://doc.trolltech.com/3.0/qdomdocumenttype.html | crawl-002 | refinedweb | 193 | 54.79 |
Isn’t regex technology good enough?Short answer: In a lot of cases (mostly in small applications), yes, regex [1] is good enough. But for textual pattern matching in the large, meaning when there are lots of patterns, lots of coders and users, or lots of data, regex-based solutions can become fragile, unmaintainable, a... | https://developer.ibm.com/code/2016/11/18/rosie-regex-questioning-anomalous-performance/ | CC-MAIN-2020-10 | refinedweb | 1,976 | 63.29 |
UCanAccess is a pure Java JDBC driver that allows us to read from and write to Access databases without using ODBC. It uses two other packages, Jackcess and HSQLDB, to perform these tasks. The following is a brief overview of how to get it set up.
If your project uses Maven you can simply include UCanAccess via the fol... | https://recalll.co/app/?q=odbc_errormsg | CC-MAIN-2020-16 | refinedweb | 3,216 | 66.44 |
iCelInventorySpace Struct ReferenceThis interface represents a space system for the inventory property class. More...
#include <propclass/inv.h>
Detailed DescriptionThis interface represents a space system for the inventory property class.
You can implement this to implement (for example) a 2D grid based system. Use iP... | http://crystalspace3d.org/cel/docs/online/api-1.0/structiCelInventorySpace.html | CC-MAIN-2014-52 | refinedweb | 278 | 59.6 |
This page contains an archived post to the Java Answers Forum made prior to February 25, 2002.
If you wish to participate in discussions, please visit the new
Artima Forums.
problem in drawing line
Posted by Theesan on July 07, 2001 at 10:42 AM
I have a problem in drawng graphis.Here I gave a program to draw some lines... | http://www.artima.com/legacy/answers/Jul2001/messages/51.html | CC-MAIN-2017-30 | refinedweb | 223 | 76.11 |
27 March 2008 17:38 [Source: ICIS news]
TORONTO (ICIS news)--US chemical railcar traffic for the week ended 22 March fell 3.7% from the same week last year, the Association of American Railroads (AAR) said on Thursday.
?xml:namespace>
Chemical railcar loadings for the week totalled 30,067, compared with 31,225 for the ... | http://www.icis.com/Articles/2008/03/27/9111342/us-weekly-chemical-railcar-traffic-falls-3.7.html | CC-MAIN-2013-48 | refinedweb | 194 | 61.67 |
README
¶
MongoDB Ops Manager Go Client
A go client for Ops Manager and Cloud Manager API.
Note that ops-manager only supports the two most recent major versions of Go.
Usage
import "go.mongodb.org/ops-manager/opsmngr"
Construct a new Ops Manager client, then use the various services on the client to access different pa... | https://pkg.go.dev/go.mongodb.org/ops-manager@v0.39.0 | CC-MAIN-2022-33 | refinedweb | 374 | 50.43 |
Blynk on M5Stack via uiFlow and block-maker
I've been playing around with block-maker.m5stack.com quite a bit the past few days. I managed to integrate the Blynk python library and a few of the examples from the Blynk github repo.
Here is how I did it. I'm on a Mac, so sorry I don't have the equivalent instructions for... | https://forum.m5stack.com/topic/575/blynk-on-m5stack-via-uiflow-and-block-maker | CC-MAIN-2021-39 | refinedweb | 1,552 | 65.01 |
This chapter focuses on the implementation of a subtype of GObject, for example to create a custom class hierarchy, or to subclass a GTK+ widget.
Throughout the chapter, a running example of a file viewer program is used, which has a ViewerFile class to represent a single file being viewed, and various derived classes ... | https://developer.gnome.org/gobject/stable/howto-gobject.html | CC-MAIN-2018-51 | refinedweb | 487 | 57.1 |
I need help with writing a python code to print out a students letter grade. It seems to be fairly simple, but I am new to this and I am really struggling.
The ranges are, A is 100 - 90, B is 89 - 80, C is 79 - 70, D is 69 - 61 and F is 60 or lower.
Currently I have this but, no clue if it is right or even going in the... | http://forums.devshed.com/python-programming-11/trouble-writing-python-program-935167.html | CC-MAIN-2016-30 | refinedweb | 125 | 73.85 |
App level transactions for Meteor + Mongo
This package is used to simulate transactions (at the application level) for Mongo.
Although this package aims to improve the overall data integrity of your app, do not use it to write banking applications or anything like that. Seriously, don't.
Note: because this package atte... | https://xscode.com/JackAdams/meteor-transactions | CC-MAIN-2021-17 | refinedweb | 3,117 | 56.05 |
Can no longer build due to no matching function.
My Qt project has been running fine, and all the code was working. However I realised I had added an incorrect UI file as I needed one with a menu bar. I deleted the original UI file and replaced it. My code however was still somehow calling the original UI file. I clean... | https://forum.qt.io/topic/52593/can-no-longer-build-due-to-no-matching-function | CC-MAIN-2017-43 | refinedweb | 1,234 | 66.33 |
Few.
6 public class UserImpl implements User {
7
8 public void callCheck() {
9 callImpl();
10 new UserImpl().callImpl();
11 }
12
13 public void callImpl() {
14 System.out.println("Implementation Invoked...");
15 }
16
17 public static void main(String[] args) {
18 new UserImpl().callCheck();
19
20 // Dynamic Binding...
... | http://weblogs.java.net/blog/n_varun/archive/2008/08/implementing_dy.html | crawl-002 | refinedweb | 140 | 66.94 |
Details
- Type:
Improvement
- Status: Closed
- Priority:
Major
- Resolution: Fixed
- Affects Version/s: None
- Fix Version/s: None
- Component/s: None
- Labels:None
- Environment:
CLR 2.0; DOT.NET
Description
The FSDirectory.cs is the only place it have to be modified to apply FIPS compliance.
I think, changing to use ... | https://issues.apache.org/jira/browse/LUCENENET-175 | CC-MAIN-2016-36 | refinedweb | 763 | 58.89 |
21 March 2013 13:34 [Source: ICIS news]
LONDON (ICIS)--?xml:namespace>
French chemical producers would benefit from a gradual strengthening in the global economy, with growth mainly coming from emerging economies, Union des industries chimiques (UIC) said.
However, growth rates would remain relatively weak throughout t... | http://www.icis.com/Articles/2013/03/21/9652202/france-chemical-production-to-grow-0.6-in-2013-group.html | CC-MAIN-2014-41 | refinedweb | 142 | 54.42 |
The Python standard library contains a function called thread.get_ident(). It will return an integer that uniquely identifies the current thread at that point in time. On most UNIX systems, this will be the pthread_t value returned by pthread_self(). At first look, this might seem like a good value to key a thread loca... | https://blogs.gnome.org/jamesh/2008/06/11/tls-python/ | CC-MAIN-2017-17 | refinedweb | 321 | 74.9 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.