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
In the last tutorial I showed you how to patterns using the Particle Core and now its time to put that into use in this tutorial I'm going to show you how to build a Gmail notifier using the internet button. The internet button displays the pattern that you created earlier, once you get an email. You may need to read m...
https://www.instructables.com/id/Particle-Core-Photon-Gmail-Notifier/
CC-MAIN-2019-43
refinedweb
346
61.26
I love when code makes life easier. However, if you don’t know what the code does… life isn’t so easy now. That’s why we have man pages! Except building a man page for a script and handling the “-h” argument from a command prompt can be tedious. Python has a really cool library called optparse, that includes the abilit...
http://somethingk.com/main/?p=644
CC-MAIN-2022-40
refinedweb
614
66.13
b2dLite is a quick Stage3D quad rendering engine. It batches the draw calls automatically, drastically improving the application performance. In order to take full advantage of the lib, a developer must use spritesheets, trying to draw objects with the same texture together, which avoids context switches. The lib has a...
https://www.as3gamegears.com/misc/b2dlite/
CC-MAIN-2019-39
refinedweb
219
51.04
Next: A C++ namespace for gnulib, Previous: Obsolete modules, Up: Miscellaneous Notes [Contents][Index] Test modules can be marked with some special status attributes. When a test module has such an attribute, gnulib-tool --import will not include it by default. The supported status attributes are: c++-test Indicates t...
http://www.gnu.org/software/gnulib/manual/html_node/Extra-tests-modules.html
CC-MAIN-2015-18
refinedweb
435
52.19
miura 0.1.5 a Jenkins job management toolmiura ===== a Jenkins job management tool. Miura can create, update, and delete on mass for multiple jobs that vary slightly in configuration. Usage ----- to create jobs with miura, the following is needed: * a job template, providing a template for a job * a directory, containi...
https://pypi.python.org/pypi/miura
CC-MAIN-2015-40
refinedweb
742
67.25
20 September 2012 11:07 [Source: ICIS news] (adds details) SINGAPORE (ICIS)--Asia’s methyl tertiary butyl ether (MTBE) prices plunged by $53/tonne (€41/tonne) on Thursday to land at a seven-week low, tracking losses in the crude futures market, traders said. MTBE prices were assessed at $1,101-1,103/tonne FOB (free on ...
http://www.icis.com/Articles/2012/09/20/9597081/asia-mtbe-falls-53tonne-to-seven-week-low-on-weak-crude.html
CC-MAIN-2014-41
refinedweb
175
72.05
tqdm in Jupyter Notebook I am using tqdm to print progress in a script I'm running in a Jupyter notebook. I am printing all messages to the console via tqdm.write(). However, this still gives me a skewed output like so: That is, each time a new line has to be printed, a new progress bar is printed on the next line. Thi...
https://python-decompiler.com/article/2017-02/tqdm-in-jupyter-notebook
CC-MAIN-2019-47
refinedweb
194
82.44
I am a c++ n00b and I am unsure basically have looked within the right places but I am unclear about this: include <iostream> using namespace std; class Enemy { public: void sayHere() { cout<<"Here"<<endl; } virtual void attack() { } }; class Monster: public Enemy { public: virtual void attack() { cout<<"RAWR"<<endl; }...
http://codeblow.com/questions/unclear-about-virtual-functions-c/
CC-MAIN-2018-47
refinedweb
546
62.48
14 May 2010 06:40 [Source: ICIS news] By John Richardson MUMBAI (ICIS news)--Polyolefin pricing will escape a feared drawn-out margin-squeeze that could have followed new capacities coming on stream, because plant start-ups have been delayed and Asian demand has been exceptionally rapid, industry sources said on Friday...
http://www.icis.com/Articles/2010/05/14/9359424/apic-10-polyolefins-will-escape-margin-squeeze-sources.html
CC-MAIN-2015-14
refinedweb
306
60.45
C#. 1: Anonymous Methods If you have developed in C#, you are probably familiar with Delegates. Delegates are objects that encapsulate references to functions. One of the most common uses of Delegates is the implementation of event handler code. To see this in action, create a new Windows Forms (WinForms) project, and ...
https://www.codemag.com/article/0303072
CC-MAIN-2019-13
refinedweb
2,011
64
XML Web Services One of the main reasons the web succeeded today is it simplicity due to which it can be omnipresent. Web services are the new generation we applications. They are self starting applications that run on their own platforms and are accessible on the web easily. Web services architecture is very simple to...
https://www.exforsys.com/tutorials/xml/xml-web-services.html
CC-MAIN-2021-21
refinedweb
1,525
51.28
[solved] iOS - Qt4iOS - mobility (problem of mine) - favoritas37 To begin with i will start by congratulating Qt4iOS for the latest update! The problem that i am having which unfortunately i can't solve it on my own is the following: I am using the latest version of Qt4iOS with the iOS plugin, using XCode 4.5 and targe...
https://forum.qt.io/topic/22961/solved-ios-qt4ios-mobility-problem-of-mine
CC-MAIN-2017-34
refinedweb
335
62.78
TimeZone is an abstract class which defines as standard time followed within a geographical area for the use with the Gregorian calendar. The TimeZone class allows working with TimeZone offset based on Greenwich Mean Time (GMT) which is referred as Coordinated Universal Time. It also sets a daylight saving time. By usi...
https://javabeat.net/java-util-timezone/
CC-MAIN-2022-05
refinedweb
554
50.53
Re: The Sundowners: "Always You" Expand Messages - Below is what I found in 5 minutes of "Googling". Apart from the "Always You" track appearing on several compilations and the Rev-Ola label CD listed below, there is also a 12minute and 28 second performance by the Sundowners on the Monkees tour in which they perform a...
https://groups.yahoo.com/neo/groups/spectropop/conversations/topics/45596
CC-MAIN-2015-48
refinedweb
1,195
70.63
unsafeCoerce leaks types Forgive the cryptic summary, here's the code: import Unsafe.Coerce import Foreign import Data.Bits foo = (unsafeCoerce (0.50094324::Float))::Int32 bar = (unsafeCoerce (0.30295494::Float))::Int32 main = print (foo, foo .&. 0xffffffff) >> print (bar, bar .&. 0xffffffff) giving the output % runhas...
https://gitlab.haskell.org/ghc/ghc/-/issues/3948
CC-MAIN-2020-29
refinedweb
109
70.39
Searching Jars with Java Closures (Ed's note: see this post for a better example of closures. This one is intended for direct contrast with a Groovy script: the resulting Java is awkward.) The last post has a "Hello World", of sorts, for Neal Gafter's closure proposal. In it, I mentioned that I have converted a Groovy ...
http://codetojoy.blogspot.ca/2007_10_01_archive.html
CC-MAIN-2017-26
refinedweb
535
55.84
We are proud today to introduce the production-ready Next.js 8, featuring: - Serverless Next.js - Massive build-time memory usage reduction - Build-time environment configuration - Prefetch performance improvements - Smaller initial HTML size - Improved on-demand entries - Faster port listening in development - Faster ...
https://nextjs.org/blog/next-8
CC-MAIN-2020-45
refinedweb
2,269
57.27
Hi pros, short question. I wanna make a simple beat em up on a small planet. When my player hits an enemy the enemy should fly over the planet. Right now i am moving the enemy after a hit with addforce. collision.gameObject.GetComponent<Rigidbody>().AddForce(transform.forward * attackPower); My gravity script takes car...
https://answers.unity.com/questions/1692653/addforceforward-on-a-sphere-object.html
CC-MAIN-2020-10
refinedweb
895
57.47
Advertisement What is blob? How to detect blobs in an image? In this blog, we are going to learn about blob detection in OpenCV Python. Blob can be described as groups of connected pixels that all share a common property. Let’s Code Blob Detection in OpenCV Python! Blob Detection OpenCV Algorithm - Read Image using Ope...
https://hackthedeveloper.com/blob-detection-opencv-python/
CC-MAIN-2021-43
refinedweb
397
61.43
Hi guys, I have a problem with my code. What I am doing is making a linked list of points (x,y). I want to ask the user for points (as many as they want to add) then add them into a linked list. I also want to sort the points by their x value. Finally I want to print the points in the list. So far I have the linked lis...
http://cboard.cprogramming.com/cplusplus-programming/83610-linked-list-points.html
CC-MAIN-2014-41
refinedweb
724
80.11
🧹 vassoura What is it? Find files your project doesn't need anymore and make your project cleaner. How it works We scan through each file and look at the import and part statements. This way we know which file imports what, so we generated the inverse: for every imported file find out who imports it. In the case of pa...
https://pub.dev/documentation/vassoura/latest/
CC-MAIN-2021-25
refinedweb
301
66.94
Tutorial 1a: The simplest Brian program¶ Importing the Brian module¶ The first thing to do in any Brian program is to load Brian and the names of its functions and classes. The standard way to do this is to use the Python from ... import * statement. from brian import * Integrate and Fire model¶ The neuron model we wil...
https://brian.readthedocs.io/en/1.4.3/tutorial_1a_the_simplest_brian_program.html
CC-MAIN-2019-30
refinedweb
596
58.32
PyOracle is an ongoing project which uses Python to automatically. PyOracle aims to be a toolbox for exploring this type of automated musical analysis. PyOracle has applications for: PyOracle is currently implemented as a Python module, and can be used as a stand-alone CL application or embedded in Max or PD through th...
http://nbviewer.ipython.org/urls/bitbucket.org/pucktronix/pyoracle/raw/d046b2bcf473503fa356094cfe4cff774d1aaefc/270D.ipynb
CC-MAIN-2015-11
refinedweb
2,060
62.07
Implementing Binary tree in C++ Sign up for FREE 1 month of Kindle and read all our books for free. Get FREE domain for 1st year and build your brand new site Reading time: 25 minutes | Coding time: 40 minutes In this article, we have explored how to implement Binary Tree Data Structure in C++ including all different o...
https://iq.opengenus.org/implement-binary-tree-in-cpp/
CC-MAIN-2021-17
refinedweb
2,498
66.98
Working with BEM at Scale — Advice From Top Developers At the start of the year, I put together an article on BEM and SMACSS that focused on the confusion of choosing a CSS methodology. I contacted a range of different developers and got their words of advice, their success stories and their horror stories in the hope ...
https://www.sitepoint.com/working-bem-scale-advice-top-developers/
CC-MAIN-2020-16
refinedweb
4,333
59.84
Automating Common Development Tasks in a Python Environment Over the weekend I rolled out a few changes for this blog which made me frequently update the live codebase. After a few ssh's I decided it was time to automate these tasks so I could spend more time developing and less time doing tedious administrative things...
http://alec.aivazis.com/blog/automating-common-development-tasks-in-a-python
CC-MAIN-2017-30
refinedweb
1,009
60.35
BLOG#4 Testing Part 1 (Case Enclosure Reliability Monitor) Test#2 - Enclosure1554UGY Test Design This is my 1st Test design to test the reliability of the Hammond Enclosure 1554UGY The following components are being used::Arduino MKR WAN 1300 with LoRa radio antenna,DS18B20 Temperature Sensor,Mini OLED I2C Display (SSD...
https://community.element14.com/challenges-projects/design-challenges/just-encase/b/blog/posts/blog4testing
CC-MAIN-2022-21
refinedweb
1,028
58.42
The ones who are crazy enough to think they can change the world are the ones who do.- Steve Jobs You will need to use character strings in most of your program - names, address, state, district and so on. Thus understanding about strings in C programming is necessary. The following four points are good enough to make ...
https://www.2braces.com/c-programming/c-strings
CC-MAIN-2017-51
refinedweb
188
75.3
I've taken a jaundiced view of "liberation tech" efforts in the past and this is as good an illustration as any of why. Among "amateur" libtech projects, Tor is about as good as you get --- an active community, extremely widespread use, technical people with their heads screwed on right and as much humility as you can ...
http://hackerbra.in/best/1381417861
CC-MAIN-2018-26
refinedweb
30,068
70.43
! C# - Works: int x = 5; Console.WriteLine(x.ToStri Java - Does not work because there are no methods associated with int: int x = 5; System.out.println(x.toStr "Now," you say, "not ALL objects are treated entirely the same." That is true. Instances of classes that derive from the System.ValueType are stored on the sta...
https://www.experts-exchange.com/questions/20938215/string-data-type.html
CC-MAIN-2018-05
refinedweb
472
61.22
How and Why to use f strings in Python3? Python provides us with many styles of coding. And with time, Python has regularly come up with new coding standards and tools that adhere even more to the coding standards in the Zen of Python. Beautiful is better than ugly. In this series of posts named Python Shorts, I will e...
https://mlwhiz.com/blog/2020/05/24/fstring/
CC-MAIN-2020-40
refinedweb
745
75
. Note that because the rfc822 module is deprecated, it is recommended that you use the email package to create message objects from a mailbox. (The default can't be changed for backwards compatibility reasons.) The safest way to do this is with bit of code:) The above wrapper is defensive against ill-formed MIME messa...
http://www.python.org/doc/2.4.2/lib/module-mailbox.html
crawl-002
refinedweb
107
59.64
I think this is fine. - Queries - All Stories - Search - Advanced Search - Transactions - Transaction Logs Advanced Search May 28 2020 Jan 7 2020 For FreeBSD, MAP_ALIGNED_SUPER probably isn't what you want. The default mmap() for MAP_ANON on FreeBSD tries to do what MAP_ALIGNED_SUPER does if the request is at least one...
https://reviews.llvm.org/feed/?userPHIDs=PHID-USER-v3tgl7qmibdmi654qsq5
CC-MAIN-2020-45
refinedweb
2,048
73.68
Programming Excel 2007 with VB 2005 - From: David Bell <DavidBell@xxxxxxxxxxxxxxxxxxxxxxxxx> - Date: Tue, 26 Feb 2008 10:36:01 -0800 I am have extreme dificulity with writing code in visual basic 2005 to control excel. I have added references to the interop library but that seems to only make available a small portion ...
http://www.tech-archive.net/Archive/Office/microsoft.public.office.developer.vba/2008-02/msg00044.html
crawl-002
refinedweb
249
71.85
Warning: You are browsing the documentation for Symfony 3.1, which is no longer maintained. Read the updated version of this page for Symfony 5.3 (the current stable version). How: // src/AppBundle/Controller/ArticleController.php namespace AppBundle\Controller; // ... class ArticleController extends Controller { publi...
https://symfony.com/doc/3.1/templating/debug.html
CC-MAIN-2021-43
refinedweb
129
52.26
A Software Engineering, Algorithms and Programming Language Blog Where is your interactive language workbench? Well, it's only a download away, but you won't like it. I almost hate to do this to you, but Smalltalk had pretty much what you want twenty years ago and more. Lisp environments, likewise. The logical conclusi...
http://www.atalasoft.com/cs/blogs/rickm/archive/2008/06/06/why-are-our-programs-still-represented-by-flat-files.aspx
CC-MAIN-2014-10
refinedweb
2,544
69.21
Crypto: OpenSSL compatible cryptographic classes & functions in Javascript Hi all! I have compiled a library of OpenSSL compatible cryptographic classes & functions by using different resources from the web and my own input. Documentation is not complete (yet) and I do not have a demo link at the moment, but everything...
https://www.sencha.com/forum/showthread.php?80415-Crypto-OpenSSL-compatible-cryptographic-classes-amp-functions-in-Javascript
CC-MAIN-2016-22
refinedweb
796
57.37
derelict-cl 3.2.0 A dynamic binding to the OpenCL library. To use this package, run the following command in your project's root directory: Manual usage Put the following dependency into your project's dependences section: DerelictOpenCL A dynamic binding to OpenCL for the D Programming Language. Please see the pages B...
https://code.dlang.org/packages/derelict-cl
CC-MAIN-2021-21
refinedweb
170
51.65
// $Id: readme.dox 30 2007-08-20 11:15:18Z tb $ /** \file readme.dox Contains main doxygen example explanation page. */ /** \mainpage \section sec_summary Summary This %example shows how to use both Flex and Bison in C++ mode. This way both lexer and parser code and data is encapsulated into classes. Thus the lexer and...
http://panthema.net/2007/flex-bison-cpp-example/flex-bison-cpp-example-0.1/src/readme.dox
CC-MAIN-2014-52
refinedweb
541
53.58
NOTES relative to the implementation ==================================== xsl:stylesheet: all children except xsl:import can be in any order, so this can be stored as one big structure. xsl:include: this is really similar to XInclude, can be implemented as a nearly separate processing just after the XML stylesheet has ...
http://opensource.apple.com//source/libxslt/libxslt-10.1/libxslt/NOTES
CC-MAIN-2016-36
refinedweb
1,116
57.16
Save 37% off The Transparent Web with code fccwilson at manning.com. Assembly To get a feel for what assembly is all about, let’s look at some x86 code. C makes a stop at assembly before the ‘assembler’ converts that into machine code. If we ask our friendly compiler (I’m using clang) to ‘show its work’ we can peek beh...
http://freecontent.manning.com/assembly-web-and-otherwise/
CC-MAIN-2017-51
refinedweb
1,227
75.81
Wiki Example¶ Contents Introduction¶ This is an example of how to write a WSGI application using WebOb. WebOb isn't itself intended to write applications -- it is not a web framework on its own -- but it is possible to write applications using just WebOb. The file serving example is a better example of advanced HTTP us...
https://docs.pylonsproject.org/projects/webob/en/stable/wiki-example.html
CC-MAIN-2021-21
refinedweb
2,829
52.36
Allows you to prevent multiple execution and queuing of celery tasks. Project description Installation Installing celery_once is simple with pip, just run: pip install -U celery_once Requirements Usage To use celery_once, your tasks need to inherit from an abstract base task called QueueOnce. Once installed, you’ll nee...
https://pypi.org/project/celery_once/
CC-MAIN-2019-35
refinedweb
1,133
51.55
Registered users can ask their own questions, contribute to discussions, and be part of the Community! Registered users can ask their own questions, contribute to discussions, and be part of the Community! Hi, I have an Excel with different sheets and I need the name of the sheet as a value in DSS. Is one of the visual...
https://community.dataiku.com/t5/Using-Dataiku/Using-Excel-Sheet-name/m-p/15877/highlight/true
CC-MAIN-2022-33
refinedweb
374
80.82
Hey Guys. I've been trying to create an inline SVG document inside a div using javascript. I cannot seem to figure this out. What I want to do is create a <svg> element and apply some shapes and colors to it via javascript (or ecmascript if I need to). I have googled this and found that you need to have a valid XHTML+X...
http://community.sitepoint.com/t/creating-a-svg-element/5929
CC-MAIN-2015-40
refinedweb
1,049
74.08
I was doing a project in google collab. But I faced this error. What should I do ?? I am working with Gaussian Navie Bayes import pandas as pd import csv from sklearn import datasets dataset = datasets.load_wine()` from sklearn.model_selection import train_test_split X = dataset['data'] y = dataset['target'] x_train , ...
https://cmsdk.com/python/name-39x39-is-not-defined.html
CC-MAIN-2021-43
refinedweb
197
61.63
Galileo is the simultaneous release of 33 major Eclipse projects. The Eclipse Foundation states that the Galileo release train consists of 33 projects. However, some are subprojects that are rolled up into projects, and not all projects are highlighted in the Eclipse Foundation's marketing push. Regardless, Galileo rep...
http://www.ibm.com/developerworks/opensource/library/os-eclipse-galileo/index.html?ca=dgr-lnxw97Galileo-flyby&S_TACT=105AGX59&S_CMP=grlnxw97
CC-MAIN-2014-52
refinedweb
4,262
51.18
I'm in the process of migrating a series of users from a Windows 2003 server to Windows Server 2012. Part of the migration is retiring the old hardware and, to do that, all of the collected data is to be moved to the new server. I've done a robocopy (w/ /SEC switch) of all of the data on the 2003 drive and recreated sh...
https://community.spiceworks.com/topic/404903-migrating-redirected-folders
CC-MAIN-2019-04
refinedweb
687
67.99
Renesas CC-RX Dependencies The emWin that's available for the Renesas RX family can be built with the GCC Toolchain, but there are changes needed - a CC-RX construct is used to call the NOP() machine instruction. - a compile time definition needs to be set. - a different emWin library needs to be linked in. - take care...
https://www.element14.com/community/groups/embedded/blog/2020/01/02/renesas-rx65-envision-kit-part-11-port-emwin-to-gcc-and-run-an-lcd-widget
CC-MAIN-2020-34
refinedweb
1,089
73.47
CDT/calls/Indexing20061011 Contents Attendees - Symbian - Andrew - IBM - Jason, Mike Kucera - WindRiver - Markus Content Discussion of proposed API Andrew asks for the role of IIndexFragment: Idea is to separate the PDOM from the index in a way that allows replacing the PDOM implementation. Even if there is currently n...
http://wiki.eclipse.org/CDT/calls/Indexing20061011
CC-MAIN-2015-22
refinedweb
696
72.66
A TXR script is called a query, and it specifies a pattern which matches (a prefix of) an entire file, or multiple files. Patterns can consists of large chunks of multi-line freeform query and imperative programming, and provides data types such as symbols, strings, vectors, hash tables with weak reference support, laz...
http://www.nongnu.org/txr/txr-manpage.html
CC-MAIN-2014-10
refinedweb
44,579
62.58
: Hi Hi I need some help I've got my java code and am having difficulty... java.util.Scanner; public class Post { public static void main(String[] args) { Scanner sc..."); } private static class Process { public Process() { } } private void Hi - Struts Hi Hi friends, must for struts in mysql or not necessary please te...
http://roseindia.net/tutorialhelp/comment/2618
CC-MAIN-2014-15
refinedweb
962
71.04
How to Make Friends in Your New Neighborhood Edited by Bob Robertson, Eric, Onoez, Maluniu and 9 others Making new friends in a new neighborhood can be intimidating. Others have established their social structure without you, and you're the outsider. With time, patience, and a little care you'll meet people and fit in....
http://www.wikihow.com/Make-Friends-in-Your-New-Neighborhood
CC-MAIN-2014-10
refinedweb
1,174
76.52
$ ./configure --prefix=/usr $ make $ make check $ sudo make install This guide is intended to demonstrate the use of libproccpuinfo through examples and explaination. The most recent version can always be found at The library uses autotools, just use the standard commands. $ ./configure --prefix=/usr $ make $ make chec...
http://www.nongnu.org/proccpuinfo/libproccpuinfo-guide.html
CC-MAIN-2016-07
refinedweb
680
54.12
Can define a class for namespace A in some other namespace B? Discussion in 'C++' started by Peng Yu, Sep: - 505 - Thomas Matthews - Feb 19, 2004 Static function of some class as a friend of other classAlex Vinokur, Jun 6, 2006, in forum: C++ - Replies: - 1 - Views: - 379 - mlimber - Jun 6, 2006 How can I define class ...
http://www.thecodingforums.com/threads/can-define-a-class-for-namespace-a-in-some-other-namespace-b.635321/
CC-MAIN-2014-52
refinedweb
137
74.32
7.68. V4L2 select()¶ 7.68.2. Synopsis¶ #include <sys/time.h> #include <sys/types.h> #include <unistd.h> 7.68.3. Arguments¶ nfds - The highest-numbered file descriptor in any of the three sets, plus 1. readfds - File descriptions to be watched if a read() call won't block. writefds - File descriptions to be watched if a...
https://01.org/linuxgraphics/gfx-docs/drm/media/uapi/v4l/func-select.html
CC-MAIN-2022-40
refinedweb
107
79.97
Difference between revisions of "RPi Projects/PiFace controlling a slot-car" Revision as of 10:18, 2 March 2013 As soon as you have connected your RPi with the PiFace and installed the recommended software (python-libs and piface-emulator) you may gain control over a slot car step by step. All you need to begin besides...
http://elinux.org/index.php?title=RPi_Projects/PiFace_controlling_a_slot-car&diff=225596&oldid=225590
CC-MAIN-2015-32
refinedweb
2,278
68.2
The. When could the new code sample search experience in the VS Intellisense be expanded to support VB and C++? Amazing you are in the right direction… It would be nice to see move class to separate file refactoring. Now I have to select whole class/interface/etc, copy and create new file with proper name and paste. @S...
https://blogs.msdn.microsoft.com/visualstudio/2014/11/12/the-c-and-visual-basic-code-focused-ide-experience/
CC-MAIN-2017-34
refinedweb
1,964
62.38
Change Collision HitBox size with Pygame In this module, we are going to learn how to Change Collision HitBox size with Pygame in Python. i.e, if two characters have collided we can make the collision possible using a rectangular box around the character. When this box of character collided with another box of characte...
https://www.codespeedy.com/change-collision-hitbox-size-with-pygame/
CC-MAIN-2022-27
refinedweb
376
56.55
Board index » Unix shell All times are UTC #!/bin/sh dir=foodir count=`ls -a $dir | wc -l` if [ $count -eq 2 ] then echo "Directory $dir is empty." else echo "Directory $dir is not empty." fi Jim Rogers Hewlett-Packard Company (This script is ss1 in my tests) #!/bin/sh if [ `ls -a $1 | wc -l` -eq 2 ] then echo Director...
http://www.linuxmisc.com/12-unix-shell/f6f5cbbe1a8e1a07.htm
CC-MAIN-2016-18
refinedweb
1,528
78.55
NEW: Learning electronics? Ask your questions on the new Electronics Questions & Answers site hosted by CircuitLab. Microcontroller Programming » Where do these *,h files reside? Where are these files kept? I can't find them anywhere. OS X search capability sucks, so no help there. I tried "unhiding" files, but no luck...
http://www.nerdkits.com/forum/thread/2007/
CC-MAIN-2019-35
refinedweb
991
75.71
4 Chaos Experiments to Start With To move software changes from development through a build process to production is a journey that requires many steps. These steps build confidence in the quality of the code, but they are tedious to perform manually. Continuous integration/continuous delivery (CI/CD) solutions orchest...
https://www.gremlin.com/community/tutorials/continuous-chaos-engineering-in-your-ci-cd-pipelines-with-gremlin-and-harness/
CC-MAIN-2020-45
refinedweb
1,106
54.93
Marc Van Cappellen is a Director of Development at DataDirect Technologies. Marc has more than 15 years of experience in various data access technologies including ODBC, JDBC, ADO, XQJ, SQL and XQuery. Over the past year we have seen office documents -- spreadsheets, wordprocessing documents, and the like -- taking a m...
http://www.drdobbs.com/open-source/xquery-your-office-documents/202401913
CC-MAIN-2015-27
refinedweb
616
54.32
. Before we can proceed, make sure to setup your Python scripting environment for the first use, by referring my previous article here. List All AWS EC2 Instances Now that we've set up the scripting environment and configured our credentials, let’s begin by importing the boto3 library and using it to create an EC2 reso...
https://blog.ipswitch.com/managing-aws-ec2-infrastructure-with-python
CC-MAIN-2018-43
refinedweb
609
63.39
mc parameter = mc.Exponential( "poisson_param", 1 ) data_generator = mc variables0000000008DF5198>]) Parents of `data_generator`: {'mu': <pymc.distributions.Exponential 'poisson_param' at 0x0000000008DF57B8>} Children of `data_generator`: set([<pymc.PyMCObjects.Deterministic '(data_generator_add_1)' at 0x0000000008DE3...
https://nbviewer.jupyter.org/github/CamDavidsonPilon/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers/blob/gh-pages/Chapter2_MorePyMC/MorePyMC.ipynb
CC-MAIN-2018-39
refinedweb
2,006
61.83
42 ; integer -1.5 ; floating point 22/7 ; ratio Below are some examples of literal representations of common primitives in Clojure. All of these literals are valid Clojure expressions. The ; creates a comment to the end of the line. Sometimes multiple semicolons are used to indicate header comment sections, but this is...
https://clojure.org/guides/learn/syntax
CC-MAIN-2019-47
refinedweb
1,989
63.29
What’s New in Python 2.5 This. PEP 308: Conditional Expressions For a long time, people have been requesting a way to write conditional expressions, which are expressions that return value A or value B depending on whether a Boolean value is true or false. A conditional expression lets you write a single assignment sta...
https://documentation.help/Python-3.4/2.5.html
CC-MAIN-2019-51
refinedweb
1,682
56.45
As one of the most popular languages, Python is constantly compared and contrasted to other popular languages like C/C++. The most common complaint that is made against Python is how slow it is. You will often see benchmarks showing that C/C++ are 10x (or more) times faster than Python. In today’s tutorial, we will exp...
https://coderslegacy.com/python-cython-tutorial-speeding-up-code/
CC-MAIN-2022-40
refinedweb
1,462
75.5
I need some guidance about what some of the licensing levels mean in practical terms. I'll try to be direct. These are some things added in the Standard licensing (which I don't currently enjoy, I'm in Lite). Access to additional data - Local raster layers - Local raster elevation sources - ArcGIS Runtime raster functi...
https://community.esri.com/thread/201400-local-data-and-licensing-levels
CC-MAIN-2019-39
refinedweb
242
64.61
I have a flow graph where the objects are too heavy to pass by copy, so instead I'm passing a shared pointer to the object through the graph. What I noticed is that my deleters for some of those objects were being deferred until graph destruction because the graph nodes were holding copies, which is too late for my nee...
https://community.intel.com/t5/Intel-oneAPI-Threading-Building/Flow-graph-queueing-nodes-hold-input-references/td-p/950182
CC-MAIN-2021-39
refinedweb
806
66.67
I have been using Matplotlib and Python for ~10 years or so and consider myself quite skilled. I just recently realized something that puzzled me and want to share my thoughts: All Matplotlib tutorials, guides and examples usually start with import matplotlib.pyplot as plt. That’s fine and what I have been doing since ...
https://discourse.matplotlib.org/t/pyplot-interface-and-memory-management/22299
CC-MAIN-2021-43
refinedweb
587
58.89
So, first of all, here's the requirements: import turtle turtle = turtle.Screen() def circle(): def triangle(): def square(): def pentagon(): def hexagon(): def heptagon(): for list in ["1.Circle","2.Triangle","3.Square","4.Pentagon","5.Hexagon","6.Heptagon"]: print(list) shape1 = input("Choose one number from the foll...
https://codedump.io/share/Rps43w1avuxg/1/drawing-multiple-shapes-at-a-time-from-a-list-of-options-python-turtle-graphics
CC-MAIN-2017-04
refinedweb
344
54.32
Difference between revisions of "Arch Rebar BentShape/fr" L'outil The Revision as of 13:30, 12 April 2018 Description L'outil Armature cintrée permet à l'utilisateur de créer une barre d'armature cintrée dans l'élément structurel. How to use - Create a structure element - Select any face of the structure - Then select ...
https://wiki.freecadweb.org/index.php?title=Arch_Rebar_BentShape/fr&diff=273336&oldid=273333
CC-MAIN-2020-45
refinedweb
374
55.44
Feeling trapped? By daniel on May 19, 2006 If: - First, I'm going to use the NetBeans 5.0 + Sun AppServer bundle. This bundle contains the NetBeans 5.0 IDE and the Sun Java System Application Server Platform Edition 8.2. - Then, I'm going to use the Java DMK 5.1, for its SNMP API and easymanager contribution. In the co...
https://blogs.oracle.com/jmxetc/entry/feeling_trapped
CC-MAIN-2015-48
refinedweb
909
57.98
I'm currently writing a PyGTK client that needs to make network requests using a library that doesn't integrate with the GLib mainloop (python-suds), so I found myself wanting to be able to make network requests without blocking the mainloop, and getting callbacks in my main thread when operations were done. The patter...
http://blogs.gnome.org/danni/2009/12/18/a-threaded-processing-queue-in-pygtk/
CC-MAIN-2014-42
refinedweb
581
56.86
Communities Can't get Job DBKey by Job NameLucas Menendez Aug 22, 2016 6:02 AM I'm trying to use Jython an BladeLogic CLI to write a auto bulk agent installer agent but i can't get Job DBKey based its name and i don't know job type integer. ¿Where can i find the type id? ¿How can i get Job DBKey based on Job Name Job G...
https://communities.bmc.com/thread/152808
CC-MAIN-2017-22
refinedweb
477
64.2
Keep in mind that pressing another key in between needs to reset the count of key presses. And, you need to deal, with some keys, like 3, where the user might want to produce "ee" that even the same key pressed more than once may, or may not, be trying to generate a new letter.That is why the timing between keypresses ...
http://forum.arduino.cc/index.php?topic=138647.msg1046048
CC-MAIN-2017-22
refinedweb
272
64.41
Solving an eigenvalue differential equation with a neural network Posted November 29, 2017 at 09:17 PM | categories: autograd, eigenvalue, bvp | tags: | View Comments Updated November 29, 2017 at 09:20 PM Table of Contents The 1D harmonic oscillator is described here. It is a boundary value differential equation with e...
http://kitchingroup.cheme.cmu.edu/blog/2017/11/29/Solving-an-eigenvalue-differential-equation-with-a-neural-network/
CC-MAIN-2020-05
refinedweb
1,539
61.53
A utility for finding login links, forms and autologging into websites with a set of valid credentials. Project description Autologin is a library that makes it easier for web spiders to crawl websites that require login. Provide it with credentials and a URL or the html source of a page (normally the homepage), and it...
https://pypi.org/project/autologin/
CC-MAIN-2022-27
refinedweb
1,148
60.55
Technote (troubleshooting) Problem(Abstract) User launches Controller and clicks on to 'Maintain - Rights - User'. User receives an error. After clicking OK, the user sees the user screen, but cannot view/change any other user's CAM usernames (for example "NAMESPACE\Username"). In other words, the field "Cam User" is b...
http://www-01.ibm.com/support/docview.wss?uid=swg21620794
CC-MAIN-2016-26
refinedweb
405
50.77
Introduction In a previous article, Java Help Files, we discussed how to create a class for displaying help files. Here we will take the same approach to handling exceptions. In some cases, exceptions can be handled quietly in the background without notifying the end user. However, we are concerned with the situations ...
http://www.devshed.com/c/a/java/exceptional-class/1/
CC-MAIN-2016-18
refinedweb
1,558
64.2
Python User Input and Interaction User interaction is essential in many programs to select options and display results. An intuitive user interface is important to retrieve the right inputs and present results in an actionable format. A simple example of user input is an input dialog such as: myAge = input('Age: ') The...
http://apmonitor.com/che263/index.php/Main/PythonWidgets
CC-MAIN-2022-05
refinedweb
163
57.87
NAME updwtmp, logwtmp - append an entry to the wtmp file SYNOPSIS #include <utmp.h> void updwtmp(const char *wtmp_file, const struct utmp *ut); void logwtmp(const char *line, const char *name, const char *host); DESCRIPTION updwtmp() appends the utmp structure ut to the wtmp file. logwtmp() constructs a utmp structure ...
http://manpages.ubuntu.com/manpages/oneiric/man3/logwtmp.3.html
CC-MAIN-2014-42
refinedweb
165
64.41
When you think Ruby, what is your first association? Oh, it's Rails? Hmm. What is you think Ruby feature? Monkey patching? Yep, me too. Programmers have stronger and more heated opinions about monkey patching than adolescent girls have about glitter. Globally modifying class functionality at runtime? Why yes, that does...
http://lethain.com/the-subtle-joys-of-generic-methods/
CC-MAIN-2014-42
refinedweb
1,034
61.16
I made my first game! It works!! It is fun!!! Because it is all those things (in my oppinion=) I want it to be a downloadable game that everyone can play. How do I do that? If you want to play it as it is now you will have to copy, paste, build, compile, etc etc. Not only that but I also want to add a new thing to it b...
http://cboard.cprogramming.com/cplusplus-programming/90103-help-again.html
CC-MAIN-2015-14
refinedweb
439
83.96
More Cardinality After prototypo's comment I thought that I should try to be clearer in my criticism of owl:minCardinality. A system will always be in two of four states. It can be valid or invalid, and it can be consistent or inconsistent. A valid system is true under every possible interpretation, while an invalid sy...
http://gearon.blogspot.com/2005_03_01_archive.html
CC-MAIN-2017-09
refinedweb
17,550
69.41
Hi everyone ! Hope all are well and safe. This is the weekly update for the Space Vegetables Project. The Vegetables are growing well. The beans - i hope - don't grow any more in height, because they already are reaching into the top hydroponics layer. I can already distinguish some plants from beans and lettuce. Other...
https://www.element14.com/community/community/design-challenges/1-meter-of-pi/blog/2020/11/30/space-vegetables-14-weekly-update-1-2nd-week
CC-MAIN-2021-04
refinedweb
835
80.82
Receive SMS Messages with Node.js, Express, and the Vonage SMS API We've built this tutorial using the Vonage SMS API, Node.js, and Express In the previous article, you set up your Vonage account and learned how to send SMS messages with Node.js. In this blog post, you will learn about receiving an inbound SMS by imple...
https://learn.vonage.com/blog/2016/10/27/receive-sms-messages-node-js-express-dr/
CC-MAIN-2021-39
refinedweb
618
66.74
Contents What is this about About a month ago, I decided to learn React and begun reading Getting started articles on the subject. It soon became apparent that what I was embarking on was not just learning React, but also other tools like Webpack, Babel or Gulp. Boilerplates and Generators It was overwhelming to learn ...
https://www.monkeyvault.net/react-starting-from-scratch/
CC-MAIN-2020-05
refinedweb
2,359
59.6
C#.NET Interview Questions and Answers – Part 3 21. What is the use of Nan values for double and float in C# ? Nan in C# is generally used to represent special values in .NET . For example , in Silverlight and WPF , the values double.Nan is generally used to represent the automatic values. 22. What is the difference be...
https://abundantcode.com/c-net-interview-questions-and-answers-part-3/
CC-MAIN-2021-10
refinedweb
474
60.21
, that you can use in your Web service operations without performing any additional programming steps. Built-in data types are those such as integer, string, and time. Additionally, you can use a variety of user-defined XML and Java data types, including Apache XmlBeans (in package org.apache.xmlbeans), as input parame...
http://docs.oracle.com/cd/E21764_01/web.1111/e13760/data_types.htm
CC-MAIN-2015-40
refinedweb
381
50.06
There is a CPU temperature sensor built into every ATSAMD21, ATSAMD51 and nRF52840 chips. CircuitPython makes it really simple to read the data from this sensor. This works on the Adafruit CircuitPython boards it's built into the microcontroller used for these boards. The data is read using two simple commands. We're g...
https://learn.adafruit.com/adafruit-feather-m0-express-designed-for-circuit-python-circuitpython/circuitpython-cpu-temp
CC-MAIN-2020-10
refinedweb
153
62.04
Chart Type - Number Overlays with Secondary Reference Number Contextualizing KPIs is a must. For instance, if a company has 500 users, how does that compare to the number of users last week? Using Periscope Data's Python Integration, we can create customized number overlays to cleanly present this information. To creat...
https://community.periscopedata.com/t/q5g434/chart-type-number-overlays-with-secondary-reference-number
CC-MAIN-2019-39
refinedweb
299
60.72
This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site. package net.minecraft.src public class CustomEntity extends EntityLiving { mod_BVB.AndysAmuletSword.itemID } Very easily. Instead of putting on the statement "Block.cake" as he did just do: "YourModName.You...
http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/modification-development/1429821-how-do-i-make-a-custom-mob-drop-a-custom-item?cookieTest=1
CC-MAIN-2016-40
refinedweb
157
78.04
NEW: Learning electronics? Ask your questions on the new Electronics Questions & Answers site hosted by CircuitLab. Everything Else » LV-MaxSonar-EZ4 height measurement Hello, I am trying to use a height sensor to measure distances but its not working as its supposed to. So I built my circuit based on the temperature s...
http://www.nerdkits.com/forum/thread/1394/
CC-MAIN-2019-18
refinedweb
1,131
71.04
A free sports API written for python Project description Contents - Installation - Examples - Get instances of all NHL teams for the 2018 season - Print every NBA team’s name and abbreviation - Get a specific NFL team’s season information - Print the date of every game for a NCAA Men’s Basketball team - Print the numbe...
https://pypi.org/project/sportsreference/
CC-MAIN-2021-21
refinedweb
880
51.58
> On June 3, 2015, 6:08 p.m., Ben Mahler wrote: > > Can we make the test a unit test? Looks like we could pull up > > '`validateResources`' to make this unit-testable? Chatting with Jie, we > > should probably place it in an `'internal::task'` namespace towards the > > bottom of the header, since it's only for testing ...
https://www.mail-archive.com/reviews@mesos.apache.org/msg02654.html
CC-MAIN-2016-50
refinedweb
446
59.7
Writing multiple array pointers to file with ofstream? I'm having some seriously strange trouble writing multiple arrays of data to a file. Basically, I'm wanting to store all the array sizes at the top of the file, and then the array data following. This way I can just read the sizes and use that to construct arrays t...
http://unixresources.net/faq/4351718.shtml
CC-MAIN-2019-09
refinedweb
503
68.36
This topic describes how to configure a time trigger for a function in the Function Compute console, including how to create a time trigger, configure input parameters, write function code, and test the function. Prerequisites Step 1: Create a time trigger - Log on to the Function Compute console. - In the left-side na...
https://www.alibabacloud.com/help/en/function-compute/latest/configure-a-time-trigger
CC-MAIN-2022-40
refinedweb
609
56.66
I'll vote +1 if you vote to add the per/module config API change... :) > >From a political and "least surprise" viewpoint, I think I agree, mod_usertrack > should be off by default even if compiled in. I remember a long time ago we > talked about creating a "module coding style" document which suggests common > behavio...
http://mail-archives.apache.org/mod_mbox/httpd-dev/199610.mbox/%3C199610082139.QAA08175@sierra.zyzzyva.com%3E
CC-MAIN-2015-27
refinedweb
303
54.42