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
tag:blogger.com,1999:blog-143729682014-10-02T00:28:14.738-05:00Words in BoxesNouns, verbs, and occasionally adjectives.jsulak What I’ve Been Reading, 18-month Edition<h2>History</h2> <ol> <li><p>Robert A. Caro, <a href="">The Power Broker</a>. A great, highly detailed book, even epic, book about Robert Moses and city g...
http://feeds.feedburner.com/IndigoFlats
CC-MAIN-2017-13
refinedweb
8,469
56.45
Frank Sommers: What is ActionScript? James Ward: ActionScript 3 is our implementation of the ECMAScript 262, Revision 4 standard. That's the same standard JavaScript 2.0 will be based on, once browsers officially support that version of JavaScript. We've done a few things differently from the ECMAScript standard, and t...
https://www.artima.com/lejava/articles/actionscript.html
CC-MAIN-2018-17
refinedweb
2,166
68.1
I'm trying to create a simple function that allows a user to input basic information that will change the values of a datetime object, and I'd like to find a way to make it as clean as possible by using a variable as a keyword. This can easily be done a different way, but I figured it'd be useful to know how to replace...
https://codedump.io/share/x106sp8Fdpnf/1/use-variables-as-keywords-for-functions-with-pre-defined-keywords-python
CC-MAIN-2018-17
refinedweb
257
55.03
Python Library to Construct Word Embeddings for Small Data Project description hyperhyper Python Library to Construct Word Embeddings for Small Data. Still work in progress. Building upon the work by Omer Levy et al. for Hyperwords. Why? Nowadays, word embeddings are mostly associated with Word2vec or fastText. Those a...
https://pypi.org/project/hyperhyper/
CC-MAIN-2020-16
refinedweb
702
50.23
barchart: Creating Bar Charts in Haskell. Modules - Graphics Downloads - barchart-0.1.1.tar.gz [browse] (Cabal source package) - Package description (as included in the package) Maintainer's Corner For package maintainers and hackage trustees Candidates - No Candidates Readme for barchart-0.1.1[back to package descript...
http://hackage.haskell.org/package/barchart-0.1.1
CC-MAIN-2021-49
refinedweb
1,827
53.92
Hi, I am writing a script which will run a process in a while loop, i.e., user will execute sh test.sh and the script will run a set of processes, I want to know how to kill the script which is having a infinite while loop in its contents. Killing a process (say test.out) is done by pkill -9 test.out and a script can b...
https://www.daniweb.com/programming/software-development/threads/426735/killing-a-running-script
CC-MAIN-2017-26
refinedweb
276
95.06
Loke14,659 Points SwapHead by Chris - do not understand it class PezDispenser { private String characterName; public PezDispenser(String characterName) { this.characterName = characterName; } public String getCharacterName() { return characterName; } public String swapHead(String characterName) { String originalCharac...
https://teamtreehouse.com/community/swaphead-by-chris-do-not-understand-it
CC-MAIN-2022-27
refinedweb
658
56.55
Building Your Own URL ShortenerBy Alex Fraundorf Most of us are familiar with seeing URLs like bit.ly or t.co on our Twitter or Facebook feeds. These are examples of shortened URLs, which are a short alias or pointer to a longer page link. For example, I can send you the shortened URL that will forward you to a very lo...
https://www.sitepoint.com/building-your-own-url-shortener/
CC-MAIN-2017-13
refinedweb
2,012
53.31
opencv_transforms This repository is intended as a faster drop-in replacement for Pytorch's Torchvision augmentations. This repo uses OpenCV for fast image augmentation for PyTorch computer vision pipelines. Requirements - A working installation of OpenCV. Tested with OpenCV version 3.4.1 - Tested on Windows 10. There ...
https://pythonawesome.com/opencv-implementation-of-torchvisions-image-augmentations/
CC-MAIN-2021-04
refinedweb
260
51.44
Although Qt comes with a unit-test framework QuickTest for QML code, hardly any QML GUIs are unit-tested, let alone developed with TDD (test-driven development). One reason is that many developers regard unit tests for GUI code as a waste of time. Another reason is that QuickTest is poorly documented. My post will chan...
https://embeddeduse.com/2021/11/18/developing-a-qml-keypad-with-tdd/
CC-MAIN-2021-49
refinedweb
3,240
60.01
Welcome to the fifth article on beginning game development. At this point we have a working 3D environment and can manipulate the camera direction and location using the keyboard and mouse. In this article we are going to add 3D objects to the game using predefined mesh files and implement some simple culling. The clea...
http://blogs.msdn.com/coding4fun/archive/2006/11/03/941679.aspx
crawl-002
refinedweb
5,792
57.27
Nice. How does this differ from the existing project at: Jon Brisbin wrote: > > I hope that this can help so of you, since I've struggled with finding a > good engine that would allow me to embed Python in my HTML pages. > Everything I've tried so far was way too complicated to install and > maintain. I'm a minimalist,...
https://mail.python.org/pipermail/python-list/2000-September/037391.html
CC-MAIN-2017-04
refinedweb
197
66.84
I am new to the DM environment, but I want to use it to port a library from Linux and gcc. The DM IDDE really seems to be just what I need to set up a project with 200+ C++ classes in several subdirectories. Where I fall over, however, is when I try to compile one particular file, 'writer.cpp'. 'writer.h' has the inclu...
http://www.digitalmars.com/archives/cplusplus/4970.html
CC-MAIN-2015-32
refinedweb
142
59.9
Introduction. In this article, we will see how we can perform time series analysis with the help of a recurrent neural network. We will be predicting the future stock prices of the Apple Company (AAPL), based on its stock prices of the past 5 years. Dataset The data that we are going to use for this article can be down...
https://stackabuse.com/time-series-analysis-with-lstm-using-pythons-keras-library/
CC-MAIN-2019-43
refinedweb
2,197
64.91
I've spent most of the last year developing and playing with a skinning system, two elements of which I have previously posted to CodeProject (see 'A Revolutionary New Approach to Custom Drawn Menus' and 'A template class for easy implementation of Windows hooks'). Achieving good results in window skinning requires an ...
http://www.codeproject.com/Articles/3923/InterSpy-An-integrated-Windows-message-trace-and-f
CC-MAIN-2016-26
refinedweb
1,410
53.14
TIL: When working with namespaced files in PHP it’s a huge performance win when using fully-qualified function calls. ~ If you’re calling is_null in your code, PHP will first check for the function’s existence in the current namespace. If not found there, it will look for the function in the global namespace. This extr...
https://www.bram.us/2020/04/18/php-performance-tip-use-fully-qualified-function-calls-when-working-with-namespaces/
CC-MAIN-2021-04
refinedweb
213
79.9
#include <sys/socket.h> #include <netinet/in.h> the IANA list of assigned protocol numbers atzero). For sending and receiving datagrams (sendto(2), recvfrom(2), and similar), raw sockets use the standard sockaddr_in address structure defined in ip(7). The sin_port field could be used to specify the IP protocol number, ...
http://manpages.courier-mta.org/htmlman7/raw.7.html
CC-MAIN-2017-30
refinedweb
307
59.9
LINQ (short for Language INtegrated Query) is an addition to Microsoft’s .NET languages (C# and Visual Basic) that allows queries to be carried out on various data sources, ranging from the more primitive data types such as arrays and lists to more structured data sources such as XML and databases. Since I haven’t used...
https://programming-pages.com/2012/05/15/linq-introduction-and-a-simple-select-clause/
CC-MAIN-2018-26
refinedweb
1,871
53.1
# find all integers in the list that do not share any bits except the +lsb. my %MatchedIntegers=(); #my output foreach my $i1 (@LongListOfIntegers) { foreach (@LongListOfIntegers) { #if a match (only least significant bit overlaps), # add to hash of hash, I don't care about the value. $MatchedIntegers{$i1}{$_}=() if ((...
http://www.perlmonks.org/?node_id=817827
CC-MAIN-2016-40
refinedweb
1,574
80.41
Exploring the Cache API in Drupal 8By Daniel Sipos. In this article, I want to shine a bit of light over the new cache API. To this end, we are going to look at how we can use it in our custom modules as we are encouraged to do so much more in Drupal 8. Additionally, I have prepared a little demonstration in the shape ...
https://www.sitepoint.com/exploring-cache-api-drupal-8/
CC-MAIN-2016-40
refinedweb
1,612
55.88
Microsoft Corporation April 2004 Applies to: Microsoft® Office InfoPath™ 2003 Summary: Learn to use Microsoft BizTalk Human Workflow Services (HWS) to create an approval workflow. Create workflows and track them using actions. Create a custom Approval action that uses the HWS Assign and Delegate actions that ship with ...
https://msdn.microsoft.com/en-us/ms788211(office.11).aspx
CC-MAIN-2015-18
refinedweb
1,957
55.34
I have recently been working on a knotty problem involving control and image acquisition using the Flea®2 camera, using FlyCapture® SDK by Point Grey Research, Inc. They have an impressive set of code samples to try all manner of things related to image grabbing and setting the camera controls hue, focus, colour etc. A...
http://www.technical-recipes.com/2011/getting-started-with-the-flycapture-sdk/?replytocom=5584
CC-MAIN-2017-39
refinedweb
681
54.32
Main class: package me.hbc.main; import java.util.ArrayList; import org.bukkit.Bukkit; import org.bukkit.plugin.java.JavaPlugin; public... How would I make it so that if the player can like the "nuke" and have it so that it has a 5x times bigger blast radius than a normal tnt? package... So I've coded my own vote liste...
https://dl.bukkit.org/members/war-realms.90910230/recent-content
CC-MAIN-2020-24
refinedweb
148
67.76
Dynamic Lock Screen for Windows Phone 8 Revision as of 10:59, 11. Tested with Compatibility Windows Phone 8 Article. Setting up a default lock screen background image. Adding code to change the Lock screen background We can change background of Lock screen using Windows.Phone.System.UserProfile.LockScreenManager namesp...
http://developer.nokia.com/Community/Wiki/index.php?title=Dynamic_Lock_Screen_for_Windows_Phone_8&diff=177095&oldid=177093
CC-MAIN-2013-48
refinedweb
122
66.74
This tutorial illustrates how to load/save a DjVu file. To use DjVu SDK, you firstly include several headers. Since the base library is shared with PixelLive SDK, they're in Celartem namespace while DjVu related classes are in Celartem::DjVu namespace. In this step, you should create a Storage instance from an DjVu fil...
https://www.cuminas.jp/sdk/djv_dec_tutorial.html
CC-MAIN-2018-09
refinedweb
602
58.01
java jar downloaded_filename.jar This will run an installer, which will help you complete the installation. After that, you need to correctly set the path names mentioned on the last step of installation. You are then ready to work with AspectJ in the "big project" example to follow. Look at the following code for your...
http://www.devx.com/Java/Article/18197/0/page/3
CC-MAIN-2016-26
refinedweb
441
68.06
Plot MAD output (and more). Project description This project aims to facilitate working with MADX from within Python. It contains the following major components: - MADX API: Build, parse and run MADX scripts. - Plot API: Plot MADX output in various formats. - Utilities: Convert MADX output tables to pandas data frames....
https://pypi.org/project/madplot/
CC-MAIN-2021-49
refinedweb
1,285
53.37
1 Introduction 2 RDF Features and API Considerations 3 Existing Work A References While the adoption of a particular RDF API will, of course, be influenced heavily by platform and language considerations, there is a common core set of considerations that apply to all APIs. We begin therefore by considering general feat...
http://www.w3.org/2001/sw/Europe/reports/rdf_api_comparison_report/Overview.html
crawl-001
refinedweb
5,266
51.07
On Sep 28, 2005, at 3:49 PM, Andy Gayton wrote: > There's getMetadata. That let's you return arbitrary attributes. > > Would that cover what you're thinking? No -- one problem is that extended metadata can be potentially very large (just as large as the file's normal contents). Another is that there may be potentially ...
http://twistedmatrix.com/pipermail/twisted-python/2005-September/011529.html
CC-MAIN-2016-26
refinedweb
367
62.48
Recent: Archives: February 8, 2002 Please explain the difference between checked exceptions and runtime exceptions? When would I throw them, and when would I catch them? Java provides two main exception types: runtime exceptions and checked exceptions. All checked exceptions extend from java.lang.Exception, while runti...
http://www.javaworld.com/javaworld/javaqa/2002-02/01-qa-0208-exceptional.html
crawl-002
refinedweb
466
63.8
On Jan 3, 2004, at 9:44 AM, Paul Miller wrote: >> There. > > Wow Bob - many thanks for looking into this. > >>'. > > I couldn't find any -flat_namespace references in PackageManager.py. I > do have 1.0a3. It's in Ft/Lib/DistExt/BuildExt.py not Ft/Lib/DistExt/PackageManager.py.. sorry, must not have been paying attentio...
https://mail.python.org/pipermail/pythonmac-sig/2004-January/009809.html
CC-MAIN-2018-05
refinedweb
196
78.96
On 2007-07-13, Chris Carlen <crcarleRemoveThis at BOGUSsandia.gov> wrote: > John Nagle wrote: >> You can sometimes get better performance in C++ than in C, >> because C++ has "inline". Inline expansion happens before >> optimization, so you can have abstractions that cost nothing. > > That's interesting. But why is thi...
https://mail.python.org/pipermail/python-list/2007-July/439218.html
CC-MAIN-2014-15
refinedweb
305
55.03
15967/replace-first-and-last-word-of-string-in-the-most-pythonic-way Hey guys, I was building a programme for my school computer exercise which involved me to replace the first and last word of a string. Now I've done it using my own indigenous ways but I'm rather interested to learn the most efficient way I could do i...
https://www.edureka.co/community/15967/replace-first-and-last-word-of-string-in-the-most-pythonic-way
CC-MAIN-2021-49
refinedweb
357
75.2
Below are a few tips and tricks that you may find useful when you use Mayavi2. Often you write Mayavi scripts to render a whole batch of images to make an animation or so and find that each time you save an image, Mayavi “raises” the window to make it the active window thus disrupting your work. This is needed since VT...
http://docs.enthought.com/mayavi/mayavi/tips.html
CC-MAIN-2014-52
refinedweb
4,008
58.08
(Please use the Discussion Group for any questions, and the issue list for bug reports) This tutorial corresponds with Hotwire 0.710. For the 0.6xx series, see GettingStarted0600 (or upgrade!). You've started Hotwire for the first time, and are looking at a command prompt. It wants us to type something. Let's do it; ty...
http://code.google.com/p/hotwire-shell/wiki/GettingStarted0700
crawl-002
refinedweb
2,184
73.27
For loop is very common control flow statement in programming languages such as java. I am not going to describe the basics of “for loop” as it is beyond the scope of this article and most of us are already well aware of this. In this post, I will list down various ways to use for loop in day-to-day programming habits ...
http://howtodoinjava.com/2013/03/26/performance-comparison-of-different-for-loops-in-java/
CC-MAIN-2014-42
refinedweb
1,713
66.03
Proposed features/Sanitary Station Note: For current tagging see Tag:amenity=sanitary_dump_station Contents Proposal At various points along the UK canals, you can manually empty your portable human waste tanks. We need a tag with which to mark places offering such services. There was some discussion on the list as to ...
https://wiki.openstreetmap.org/wiki/Proposed_features/Sanitary_Station
CC-MAIN-2019-35
refinedweb
721
67.89
SerialPC Table of Contents Mbed OS 2 and Mbed OS 5 This is the handbook for Mbed OS 2. If you’re working with Mbed OS 5, please see the new handbook. For the latest information about Serial, please see The Windows serial driver. Serial Communication with a PC¶ The mbed Microcontroller can communicate with a host PC thr...
https://os.mbed.com/handbook/SerialPC
CC-MAIN-2018-22
refinedweb
500
52.39
Opencv tutorial C++ Background substraction This method is used to learn what belongs to the background of the image and what belongs to the foreground. The static cameras that monitor the area can very easily recognize, what is part of the image that is always here or there is something that is new and moving over the...
https://funvision.blogspot.com/2015/11/tutorial-opencv-300-background.html
CC-MAIN-2021-25
refinedweb
336
57.27
If I am way off feel free to say to start over. #include <string> #include <fstream> #include <iostream> using std::cout; using std::cin; using std::endl; using std::ofstream; using std::ifstream; using std::ios; using std::string; int main() { string name = ""; int num = 0; int updatedNum = 0; int x = 0; int heading =...
http://www.dreamincode.net/forums/topic/122853-reading-from-file-and-making-new-file/
CC-MAIN-2017-39
refinedweb
126
64.85
The Reason The Internet Was Invented, or, Cat Pictures FTW September 17, 2014 Leave a comment I’ll report about the SpringOne2GX conference soon, but I’m fighting a cold at the moment and the medication has put me in a rather bleary state. Thus, the following bit of random Groovy whimsy… In this post, I’ll use Groovy t...
https://kousenit.org/2014/09/
CC-MAIN-2017-17
refinedweb
1,210
74.08
Translucent persistent objects Project description persistent: automatic persistence for Python objects This package contains a generic persistence implementation for Python. It forms the core protocol for making objects interact “transparently” with a database such as the ZODB. Please see the Sphinx documentation (doc...
https://pypi.org/project/persistent/
CC-MAIN-2019-13
refinedweb
640
60.82
In today's post I want to present the class library ILNumerics and share my experiences with it. ILNumerics is a class library for .Net with the aim of allowing faster and easier implementations of numerical calculations, plots etc. Of course one could do this in theory with .Net means alone, but this could turn out to...
http://csharp-tricks-en.blogspot.de/2015/07/
CC-MAIN-2018-09
refinedweb
2,123
55.34
1 Creating a Web Part Using MOSS BIN Directory We will start from the Visual Studio 2005 new project window. In the new project window, we will select C# Window application and then, class library. We will name the project “HELLOBIN”. 1.1 Adding Reference The first thing we will do in the class library is to add refere...
http://farhanfaiz.wordpress.com/2008/01/04/creating-a-web-part-using-moss-bin-directory/
crawl-002
refinedweb
865
82.85
Dear Diary, an Encrypted Command-Line Diary with Python In my last post, I wrote about how to work with encrypted SQLite databases with Python. As an example application of these libraries, I showed some code fragments for a fictional diary program. Because I was thinking the examples directory of the peewee repo was l...
https://charlesleifer.com/blog/dear-diary-an-encrypted-command-line-diary-with-python/
CC-MAIN-2020-50
refinedweb
1,251
57.47
Hello DaniWeb Users, I am new to the forum however from what I have seen it is exceptionally good! I have searched the forums already and found various questions relating to a similar problem as mine however I am unable to work out how I can amend this for my problem. During web research I found various suggestions suc...
https://www.daniweb.com/programming/software-development/threads/390508/c-return-to-point-in-programme
CC-MAIN-2016-50
refinedweb
326
71.18
Advertise with Us! We have a variety of advertising options which would give your courses an instant visibility to a very large set of developers, designers and data scientists.View Plans Spring Interview Questions Table of Contents Ever since its release back in October of 2002, Spring Framework has succeeded in becom...
https://hackr.io/blog/spring-interview-questions
CC-MAIN-2020-50
refinedweb
1,960
50.43
Zope 2.7.2 installation This Dockerfile installs Python 2.3.5, MySQL database connector, Python LDAP and Zope 2.7.2 from source packages. For convenience the packages are in the directory, as they are 10 years old. The installation expects the Zope instance to be located in /var/local/website in the container namespace...
https://hub.docker.com/r/eeacms/zope-2-7-2/
CC-MAIN-2017-51
refinedweb
225
58.89
Class to read/write ascii text. More... #include <vtkASCIITextCodec.h> Class to read/write ascii text. A virtual class interface for codecs that readers/writers can rely on Definition at line 43 of file vtkASCIITextCodec.h. Definition at line 46 of file vtkASCIITextCodec.h. Return 1 if this class is the same type of (o...
https://vtk.org/doc/nightly/html/classvtkASCIITextCodec.html
CC-MAIN-2021-17
refinedweb
170
68.87
ios_base& hex ( ios_base& str ); <ios> Use hexadecimal base Sets the basefield format flag for the str stream to hex.When basefield is set to hex, integral numerical values inserted into the stream are expressed in the hexadecimal base (radix 16). For input streams, extracted values are also expected to be expressed in...
http://www.cplusplus.com/reference/iostream/manipulators/hex/
crawl-002
refinedweb
104
54.26
I wrote a sketch in Processing 3.5.4 that uses a collection of png and mp4 files as inputs, making use of the Video library for videos. On macOS, it runs perfectly. On Windows 10, however, it fails to load videos, either giving the error “Seek operation failed” when calling any Movie functions, like loop(), or simply r...
https://discourse.processing.org/t/video-library-error-on-pc-with-non-default-renderers/25333
CC-MAIN-2022-40
refinedweb
270
67.55
To continue where I stopped, The message_pause function is like this: private void message_pause(uint channel, uint count) { int a = 0; // delay for first message // (4 - Ch) * Tm if (count == 0) a = 4 - (int)channel + 1; // next 2 messages // 5 * Tm else if (count == 1 || count == 2) a = 5; // last 2 messages // (6+2...
https://blogs.msdn.microsoft.com/laurelle/2012/04/17/using-netduino-and-net-microframework-to-pilot-any-lego-power-function-thru-infrared-part-2/
CC-MAIN-2016-50
refinedweb
1,302
77.37
DEBSOURCES Skip Quicknav sources / glibc / 2.29-3 / string / memmem _LIBC # include <config.h> #endif #include <string.h> #ifndef _LIBC # define __memmem memmem #endif #define RETURN_TYPE void * #define AVAILABLE(h, h_l, j, n_l) ((j) <= (h_l) - (n_l)) #define FASTSEARCH(S,C,N) (void*) memchr ((void *)(S), (C), (N)) #in...
https://sources.debian.org/src/glibc/2.29-3/string/memmem.c/
CC-MAIN-2020-05
refinedweb
546
71.14
Get the highlights in your inbox every week. 9 essential GNU binutils tools | Opensource.com 9 essential GNU binutils tools Binary analysis is the most underestimated skill in the computer industry. opensource.com Subscribe now Imagine not having access to a software's source code but still being able to understand how...
https://opensource.com/article/19/10/gnu-binutils
CC-MAIN-2021-04
refinedweb
3,818
65.73
09 August 2010 17:50 [Source: ICIS news] LONDON (ICIS)--Rhodia plans to target output from its proposed ethyl acetate (etac) project in ?xml:namespace> Saudi International Petrochemical Co (Sipchem) revealed plans last week to build the project, in partnership with Rhodia, at its site at Al-Jubail. The 100,000 tonne/ye...
http://www.icis.com/Articles/2010/08/09/9383461/rhodia-to-target-etac-from-saudi-project-at-europe.html
CC-MAIN-2014-10
refinedweb
266
62.41
from Google (as Android Dev, let’s support Google 😜) - It can work with Android Studio (and maybe Xcode, I’m not sure, but who cares 😜) - It can compile into Android and iOS app with a single source!!! (below is one example I experiment from the codelab. Single code into 2 platforms) What I tried… I’m basically glan...
https://medium.com/@elye.project/first-view-on-flutter-an-android-developer-view-83f87c185f92
CC-MAIN-2019-30
refinedweb
2,429
60.75
1.gdb and gdbserver Debugging principle adopt linux In the virtual machine gdb, To the development board gdbserver dispatch orders , For example, setting breakpoints , function setp etc. , And then develop the gdbserver After receiving the order , Will execute the application to do the corresponding action , To realize...
https://javamana.com/2021/04/20210416184201912a.html
CC-MAIN-2022-40
refinedweb
961
62.48
After. Problems that occurred I have seen DLLS added to the GAC that you can't remove - very frustrating. I have seen registered DLLs into the cache - verified everything is there ok using ILDASM only to find the DLLs are no longer in the GAC. Strongly Naming the assembly When doing this make sure you get the directory...
http://www.c-sharpcorner.com/UploadFile/gsuttie/GACHell09092005073302AM/GACHell.aspx
crawl-003
refinedweb
284
73.78
Some knowledge points 1. Database cursor.fetchall Return type of (): out: [{'detail_link': ''}, {'detail_link': ''}, {'detail_link': ''}] two cursor.fetchone (): only one result will be returned, and a single dictionary type will be returned, such as: out: {'detail_link': ''} 3. (1) SELECT * FROM table LIMIT 5,10; / / ...
https://www.fatalerrors.org/a/0N991z8.html
CC-MAIN-2021-17
refinedweb
679
50.97
Basics of Common Math Functions in C Programming Not everyone is going to employ their C language programming skills to help pilot a rocket safely across space and into orbit around Titan. No, it’s more likely that you’ll attempt something far more down-to-earth. Either way, the work will most likely be done by employi...
http://www.dummies.com/how-to/content/basics-of-common-math-functions-in-c-programming.html
CC-MAIN-2016-18
refinedweb
382
66.84
float.h(0P) POSIX Programmer's Manual float.h(0P) This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface may differ (consult the corresponding Linux manual page for details of Linux behavior), or the interface may not be implemented on Linux. delim $$ float.h — floating ty...
http://man7.org/linux/man-pages/man0/float.h.0p.html
CC-MAIN-2019-22
refinedweb
780
52.09
Opened 12 months ago Closed 11 months ago Last modified 11 months ago #31877 closed Bug (fixed) TemplateView.get_context_data()'s kwargs returns SimpleLazyObjects that causes a crash when filtering. Description Example Code that works in 3.0, but not in 3.1: class OfferView(TemplateView): template_name = "offers/offer....
https://code.djangoproject.com/ticket/31877
CC-MAIN-2021-31
refinedweb
716
51.34
Figure 97. The simple GUI of SwingApplication presents a JButton and a JLabel. Look and Feel Figure 98 shows three views of a GUI that uses Swing components. Each picture shows the same program but with a different look and feel. Figure 98. Three samples of look and feel. Swing allows you to specify which look and feel...
https://flylib.com/books/en/2.33.1/example_two_swingapplication.html
CC-MAIN-2018-34
refinedweb
831
56.55
: * CORTEX-I Frame Grabber driver V1.0 3: * 4: * Copyright (C) 1994, Paul S. LaFollette, Jr. This software may be used, 5: * modified, copied, distributed, and sold, in both source and binary form 6: * provided that the above copyright and these terms are retained. Under 7: * no circumstances is the author responsible ...
http://www.dragonflybsd.org/cvsweb/src/sys/dev/video/ctx/ctx.c?f=h;content-type=text%2Fx-cvsweb-markup;ln=1;rev=1.8
CC-MAIN-2015-22
refinedweb
2,320
50.2
Lead Image © Ivan Mikhaylov, 123RF.com Blending Java with other programming languages It's in the Blend Neither project managers nor programmers mix languages purely for pleasure. The former are worried about the complexity and the increased demands on their team, while the latter prefer to use things that they feel mo...
https://www.admin-magazine.com/Archive/2015/26/Blending-Java-with-other-programming-languages
CC-MAIN-2020-34
refinedweb
1,115
54.12
Distribution of JSON values with Python Back in the early 1990's, the company I worked for had a program we used for data exploration of flat files to quickly create a distribution of values which was very useful to get a quick look at the cardinality of values within a field before planning how to perform any ELT step...
http://georgestragand.com/pythonJSONdistribution.html
CC-MAIN-2019-22
refinedweb
776
57.4
How to bind data in XAML Designer In XAML Designer, you can set data binding properties by using the artboard and the Properties window. The example in this topic shows how to bind data to a control. Specifically, the procedure shows how to create a simple shopping cart class that has a DependencyProperty named ItemCou...
http://msdn.microsoft.com/en-us/library/windows/apps/hh921072(v=vs.110).aspx?cs-save-lang=1&cs-lang=vb
CC-MAIN-2014-15
refinedweb
400
55.84
This is related to Tcl bug 3600058 "Doctools nroff/groff output not supported by tcltk-man2html" (). Most of the cases listed here are invalid input or invalid nroff. Valid nroff not supported by the Tcl tool is being addressed in the Tcl bug. Required action: most of the issues below have proposed fixes, and those fix...
http://sourceforge.net/p/tcllib/bugs/1344/
CC-MAIN-2014-52
refinedweb
1,038
57.98
Java SE 6 ; Changes in I/O This is a new feature added in Java SE 6... Java SE 6  ... MicroSystems has released the Java SE 6 on Monday December 11. So go java swing problem - Java Beginners java swing problem i doesn't know about the panel in swings here i had created one frame then created a panel and i added that to...
http://www.roseindia.net/tutorialhelp/comment/11250
CC-MAIN-2015-22
refinedweb
2,991
65.62
Opened 15 years ago Closed 15 years ago Last modified 13 years ago #5135 closed (wontfix) Unicode-branch merge broke insertion of binary data Description Django does not have a BinaryField, or BlobField or whatever you want to call it, which is a bit sad. In 0.96 and before it however worked to insert into blob fields ...
https://code.djangoproject.com/ticket/5135
CC-MAIN-2022-27
refinedweb
506
60.85
Content-type: text/html #include <unistd.h> int fsync(int fildes); The fsync() function moves all modified data and attributes of the file descriptor fildes to a storage device. When fsync() returns, all in-memory modified copies of buffers associated with fildes have been written to the physical medium. The fsync() fu...
https://backdrift.org/man/SunOS-5.10/man3c/fsync.3c.html
CC-MAIN-2017-39
refinedweb
380
56.66
Kohana (web framework) From Wikipedia, the free encyclopedia Kohana is an open source, PHP5, web application framework that uses the Model View Controller design pattern. It aims to be secure, lightweight, and easy to learn and use.[2] It supports only version 5 or higher of PHP in order to make full use of the improve...
http://ornacle.com/wiki/Kohana
crawl-002
refinedweb
632
59.4
This - CLICK FOR LARGER IMAGE. Click image to go to web page with movie. ============================================================ This does not bode well – according to this NAM model from last night, A tornado outbreak for Ohio Valley is possible late Friday 00Z Saturday The Storm Prediction Center shows a moderat...
http://wattsupwiththat.com/2012/03/01/tornado-outbreak-tracking/
CC-MAIN-2014-52
refinedweb
2,905
53.04
>The DOM's getAttributeNS() method behaves like getAttribute(). Not according to the apiDocs. They state that the exact opposite is true. When I said it was a bug, I meant as per the api docs that accompany the distribution. I believe this is what the other folks who encountered this meant also. The following is from t...
http://mail-archives.apache.org/mod_mbox/ws-soap-user/200007.mbox/%3C85256921.004D2E7C.00@D51MTA03.pok.ibm.com%3E
CC-MAIN-2017-13
refinedweb
355
59.6
Introduction! IIFEs (Immediately Invoked Function Expressions) We are going to start with IIFEs (Immediately Invoked Function Expressions). IIFEs do not necessarily use closures, but they are going to be very useful later in this tutorial. An IIFE is, as its name implies, a function that is executed as soon as the inte...
https://www.commonlounge.com/discussion/60d183b650124b6794546ee7444e31b8
CC-MAIN-2018-39
refinedweb
2,342
56.05
. To set our minds, assume the following scenario: you're doing a lot of string manipulations and one of the operations you need quite often is reversing a string. Since strings are immutable, a new string has to be created with the reversed set of characters in it. A typical solution looks like this: using System; cla...
http://community.bartdesmet.net/blogs/bart/archive/2006/12/06/C_2300_-3.0-Feature-Focus-_2D00_-Part-4-_2D00_-Extension-Methods.aspx
CC-MAIN-2015-32
refinedweb
1,166
66.64
This post is an early draft of expanded work that will eventually appear on the District Data Labs Blog. Your feedback is welcome, and you can submit your comments on the draft GitHub issue. In order to learn (or teach) data science you need data (surprise!). The best libraries often come with a toy dataset to show exa...
https://bbengfort.github.io/2016/02/anonymizing-profile-data/
CC-MAIN-2021-17
refinedweb
1,721
58.42
HOUSTON (ICIS)--Here is Tuesday’s midday ?xml:namespace> CRUDE: Mar WTI: $97.37/bbl, up 94 cents; Mar Brent: $105.96/bbl, down 8 cents NYMEX WTI crude futures traded higher getting support from an upside correction in the stock market. Winter storms across the US lifted heating oil (ULSD) and natural gas futures, also ...
http://www.icis.com/resources/news/2014/02/04/9750226/noon-snapshot-americas-markets-summary/
CC-MAIN-2016-26
refinedweb
324
68.97
This is a brief summary of the following threads, Put together - out of curiosity - the wishlist in no particular order but grouped. Web Services + Consume Web Service - Consume Web Services easily (WSDP 1.4 Integration) + Create Web Service + Implement a Web Service specified by a WSDP (AXIS Integration?) Gui Builder ...
https://intellij-support.jetbrains.com/hc/en-us/community/posts/206945915-Whats-Next-Summary?page=1
CC-MAIN-2020-10
refinedweb
2,282
64.51
Infrastructure as Code This is another in Robert's Getting Started series, where he provides an introduction to a topic that everyone knows about but not everyone is actually doing (or doing enough of). In this episode, part 1 of 3, Robert shows how to get started with unit testing in Visual Studio. The primary goal of...
https://channel9.msdn.com/Shows/Visual-Studio-Toolbox/Getting-Started-with-Unit-Testing-Part-1
CC-MAIN-2019-43
refinedweb
907
76.11
This action might not be possible to undo. Are you sure you want to continue? NET Platform, ©2001 Andrew Troelsen (Apress, ISBN: 1-893115-59-3) p. 5-1 Chapter 5 Advanced C# Class Construction Techniques This chapter rounds out your introduction to the core aspects of the C# language by examining a number of advanced (b...
https://www.scribd.com/doc/55935317/3075
CC-MAIN-2017-09
refinedweb
9,957
61.83
Talk:Demystifying Depression From Wikibooks, the open-content textbooks collection [edit] Review Notes - Just because wikibooks can be edited by anybody, doesn't mean they are. (The graphs are totally bogus.) by 128.119.165.135 - That disclaimer was definitely a good one. Although the author warns the reader at some po...
http://en.wikibooks.org/wiki/Talk:Demystifying_Depression
crawl-002
refinedweb
3,722
60.85
JJ Asghar’s role as a developer advocate for IBM has immersed him in helping organizations make the transition to cloud native ecosystems and to IBM Cloud’s Kubernetes Service. Previously, Asghar was the OpenStack go-to-guy at Chef Software. In this interview, Asghar has drawn from his deep well of hands-on and high-le...
https://semaphoreci.com/blog/why-a-well-oiled-cicd-pipeline-makes-for-a-happy-devops-team
CC-MAIN-2019-47
refinedweb
2,270
67.99
interfaces for a lab Adam Jones Greenhorn Joined: Aug 22, 2002 Posts: 19 posted Aug 03, 2003 11:04:00 0 ok, i am in a java class right now and i have worked ahead a few labs and i am completely stuck on something right now. the lab requires the use of an interface for a rental car program. i made all of my classes and...
http://www.coderanch.com/t/371558/java/java/interfaces-lab
CC-MAIN-2014-10
refinedweb
1,418
51.38
FAQs Search Recent Topics Flagged Topics Hot Topics Best Topics Register / Login Win a copy of The Career Toolkit this week in the Jobs Discussion forum! Michael Fitzmaurice Ranch Hand 168 10 Threads 0 Cows since Aug 22, (168 (168/10) Number Threads Started (10/10) Number Likes Received (0/3) Number Likes Granted (0/3)...
https://coderanch.com/u/19309/Michael-Fitzmaurice
CC-MAIN-2021-04
refinedweb
2,208
58.72
0.) Try to guess what the following print. Check your solution using the Python interpreter. >>> tuple(map(lambda x: x * x, (1, 2, 3, 4, 5, 6))) >>> tuple(filter(lambda x: x % 2 == 0, (1, 2, 3, 4, 5, 6))) >>> def is_even(x): ... return x % 2 == 0 ... >>> def square(x): ... return x * x ... >>> tuple(map(square, filter(...
http://www-inst.eecs.berkeley.edu/~cs61a/sp12/labs/lab5/lab5.html
CC-MAIN-2018-09
refinedweb
825
65.42
Forum:Extremely well thought out rant about the CRISIS From Uncyclopedia, the content-free encyclopedia Soooooo, how's it goin? Here's the crisis: Capital letters. I just spent 5 minutes trying to find one of my favorite unbooks, UnBooks:Gone With d' Wind. I spelled it many different ways: UnBooks:gone with d' wind, un...
http://uncyclopedia.wikia.com/wiki/Forum:Extremely_well_thought_out_rant_about_the_CRISIS
CC-MAIN-2017-13
refinedweb
1,215
72.36
Identify. Set to "{{auto}}"to let Sentry infer the IP address from the connection. Additionally, you can provide arbitrary key/value pairs beyond the reserved names, and the Sentry SDK will store those with the user. To identify the user: Copied using Sentry; SentrySdk.ConfigureScope(scope => { scope.User = new User { ...
https://docs.sentry.io/platforms/dotnet/guides/aspnet/enriching-events/identify-user/
CC-MAIN-2021-17
refinedweb
104
57.67
> -----Original Message----- > From: Stephen Colebourne [mailto:scolebourne@btopenworld.com] > Sent: Thursday, August 15, 2002 2:39 PM > To: Jakarta Commons Developers List > Subject: Re: [VOTE] RESULT XxxUtils constructors > > > From: "Michael A. Smith" <mas@apache.org> > > On Thu, 15 Aug 2002, robert burrell donkin w...
http://mail-archives.apache.org/mod_mbox/commons-dev/200208.mbox/%3C7382FCA44E27D411BD4A00508BD68F9504BB0B1C@pigeon.tumbleweed.com%3E
CC-MAIN-2016-18
refinedweb
490
63.49
topics covered: [PDF version] I have been very interested in the sales of Math You Can't Use: Patents, Copyright, and Software, a book with which I was heavily involved. (Amazon page) So naturally, I've been tracking the Amazon sales rank. At first, I did it the way everybody else does--refreshing the darn page every t...
http://fluff.info/blog/arch/00000188.htm
crawl-002
refinedweb
1,601
71.85
My first question on SO! What I'm working on is a Webforms page that's has a lot ASP textboxes, datepickers and dropdowns. Right now I'm using ADO.net for all of these controls to do CRUD operations. I'm already a great deal into this project, but I can't help wondering if I could be doing this in an easier or more eff...
https://codedump.io/share/dnTrEBYuFt76/1/what-are-the-some-data-access-options-for-manipulating-data-using-aspnet-controls
CC-MAIN-2017-09
refinedweb
346
57.77
In this post, you’ll learn how to merge Python dictionaries. You’ll learn different ways, allowing you to merge dictionaries all the way back to Python 3.4, including some new, more efficient ways of accomplishing this in Python 3.9. For this tutorial, we’ll use two dictionaries, dict_a and dict_b. Let’s start things o...
https://datagy.io/merge-python-dictionaries/
CC-MAIN-2022-27
refinedweb
625
55.64
ISSUE-131: Mechanism for importing standard UoM? import UOM Mechanism for importing standard UoM? - State: - PENDING REVIEW - Product: - QB4ST - Raised by: - Phil Archer - Opened on: - 2017-01-03 - Description: - Is there an option for importing standard uom, envelope properties? For time there is hasBeginning, hasEnd ...
https://www.w3.org/2015/spatial/track/issues/131
CC-MAIN-2018-47
refinedweb
101
55.44
Let's step through adding a basic dissector. We'll start with the made up "foo" protocol. It consists of the following basic items. A packet type - 8 bits, possible values: 1 - initialisation, 2 - terminate, 3 - data. A set of flags stored in 8 bits, 0x01 - start packet, 0x02 - end packet, 0x04 - priority packet. A seq...
http://www.linuxtopia.org/online_books/network_security/wireshark_development_guide/wireshark_ChDissectAdd.html
CC-MAIN-2016-50
refinedweb
2,214
65.22
This guide shows you how to perform common scenarios by using the Azure Table storage service. The samples are written in Python and use the Python Azure Storage package. The covered scenarios include creating and deleting a table, in addition to inserting and querying entities in a table.: You can use the Table servic...
https://azure.microsoft.com/en-us/documentation/articles/storage-python-how-to-use-table-storage/
CC-MAIN-2015-40
refinedweb
372
57.16
How to Reverse a number in C++ In this tutorial, we will learn how to reverse a number in c++. The Reverse of a number means to reverse the position of all digits of any number and storing the digits in reverse order. For example, the reverse of 254 is 452. We can reverse a number in c++ using a loop and arithmetic ope...
https://www.codespeedy.com/reverse-a-number-in-cpp/
CC-MAIN-2022-27
refinedweb
329
69.92
Module to work with bencoded strings. PyBencoder - your bencoded strings module What is a Bencoded String? Bencode (pronounced like B encode) is the encoding used by the peer-to-peer file sharing system BitTorrent for storing and transmitting loosely structured data. For more info on bencoding check out. - It provides:...
https://pypi.org/project/PyBencoder3/
CC-MAIN-2017-43
refinedweb
276
61.02
Created on 2013-11-22 19:42 by larry, last changed 2014-03-10 01:35 by python-dev. This issue is now closed. Attached is a patch exposing the old opcode_stack_effect() function to Python. The patch does the following: * renames opcode_stack_effect() to PyCompile_OpcodeStackEffect() * removes the "static" modifier from ...
http://bugs.python.org/issue19722
CC-MAIN-2016-22
refinedweb
609
55.64
Exchange organization for delivery to the recipient. will have to assign Contoso.com as the SMTP e-mail address for the users in your organization. Accepted domains are configured for the Exchange organization and on computers that have the Edge Transport server role installed.. In the work pane, click the Accepted Do...
https://technet.microsoft.com/en-us/library/bb124907(v=exchg.80).aspx
CC-MAIN-2015-14
refinedweb
189
58.89
One more chapter until From Zero, boys. So that's how many months/chapters until the end of the whale battle to see if they kept thatin? If they do, does that all but confirm them doing the fourth arc? First for no new content no new threads >>150274894 3-4~ months? The White Whale won't be more than two chapters. >>15...
https://4archive.org/board/a/thread/150274894/one-more-chapter-until-from-zero-boys-so-that-039-s-how-many
CC-MAIN-2019-51
refinedweb
9,702
81.93