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. The audience was super engaged which made it very nice to be on stage. The questions, also in the hallway track, were surprisingly technical. In fact, most of the conference was around Kernel stuff. At least in the English speaking track. There is certainly a lot of potential for Free Software communities. I hope we...
https://blogs.gnome.org/muelli/tag/osdnconf/
CC-MAIN-2019-35
refinedweb
513
64
IPython notebook is a very nice experimentation platform, however it seems to be a little unintuitive to use when using as part of a larger ‘non-experimental’ codebase. The following shows how a couple of directory tweaks can be made without altering any IPython configuration files. If there’s a better way to do this, ...
http://blog.mdda.net/oss/2014/10/20/directories-in-ipython
CC-MAIN-2018-51
refinedweb
236
56.15
Compute Shortest Common Supersequence in C ++ In this tutorial of CodeSpeedy, we will learn about the Shortest Common Supersequence problem using C++ in a very simple way. This is a famous interview question. We will learn to write program code in C++ in an easy way by using a simple concept. If you don’t know anything...
https://www.codespeedy.com/compute-shortest-common-supersequence-in-c/
CC-MAIN-2021-10
refinedweb
541
68.81
As well as finally seeing the RTM of the .NET Core tooling, Visual Studio 2017 brought a whole host of new things to the table. Among these is C# 7.0, which introduces a number of new features to the language. Many of these features are essentially syntactic sugar over things that were already possible, but were harder...
https://andrewlock.net/deconstructors-for-non-tuple-types-in-c-7-0/
CC-MAIN-2021-31
refinedweb
899
53.44
This concrete class provides the definition of the pure virtual function value(scale) for . More... #include <ShowerAlphaQED.h> This concrete class provides the definition of the pure virtual function value(scale) for . N.B. as we always use for the radiation of photons this class is very simple. Definition at line 34 ...
https://herwig.hepforge.org/doxygen/classHerwig_1_1ShowerAlphaQED.html
CC-MAIN-2019-30
refinedweb
154
51.65
22 July 2013 18:22 [Source: ICIS news] HOUSTON (ICIS)--US base oil producer ?xml:namespace> The producer said continued tight supply of its naphthenic oils and escalating crude oil prices are the primary reasons for the increase initiative. Other naphthenic base oil suppliers were mulling price increases because of sim...
http://www.icis.com/Articles/2013/07/22/9689743/us-calumet-seeking-15-centsgal-increase-for-naphthenic-base-oils.html
CC-MAIN-2015-11
refinedweb
126
65.83
Chapter 13: Creating Form Regions., the detail level will be sufficient that you will not need the sample code to understand the concepts explained in this chapter. Contents This section provides a high-level overview of Outlook form region components and the differences between form regions and custom forms using form...
https://msdn.microsoft.com/en-us/library/cc513845(v=office.12)
CC-MAIN-2017-51
refinedweb
11,939
52.19
Perl - Variables Variables are. We have learnt that Perl has the following three basic data types − - Scalars - Arrays - Hashes Accordingly, we are going to use three types of variables in Perl. A scalar variable will precede by a dollar sign ($) and it can store either a number, a string, or a reference. An array vari...
https://www.tutorialspoint.com/perl/perl_variables.htm
CC-MAIN-2019-22
refinedweb
624
71.65
I have been using Linux for two days and Python for about 4 hours. Before that I used Mickeysoft for more than 20 years. I like to keep project files in a directory heirarchy away from the application I am using to create them. I'm trying to program the example on page 17 in 'Learning Python'. Not being familiar with t...
http://www.python-forum.org/viewtopic.php?p=12432
CC-MAIN-2017-09
refinedweb
239
69.18
I am learning about classes in python right now. My apologies if my language is a little sloppy, but I'm still trying to understand exactly how classes work. While working through some projects of my own, I often find myself wanting to add an object, upon initialization, to a list so I can keep a track of all the objec...
https://codedump.io/share/gfFnR29NFhnN/1/in-python-how-can-i-add-each-new-instance-of-a-class-to-a-list-upon-initialization
CC-MAIN-2018-22
refinedweb
124
76.01
See ACI. Access Control Instruction. An instruction that grants or denies permissions to entries in the directory. See ACL. Access Control List. The mechanism for controlling access to your directory. In the context of access control, specify the level of access granted or denied. Access rights are related to the type ...
http://www.redhat.com/docs/manuals/dir-server/install/7.1/glossary.html
crawl-002
refinedweb
3,243
50.73
Posted 04 Sep 2007 Link to this post We want to extend the functionality of RadTreeView and have therefore done something like this: public class DerivedTree : RadTreeView{ public DerivedTree() { this.AllowEdit = true; this.AfterLabelEdit += new AfterLabelEditHandler (DerivedTree_AfterLabelEdit); }}We then have two pro...
http://www.telerik.com/forums/afterlabeledit-and-endedit
CC-MAIN-2017-04
refinedweb
129
65.93
Previously, I had been cleaning out data using the code snippet below import unicodedata, re, io all_chars = (unichr(i) for i in xrange(0x110000)) control_chars = ''.join(c for c in all_chars if unicodedata.category(c)[0] == 'C') cc_re = re.compile('[%s]' % re.escape(control_chars)) def rm_control_chars(s): # see retur...
http://www.dlxedu.com/askdetail/3/d110f2c3dd5b238b1907af00e49a6fbd.html
CC-MAIN-2019-04
refinedweb
1,184
78.75
"Light Makes Right" September 28, 1993 Volume 6, Number 3. The ray tracing technology available on CIS seems a bit old-fashioned, with things like QRT and DBW still in active existence there and in the general BBS world among some users. POV 1.0 doesn't have an automatic efficiency scheme, something that dates back at ...
http://tog.acm.org/resources/RTNews/html/rtnv6n3.html
crawl-002
refinedweb
17,051
64.51
Change the current position of a stream #include <stdio.h> int fseek( FILE *fp, long offset, int whence ); int fseeko( FILE *fp, off_t offset, int whence ); int fseeko64( FILE *fp, off64_t offset, int whence ); libc Use the -l c option to qcc to link against this library. This library is usually included automatically....
https://www.qnx.com/developers/docs/7.1/com.qnx.doc.neutrino.lib_ref/topic/f/fseek.html
CC-MAIN-2022-33
refinedweb
132
70.13
Red Hat Bugzilla – Bug 193370 ainit creates semaphores and shmem with wrong permissions Last modified: 2007-11-30 17:11:34 EST Description of problem: The ipc_perm parameter in dmix.template and dsnoop_template has no effect, because ainit always uses 0600 as permission. Version-Release number of selected component (if...
https://bugzilla.redhat.com/show_bug.cgi?id=193370
CC-MAIN-2018-39
refinedweb
257
57.37
Deep learning is impacting everything from healthcare, transportation, manufacturing, and more. Companies are turning to deep learning to solve hard problems like image classification, speech recognition, object recognition, and machine translation. In this blog post, Intel’s BigDL team and Azure HDInsight team collabo...
https://azure.microsoft.com/pl-pl/blog/use-bigdl-on-hdinsight-spark-for-distributed-deep-learning/
CC-MAIN-2018-30
refinedweb
777
58.32
@r2d2 Thanks for pointing that out! It is fixed. Search Criteria Package Details: flatcam 8.5-1 Dependencies (8) Required by (0) Sources (3) Latest Comments matthew798 commented on 2020-07-25 22:09 r2d2 commented on 2020-07-20 16:29 This package is missing a dependency on PyQt4. flatcam Traceback (most recent call last...
https://aur.archlinux.org/packages/flatcam/
CC-MAIN-2021-25
refinedweb
534
73.58
Execute render passes sequentially. More... #include <vtkSequencePass.h> Execute render passes sequentially. vtkSequencePass executes a list of render passes sequentially. This class allows to define a sequence of render passes at run time. The other solution to write a sequence of render passes is to write an effectiv...
https://vtk.org/doc/nightly/html/classvtkSequencePass.html
CC-MAIN-2021-43
refinedweb
259
53.78
Summary: selective import breaks normal overload resolution> 2012-09-16 06:03:26 PDT --- The consequences of this bug are commonly observed by unwary as spurious template instantation fails around std.string split and (previously) replace if std.regex is imported. This happens because std.string publicly and selective...
http://forum.dlang.org/thread/bug-8667-3@http.d.puremagic.com%2Fissues%2F
CC-MAIN-2015-11
refinedweb
493
59.7
My name is Marcel Lindsay and I work with SAP in the cloud and I don’t like doing expense’s, there I have said it! 😀 I have a question for you; do you enjoy doing your expenses? 😯 That’s a very simple question and I can guarantee if you are like me, you hate doing them, actually next to ironing, yes I do my own ironi...
https://blogs.sap.com/2012/10/11/travel-broadens-the-mind-empties-the-pocket-or-how-cloud-based-sap-travel-ondemand-gave-me-back-my-life/
CC-MAIN-2017-51
refinedweb
936
62.72
21 September 2012 16:31 [Source: ICIS news] TORONTO (ICIS)--Newspar has appointed an interim CEO and named a new member to join its management committee, officials at the Canada-based fluorspar mining joint venture between French chemicals firm Arkema and Canada Fluorspar (CFI) said on Friday. Richard Carl will take ov...
http://www.icis.com/Articles/2012/09/21/9597748/moves-arkemas-canada-fluorspar-venture-shuffles-team.html
CC-MAIN-2015-11
refinedweb
202
51.89
Remotely accessible IPython-enabled debugger Package Description ripdb is a wrapper around the IPython debugger that enables one to connect to and control the debugger remotely via a socket handler. It combines the functionality of ipdb and rpdb in a single package. Usage After installation, include the following in yo...
https://pypi.org/project/ripdb/
CC-MAIN-2017-34
refinedweb
165
55.74
int tfile_gets ( char *message_buffer, int message_number ) char *message_buffer; // A pointer to a character buffer int message_number; // A message number Synopsis #include "silver.h" The tfile_gets function uses message_number to get a string of text from the tfile (text file) that is currently open. The string is c...
http://silverscreen.com/tfile_gets.htm
CC-MAIN-2021-21
refinedweb
103
54.22
#include <sys/param.h> #include <sys/systm.h> #include <sys/proc.h> arbitrary strings, this message should not be longer than 6 characters. The parameter timo specifies a timeout for the sleep. If timo is not 0, then the thread will sleep for at most timo, No, /, Va, hz seconds. If the timeout expires, then the sleep f...
https://nxmnpg.lemoda.net/9/tsleep_sbt
CC-MAIN-2020-05
refinedweb
184
67.15
This tutorial sample illustrates JSP 1.2 XML syntax (called JSP XML Documents) along with suitable examples. All the JSP pages in this tutorial sample are written using the XML Syntax. Traditional JSP constructs, such as <%@ page...> directives, <%@ include... > directives, <%...%> for scriptlets, <%!...%> for declarat...
http://www.oracle.com/technology/sample_code/tech/java/jsps/ojsp/jspxml.html
crawl-002
refinedweb
237
52.97
The fei_test_utils namespace contains general test-utility functions. Look through argv for a '-i' argument which names an input file, and a '-d' argument which names the directory in which the input file is to be found. If the '-i' argument is present but the '-d' argument is not present, then the path to the input fi...
http://trilinos.sandia.gov/packages/docs/r11.2/packages/fei/doc/html/namespacefei__test__utils.html
CC-MAIN-2013-48
refinedweb
516
66.13
My apologies for not looking at this earlier I had an emailhickup so I'm having to recreate the context from email archives,and you didn't copy me.Have you seen my previous work in this direction?I know I had a much much more complete implementation. The only partI had not completed was iptables support and that was ab...
https://lkml.org/lkml/2006/6/16/2
CC-MAIN-2017-13
refinedweb
363
54.32
Note that this class uses .NET Framework 2.0. It will not work with older versions. Also, it will only work in applications which have a window (not in console applications). Recently, I wrote a program which allows the user to encrypt data on his/her flash drive. The program should decrypt and encrypt the data transp...
https://www.codeproject.com/articles/18062/detecting-usb-drive-removal-in-a-c-program?fid=397899&df=90&mpp=25&sort=position&spc=relaxed&select=4336354&tid=3536434
CC-MAIN-2017-09
refinedweb
1,507
54.83
public class Naerling : Lazy<Person>{ public void DoWork(){ throw new NotImplementedException(); } } _Maxxx_ wrote:My BD 2Day plz snd cake. _Maxxx_ wrote:Also interview (with test, apparently) on mon. plz snd hlpz _Maxxx_ wrote:Bought a wifi extender for myself - at last all the house is on one network! Eddy Vluggen wr...
http://www.codeproject.com/Lounge.aspx?msg=4296570
CC-MAIN-2014-35
refinedweb
124
59.3
header file to include java classes? Discussion in 'C++' started by Swapnil Kale, Dec 19, 2007. Want to reply to this thread or ask your own question?It takes just 2 minutes to sign up (and it's free!). Just click the sign up button to choose a username and then you can ask your own questions on the forum. - Similar Th...
http://www.thecodingforums.com/threads/header-file-to-include-java-classes.562286/
CC-MAIN-2015-14
refinedweb
184
80.72
. import org.apache.hadoop.fs.*; import org.apache.hadoop.conf.*; import java.io.*; public class CopyFileToHDFS { public static void main(String[] args) { if(args.length==2) { String inputPath = args[0]; String outputPath = args[1]; try { CopyFileToHDFS copier= new CopyFileToHDFS(); copier.copyToHDFS(new Path(inputPath...
http://www.doublecloud.org/2012/10/hadoop-file-system-apis/
CC-MAIN-2018-43
refinedweb
379
50.02
WebForms And MVC In Harmony — Almost… Check out a new post about using WebControls inline with MVC that actually works with postbacks! Pop Quiz – What happens with the following snippet of ASP.NET code? <% int number = 5; %> <asp:PlaceHolder <% =number %> </asp:PlaceHolder> Prints the number 5? Nope. Maybe it equals ze...
https://somewebguy.wordpress.com/2009/06/18/webforms-and-mvc/
CC-MAIN-2017-17
refinedweb
1,239
56.45
java Threads - Java Beginners regardoing multi threads - Java Beginners regardoing multi threads Hi Please tell me how to declare global variables in main thread so that all other threads can use them and value will be available to all threads. Thanks Threads on runnable interface - Java Beginners Threads..."); } } ---...
http://www.roseindia.net/tutorialhelp/comment/90296
CC-MAIN-2014-35
refinedweb
1,571
55.34
I wonder if it is possible to exactly reproduce the whole sequence of randn() of MATLAB with NumPy. I coded my own routine with Python/Numpy, and it is giving me a little bit different results from the MATLAB code somebody else did, and I am having hard time finding out where it is coming from because of different rand...
https://www.tutorialguruji.com/python/is-it-possible-to-reproduce-randn-of-matlab-with-numpy/
CC-MAIN-2021-21
refinedweb
251
68.4
#include <openssl/pkcs7.h> int PKCS7_decrypt(PKCS7 *p7, EVP_PKEY *pkey, X509 *cert, BIO *data, int flags); Although the recipients certificate is not needed to decrypt the data it is needed to locate the appropriate (of possible several) recipients in the PKCS#7 structure. The following flags can be passed in the flags...
https://www.commandlinux.com/man-page/man3/PKCS7_decrypt.3ssl.html
CC-MAIN-2017-09
refinedweb
106
51.18
fm_baidu_map final FmBaiduMap _map = FmBaiduMap(); final FmBaiduLocation _location = FmBaiduLocation(); ios/android bugs android sdk ios support modify event add example add types publish example/README.md Demonstrates how to use the fm_baidu_map: fm_baidu_map: ^0.0.7 You can install packages from the command line: wit...
https://pub.dev/packages/fm_baidu_map
CC-MAIN-2019-30
refinedweb
277
57.57
make JSString::chars / JS_Get String Chars fallible RESOLVED FIXED Status () People (Reporter: luke, Assigned: luke) Tracking (Blocks 1 bug) Firefox Tracking Flags (blocking2.0 betaN+) Details (Whiteboard: fixed-in-tracemonkey) Attachments (17 attachments, 4 obsolete attachments) Currently, to keep JSString::chars() in...
https://bugzilla.mozilla.org/show_bug.cgi?id=609440
CC-MAIN-2019-22
refinedweb
7,234
64.3
Programming with Partial Classes in VB.NET 2005 WEBINAR: On-Demand Full Text Search: The Key to Better Natural Language Queries for NoSQL in Node.js Sometimes I wonder what motivates language developers to make some of the design choices they do. In fact, I'd like to arrange events called Authors Summits, where the lan...
https://www.codeguru.com/csharp/csharp/cs_syntax/indexers/article.php/c10611/Programming-with-Partial-Classes-in-VBNET-2005.htm
CC-MAIN-2018-09
refinedweb
1,135
64.91
Source south / docs / customfields.rst Custom Fields The Problem South stores field definitions by storing both their class and the arguments that need to be passed to the field's constructor, so it can recreate the field instance simply by calling the class with the stored arguments. However,. This isn't the case for ...
https://bitbucket.org/spookylukey/south/src/69b4986003d6/docs/customfields.rst?at=0.7
CC-MAIN-2014-23
refinedweb
1,423
58.82
Tracing and Replaying Events In SMO, the Trace and Replay objects in the N:Microsoft.SqlServer.Management.Trace namespace provide programmatic access to the SQL Server Profiler functionality, which is used for monitoring an instance of SQL Server or Analysis Services. You can capture and save data about each event to a...
https://msdn.microsoft.com/en-US/library/ms162565(v=sql.120).aspx
CC-MAIN-2016-44
refinedweb
331
50.73
When the contextDestroyed accesses a static method on a class which has not been loaded yet, the rest of the contextDestroyed code is not executed,e.g.,: package contexttest; import javax.servlet.ServletContextEvent; import javax.servlet.ServletContextListener; public class ContextTest implements ServletContextListener...
https://bz.apache.org/bugzilla/show_bug.cgi?id=56321
CC-MAIN-2018-13
refinedweb
419
68.97
I’m writing something which is partially written in ruby, but uses an extension which adds methods to some of the classes in the ruby part. Right now I’ve got a directory which contains both the ruby code and the so containing the extensions $ls mycode.rb mycode_prims.so in mycode.rb I’ve got something like: class Myco...
https://www.ruby-forum.com/t/packaging-hybrid-extension/71561
CC-MAIN-2021-39
refinedweb
185
72.16
3d Clustering in Python/v3 How to cluster points in 3d with alpha shapes in plotly [5]: import plotly.plotly as py import pandas as pd df = pd.read_csv('') df.head() scatter = dict( mode = "markers", name = "y", type = "scatter3d", x = df['x'], y = df['y'], z = df['z'], marker = dict( size=2, color="rgb(23, 190, 207)" ...
https://plotly.com/python/v3/3d-point-clustering/
CC-MAIN-2021-49
refinedweb
119
55.44
import "go-hep.org/x/hep/groot/rsrv/internal/hexcolor" HexModel converts any Color to an Hex color. Converts an Hex string to RGBA. If alpha is not specified, it defaults to 255 If it is not a valid hexadecimal number of the right width, a horrible yellow color is returned Hex represents an RGB color in hexadecimal for...
https://godoc.org/go-hep.org/x/hep/groot/rsrv/internal/hexcolor
CC-MAIN-2019-39
refinedweb
128
56.66
I wrote a fairly simple programme: It successfully compiled. When run, it correctly displays the first line:It successfully compiled. When run, it correctly displays the first line:Code:#include <iostream> int main() { using namespace std; int books; // declares variable "books" cout << "how many books do you have?" <<...
http://cboard.cprogramming.com/cplusplus-programming/100705-after-entering-data-pressing-enter-console-window-disappears.html
CC-MAIN-2014-52
refinedweb
132
75.61
0 Hi. This is NOT a homework assignment (self-interest only). The exercise asks me to write a function which accepts two strings and returns a pointer to the longer of the two. #include <stdio.h> #include <stdlib.h> char* longer( char str1[], char str2[] ); char* str_ptr; int main( void ) { char str1[] = "I like cheese...
https://www.daniweb.com/programming/software-development/threads/160374/warning-comparison-between-pointer-and-integer-mingw-5-1-4
CC-MAIN-2018-13
refinedweb
186
73.68
String Re-ordering March 27, 2015 Today’s exercise is a fun little interview question: You are given a string O that specifies the desired ordering of letters in a target string T. For example, given string O = “eloh” the target string T = “hello” would be re-ordered “elloh” and the target string T = “help” would be re...
https://programmingpraxis.com/2015/03/27/string-re-ordering/
CC-MAIN-2017-51
refinedweb
423
59.03
please tell how to compare the below two result sets. If true, then print, price are same. @nmraosir @HimanshuTayal sir please enlighten def list1 = [1299, 3099] def list2 = [1299.0, 3099.0] assert list1 == list2, 'both lists are not matching' Have you tried as above? @_lauren11 : There are various ways to compare arra...
https://community.smartbear.com/t5/SoapUI-Open-Source/How-to-compare-values-from-two-array/m-p/200539
CC-MAIN-2020-34
refinedweb
168
77.43
C# Programming Training Classes in Encinitas, California Learn C# Programming in Encinitas, California and surrounding areas via our hands-on, expert led courses. All of our classes either are offered on an onsite, online or public instructor led basis. Here is a list of our current C# Programming related training offe...
https://www.hartmannsoftware.com/Training/csharp/Encinitas-California
CC-MAIN-2020-45
refinedweb
106
54.73
16 April 2012 09:44 [Source: ICIS news] SINGAPORE (ICIS)--?xml:namespace> “TPPI won’t even have cargoes for June [loading],” said a Western trader familiar with the matter. Officials from TPPI could not be reached for comment. The company runs a 550,000 tonne/year paraxylene (PX) and 360,000 tonne/year benzene facility...
http://www.icis.com/Articles/2012/04/16/9550505/indonesias-tppi-unable-to-restart-aroms-unit-by-june.html
CC-MAIN-2014-42
refinedweb
171
56.49
This site uses strictly necessary cookies. More Information I'm working on a mobile app, in which I need to input and repeat microphone input almost immediately.. I've worked it out and it works great when I play it from within the Unity Editor. I get some very strange behavior though when I try it from my Android phon...
https://answers.unity.com/questions/895463/does-pc-process-microphone-input-differently-than.html
CC-MAIN-2021-31
refinedweb
244
67.04
Content-type: text/html brk, sbrk - Change space allocation Standard C Library (libc.so, libc.a) #include <unistd.h> int brk( void *addr ); void *sbrk( int incr ); The following function definitions do not conform to current standards and are supported only for backward compatibility: int brk( char *addr ); void *sbrk(...
http://backdrift.org/man/tru64/man2/brk.2.html
CC-MAIN-2016-50
refinedweb
443
50.77
BarSeries.drawLabels() doesn't account for multiple yFields, throws NPEs I have a BarSeries with 2 yFields and a labelConfig. My store has 9 items, so with two yFields that means there are 18 rects drawn. BarSeries.calculatePaths() has logic that alternates between the two fields for each of the 9 items. BarSeries.draw...
https://www.sencha.com/forum/showthread.php?234540-BarSeries.drawLabels()-doesn-t-account-for-multiple-yFields-throws-NPEs
CC-MAIN-2016-07
refinedweb
190
54.52
I am trying to setup a new aerospike cluster in which i have 2 namespaces say NS1 and NS2 backed by HDD. I provided same RAW devices for both the Namespaces and restarted my aerospike server but it didn’t start after that. Last log line that is present is "namespace NS1: found all 7 devices fresh, initializing to rando...
https://discuss.aerospike.com/t/server-didnt-boot-up-after-providing-raw-device-instead-of-file-for-data-persistence/1096
CC-MAIN-2018-30
refinedweb
112
74.53
Important: Please read the Qt Code of Conduct - Newbee is wired... Hello there, i have done a simple first Project with a slider and a spinbox like probably the other 99,9% of noobs. One time I did it writing by it by Hand and then by doing the same with the creator. There are two things i´m wondering. 1.) In the Hand ...
https://forum.qt.io/topic/45391/newbee-is-wired
CC-MAIN-2021-39
refinedweb
821
62.78
Aug 27 2019 04:40 PM - last edited on Apr 08 2022 10:06 AM by TechCommunityAP Aug 27 2019 04:40 PM - last edited on Apr 08 2022 10:06 AM by TechCommunityAP In the App Insights UI, I can generate a link to a query by clicking on Copy -> Copy Link to Query. Is there some way to generate such a URL programmatically, If I ...
https://techcommunity.microsoft.com/t5/azure-observability/how-to-programmatically-generate-a-link-to-open-an-app-insights/m-p/825806
CC-MAIN-2022-27
refinedweb
945
60.45
I’m taking this week off to catch up on everything I haven’t done the last two months and to celebrate the Thanksgiving holiday here in the US. PDC was a blast! It was incredibly awesome to meet so many folks interested in WF and talking with others about how they are using (or plan to use) WF4. I’ll be following up wi...
http://blogs.msdn.com/b/mwinkle/archive/2009/11.aspx
CC-MAIN-2015-14
refinedweb
1,001
60.95
#include <petscsys.h> PetscComplex number = 1. + 2.*PETSC_i; See PetscScalar for details on how to ./configure the size of PetscReal Complex numbers are automatically available if PETSc was able to find a working complex implementation Petsc has a 'fix' for complex numbers to support expressions such as std::complex<Pe...
https://petsc.org/release/docs/manualpages/Sys/PetscComplex.html
CC-MAIN-2022-21
refinedweb
124
54.32
Graph attention network¶ Authors: Hao Zhang, Mufei Li, Minjie Wang Zheng Zhang In this tutorial, you learn about a graph attention network (GAT) and how it can be implemented in PyTorch. You can also learn to visualize and understand what the attention mechanism has learned. The research described in the paper Graph Co...
https://docs.dgl.ai/tutorials/models/1_gnn/9_gat.html
CC-MAIN-2020-29
refinedweb
2,564
52.46
Adding an Ebuild to the Wiki. What We Have So Far To see what ebuild pages we have so far, see the Ebuilds by CatPkg page to see if the "CatPkg" (category/package atom) is already on this wiki.. An Example Ebuild Page Let's look at an ebuild page: Package:Accelerated_AMD_Video_Drivers. There are several, as the ebuild ...
http://www.funtoo.org/index.php?title=System_resurrection&oldid=4121
CC-MAIN-2014-52
refinedweb
141
68.7
In this lesson, we’ll use the plural createActions function and an action map to create multiple action creators with a single utility from redux actions. Excellent class, one question out of the topic, What is the font and theme that you are using? The multi-line cursor is very cool! The font is called "Operator Mono"...
https://egghead.io/lessons/redux-create-multiple-redux-actions-with-an-action-map-in-redux-actions
CC-MAIN-2021-21
refinedweb
175
71.44
28176/download-a-file-over-http-using-python In Python 2, use urllib2 which comes with the standard library. import urllib2 response = urllib2.urlopen('') html = response.read() This is the most basic way to use the library, minus any error handling. You can also do more complex stuff such as changing headers. The docu...
https://www.edureka.co/community/28176/download-a-file-over-http-using-python
CC-MAIN-2021-17
refinedweb
125
80.78
Basics of Math Operators in C Programming Two things make math happen in C programming. The first are the math operators, which allow you to construct mathematical equations and formulas. The second are math functions, which implement complex calculations by using a single word. How to increment and decrement in C prog...
https://www.dummies.com/programming/c/basics-of-math-operators-in-c-programming/
CC-MAIN-2019-30
refinedweb
949
71.75
Introduction to web scraping using Python Johnny Boy Updated on ・3 min read Table of contents - What is python? - What is web scraping? - What is the difference between 'web scraping' and 'web crawling' ? - What do I need to do web scraping with python? - How do I do it now!? What is python? In summary, Python is an aw...
https://practicaldev-herokuapp-com.global.ssl.fastly.net/grekz/introduction-to-web-scraping-using-python-36g5
CC-MAIN-2020-05
refinedweb
556
75.4
A lot of API are using OAuth protocol to authorize the received requests and to check if everything is OK regarding the identity of the request sender. OAuth is an open standard for authorization, commonly used as a way for Internet users to log into third party websites using their Microsoft, Google, Facebook, Twitter...
https://pierrevillard.com/2016/04/12/oauth-1-0a-with-apache-nifi-twitter-api-example/comment-page-1/
CC-MAIN-2021-39
refinedweb
1,868
57.27
Red Hat Bugzilla – Bug 244374 Review Request: xulrunner - XUL Runner Last modified: 2007-11-30 17:12:07 EST Spec URL: SRPM URL: Description:. The plan is to add this package to the olpc-2 branch. rpmlint complained following on SRPM=>. W: xulrunner strange-permission xulrunner-mozconfig 0755 A file that you listed to i...
https://bugzilla.redhat.com/show_bug.cgi?id=244374
CC-MAIN-2017-30
refinedweb
2,709
51.14
Subject: Re: [OMPI users] errors returned from openmpi-1.2.7 source code From: Shafagh Jafer (barfy27_at_[hidden]) Date: 2008-09-17 17:49:10 ok i looked at the errors closely, it looks like that the problem is from the "namespace MPI{.." in line 136 of "mpicxx.h" and every where that this namespace (MPI) is used. here ...
http://www.open-mpi.org/community/lists/users/2008/09/6591.php
CC-MAIN-2014-15
refinedweb
102
73.88
Music players are devices or applications that allow you to listen to audio files and recordings. There are many music players available, but in this article, we’ll build a clone of the popular music streaming service, Spotify, using React and ts-audio. You might expect that this tutorial would use the Spotify API, how...
https://blog.logrocket.com/build-spotify-clone-react-ts-audio/
CC-MAIN-2022-40
refinedweb
2,213
58.28
Most of the programs need data to work. This data is provided to the program while running or built into the program since the beginning. JSON is one of the ways to store this data in an organized and easy-to-handle manner. On the other hand, a python dictionary is one of the data types that can store a sequence of ele...
https://favtutor.com/blogs/dict-to-json-python
CC-MAIN-2022-05
refinedweb
923
60.55
Python Hash Algorithms July 11, 2002 | Fredrik Lundh This note describes how Python calculates hash values for some internal data types. Strings # Strings (both 8-bit and Unicode) use the following hash function: class string: def __hash__(self): if not self: return 0 # empty value = ord(self[0]) << 7 for char in self:...
http://www.effbot.org/zone/python-hash.htm
CC-MAIN-2013-20
refinedweb
555
54.86
It’s just data Wow. Thanks a lot, Sam. I looked at the slides a few times and now have a few questions/comments. 1.) It seems my familiarity with XSD prevents me from seeing things from a fresh perspective but I was wondering what about the presentation made you state that validation is less deterministic than you thou...
http://www.intertwingly.net/blog/906.html
crawl-002
refinedweb
625
64.1
CMAKE_MAKE_PROGRAM Error using PropWare and Visual Studio Code Having trouble setting up PropWare with Visual Studio Code on a Windows 10 system(s) The background is that a young sharp co-op student has been successfully producing propeller C/C++ code using Visual Studio Code for file generation and Propware from the c...
https://forums.parallax.com/discussion/173335/cmake-make-program-error-using-propware-and-visual-studio-code
CC-MAIN-2021-21
refinedweb
1,329
56.66
I am very new to programming so can someone please help with this problem. I have managed to read a sentence into an array and changed all the characters to upper case now I have to move each character 3 places in the alphabet, so some kind of wrap around will be necessary. If you programme for a living don't worry abo...
http://cboard.cprogramming.com/c-programming/6362-simple-encryption-using-array.html
CC-MAIN-2014-23
refinedweb
180
75.5
ftw.h - file tree traversal #include <ftw.h> The <ftw.h> header defines the FTW structure that includes at least the following members: int base int level The <ftw.h> header defines non-existent file. The <ftw.h> header defines macros for use as values of the fourth argument to nftw(): - FTW_PHYS - Physical walk, does ...
http://pubs.opengroup.org/onlinepubs/7990989775/xsh/ftw.h.html
CC-MAIN-2016-36
refinedweb
205
76.42
Created on 2016-11-08 04:07 by methane, last changed 2017-09-10 17:25 by rhettinger. This issue is now closed. I surprised how functools make import time slower. And I find namedtuple makes it slower. When I replaced _CacheInfo = namedtuple("CacheInfo", ["hits", "misses", "maxsize", "currsize"]) this line with `_Cached...
https://bugs.python.org/issue28638
CC-MAIN-2021-17
refinedweb
5,665
65.42
Banana Florist Ranked #20,457 in Shopping, #263,224 overall Better service. Lower prices. And a banana. People tend to either really love our concept, or think it's the dumbest thing ever. (Or both.) We hope that you think we're the awesomest. If not, more power to you. Our only fear is of being ordinary. And thus far,...
http://www.squidoo.com/bananaflorist
crawl-002
refinedweb
392
71.24
Fl_Image | +----Fl_Shared_Image #include <FL/Fl_Shared_Image.H> The Fl_Shared_Image class supports caching, loading, and drawing of image files. Most applications will also want to link against the fltk_images library and call the fl_register_images() function to support standard image formats such as BMP, GIF, JPEG, a...
https://www.fltk.org/documentation.php/doc-1.1/Fl_Shared_Image.html
CC-MAIN-2018-51
refinedweb
157
67.96
May 28, 2009 08:26 PM|j3rich0|LINK Hello, I'm following a screencast on the WCF Starter Kit and this one involves building a bookmark service, anyway at point he opens up the definition for ICollectionService<Bookmark> and that opens up Service.base.svc.cs which he edits and so on. Well that doesn't happen with me, ins...
https://forums.asp.net/t/1428862.aspx
CC-MAIN-2021-43
refinedweb
532
54.63
Shape Implementations Code Examples Shape Classes shape.cc Compound Shape Class #include <math.h> #include "shape.h" // Draw the rectangle by drawing its lines. */ void Rectangle::draw(Drawable &d) { d.line(origx, origy, origx + width, origy); d.line(origx + width, origy, origx + width, origy + height); d.line(origx + ...
http://sandbox.mc.edu/~bennet/cs220/codeex/shape_cc.html
CC-MAIN-2018-05
refinedweb
411
76.72
Do any of you VF chaps here know what they might be selling? I've seen a number of these guys in and around our street in Palmerston North this week. Whatifthespacekeyhadneverbeeninvented? #include <std_disclaimer> Any comments made are personal opinion and do not reflect directly on the position my current or past emp...
https://www.geekzone.co.nz/forums.asp?forumid=40&topicid=147182
CC-MAIN-2017-47
refinedweb
286
71.95
Essential tools and techniques for the Cell BE software developer Document options requiring JavaScript are not displayed Discuss Help us improve this content Level: Intermediate Michael Kistler (mkistler@us.ibm.com), Austin Research Laboratory, IBMSidney Manning (sid@us.ibm.com), Systems & Technology Group, IBM 08 Au...
http://www.ibm.com/developerworks/library/pa-celldebug/
crawl-001
refinedweb
3,896
51.07
ECMA OpenXml is a recognized open standard for saving and retrieving office documents that enables cross-platform document porting and sharing. The Office 2007 uses this format for its data persistence for word, excel and power point lineups. There is a OpenXml SDK CTP available for it to download from MSDN, which lets...
http://weblogs.asp.net/mehfuzh/archive/2008/03/15/openxml-to-parse-your-office-documents.aspx
CC-MAIN-2014-15
refinedweb
679
52.9
24iX Systems.de . Email: info@24ix. .org.5 locale. help hooks Internationalisation i18n i18n. templates or styles. 56414 Steinefrenz Web: www. search hooks. 11. po files Content Construction Kit more information flexinode. node Search improvements Fix the search. Alte Kirchstr.Task Modules/Areas Team of volunteers Mes...
https://www.scribd.com/doc/68439307/Drupal
CC-MAIN-2017-26
refinedweb
83,103
70.09
New issue 37 by stefano....@gmail.com: Optional arguments Related to issue 12, I want to stub out a function with optional arguments. I can't know in advance whether the optional arguments will be provided or not. IgnoreArg() is no help with missing arguments. def bar(one, two=None): pass The test subject may call bar(...
https://groups.google.com/g/mox-discuss/c/Yk53dkJATKU
CC-MAIN-2022-40
refinedweb
169
74.59
Mean shift clustering algorithm is a centroid-based algorithm that helps in various use cases of unsupervised learning. It is one of the best algorithms to be used in image processing and computer vision. It works by shifting data points towards centroids to be the mean of other points in the region. It is also known a...
https://analyticsindiamag.com/hands-on-tutorial-on-mean-shift-clustering-algorithm/
CC-MAIN-2021-49
refinedweb
1,482
57.87
Joomla! 1.5 Development Cookbook — Save 50% Solve real world Joomla! 1.5 development problems with over 130 simple but incredibly useful recipes This article by James Kennard shows how we can interact with the current user, logged in or not, and how we can interact with their session. This article contains the followin...
https://www.packtpub.com/article/session-and-user-joomla-15-part-1
CC-MAIN-2014-15
refinedweb
3,171
54.12
Drop the default values, use the value that users are most likely to click. - Use the highlighted option as the default focus when users scroll through the list. - If users are not required to click a value, include a "None" value in the drop-down list. Always place "None" (:). Code sample: Creating a drop-down list. p...
http://developer.blackberry.com/bbos/java/documentation/dropdown_lists_1970204_11.html
CC-MAIN-2015-32
refinedweb
408
54.22
You can click on the Google or Yahoo buttons to sign-in with these identity providers, or you just type your identity uri and click on the little login button. Maarten wrote : In the following Python fragment, the variable "x" is referenced before it is assigned in two occasions: def f(n): if n == 0: if x == 1: pass el...
https://www.logilab.org/ticket/5719
CC-MAIN-2017-13
refinedweb
307
70.02
Hi guys, I met a problem about interference when I'm using PWM OUTPUT on LED and DAC OUPUT of my Teensy 3.2 This is the sketch that allowed me to understand this behavior. As you can see from... Type: Posts; User: darioconcilio Hi guys, I met a problem about interference when I'm using PWM OUTPUT on LED and DAC OUPUT o...
https://forum.pjrc.com/search.php?s=6ee600d9cc7758cd530d72f1c607a2b0&searchid=4835028
CC-MAIN-2019-26
refinedweb
1,400
78.14
- The XHTML 2 Disaster - The WHAT Working Group? - Apps, Not Documents - Save Me! - Next Week In 1991, Tim Berners-Lee described a very simple SGML profile for marking up online documents. This defined a few tags for marking up text. The original web browsers, Sir Tim's WorldWideWeb for NeXTSTEP and a terminal-based UN...
http://www.informit.com/articles/article.aspx?p=1561901
CC-MAIN-2017-26
refinedweb
668
64.91
Hi, I am trying to implement maxpool fonction from scatch (for fun) and use backward() on it. In my implementation below, the output Y of maxpool is correct (I verified it). But the gradient of the input at a zero tensor, which is wrong. code : import torch def maxpool_fp(X): pool_dim = 2 pool_stripe = 2 bs, cx, dx, _ ...
https://discuss.pytorch.org/t/maxpool-from-scratch/90951
CC-MAIN-2020-34
refinedweb
175
75.2
MCOMMAND_JOIN issue - merkvilson last edited by r_gigante Hello PluginCafe :) I need to merge 2 objects in OBJECT_GENERATOR plugin and return the result but it returns only 1 object. my code looks like this. Am I doing something wrong? import c4d, os from c4d import plugins, utils, Vector as v class Otest(c4d.plugins.O...
https://plugincafe.maxon.net/topic/11271/mcommand_join-issue/4
CC-MAIN-2020-10
refinedweb
438
51.95
Opened 11 years ago Last modified 8 years ago #1913 new Feature Requests Null deleter for shared_ptr Description As raised in this () message on the boost-users mailing list, it would be very nice if the smart pointer library contained a null deleter object so it could be used for stack/static objects. To save the user...
https://svn.boost.org/trac10/ticket/1913
CC-MAIN-2018-51
refinedweb
169
63.09
This white paper investigates a technique for real-time simulation of deep ocean waves on multi-processor machines under simulated work loads using threading. Computer graphicists have a long history of attempting to model the real world. When designing immersive experiences, our goal is to design environments that loo...
http://software.intel.com/en-us/articles/real-time-deep-ocean-simulation-on-multi-threaded-architectures/
crawl-003
refinedweb
5,145
53.51
Not ready to install anything? Try our in-browser tutorial. To start building .NET apps you just need to download and install the .NET SDK (Software Development Kit). Open a new command prompt and run the following commands: dotnet new console -o myApp cd myApp The dotnet command creates a new application of type conso...
https://www.microsoft.com/net/learn/get-started/windows
CC-MAIN-2018-26
refinedweb
196
69.38
Hello! On Thu, Mar 22, 2007 at 09:44:03AM +0100, Martin Sandve Alnæs wrote: > If I subtract two equal matrices, I get the scalar 0. In GiNaC (A-A) is always transformed into 0 (number). I admit this is ugly, but fixing it would be very difficult (if possible at all). > This messes up later calculations, since a scalar ...
https://www.ginac.de/pipermail/ginac-list/2007-March/001103.html
CC-MAIN-2019-09
refinedweb
224
72.66
Yesterday, I attended a training class at Microsoft’s facility in Malvern, Pennsylvania. This training class was led by Sebastian Meine (sqlity.net) and Dennis Lloyd (curiouslycorrect.com). The class was from 9:00 am to 5:00 pm with a short break for lunch. During the class, Dennis and Sebastian explained how to use tS...
http://blogs.lessthandot.com/index.php/datamgmt/datadesign/tsqlt-unit-testing/
CC-MAIN-2014-52
refinedweb
666
73.31
Urgent ! Thank you in advance Please help me, i don't undestand why my function with find() query doesn't work. In backend/tools.jsw i have this function : import wixData from 'wix-data'; export function searchForDuplicates(uID) { wixData.query("Process") .eq("LoginMail", uID) .find() .then( (results) => { if(results.l...
https://www.wix.com/corvid/forum/community-discussion/query-find-searchforduplicates
CC-MAIN-2020-05
refinedweb
877
65.83
September 2014 Comics, Poetry, and Reviews from aka Stream "In The World"*Top Picks = Additional Items Received Masami Akita / John Duncan - The Black Album (Vinyl LP, Tourette, Experimental) Really strange packaging for this vinyl LP. The Black Album cover was actually shot to death with BB's (fortunately without the ...
https://www.babysue.com/2014-Sept-LMNOP-Reviews.html
CC-MAIN-2019-04
refinedweb
12,231
72.05