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 |
|---|---|---|---|---|---|
I have a problem with my decoding program that I'm trying to figure out. It's supposed to read in a encrypted line of code from a .txt file and then by using ASCII values, convert that encrypted code to a decoded version. Example:
Encrypted code:
Fcjjm}rfcpc,
Decoded code: (after adding 2 to every ASCII value - or a ke... | http://cboard.cprogramming.com/cplusplus-programming/114521-help-decoding-program.html | CC-MAIN-2015-06 | refinedweb | 197 | 57.16 |
How To Make Microsoft Word Documents with PHP
Free JavaScript Book!
Write powerful, clean and maintainable JavaScript.
RRP $11.95 set up and we will see a bunch of installed PIAs:
We see a
Microsoft.Office.Interop.Word entry in the
php.ini file and restart the server.
Now we can move on to the programming.
The HTML fo... | https://www.sitepoint.com/make-microsoft-word-documents-php/ | CC-MAIN-2021-04 | refinedweb | 1,653 | 64.3 |
React is an extremely popular JavaScript library for building user interfaces while Svelte.js is a relatively new library for achieving the same things but with a different approach.
Svelte borrows some ideas from React and Vue.js, but it brings its own approach for efficiency and performance. It gained some more momen... | https://blog.jscrambler.com/svelte-vs-react-differences-when-building-the-same-web-app/ | CC-MAIN-2022-27 | refinedweb | 1,527 | 62.07 |
This openwhisk-catalog maintains the package catalogs of openwhisk. In OpenWhisk, the catalog of packages gives you an easy way to enhance your app with useful capabilities, and to access external services in the ecosystem. Examples of external services that are OpenWhisk-enabled include the Weather Company, Slack, and... | https://apache.googlesource.com/openwhisk-catalog/ | CC-MAIN-2020-24 | refinedweb | 230 | 50.02 |
Thomas Marquardt
Microsoft Corporation
Updated July 2003
Applies to:
Microsoft® ASP.NET
Summary:. (17 printed pages)
Download the source code for this article.
Contents
Monitoring Performance Counters
Monitoring the Event Log
Monitoring the W3C and HTTPERR Logs
Other Resources Used to Monitor ASP.NET
Understanding the ... | http://msdn.microsoft.com/en-us/library/ms972959.aspx | crawl-002 | refinedweb | 4,835 | 56.45 |
This preview shows
page 1. Sign up
to
view the full content.
Unformatted text preview: ibrary is executed. Either of these values can be or’d with the RTLD GLOBAL flag.
#include <dlfcn.h> void *dlsym(void *handle, char *symbol);
returns: ptr to symbol if OK, NULL on error The dlsym function takes a handle to a previousl... | https://www.coursehero.com/file/5936594/text-section-of-relocatable-object-le-1-2-3-4-00000000-x/ | CC-MAIN-2017-17 | refinedweb | 190 | 61.56 |
The Apache Commons Digester Frequently Asked Questions Page
Introduction
This page is intended to gather answers to questions that are regularly asked on the digester email lists.
If you discovered something about the Digester that you think other people may find useful, please edit this page to add that information.
I... | http://wiki.apache.org/commons/Digester/FAQ | CC-MAIN-2016-40 | refinedweb | 2,857 | 53.1 |
Re: [soaplite] Uninitialized Value in SOAP::Lite
Expand Messages
- On Jul 12, 2010, at 6:40 AM, Thomas Boyda wrote:
> Use of uninitialized value $action in pattern match (m//) atWhat is the difference between this line and the following?
> C:/Perl/site/lib/SOAP/Lite.pm line 2674.
>
> In the subroutine find_target $acti... | https://groups.yahoo.com/neo/groups/soaplite/conversations/topics/6488?o=0&var=1&l=1 | CC-MAIN-2017-22 | refinedweb | 522 | 57.37 |
I am trying to debug a program in order to find the cause of a segmentation fault. So I commented all of the code and slowly uncommented from the start to find the location of the segmentation fault. This was successful and I have discovered the function that is causing it. Then, I decided to add a printf to the start ... | http://www.gamedev.net/user/185977-helloskitty/?tab=topics | CC-MAIN-2014-35 | refinedweb | 366 | 65.62 |
Content-type: text/html
mq_notify - Attaches a request for asynchronous signal notification to a message queue (P1003.1b)
#include <mqueue.h>
int mq_notify (
mqd_t mqdes,
const struct sigevent *notification);
Attaches a request for asynchronous signal notification to a message queue for the calling process. Following a... | http://backdrift.org/man/tru64/man3/mq_notify.3.html | CC-MAIN-2017-22 | refinedweb | 257 | 52.19 |
Hi,
I’m quite new to Arduino, so I’m still a bit sketchy when it comes to coding.
I hope you guys can give me some hints.
My issue:
I have a Neopixel-like LED-strip, which I want to control with an IR remote. The LED-strip should do a breathing effect while it’s on.
I’d like button 1 on my remote to turn it on and star... | https://forum.arduino.cc/t/controlling-neopixel-pulse-effect-with-ir-remote/502499 | CC-MAIN-2021-43 | refinedweb | 448 | 67.86 |
Homework 2: Higher Order Functions
Due by 11:59pm on Tuesday, 7/9.
The
construct_check module is used in this assignment,.)
Required questions
Several doctests refer to these functions:
from operator import add, mul, sub square = lambda x: x * x identity = lambda x: x triple = lambda x: 3 * x increment = lambda x: x + ... | https://inst.eecs.berkeley.edu/~cs61a/su19/hw/hw02/ | CC-MAIN-2020-29 | refinedweb | 826 | 51.48 |
Seeed’s XIAO RP2040 is a diminutive board. It looks too small to be useful, but appearances can be deceptive. This isn’t the first XIAO board from Seeed, previously there was an Arm Cortex M0+ running at 48 MHz powered model, Seeeduino XIAO which looks identical to the XIAO RP2040 and is also identically priced at $5.4... | https://www.tomshardware.com/reviews/seeed-xiao-rp2040-review-dollar5-brain-food | CC-MAIN-2022-21 | refinedweb | 999 | 72.76 |
7. Expressions¶
An expression evaluates to a set of values in QL. For example, the expression
1 + 2
evaluates to the integer
3 and the expression
"QL" evaluates to the string
"QL".
A valid expression also has a type.
In the above examples,
1 + 2 has type
int and
"QL" has type
string.
The following sections describe the... | https://help.semmle.com/QL/ql-handbook/expressions.html | CC-MAIN-2020-24 | refinedweb | 3,512 | 56.25 |
10 January 2011 03:50 [Source: ICIS news]
(recasts third paragraph for clarity)
By Chow Bee Lin
DUBAI (ICIS)--Petrochemical Commercial Co (PCC) of ?xml:namespace>
On 10 June last year, the UN issued its fourth round of sanctions against
A few days later, the
Speaking on the sidelines of the Arabplast 2011 in
“I think, ... | http://www.icis.com/Articles/2011/01/10/9424139/irans-pcc-challenges-us-sanctions-through-legal-process.html | CC-MAIN-2014-10 | refinedweb | 313 | 73.21 |
What if we, the authors of this directive, are the final consumers? What if another developer is reusing the directive as an API? How do we make it flexible enough with dynamic values? When you ask yourself these questions while writing directives, then it's time to make it dynamic.
All this while, we have been using t... | https://www.oreilly.com/library/view/typescript-2x-for/9781786460554/ca75b1f5-435c-4b53-9670-9f88d95b1eba.xhtml | CC-MAIN-2020-05 | refinedweb | 114 | 57.37 |
![if !(IE 9)]> <![endif]>
The analyzer detected a potential error: a condition is always true or false. Such conditions do not always signal an error but still you must review such code fragments.
Consider a code sample:
LRESULT CALLBACK GridProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { ... if (wParam<0... | https://www.viva64.com/en/w/V547/ | CC-MAIN-2019-35 | refinedweb | 1,045 | 64.61 |
> 2) The floating windows are always in front of tiled windows. This is > annoying: i would like to be able to script something so that the floating > layer is hidden if a tiled window is focused. Is there some command along > the lines of "hide all floats"? I have a solution to this as follows. Apologies for the newbi... | http://www.haskell.org/pipermail/xmonad/2012-July/012822.html | CC-MAIN-2014-41 | refinedweb | 228 | 72.56 |
Agenda
See also: IRC log
<Jim> Jim
Date: 21 July 2011
<scribe> Meeting: 197
<scribe> Scribe: Norm
<scribe> ScribeNick: Norm
->
Norm notes that he added XProc errata E10
Accepted.
v
->
Accepted
<Jim> Aug 6-19 off on vacation as well
Henry gives regrets for 11 August and the three following weeks
Jim gives regrets for 11... | http://www.w3.org/2011/07/21-xproc-minutes.html | CC-MAIN-2017-17 | refinedweb | 1,150 | 73.98 |
Introduction
The Mapping Lookup API, introduced in SP13, enables XI developers to call RFCs from user-defined functions and Java mapping programs. However, using the API means handling lower-level details like communicating with the RFC adapter, building the XML request and parsing the XML response. This can lead to pr... | https://blogs.sap.com/2006/03/29/wrapping-your-mapping-lookup-api-code-in-easy-to-use-java-classes/ | CC-MAIN-2018-43 | refinedweb | 843 | 51.58 |
A Mongoose library for Texas Instruments' 3-channel current sensor.
The
INA3221 is a simple I2C device that measures current through shunt
resistors on three separate channels. It is able to measure the voltage
on each channel (max 26V, in 8mV increments) and the voltage drop over the
shunt resistor in 40uV increments ... | https://mongoose-os.com/docs/mongoose-os/api/drivers/ina3221-i2c.md | CC-MAIN-2022-05 | refinedweb | 563 | 57.57 |
Read, write and modify MARC bibliographic data
Project description
_ __ _ _ _ __ ___ __ _ _ __ ___ | '_ \| | | | '_ ` _ \ / _` | '__/ __| | |_) | |_| | | | | | | (_| | | | (__ | .__/ \__, |_| |_| |_|\__,_|_| \___| |_| |___/
pymarc is a python library for working with bibliographic data encoded in MARC21. It should work... | https://pypi.org/project/pymarc/ | CC-MAIN-2018-39 | refinedweb | 919 | 60.14 |
Categories: Assets, 926 wordsSend feedback •Send feedback •
This post will talk about the different ways to import assets into Crystal Space, and will present the recent improvements that have been made about that.
Guided tour of the import of assets into CS.
And there there was... the Assimp plugin:
- 'viewmesh -R=dat... | http://www.crystalspace3d.org/blog/kickvb?skin=basic | CC-MAIN-2014-35 | refinedweb | 1,529 | 53.81 |
20 November 2007 13:02 [Source: ICIS news]
LONDON (ICIS news)--Demand for naphtha has fallen in northwest Europe on a lull in the gasoline sector and closed arbitrage options, traders said on Tuesday.
?xml:namespace>
One London-based trader said that, with a number of recent record highs, the naphtha market has priced ... | http://www.icis.com/Articles/2007/11/20/9080154/gasoline-lull-lack-of-arb-weigh-on-europe-naphtha.html | CC-MAIN-2014-52 | refinedweb | 304 | 55.78 |
In this short Python Pandas tutorial, we will learn how to convert a Pandas dataframe to a NumPy array. Specifically, we will learn how easy it is to transform a dataframe to an array using the two methods values and to_numpy, respectively. Furthermore, we will also learn how to import data from an Excel file and chang... | https://www.marsja.se/how-to-convert-a-pandas-dataframe-to-a-numpy-array/ | CC-MAIN-2020-24 | refinedweb | 907 | 70.02 |
Next: Display Tables, Previous: Blinking, Up: Display
The usual display conventions define how to display each character code. You can override these conventions by setting up a display table (see Display Tables). Here are the usual display conventions:
tab-width.
ctl-arrow. If it is non-
nil, these codes map to sequen... | http://www.gnu.org/software/emacs/manual/html_node/elisp/Usual-Display.html#Usual-Display | crawl-003 | refinedweb | 322 | 64.3 |
So far, layout has been a linear process that handles open tags and close tags independently. But web pages are trees, and look like them: borders and backgrounds visually nest inside one another. To support that, this chapter switches to tree-based layout, where the tree of elements is transformed into a tree of layou... | https://browser.engineering/layout.html?utm_campaign=CSS%2BLayout%2BNews&utm_medium=web&utm_source=CSS_Layout_News_297 | CC-MAIN-2021-21 | refinedweb | 3,672 | 64.81 |
Firefox moz-icon://.ext not working
Bug Description
In Kubuntu 9.10 using Firefox the command moz-icon://.ext, where .ext represents file extension does not work. This command should return an icon representing this file type..
my python-script is ready. i reimplemented some moz-icon-parsing and i think that detecting ... | https://bugs.launchpad.net/ubuntu/+source/humanity-icon-theme/+bug/466567 | CC-MAIN-2020-34 | refinedweb | 1,960 | 75.81 |
A .NET Developer's Guide to Windows Security: Understanding User Profiles
Have you ever noticed that the first time a particular user logs on to a machine it takes a little while longer for the shell (typically explorer.exe) to start up? You can hear the disk drive whirring and clunkingobviously something is going on. ... | https://www.informit.com/articles/article.aspx?p=350384 | CC-MAIN-2019-51 | refinedweb | 1,589 | 60.75 |
# Boot Ubuntu via http/ftp server with pxe(diskless boot)
Intro
-----
PXE is a great solution for booting a diskless computer (or a computer without an OS installed). This method is often used for terminal stations and OS mass installation.
Stock ubuntu (16.04) in pxe-mode can mount rootfs only from NFS. But this is... | https://habr.com/ru/post/513568/ | null | null | 1,117 | 54.73 |
Hi
I am new to this list and iBATIS, but have started to use it (embedded
within the tapestry framework) for building a small database application at
I have read the developers guide, in an attempt to get straight how I am
going to use iBATIS to meet my needs, and most of it seems very clear.
However I have got a littl... | http://mail-archives.apache.org/mod_mbox/ibatis-user-java/200508.mbox/%3CE1E7u4j-0001nw-UL@home.chandlerfamily.org.uk%3E | CC-MAIN-2018-34 | refinedweb | 334 | 66.88 |
@ d moment, am doing sum reading up on "SWITCHES" and am not sure if am doing the code properly.. so i could share the problem and share my code with u guys.. i wood love to
and if u can suggest any help i wwo greatly appreaciate it....
thanks
Write a program to solve the following problem. DO NOT USE AN IF-ELSE CASCAD... | https://www.daniweb.com/programming/software-development/threads/198867/sum-advice-using-switching | CC-MAIN-2018-17 | refinedweb | 422 | 87.96 |
Extra header row added to tableview when I add subviews to the cells.
Heres a code sample. If you comment out the three lines creating and adding the label the view looks fine. I need to add subviews because I'm trying to create a grid-style table of labels and values.
import ui class MyTableViewDataSource (object): de... | https://forum.omz-software.com/topic/1594/extra-header-row-added-to-tableview-when-i-add-subviews-to-the-cells/1 | CC-MAIN-2022-40 | refinedweb | 270 | 57.57 |
1,hi i need to create a program that will repeat the following 14 times.it needs to provide keyboard input that takes in hours worked in a day.after the 14 time it needs to show the hours worked.
2,the rate of pay is 6 pounds 50 pence. it needs to provide the gross pay on screen for those two weeks.
3,it needs to provi... | https://www.daniweb.com/programming/software-development/threads/150878/repetitive-work | CC-MAIN-2017-26 | refinedweb | 228 | 74.42 |
I’ve been a scientist and data analyst for nearly 25 years. Originally as an academic physicist, then as a research scientist in a large fast moving consumer goods company and now at a small technology company in Liverpool. In common to many scientists of my age I came to programming in the early eighties when a whole ... | http://www.ianhopkinson.org.uk/2014/09/of-matlab-and-python/ | CC-MAIN-2020-40 | refinedweb | 872 | 51.28 |
Hello all,
I have been developing a code based on Google Translate Python Wrapper. I have done it all, perfectly, except for one thing, I will explain it by pointing to code:
there is the defined global languages list, and there are two main functions (Translate(), and UserSubmitted() )
now the languages list is on the... | https://www.daniweb.com/programming/software-development/threads/240516/frustrating-situation-setting-variables-globally | CC-MAIN-2018-39 | refinedweb | 411 | 65.22 |
casjobs 0.0.1
An interface to CasJobs for Humans.
This basically does the same thing as python-casjobs but it only depends on Requests which makes it more useful in my opinion.
Usage
Install it:
pip install casjobs
Here's how you might get the fields in Stripe 82 that hit the Pisces overdensity:
import casjobs query = ... | https://pypi.python.org/pypi/casjobs/0.0.1 | CC-MAIN-2014-10 | refinedweb | 132 | 76.82 |
How To Schedule Tasks From Command Line In Windows With Schtasks?
Recurring tasks are generally schedules with scheduled task manager. Scheduled task manager have GUI for management but creating a task in 20 different servers is very hard and trivial job. Windows operating systems provide tool called
schtasks which is ... | https://www.poftut.com/schedule-tasks-command-line-windows-schtasks/ | CC-MAIN-2020-10 | refinedweb | 511 | 64.3 |
WebAssembly enables running native code in the JavaScript engine. The compiled and optimised binary ensures better and consistent performance. The JavaScript engine provides the necessary runtime to execute the binary.
What if we bring the performance and portability of WebAssembly outside JavaScript execution environm... | https://dev.to/sendilkumarn/wasi-webassembly-system-interface-with-wasmtime-4cec | CC-MAIN-2021-49 | refinedweb | 2,896 | 67.35 |
The other month Ruben did a post on using the new Umbraco event model and today I had to solve a problem which it seemed like it would be the best way.
I needed to have a document, when published, moved into a new folder (as we're using Umbraco to store some data used for some non-browsable data). This can be achieved ... | https://www.aaron-powell.com/posts/2009-01-15-programmatically-moving-umbraco-nodes/ | CC-MAIN-2020-05 | refinedweb | 350 | 55.13 |
We have been working on basics of SoapUI like creating projects, adding WSDL, sending a request & receiving responses and generating test assets to go along with them so far.
In this 5th SoapUI tutorial, we will learn all about assertions in SoapUI. We strongly recommend you to follow the complete SoapUI training serie... | https://www.softwaretestinghelp.com/soapui-tutorial-5-soapui-assertions/ | CC-MAIN-2018-43 | refinedweb | 1,256 | 54.12 |
I am searching the web for a good working vertical scroll in Flash and don't seem to find a good solution. I will use it for the product page layout with all the images. So I suppose it means no text scroll but an MC scroll.
My main design issue is that I would like a user to be able to scroll it with the mouse whell (... | http://forums.adobe.com/message/4007554 | CC-MAIN-2014-10 | refinedweb | 1,306 | 73.37 |
Pygame wrapper
From OLPC
The Pygame wrapper for the OLPC Sugar platform is called OLPCGames. This page explores the differences between standard Pygame programming and OLPCGames-mediated Pygame programming.
The automatically generated Pydoc documentation for OLPCGames is the canonical reference work for the documentati... | http://wiki.laptop.org/go/OLPCGames | crawl-002 | refinedweb | 1,349 | 55.54 |
There has been a lot of setup covered in previous articles and now it’s time to introduce the application that we will be building throughout the rest of this series, an online support management platform. In these early articles we are going to focus on building a chat widget that can be placed on to an existing websi... | http://spraso.com/managing-isomorphic-state-with-react-js-and-redux/ | CC-MAIN-2017-47 | refinedweb | 2,041 | 61.56 |
<<
israel mezaCourses Plus Student 10,890 Points
file wont compile or run
All of a sudden it seems like the worspace/terminal cant find my files. When try Javac KaraokeMachine.java from worksce dir it says:
javac: file not found: KaraokeMachine.java
Usage: javac <options> <source files> . i then tried switching directo... | https://teamtreehouse.com/community/file-wont-compile-or-run | CC-MAIN-2022-27 | refinedweb | 375 | 75.2 |
RyanJ wrote:OnOff wrote:Clang analysis shows errors in headers mingw, but i compile the project with mingw32-g++ without errors or warnings.
My guess is missing include paths or a missing preprocessor define.
Yes. This is my experience after spending a couple of days fiddling with the plugin to get everything working, ... | https://www.sublimetext.com/forum/viewtopic.php?f=5&t=3958&p=39866 | CC-MAIN-2015-32 | refinedweb | 205 | 60.21 |
Top Five Best Practices for Writing Unit Test Scripts
Introduction
Unit testing is one of the steps in the software development process where every part or unit of code is verified to ensure it behaves as expected. When the code is modified in the future, the automated unit tests help ensure the existing functionality ... | https://www.developer.com/mgmt/top-five-best-practices-for-writing-unit-test-scripts.html | CC-MAIN-2020-16 | refinedweb | 777 | 64.61 |
Access Specifiers
Access specifiers determine the accessibility of a class method or data members. We’ll take a look at the public and private access specifiers. The public access specifier is used when you want to access a method or data members outside the class or even outside the project. For example, consider the ... | https://compitionpoint.com/access-specifiers/ | CC-MAIN-2021-31 | refinedweb | 429 | 51.18 |
This chapter describes the structure of a character device driver, focusing in particular on the driver entry points. In addition, this chapter covers the use of physio(9F) (in read(9E) and write(9E)) and aphysio(9F) (in aread(9E) and awrite(9E)) in the context of synchronous and asynchronous I/O transfers.
Figure 9-1 ... | http://docs.oracle.com/cd/E19620-01/805-3024/6j2sumi2f/index.html | CC-MAIN-2015-40 | refinedweb | 2,275 | 50.67 |
1) included in profiles such as the MIDP and are defined by the Java Community Process (JCP). The GUI classes in the MIDP are not based on the Abstract Window Toolkit (AWT). The limited CPU memory of handheld devices, cannot handle the AWT. The MIDP contains its own GUI guidelines. The MIDP GUI consists of high-level a... | http://www.javabeat.net/j2me-user-interface/2/ | CC-MAIN-2016-07 | refinedweb | 3,190 | 54.02 |
Search Type: Posts; User: carlos.aguayo
Search: Search took 0.02 seconds.
- 11 Feb 2010 3:40 PM
- Replies
- 1
- Views
- 647
What's "Selection Mode" for?
In this demo I see the "simple" and "multi" but can't see the difference...
Thanks,
- 6 Jan 2010 4:28 PM
- Replies
- 0
- Views
- 524
Hi,
After upgrading to GXT 2.1 we ... | http://www.sencha.com/forum/search.php?s=f78c815586fc45f976eb4ba8ca409dea&searchid=3106216 | CC-MAIN-2013-20 | refinedweb | 193 | 84.98 |
New to coding - please help
Hi guys I am fairly new to coding and am taking a computer science course. I am working on an assignment during my spare time and am not sure if what I'm doing is even correct but I'm just making a very BASIC code. The purpose is to guess a random number generated by the computer and each ti... | https://www.java.net/forum/topic/general-programming-help/new-coding-please-help-0 | CC-MAIN-2015-32 | refinedweb | 261 | 65.42 |
SP_get_stream_user_data()
#include <sicstus/sicstus.h> spio_t_error_code SP_get_stream_user_data( SP_stream *stream, void const *user_class, void **puser_data);
Get the user data of a user defined stream of a particular class.
SP_get_stream_user_data()on a stream even if it is not known whether the stream is in fact a ... | https://sicstus.sics.se/sicstus/docs/4.2.3/html/sicstus.html/cpg_002dref_002dSP_005fget_005fstream_005fuser_005fdata.html | CC-MAIN-2016-30 | refinedweb | 272 | 55.13 |
How not to use DLLs
Runtime loading of object files, relocation of DLLs. Mostly harmful stuff.
Disclaimer
The code described in this note doesn't really aim to be pragmatic. Treat it as a curiosity rather than a recommendation. In fact, you probably don't want to use any of this nonsense in production environments (or ... | http://h3.gd/how-not-to-use-dlls/ | CC-MAIN-2022-05 | refinedweb | 2,101 | 55.13 |
What XML parser does SQL Server's XML features use?
True or false: The NESTED option can be used only in client-side FOR XML.
What extended stored procedure is used to prepare an XML document for use by OPENXML?
What's the theoretical maximum amount of memory that SQLXML will allow MSXML to use from the SQL Server proc... | https://www.informit.com/articles/article.aspx?p=102307&seqNum=18 | CC-MAIN-2020-24 | refinedweb | 586 | 63.49 |
Learning Hardware Level 1:
Serial (UART), Breadboards, Basic GPIO r/w
OverviewThis block is meant to help you get comfortable with two of your core interfaces in embedded systems: UART (or serial) and GPIO. It also introduces you to your best friend in prototyping: the breadboard. Almost every chip or MCU you will come... | https://www.jasonrexilius.com/projects/learning-electronics/level1.html | CC-MAIN-2022-05 | refinedweb | 903 | 65.12 |
Uncyclopedia:UnSignpost/Press Room/23
From Uncyclopedia, the content-free encyclopedia
edit UnSignpost articles needed
As always, UnSignpost articles are very much needed. The new UnSignpost will be created this Friday (Friday the 5th) and if nobody puts anything, I will be the only person to write the whole newspaper.... | http://uncyclopedia.wikia.com/wiki/Uncyclopedia:UnSignpost/Press_Room/23 | CC-MAIN-2015-06 | refinedweb | 3,963 | 69.72 |
This.
At the time of writing, Matplotlib does not provide an out-of-the-box way to animate histograms, so the code defines a
Histogram class to facilitate this, based on this Matplotlib example.
The particles are initialised with uniformly-random positions and a fixed speed (randomly-oriented in direction). After an in... | https://scipython.com/blog/the-maxwellboltzmann-distribution-in-two-dimensions/ | CC-MAIN-2021-39 | refinedweb | 1,524 | 54.39 |
{-# LANGUAGE BangPatterns #-} ----------------------------------------------------------------------------- -- | -- Module : Control.Concurrent.Chan.Strict -- Copyright : (c) The University of Glasgow 2001, Don Stewart 2007 -- License : BSD-style -- -- Maintainer : dons@galois.com -- Stability : experimental -- Portabi... | http://hackage.haskell.org/package/strict-concurrency-0.2.3/docs/src/Control-Concurrent-Chan-Strict.html | CC-MAIN-2014-15 | refinedweb | 329 | 58.72 |
Last edited: February 7th 2018Last edited: February 7th 2018
Relaxation methods involves solving the system of equations that arises from a finite difference approximation iteratively until a solution is found [1]. We will introduce the Jacobi method, the Gauss-Seidel method and succesive overrelaxation (SOR). The meth... | https://nbviewer.org/urls/www.numfys.net/media/notebooks/relaxation_methods.ipynb | CC-MAIN-2022-33 | refinedweb | 1,422 | 58.28 |
Introduction
This article describes how to port a popular open source project to the IBM z/OS UNIX environment. The following three reasons motivated us to write this article:
- Our project touches nearly all the fundamental aspects of modern software, that is, data, networks, command terminal I/O, and standard librari... | http://www.ibm.com/developerworks/aix/library/au-porting_os/?ca=dgr-lnxw07Port-OS-UXdth-AIX | CC-MAIN-2015-48 | refinedweb | 3,683 | 60.51 |
Arnaud Delobelle wrote: > But in the course of conversation I might refer to > Napoleon, meaning Napoleon Bonaparte (1769 - 1821) or Napoleon III (1808 > - 1873). That's more like referring to the name 'Napoleon' in two different namespaces. The original binding still exists, you're just switching contexts. > My point ... | https://mail.python.org/pipermail/python-list/2008-November/489024.html | CC-MAIN-2014-10 | refinedweb | 339 | 54.32 |
Communities
Using CMDBGraphQuery from the CMDB Java APIDean Schulze Aug 10, 2009 4:19 PM
Is there an example of how to use CMDBUtil.CMDBGraphQuery(....) ?
The last parameter is a CMDBGraph[] and all the JavaDoc says is "input graph to query on". I have no idea what this means, though.
Does anyone know what is supposed ... | https://communities.bmc.com/message/103833 | CC-MAIN-2020-05 | refinedweb | 1,802 | 53.81 |
On Tue, Sep 22, 2009 at 09:07, Philipp Bunge <buge@crimson.ch> wrote:
>> Using a namespace from the start can also be useful for migration
>> because you can then distinguish a node/property created with
>> old namespace and the new in order to
>> manage them differently.
>
> I was wondering on how to deal with model c... | http://mail-archives.apache.org/mod_mbox/jackrabbit-users/200909.mbox/%3Cc3ac3bad0909220254y1c9625bcufc67732bf33c3378@mail.gmail.com%3E | CC-MAIN-2016-18 | refinedweb | 228 | 73.17 |
USBD_Callbacks_TypeDef Struct Reference
USB Device stack callback structure.
#include <em_usb.h>
USB Device stack callback structure.
Callback functions used by the device stack to signal events or query status to/from the application. See USBD_Init_TypeDef. Assign members to NULL if your application don't need a speci... | https://docs.silabs.com/gecko-platform/3.0/middleware/api/struct-u-s-b-d-callbacks-type-def | CC-MAIN-2021-21 | refinedweb | 122 | 52.15 |
I want to show you this very simple example, the purpose is to sort some strings allocated dynamically and clean the duplicates resizing the vector and deallocating useless occupated memory.
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;
void print_v (vector<string *>&... | https://codedump.io/share/HaJapPUCOUEL/1/erase-elements-from-a-vector-of-pointers-and-deallocate-the-dynamic-memory-previously-allocated-via-new-operator | CC-MAIN-2017-04 | refinedweb | 441 | 65.42 |
Re: Does .net replace win32?
From: Sven Groot (sveng3000_at_gmx.net)
Date: 05/03/04
- ]
Date: Mon, 3 May 2004 20:53:32 +0200
Dan wrote:
> .Net is the new "platform" to sit
> ontop of windows for general applications, with Windows Forms
> replacing MFC, etc...
For the moment at least, .Net doesn't replace Win32, only au... | http://www.tech-archive.net/Archive/DotNet/microsoft.public.dotnet.languages.vc/2004-05/0111.html | crawl-002 | refinedweb | 480 | 74.19 |
This action might not be possible to undo. Are you sure you want to continue?
Getting Started with Flex™ 4
Jeanette Stallons, Andrew Shorten, and Vince Genovese
Beijing • Cambridge • Farnham • Köln • Sebastopol • Tokyo
Getting Started with Flex™ 4
by Jeanette Stallons, Andrew Shorten, and Vince Genovese Copyright © 201... | https://www.scribd.com/document/61357647/Flex4-Getting-Started | CC-MAIN-2017-04 | refinedweb | 29,466 | 52.26 |
Back to index
Mozilla's XMLHttpRequest is modelled after Microsoft's IXMLHttpRequest object. More...
import "nsIXMLHttpRequest.idl";@n.nosp@m.etsc.nosp@m.ape.c.nosp@m.om:' and 'onerror' attributes moved to nsIJSXMLHttRequest, but if you're coding in C++ you should avoid using those.
Definition at line 82 of file nsIXML... | https://sourcecodebrowser.com/lightning-sunbird/0.9plus-pnobinonly/interfacens_i_x_m_l_http_request.html | CC-MAIN-2017-51 | refinedweb | 318 | 69.38 |
def parseText(text): """ returns a list of sentences with less than 100 caracters """ toSay = [] punct = [',',':',';','.','?','!'] # punctuation words = text.split(' ') sentence = '' for w in words: if w[len(w)-1] in punct: # encountered a punctuation mark if (len(sentence)+len(w)+1 < 100): # is there enough space? sen... | http://glowingpython.blogspot.com/2012/11/text-to-speech-with-correct-intonation.html | CC-MAIN-2017-04 | refinedweb | 686 | 68.36 |
This.
For. new.
To enable the statement in Python 2.5, you need to add the following directive to your module:
from __future__ import with_statement
The statement will always be enabled in Python 2.6. new
The documentation for the contextlib module..)
The itertools.islice() function now accepts None for in the locale m... | http://docs.python.org/release/3.3.2/whatsnew/2.5.html | CC-MAIN-2013-48 | refinedweb | 124 | 58.08 |
None
0 Points
May 12, 2009 10:53 PM|FAQ Publisher|LINK
1. Toolkit Binaries
1.1 How do I get the latest version of the Toolkit?
1.2 Installation Errors
1.3 How do I update existing sites using the Toolkit?
2. Basic Usage
2.1 Browser compatibility
2.2 Dynamically creating controls
2.3 Can I use your scripts if I'm not us... | https://forums.asp.net/t/1422287.aspx?ASP+NET+AJAX+Control+Toolkit+FAQ | CC-MAIN-2019-51 | refinedweb | 5,778 | 50.63 |
Board index » C Language
All times are UTC
I need to have some text entered and pretend that the number entered is in hex, then do a decimal conversion to write to a file. Problem is, if I printf("%x %d",variable,variable), I don't get the same number that I do if I use the Windows Calculator to do the conversion.
here... | http://computer-programming-forum.com/47-c-language/cdd12724efdc462a.htm | CC-MAIN-2018-22 | refinedweb | 327 | 84.57 |
John Iacoviello - Papervision3D Optimization Tips
Balind on 21 Apr 2008 | Guest Post
Hello all, my name’s John Iacoviello and I work with Balind as a Sr. Interactive Developer at Red Interactive and I also go by Self Titled kung fu panda divx download
.
After finally getting a chance to build a site which heavily uses ... | http://interactivehug.com/2008/04/21/john-iacoviello-papervision3d-optimization-tips/ | crawl-002 | refinedweb | 4,366 | 69.52 |
The importing process consists generally of the steps listed here:
Prepare the “wild” cluster for migration.
Verify PID files for cluster processes.
Create and configure in MySQL Cluster Manager a “target” cluster whose configuration matches that of the “wild” cluster.
Perform a test run, and then execute the
import cl... | https://dev.mysql.com/doc/mysql-cluster-manager/1.4/en/mcm-using-import-cluster-procedure.html | CC-MAIN-2020-40 | refinedweb | 732 | 54.02 |
22 June 2010 07:05 [Source: ICIS news]
SHANGHAI (ICIS news)--China’s second-largest carbon black producer, Longxing Chemical Industry Co, plans to raise yuan (CNY) ?xml:namespace>
The shares - at issue price of CNY12.50 each - would be open to individual investors on 23 June, the Hubei province-based company said in a ... | http://www.icis.com/Articles/2010/06/22/9369870/chinas+longxing+chemical+to+raise+91.8m+from+shenzhen.html | CC-MAIN-2013-20 | refinedweb | 182 | 61.26 |
Load a configuration from a file and add its interfaces to the global list
#include <aoi.h> int32_t AoLoadConfig(const char *config_name, AOLoadedConfig_t **cfg);
This argument should be NULL if your application is loading only one configuration. In this case, you must manually release the controls and remove their int... | https://www.qnx.com/developers/docs/7.1/com.qnx.doc.neutrino.addon/topic/ao/aoloadconfig.html | CC-MAIN-2022-27 | refinedweb | 258 | 55.64 |
Machine learning + backtrader
Hi,
Do you have on your mind to add any machine learning library in backtrader or any ml sample?
Rgds,
Jj
- backtrader administrators last edited by
Not at the moment.
Ok, thanks. In the future if you consider it please let me know. I would like to suggest some ideas
Please suggest some id... | https://community.backtrader.com/topic/102/machine-learning-backtrader | CC-MAIN-2021-04 | refinedweb | 812 | 68.26 |
ZIP files in a folder and List files in a folder using Java Program
By: Emiley J Emailed: 1642 times Printed: 2111 times
This Java sample program demonstrates two things. 1. Zip files. 2. To list all the files in a folder
Most often, there is a need to zip files programmatically. In my case i had to automate the proces... | http://www.java-samples.com/showtutorial.php?tutorialid=216 | CC-MAIN-2017-13 | refinedweb | 245 | 57.37 |
This question already has an answer here:
How to get only letters from a string in C#?
4 answers
try this one:
var matches = Regex.Matches(textBox1.Text, "\\w+").Cast<Match>().Select(match => match.Value);
should give you all words without empty strings.
whole code
using System; using System.Collections.Generic; using ... | http://m.dlxedu.com/m/askdetail/3/ea209a529507e25ae49f827e06b32779.html | CC-MAIN-2019-04 | refinedweb | 158 | 53.98 |
. The index of the first element of an array is the number zero and the index of the last element is the total number of elements minus one.
To use an array in a program, you must declare a variable to reference the array and you must specify the type of array the variable can reference.
The following is the syntax for... | http://www.tutorialspoint.com/scala/scala_arrays.htm | CC-MAIN-2022-21 | refinedweb | 785 | 64.2 |
Agenda
See also: IRC log
<monica> good morning
<PaulC> Agenda:
<maryann> scribenick: maryann
<fjh> isn't next week call cancelled?
frederick: the meeting next week is marked cancelled on the admin page
<PaulC> Meeting schedule;
paul: the intent behind this was based on giving the authors time to work on final edits ass... | http://www.w3.org/2007/09/12-ws-policy-minutes.html | CC-MAIN-2016-30 | refinedweb | 2,117 | 55.17 |
The main class performing the highlighting of a single line. More...
#include <sourcehighlighter.h>
The main class performing the highlighting of a single line.
It relies on a HighlightState (and its HighlightRule objects).
It provides the method highlightParagraph() to highlight a single line.
The current highlighting... | http://www.gnu.org/software/src-highlite/api/classsrchilite_1_1SourceHighlighter.html | CC-MAIN-2014-15 | refinedweb | 168 | 56.25 |
with no authentication, and describe how to build this project from scratch. At the end of the tutorial, you will end up with a template with content that is pretty much the same as creating a new VS 2013 project using Web Forms template with no authentication (File > New Project > ASP.NET Web Application (Visual C#) ... | https://blogs.msdn.microsoft.com/webdev/2013/12/19/building-a-basic-web-forms-application-using-visual-studio-2013/ | CC-MAIN-2018-47 | refinedweb | 1,985 | 67.86 |
- Agency Services
- Cargo Surveyors
- Glossary
- Industry Links
- Minority Status
- Ocean Cargo
- Photo Gallery
- Port Distances
- Rate Request
- Sailing Schedule
- Trucking
- Wolrd Ports
Glossary
Cargo Glossary
A
alongside -- The side of a vessel.
B
barrel -- A measurement term that refers to 42 gallons of liquid at 6... | http://rgintl.biz/glossary.html | CC-MAIN-2018-39 | refinedweb | 2,519 | 57.87 |
2.
Creating Linux virtual filesystems
Posted Oct 22, 2002 13:23 UTC (Tue) by gregkh (subscriber, #8)
[Link]
Posted Oct 22, 2002 13:50 UTC (Tue) by corbet (editor, #1)
[Link]
Posted Oct 22, 2002 16:13 UTC (Tue) by gregkh (subscriber, #8)
[Link]
Posted Oct 22, 2002 18:41 UTC (Tue) by roelofs (subscriber, #2599)
[Link]
G... | http://lwn.net/Articles/13325/ | crawl-002 | refinedweb | 932 | 61.19 |
RECON WOOD VENEER Zebra FOR decoration furniture ZB-018S
2000 Square Meters (Min. Order)
Zebra Nautral Wood Veneer for furniture panel home decoration
US $1.65-6 / Square Meter
100 Square Meters (Min. Order)
living room vintage wooden display cabinet
US $5-20 / Piece
100 Pieces (Min. Order)
Factory price bed design fur... | http://www.alibaba.com/showroom/zebra-wood-furniture.html | CC-MAIN-2016-44 | refinedweb | 546 | 67.45 |
Get Up And Running With Craft CMS
Craft CMS is brought to you by the talented folks at Pixel & Tonic. It is actively maintained and kept in line with the changes in the modern web development world and is rising in popularity amongst CMS’s — with an impressive client list such as Netflix. It also has a very active Disc... | https://www.smashingmagazine.com/2020/09/craft-cms/ | CC-MAIN-2020-40 | refinedweb | 3,155 | 70.63 |
Monitoring Amazon Lex with Amazon CloudWatch
To track the health of your Amazon Lex bots, use Amazon CloudWatch. With CloudWatch, you can get metrics for individual Amazon Lex operations or for global Amazon Lex operations for your account. You can also set up CloudWatch alarms to be notified when one or more metrics e... | https://docs.aws.amazon.com/lex/latest/dg/monitoring-aws-lex-cloudwatch.html | CC-MAIN-2018-34 | refinedweb | 498 | 53.61 |
Fun with text file encodings
This post is about a couple of painful problems I’ve had with reading in text files.
They’re just text files, right? What could be hard about that?
1. Fun with encoding
The problem:
A friend sent me a dump of data from iTunes, as a table.
Just a text file.
She’s on a Mac. I’m on a Mac. But ... | https://szeitlin.github.io/posts/engineering/fun-with-failing/ | CC-MAIN-2022-27 | refinedweb | 709 | 84.17 |
PSoC5 Freezes during I2C Transmissionuser_477016028 Jun 23, 2016 3:37 AM
Hi,
We are using 3 PSoCs on our board. We are using CY8C5268AXI-LP047 (PSoC5), CY8C4247AZI-M485 (PSoC4200M) and CY8C4245AXI-483 (PSoC4200).
The PSoC5 is connected to the PC via USBUART and I get to send commands using a hyperterminal. The commands... | https://community.cypress.com/thread/13467 | CC-MAIN-2017-51 | refinedweb | 1,609 | 62.98 |
Just sharing stuff…
The Python Package Index is a repository of software for the Python programming language. What my colleague Ed David and I did were mine all the packages in the site together with the information on their dependencies. Ed used SQLite as our database engine to keep all mined information.
Using python... | https://erikafille.ph/2015/06/23/pypi-dependency-network/ | CC-MAIN-2018-51 | refinedweb | 227 | 58.58 |
Hide Forgot
Description of Problem:
As was posted on the bugtraq[@securityfocus.com] mailing list:
"
From: Christophe Devine <DEVINE@iie.cnam.fr>
To: bugtraq@securityfocus.com
Date: Wed, 13 Nov 2002 00:59:09 +0000
Subject: Re: i386 Linux kernel DoS
On Wed, 13 Nov 2002, Stefan Laud:
#include <sys/ptrace;
};
int main( vo... | https://partner-bugzilla.redhat.com/show_bug.cgi?id=77834 | CC-MAIN-2020-16 | refinedweb | 221 | 68.57 |
scratchpad Don Coyote <p><b>*work in Progress*</b></p> <p><strike>Unlike Perl6, objects in Perl5 are a matter of terminology, rather than an implicit construct of the language.</strike><sup><u>citation needed</u></sup> </p> <p> ~ Belief in Objects is a practised meditation here at the monastery.</p> <p>At this stage yo... | http://www.perlmonks.org/index.pl?displaytype=xml;node_id=847567 | CC-MAIN-2017-22 | refinedweb | 1,710 | 55.84 |
Fire property on list add
list.add c#
jquery callback function with parameters
jquery callback list
jquery list
how to add class object to list in c#
add multiple items to list c#
how to add values to list in c# using for loop
Just as title says, how to fire property when I do
propertyList.Add(something)
So code is:
pr... | http://thetopsites.net/article/52342966.shtml | CC-MAIN-2021-04 | refinedweb | 817 | 63.8 |
Fast Autocomplete using Directed Word Graph
Project description
Fast Autocomplete 0.2.1
Fast autocomplete using Directed Word Graph (DWG) and Levenshtein Edit Distance.
The results are cached via LFU (Least Frequently Used).
Why
This library was written when we came to the conclusion that Elasticsearch's Autocomplete s... | https://pypi.org/project/fast-autocomplete/ | CC-MAIN-2019-04 | refinedweb | 1,878 | 63.59 |
[C#][Tutorial] Basics of creating a script PART 1
Hello guys, I wanted to create a good script tutorial, which will explain the basics of ScriptHookVDotNet, the most amazing library crosire has created. Lets start.
NOTE: You NEED to know the basics of .NET/C# to continue. There are a lot of good courses on the net, goo... | https://forums.gta5-mods.com/topic/810/c-tutorial-basics-of-creating-a-script-part-1 | CC-MAIN-2017-43 | refinedweb | 1,219 | 83.05 |
SAP Fiori for SAP Business Suite
The SAP HANA Academy have put together a series of tutorials to help developers get started with the SAP FIORI Business Suite.
What is SAP Fiori?
SAP Fiori is the new user experience (UX) for SAP software. It applies modern design principles to SAP solutions to provide a personalized, r... | https://blogs.sap.com/2014/11/10/sap-fiori-for-sap-business-suite/ | CC-MAIN-2019-22 | refinedweb | 1,402 | 62.78 |
Get the highlights in your inbox every week.
Get started using treq to make async calls in Python | Opensource.com
A beginner's guide to asynchronous API calls with Python's Twisted package.
Subscribe now
The Twisted Requests (treq) package is an HTTP client built on the popular Twisted library that is used for asynchr... | https://opensource.com/article/20/3/treq-python | CC-MAIN-2020-24 | refinedweb | 1,936 | 64.71 |
This), .... But, this effect can be achieved in Python by combining map() and count() to form map(f, count()).
Likewise, the functional tools are designed to work well with the high-speed functions provided by the operator module.
Whether. 1:.
Make an iterator that returns consecutive integers starting with n. If not s... | https://docs.python.org/3.0/library/itertools.html | CC-MAIN-2015-14 | refinedweb | 441 | 51.89 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.