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
On 02/13/2011 05:49 PM, Loren Merritt wrote: >> +cglobal ac3_max_msb_abs_int16_%1, 2,2,5, src, len >> + pxor m2, m2 >> + pxor m3, m3 >> +.loop: >> +%ifidn %2, min_max >> + mova m0, [srcq] >> + mova m1, [srcq+mmsize] >> + pminsw m2, m0 >> + pminsw m2, m1 >> + pmaxsw m3, m0 >> + pmaxsw m3, m1 >> +%else ; or_abs >> +%ifid...
http://ffmpeg.org/pipermail/ffmpeg-devel/2011-February/104023.html
CC-MAIN-2014-52
refinedweb
158
51.04
[Updated Sep 24th 2014] Azure Redis Cache is now Generally Available with an availability SLA of 99.9%. This new cache service gives customers the ability to use a secure, dedicated Redis cache, managed by Microsoft. With this offer, you get to leverage the rich feature set and ecosystem provided by Redis, and reliable...
http://azure.microsoft.com/blog/2014/06/04/lap-around-azure-redis-cache-preview/
CC-MAIN-2014-49
refinedweb
1,048
62.68
LightIOLightIO LightIO provides green thread to ruby. Like Golang's goroutine, or Crystal's fiber. In LightIO it is called beam. Example: require 'lightio' start = Time.now beams = 1000.times.map do # LightIO::Beam is green-thread, use it instead Thread LightIO::Beam.new do # do some io operations in beam LightIO.sleep...
https://www.ctolib.com/socketry-lightio.html
CC-MAIN-2018-43
refinedweb
309
53.17
Table following examples show a variety of ways to create futures and work with their eventual results.Back to top: - The importstatements bring the code into scope that’s needed. - The ExecutionContext.Implicits.globalimport statement imports the “default global execution context.” You can think of an execution contex...
https://alvinalexander.com/scala/concurrency-with-scala-futures-tutorials-examples
CC-MAIN-2017-43
refinedweb
729
57.47
following error: [WARNING] java.lang.reflect.InvocationTargetException What is JSON? Engineer" } Read more tutorials about JSON. Which programming language supports... can check the complete list at Read more tutorials about JSON... What is JSON? In this article we are discussing about the JSON which JSON-RPC JSON-RPC...
http://www.roseindia.net/tutorialhelp/comment/89283
CC-MAIN-2015-40
refinedweb
1,674
57.57
How To Serve Flask Applications with uWSGI and Nginx on Ubuntu 18.04 Introduction In this guide, you will build a Python application using the Flask microframework on Ubuntu 18.04. The bulk of this article will be about how to set up the uWSGI application server and how to launch the application and configure Nginx to ...
https://www.digitalocean.com/community/tutorials/how-to-serve-flask-applications-with-uswgi-and-nginx-on-ubuntu-18-04
CC-MAIN-2018-51
refinedweb
1,217
56.15
Opened 7 years ago Closed 4 years ago #7430 closed Bug (needsinfo) Recursively iterating through a template's nodes Description Right now, for node in Template() will only yield the top-level nodes. Is this the way it is intended to work? I was expecting to get all nodes, recursively. The Template.__iter__ code looks l...
https://code.djangoproject.com/ticket/7430
CC-MAIN-2015-18
refinedweb
385
69.11
#include <itkEventObject.h> Inheritance diagram for itk::EventObject:. Constructor and copy constructor. Note that these functions will be called when children are instantiated. Definition at line 63 of file itkEventObject.h. Definition at line 65 of file itkEventObject.h. Virtual destructor needed Definition at line 6...
http://www.itk.org/Doxygen38/html/classitk_1_1EventObject.html
crawl-003
refinedweb
109
54.18
Key Takeaway Points and Lessons Learned from QCon San Francisco 2014 - | - - - - - - Read later Reading List At the start of November around 1,200 attendees descended on the Hyatt Regency in San Francisco for the eighth annual QCon in the city. The conference featured thought-provoking and engaging keynotes from securi...
https://www.infoq.com/articles/qcon-san-francisco-2014
CC-MAIN-2018-30
refinedweb
8,125
53.1
Metaprogramming in Elixir Usually, we think of a program as something that manipulates data to achieve some result. But what is data? Can we use the programs themselves as data? 🤔 In today’s article, we’ll go down the rabbit hole with the assistance of Elixir, a programming language that is permeated by metaprogrammin...
https://serokell.io/blog/elixir-metaprogramming
CC-MAIN-2021-39
refinedweb
1,917
71.75
What am i doing wrong with QFile::rename? - MathSquare @ Qstring oldName = ("/home/myusername/Desktop/11.txt"); Qstring newName = ("/home/myusername/Desktop/22.txt"); bool QFile::rename ( const QString & oldName, const QString & newName ); @ Please tell me how to fix it and post the code since i am a new user to qt and...
https://forum.qt.io/topic/23476/what-am-i-doing-wrong-with-qfile-rename-63
CC-MAIN-2017-47
refinedweb
204
59.4
Originally posted by Arathi Rajashekar: I have a doubt. I modified the above code to following. It is compiling fine class A { protected int i = 10; public int getI() { return i; } } public class B extends A { public void process(A a) { a.i = a.i*2; } public static void main(String[] args) { A a = new B(); B b = new B(...
http://www.coderanch.com/t/235892/java-programmer-SCJP/certification/isn-compiling
CC-MAIN-2015-40
refinedweb
161
76.93
Ruby Array Exercises: Compute the average values of a given array of except the largest and smallest values Ruby Array: Exercise-31 with Solution Write a Ruby program to compute the average values of a given array, except the largest and smallest values. The array length must be 3 or more. Ruby Code: def check_array(nu...
https://www.w3resource.com/ruby-exercises/array/ruby-array-exercise-31.php
CC-MAIN-2021-21
refinedweb
197
60.35
textwrap, but savvy to ANSI colors and styles Project Description Release History Download Files ansiwrap wraps text, like the standard textwrap module. But it also correctly wraps text that contains ANSI control sequences that colorize or style text. Where textwrap is fooled by the raw string length of those control c...
https://pypi.org/project/ansiwrap/
CC-MAIN-2017-43
refinedweb
209
60.14
Const As we have seen in the last chapter, there are mainly two reasons to pass an argument to a function by reference: It may be faster and we are able to change the original value. We also saw that it is often unnecessary inside the function to be able to change the value of the argument and noted that it is often a ...
https://en.cppreference.com/book/intro/const
CC-MAIN-2018-39
refinedweb
1,136
56.39
As you may already know,. First let's create a directory, initialize npm, and install webpack locally: mkdir webpack-demo && cd webpack-demo npm init -y npm install --save-dev webpack Now we'll create the following directory structure and contents: project webpack-demo |- package.json + |- index.html + |- /src + |- ind...
http://docs.w3cub.com/webpack/guides/getting-started/
CC-MAIN-2018-51
refinedweb
590
53.37
or Join Now! Immediately following is an abridged version of my cleaver story for those that find their time precious. Following that is the unabridged version for an audience that have time to kill and are still struggling to determine the fine line separating sanity from a basket cases. o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-...
http://lumberjocks.com/projects/249650
CC-MAIN-2017-04
refinedweb
2,033
70.77
How to scroll to an element - danielo515 last edited by Funny, the same question was asked in Discord yesterday and we wanted to upgrade the docs for it. Here is the solution we came up with import { scroll } from 'quasar' const { getScrollTarget, setScrollPosition } = scroll export default { methods: { handleScroll ()...
https://forum.quasar-framework.org/topic/2008/how-to-scroll-to-an-element
CC-MAIN-2020-45
refinedweb
282
51.04
In this tutorial, we will discuss the Typing Library which was introduced in Python 3.5 It’s a rather special library that builds on the concept of Type Hinting and Checking, and brings in some additional functionality. If you are not aware of what Type Hinting is in Python, then it was best for you to check out our tu...
https://coderslegacy.com/python/typing-library/
CC-MAIN-2022-40
refinedweb
913
70.53
This is the mail archive of the cygwin mailing list for the Cygwin project. On 09/26/2014 07:36 AM, Mohammad Yaqoob wrote: > When are you releasing 4.1.12-6 > Today. It may be numbered 4.1.13-6, depending on what upstream does in the meantime (Chet has already prepared patch 13 [fixing a parser state leak], but not yet...
https://cygwin.com/ml/cygwin/2014-09/msg00400.html
CC-MAIN-2019-43
refinedweb
271
63.93
It was back in 2018 we saw the presentation in Vue.js London and later read a post when Evan You (creator of Vue) announced Vue 3. Finally, the beta was released on April 16, 2020, and at the time of writing, we are at version 3.0.0-beta.14. According to the official roadmap, the official release is planned for the end...
https://graphicdon.com/2020/12/17/discovering-vue3-changes-and-features/
CC-MAIN-2021-04
refinedweb
1,013
58.21
Jagged arrays are two-dimensional arrays. You can think like each element of these arrays have elements of type Array, i.e. it holds different arrays. The size of these array-elements is different. It is not required that all elements should have the same sized array. Jagged arrays are also known as Ragged arrays in Ja...
https://www.codevscolor.com/java-jagged-arrays-explanation-with-examples
CC-MAIN-2020-40
refinedweb
862
61.67
Hibernate Infinispan Entity/Query 2nd-Level cacheNuno Gonçalves Jul 31, 2012 11:45 AM I've been banging my head against the wall for a few days with this issue. We are trying to implement Hibernate's second-level cache, using Infinispan. The application is running on JBoss AS 6, and using JTA transactions. On our persi...
https://developer.jboss.org/thread/203379
CC-MAIN-2019-18
refinedweb
439
51.04
Multi-thread with java.nio without file.walk I was following this tutorial and I was wondering if there is a way to multithread the Files.walkFileTree() function?: this isn't a duplicate because I could use files.walk() but the issue with file.walk() is that it failed when there is a AccessDeniedException. I want to us...
http://quabr.com/48757657/multi-thread-with-java-nio
CC-MAIN-2018-34
refinedweb
934
72.22
Longest palindromic substring using Palindromic tree 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 Given a string, we are required to find the longest palindromic substring. Ex s="abbbbamsksk". The longest palindromic subtring is abbbba. T...
https://iq.opengenus.org/longest-palindromic-substring-using-palindromic-tree/
CC-MAIN-2021-17
refinedweb
1,968
72.56
29 April 2010 21:51 [Source: ICIS news] HOUSTON (ICIS news)--NYMEX light sweet crude for June delivery settled at $85.17/bbl on Thursday, up $1.95 in response to euro gains against the dollar and expectations of rising gasoline demand. The weekly supply statistics from the Energy Information Administration (EIA) reveal...
http://www.icis.com/Articles/2010/04/29/9355271/us-crude-rises-1.95bbl-on-dollar-exchange-gasoline-demand.html
CC-MAIN-2014-35
refinedweb
137
68.47
ReleaseMutex This function releases ownership of the specified mutex object. - hMutex [in] Handle to the mutex object. The CreateMutex function returns this handle. Nonzero indicates success. Zero indicates failure. To get extended error information, call GetLastError. The ReleaseMutex function fails if the calling thr...
https://msdn.microsoft.com/en-us/library/aa908800.aspx
CC-MAIN-2016-44
refinedweb
206
58.48
Hello, I've playing with this for some time and it's interesting, i'm in the process of writing an app i had in vb. I'm also in between windows to mac as a development tool. When i moved my code from windows xp flex 3.02, adobe air app. Using air 1.5 to the Mac 10.6.2 Flex 3.01 which is air 1.0 This is the basic code i...
https://forums.adobe.com/thread/544358
CC-MAIN-2017-30
refinedweb
218
72.22
Judge Somers 11-11425 Schupbach Investments, LLC and Amy Marie Schupbach (Doc. # 461) - Details - Category: Judge Somers - Published on 20 June 2013 - Written by Judge Somers In Re Schupbach Investments, LLC and Amy Marie Schupbach, 11-11425 (Bankr. D. Kan. Jun. 20, 2013) Doc. # 461 SO ORDERED. SIGNED this 20th day of ...
http://www.ksb.uscourts.gov/index.php/kansas-bankruptcy-court-opinions/judge-somers-opinions/2108-11-11425-schupbach-investments-llc-and-amy-marie-schupbach-doc-461?showall=1&limitstart=
CC-MAIN-2014-35
refinedweb
1,970
63.8
28 February 2018 0 comments Python, Django, Javascript This is a quick-and-dirty how-to on how to use csso to handle the minification/compression of CSS in django-pipeline. First create a file called compressors.py somewhere in your project. Make it something like this: import subprocess from pipeline.compressors impor...
https://api.minimalcss.app/plog/csso-and-django-pipeline
CC-MAIN-2020-16
refinedweb
512
59.9
The Quality of Life for the World’s Poorest Can Be Advanced Farther, Faster, Cheaper and More Surely Through Adaptation than Through Zero-Carbon Technologies Guest Post By Indur M. Goklany A few days ago, Tom Nelson had a link to a blog posted by Mr. Bill Gates titled, Recommended Reading on Climate Change, in which he...
http://wattsupwiththat.com/2010/09/11/an-open-letter-to-mr-bill-gates/
CC-MAIN-2015-27
refinedweb
8,994
62.17
time.sleep() crashes Pythonista when used in scene, decorated by @ui.in_background. - lachlantula I know this has been asked before, but I have a different scenario where the solutions suggested won't work. The app crashes when certain functions featuring sleep are run. Pythonista 3. Here's a sample of code that can so...
https://forum.omz-software.com/topic/3730/time-sleep-crashes-pythonista-when-used-in-scene-decorated-by-ui-in_background
CC-MAIN-2017-17
refinedweb
186
70.19
csGraphics2D Class Reference [Common Plugin Classes] This is the base class for 2D canvases. More... #include <csplugincommon/canvas/graph2d.h> Inherits scfImplementation7< csGraphics2D, iGraphics2D, iComponent, iNativeWindow, iNativeWindowManager, iPluginConfig, iDebugHelper, iEventHandler >. Inherited by scfImplement...
http://www.crystalspace3d.org/docs/online/api-1.4.1/classcsGraphics2D.html
CC-MAIN-2014-49
refinedweb
552
54.59
Getting Started with wxPython We shows everything you'll need in order to run wxPython. Table 1 Everything you'll need to run wxPython on your own computer Once the installations are complete, get ready to type. We're going to create a program that displays a single image file. This will happen in three steps: - We'll ...
https://www.developer.com/open/article.php/3625886/Getting-Started-with-wxPython.htm
CC-MAIN-2017-43
refinedweb
500
67.15
. 1) do setsockopt() BEFORE bind. 2) Try to bind directly to multicast address. // 224.3.0.15 = FE03000D cliAddr.sin_addr.s_addr = htons(0xFE03000D); 224.3.0.15 = 0xE003000D, not 0xFE03000D (0xFE03000D = 254.3.0.15). I will try your second suggestions first and will let you know. Could you please explain a little bit m...
https://www.experts-exchange.com/questions/21819380/Multicast-multiple-interfaces.html
CC-MAIN-2017-51
refinedweb
1,818
67.96
Position Relative to screen center How would I position a UI view relative to the center of the screen, no matter the orientation? Do I use the size_to_fit() function? ui.center? Do I have to make the ui view a sub view of a larger view? If so, how will that view be oriented when the iPad is rotated (sounds too complex...
https://forum.omz-software.com/topic/1311/position-relative-to-screen-center
CC-MAIN-2021-31
refinedweb
550
67.45
.NET 3.0 and Beyond - Web Service Discovery The opinions expressed herein are my own personal opinions and do not represent my employer Microsoft's view in any way. The modification of the body is a common task required in many applications. The Message Fixer explained in "Fixed the Messages" article performs body modi...
http://blogs.msdn.com/vipulmodi/archive/2005/09/16/469070.aspx
crawl-002
refinedweb
441
53.1
Access, Encapsulation, & Scope The public Keyword The public and private keywords are very important within Java. These keywords are defining what parts of our code have access to other parts of our code. We can define the access of many different parts of our code including instance variables, methods, constructors, a...
https://docs.nicklyss.com/java-access-scope/
CC-MAIN-2022-40
refinedweb
1,953
63.8
footboydog Senior Member Last Activity: 4th April 2015 09:52 PM About Me - About footboydog - Home country - United Kingdom - Signature - Black HTC Dream with standard Donut (rooted). Motorola Xoom 32Gb Wi-fi Nexus 5 32gb stock Nexus 7 2013 32Gb stock For the latest on my SMS Bot Widget and Paperless List app (UK only)...
http://forum.xda-developers.com/member.php?u=1517851
CC-MAIN-2015-18
refinedweb
182
70.63
How to Integrate jQuery Plugins into an Ember Application This article was peer reviewed by Craig Bilner. Thanks to all of SitePoint’s peer reviewers for making SitePoint content the best it can be! With its ubiquity, jQuery still plays a vital role in the web development world. Its regular employment shouldn’t be a su...
https://www.sitepoint.com/how-to-integrate-jquery-plugins-into-an-ember-application/
CC-MAIN-2022-21
refinedweb
1,605
64.41
The.L The.List; import org.bson.BSONObject; import org.bson.BasicBSONObject; import com.sequoiadb.base.Node.NodeStatus; import com.sequoiadb.base.DBCursor; import com.sequoiadb.base.Node; import com.sequoiadb.base.ReplicaGroup; import com.sequoiadb.base.Sequoiadb; import com.sequoiadb.exception.BaseException; public cl...
http://www.itworkman.com/145037.html
CC-MAIN-2021-39
refinedweb
776
52.26
Why we need Python in the Browser In his Pycon 2012 keynote speech on Sunday, Guido van Rossum covered many of the open “Troll” questions related to the Python community. I’ve had occasion to either complain about or defend all of the topics he covered, and he did a wonderful job of addressing them. The issues could la...
http://archlinux.me/dusty/2012/03/13/why-we-need-python-in-the-browser/
CC-MAIN-2014-15
refinedweb
2,414
70.63
HDF Group's web site at ....CHM/PDL-IO-HDF5-0.6501 - 26 Jan 2014 15:31:04 GMT - Search in distribution - PDL::IO::HDF5::tkview - View HDF5 files using perl/tk and PDL::IO::HDF5 modules - PDL::IO::HDF5::Dataset - PDL::IO::HDF5 Helper Object representing HDF5 datasets. - hdf5.pd PDL::IO - An overview of the modules in t...
https://metacpan.org/search?q=PDL-IO-HDF5
CC-MAIN-2015-22
refinedweb
137
61.22
24 March 2009 17:40 [Source: ICIS news] By John Richardson LONDON (ICIS news)--The financial sector has indulged in an ?xml:namespace> “Banks in In the polyester and many other industries, money seems to be flowing to companies producing goods that might be going into inventories. “In Shaoxing, the government has set o...
http://www.icis.com/Articles/2009/03/24/9202943/INSIGHT-Chinas-curious-path-to-economic-recovery.html
CC-MAIN-2013-48
refinedweb
788
55.47
I'm writing an x86 assembly function that determines whether a string is a palindrome or not (except for the null-terminator). This function is meant to return 0 if the strings are palindromes, and if the strings are not palindromes, it will return the comparison that failed (i.e. the index of the character on the left...
https://codedump.io/share/Lk0LefRHVs1R/1/palindrome-function-always-reporting-offset-1-for-error
CC-MAIN-2017-30
refinedweb
728
52.26
in reply to Re^4: Net::LDAP help with distinguished namein thread Net::LDAP help with distinguished name Although you complain that the responses are vague, they are not. The API exposed by Net::LDAP is pretty much a Perl equivalent to the OpenLDAP C API. As such, if you want to be able to get the information for a sin...
https://www.perlmonks.org/index.pl/jacques?node_id=951800
CC-MAIN-2018-26
refinedweb
471
58.11
focusing on the problems of punish_severely... To the layman this might satisfy his bloodthirst for getting back at the terrorists - yeah, we'll kick their b... The released open source code is however only political propaganda showing what the author wants you to think he intends to do. The implementation of this func...
https://www.schneier.com/blog/archives/2006/10/torture_bill_as.xml
CC-MAIN-2015-40
refinedweb
4,867
63.19
Ext JS 4 & Sencha Touch ? Ext JS 4 & Sencha Touch ? Hi,? Good question. Same situation for us: we already created a complex technical application with Ext JS 3.0. We will migrate to Ext JS 4.0. New requirement: People will use the application on desktop pcs and for sure on the ipad or similiar devices. We won't rewrite...
http://www.sencha.com/forum/showthread.php?126780-Ext-JS-4-amp-Sencha-Touch&p=592632&viewfull=1
CC-MAIN-2015-18
refinedweb
712
68.91
On Sun, Feb 02, 2014 at 11:37:39AM +0100, David Kastrup wrote: > So I mused: refs/heads contains branches, refs/tags contains tags. The > respective information would likely easily enough be stored in refs/bzr > and refs/bugs and in that manner would not pollute the "ordinary" tag > and branch spaces, rendering "git ta...
https://www.mail-archive.com/git@vger.kernel.org/msg43012.html
CC-MAIN-2016-44
refinedweb
406
62.68
Contents - Introduction - A very simple C program - The program in PowerPC assembly language - The relocatable object file - Disassembly and machine code Introduction. - gcc translates our C code to assembly code. - gcc calls GNU as to translate the assembly code to machine code in an ELF relocatable object. - gcc call...
https://wiki.netbsd.org/examples/elf_executables_for_powerpc/
CC-MAIN-2015-22
refinedweb
3,015
68.16
ClojureQL is now coming dangerously close to version 1.0. Despite its young age, its already been adopted several interesting places, among others in the Danish Health Care industry. Before we ship version 1.0, I want to walk through some of the features and design decisions as well as encourage comments, criticisms an...
http://www.bestinclass.dk/index.clj/2009/12/clojureql-where-are-we-going.html
CC-MAIN-2013-48
refinedweb
2,122
59.74
Technical Support On-Line Manuals RL-ARM User's Guide #include <stdio.h> FILE* fopen ( const char* filename, /* file to open */ const char* mode); /* type of access */ The function fopen opens a file for reading or writing. The parameter filename is a pointer defining the file to open. The parameter mode is a pointer d...
http://www.keil.com/support/man/docs/rlarm/rlarm_fopen.htm
CC-MAIN-2014-49
refinedweb
187
78.75
Hello and welcome to a tutorial for setting up Flask with Python 3 on a VPS. For the purposes of this tutorial, I will be using Digital Ocean. For $10 in credit to start with them, you can use my referral code, but you can use any VPS provider that you'd like. The point of being able to setup Flask yourself is so that ...
https://pythonprogramming.net/basic-flask-website-tutorial/?completed=/practical-flask-introduction/
CC-MAIN-2021-39
refinedweb
939
68.26
View Complete Post Hello, I was wondering if it's possible to write some code into the Header of my Master Page from within a Class? Any help is appreciated. Thanks'm just wondering if there is an exception class in the .NET Framework intended to signify that an internal error has occured. If there isn't, I'll simply d...
http://www.dotnetspark.com/links/40727-designed-not-adding-new-internal-variable.aspx
CC-MAIN-2017-13
refinedweb
485
56.96
Details Description Error msg: In file included from java.c:24:0: /usr/lib/jvm/java-1.8.0-openjdk/include/jni.h:45:20: fatal error: jni_md.h: No such file or directory #include "jni_md.h" Issue Links - Blocked BIGTOP-2611 Adding Fedora-25 with Java 1.8 support - Closed Activity - All - Work Log - History - Activity - T...
https://issues.apache.org/jira/browse/BIGTOP-2618
CC-MAIN-2017-43
refinedweb
471
60.61
January 2009 Volume 24 Number 01 Extreme ASP.NET - Routing with ASP.NET Web Forms By Scott Allen | January 2009 Service Pack 1 for the Microsoft .NET Framework 3.5 introduced a routing engine to the ASP.NET runtime. The routing engine can decouple the URL in an incoming HTTP request from the physical Web Form that resp...
https://msdn.microsoft.com/en-us/magazine/dd347546.aspx
CC-MAIN-2018-30
refinedweb
2,276
55.84
04 December 2008 12:37 [Source: ICIS news] PARIS (ICIS news)--The EU was close to reaching an agreement on the climate change package, the EU Energy Commissioner Andris Piebalgs said during a debate on the issue at the European Parliament on Thursday. Piebalgs said there were only a few issues outstanding, most notably...
http://www.icis.com/Articles/2008/12/04/9177009/eu-close-to-agreement-on-climate-plan-piebalgs.html
CC-MAIN-2015-06
refinedweb
293
54.05
Subject: Re: [boost] TTI library updated in the sandbox From: Vicente Botet (vicente.botet_at_[hidden]) Date: 2011-02-10 10:37:05 Edward Diener-3 wrote: > > On 2/8/2011 5:47 PM, Vicente Botet wrote: >> >> >> Edward Diener-3 wrote: >> P.S. I would prefer that the library uses already standard Boost >> conventions >> for...
https://lists.boost.org/Archives/boost/2011/02/176999.php
CC-MAIN-2020-45
refinedweb
165
66.47
#include <dbz.h> dbminit(base) char *base; datum fetch(key) datum key; store(key, value) datum key; datum value; dbmclose() dbzfresh(base, size, fieldsep, cmap, tagmask) char *base; long size; int fieldsep; int cmap; long tagmask; dbzagain(base, oldbase) char *base; char *oldbase; datum dbzfetch(key) datum key; dbzstor...
http://www.makelinux.net/man/3/D/dbzclose
CC-MAIN-2015-35
refinedweb
1,536
59.84
May 04, 2012 08:09 PM|kunal1982|LINK I have a strongly typed view, which has some input boxes to map to a collection in an entity. Say for an example , take case of a View for adding an Employee detail and within that there are input fields to enter department name as well (say 2). Both of them are required. Here is th...
http://forums.asp.net/t/1800271.aspx?How+to+apply+validation+to+a+collection+item+in+Asp+net+MVC+2
CC-MAIN-2014-10
refinedweb
1,524
64.3
Odoo Help Odoo is the world's easiest all-in-one management software. It includes hundreds of business apps: CRM | e-Commerce | Accounting | Inventory | PoS | Project management | MRP | etc. How to add a new status in sale.order in odoo 9? How to add a new status in sale.order in odoo 9? You have to redefine "state" in...
https://www.odoo.com/forum/help-1/question/how-to-add-a-new-status-in-sale-order-in-odoo-9-110398
CC-MAIN-2017-13
refinedweb
373
50.02
In-Depth If Silverlight 2 wins the gold in Beijing, will it be ready to light up your rich Internet apps? A Web video player based on beta 2 of Redmond's rich Internet application (RIA) runtime will bring interactive features to real-time and on-demand video content. The player was developed by New York-based multimedi...
https://visualstudiomagazine.com/articles/2008/08/01/silverlight-2-olympic-trial.aspx
CC-MAIN-2018-13
refinedweb
2,676
58.32
getting classnotfound exception while running login application getting classnotfound exception while running login application hi, I am getting Error creating bean with name 'urlMapping' defined... to bean 'loginController' while setting bean property 'urlMap' with problem with executing JSF file(Build failed) problem...
http://www.roseindia.net/tutorialhelp/comment/91278
CC-MAIN-2014-52
refinedweb
2,320
50.12
Free doesn’t always mean “not as good as paid”, and OpenHAB is no exception. The open source home automation software far exceeds the capabilities of any other home automation system on the market – but it’s not easy to get set up. In fact, it can be downright frustrating. In part 1 of the guide, I walked you through i...
https://www.makeuseof.com/tag/openhab-beginners-guide-part-2-zwave-mqtt-rules-charting/
CC-MAIN-2018-17
refinedweb
8,189
54.63
How to Annualize a Quarterly Return Investment companies update their clients regularly about their return on investment (ROI). If you have investments, you probably have received a quarterly return report that shows how well each of your investments has fared over the past 3 months. It is easier to comprehend the stre...
http://www.wikihow.com/Annualize-a-Quarterly-Return
CC-MAIN-2015-22
refinedweb
585
65.52
Git Hooks Users Guide This document provides a quick reference towards using AdaCore's "Git Hooks", which are the scripts used to manage our git repositories, when new commits get pushed. These scripts are typically responsible for pre-commit checks, and email notifications. The source for these hooks can be found at: ...
http://sourceware.org/gdb/wiki/GitHooksUsersGuide?action=diff&rev1=1&rev2=13
CC-MAIN-2018-39
refinedweb
3,687
52.39
Hey Guys, im trying to create a timer in c++ that starts at one, and every second the program displays the next number starting from -15, i have the start, but what i want is a breaker button... Such as while its counting, i want to be able to press either the space, enter, 1, or 0 button on the keyboard to break the t...
https://www.daniweb.com/programming/software-development/threads/20938/help-with-a-timer-and-stopping-it
CC-MAIN-2017-34
refinedweb
167
78.79
I am not even sure how to world this right. I have an Universal Windows Application that is currently on the way. I write some Unit Test using MSTest along the way, and I ran into this problem. I have a method that use a Writeablebitmap from Windows.UI.XAML namespace, to convert some of the image […] Month: February 20...
http://howtocode.net/2016/02/
CC-MAIN-2018-17
refinedweb
340
73.78
If you haven't done so already, be sure to visit the Wiki Portal to read about how the wiki works. Especially the Ogre Wiki Overview page. Table of contents First Steps In this tutorial, you will create and run a barebones Ogre program. As you might guess, this program is very simple and teaches you the very basics of ...
http://www.ogre3d.org/tikiwiki/Basic+Ogre+Application
crawl-003
refinedweb
2,078
65.73
C++0x, scoped enums Introduction and good usage patterns for scoped enumerations Enumerations, commonly called enums, are constructs in a programming language that allow users to group a set of values under one group and assign a name to each value. Sometimes, you want to represent several states or values that are sta...
https://www.ibm.com/developerworks/rational/library/scoped-enums/index.html
CC-MAIN-2018-05
refinedweb
3,126
57.91
If may become chtT It may cover the i lar^c. Inflamed, burning, Itcfciiig, scaling patches and cause Intense suffering. It has been known to do so. Do not delay treatment. Thoroughly cleanse the systen\ of the humors on which this ailment de? pends and prevent their return. Tho medicine taken by Mrs. Ida E. Ward, Ccve ...
http://chroniclingamerica.loc.gov/lccn/sn86071779/1900-12-30/ed-1/seq-5/ocr/
CC-MAIN-2015-48
refinedweb
4,331
77.23
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these. First of all: have they finally released an Android port of Allegro? This is too good to be true Also, my test game, which was compiled with V2.6SP1, didn't show up. Is it because my game is 8-bit and...
https://www.adventuregamestudio.co.uk/forums/index.php?topic=44768.msg598610
CC-MAIN-2019-22
refinedweb
697
74.08
#include <iostream> using namespace std; void whosprime(long long x) { bool imPrime = true; for(int i = 1; i <= x; i++) { for(int z = 2; z <= x; z++) { if((i != z) && (i%z == 0)) { imPrime = false; break; } } if(imPrime && x%i == 0) cout << i << endl; imPrime = true; } } int main() { long long r = 600851475143LL; whosp...
https://codedump.io/share/2GkZwVxPmwqS/1/finding-prime-factors
CC-MAIN-2016-50
refinedweb
350
62.11
I have a web socket that accepts an object called PushMessage and sends it to a React page, which subsequently updates in real-time. The way this works is that the user searches for the PushMessage he wishes to display, and this is then passed in. However, what happens right now is that if the user searches for the fir...
https://codedump.io/share/oDspj0GJmoix/1/clear-redux-store
CC-MAIN-2016-50
refinedweb
763
56.25
MultiMarkdown in Editorial I found out that some features of MultiMarkdown are not supported in Editorial, as well as a bug: Bug: - Within Code delimiter (```), <>are not escaped. i.e. HTML codes within code block will still be HTML codes, not plain text. Does not support: - MMD metadata block (e.g. title is ignored) -...
https://forum.omz-software.com/topic/2984/multimarkdown-in-editorial
CC-MAIN-2017-26
refinedweb
622
64.81
This action might not be possible to undo. Are you sure you want to continue? Architecture in a Climate of Change Architecture in a Climate of Change A guide to sustainable design Peter F. 2001 Second edition 2005 Copyright © 2001, 2005, Peter F. Smith. All rights reserved The right of Peter F. Smith to be identified a...
https://www.scribd.com/doc/124363468/Architecture-in-a-Climate-of-Change
CC-MAIN-2017-34
refinedweb
90,949
57.98
Introduction to Windows Script Technologies Microsoft® Windows® 2000 Scripting Guide This is a book about scripting for system administrators. If you are like many system administrators, you might be wondering why this book is targeted towards you. After all, scripting is not the sort of thing system administrators do....
https://technet.microsoft.com/en-us/library/ee176792.aspx
CC-MAIN-2015-22
refinedweb
4,551
58.42
Computer Architecture Lab/FPGA Hello World Example When one starts to use a new language or environment the first program written is usually the famous 'Hello World' example. What is the 'Hello World' program in hardware, in an FPGA? The smallest project that produces dynamic output is a blinking LED. We will show the ...
https://en.wikiversity.org/wiki/Computer_Architecture_Lab/FPGA_Hello_World_Example
CC-MAIN-2017-04
refinedweb
1,134
55.44
breakand continueStatements Java break and continue statements are used to manage program flow. We can use them in a loop to control loop iterations. These statements let us to control loop and switch statements by enabling us to either break out of the loop or jump to the next iteration by skipping the current loop it...
https://www.studytonight.com/java/break-continue-statement-in-java.php
CC-MAIN-2021-04
refinedweb
628
62.78
, Mar 04, 2004 at 03:33:53PM +0100, Tim Plessers wrote: > Hi Graham, > Thanks for your quick reply. > I looked into that mailinglist archive thread you suggested. Hi Graham, The current implementation in 2.0 b1 was a hack just to get something working. It, as I think you saw, simply loads the classes in the system clas...
https://sourceforge.net/p/beanshell/mailman/beanshell-developers/?viewmonth=200403&viewday=4
CC-MAIN-2018-17
refinedweb
564
72.46
The Presentation Model pattern, known as a variation of the Model-View-Controller (MVC) design pattern, usually is a self-contained class that contains the data and event publications of the user interface, but without knowing what kind of user interface it will be. The Presentation Model has key features like: In my p...
https://www.codeproject.com/kb/sharepoint/pminsharepoint.aspx
CC-MAIN-2017-09
refinedweb
1,371
58.69
Before we start crafting scripts in Blender we must check whether or not we have all the necessary tools available. After that we will have to familiarize ourselves with these tools so that we can use them with confidence. In this chapter, we will look at: What can and cannot be accomplished with Python in Blender How ...
https://www.packtpub.com/product/blender-2-49-scripting/9781849510400
CC-MAIN-2021-17
refinedweb
7,742
59.53
I'm writing a program for my java class that has to solve quadratic equations. I have separate methods that calls the private variables a, b, and c. I also have separate methods for the discriminant and both the positive and negative roots. My code is as follows: import java.util.Scanner; public class QuadraticEquation...
http://www.javaprogrammingforums.com/whats-wrong-my-code/33560-cannot-call-method-because-non-static.html
CC-MAIN-2015-22
refinedweb
276
51.85
Hello everyone, welcome to this new article, where we are going to explore React Native Box Shadow UI concept. This is a pretty common why to make Cards in Mobile apps. On Web, it’s pretty straight forward you can Css, but mobile is a bit different for every platform. Without further talk, let’s dig into it. This is th...
https://reactnativemaster.com/react-native-box-shadow-example/?utm_source=rss&utm_medium=rss&utm_campaign=react-native-box-shadow-example
CC-MAIN-2020-16
refinedweb
509
57.47
Python vs C++ Difference between Python and C++ Python and C++ programming languages are two most used programming languages used by programmers in competitive programing. C++ was released in 1985 by Bjarne Stroustrup as an extension to c programing language. Lets us have a look at the difference between python and C++...
https://prepinsta.com/python/python-vs-c-plus-plus/
CC-MAIN-2020-45
refinedweb
366
53.31
HashMap basic principle and underlying source code analysis 1. Storage structure of HashMap: HashMap is composed of array, chain structure (linked list) and red black tree. The structure of red black tree is added in JDK 1.8. (the storage structure will change dynamically according to the amount of stored data). Source...
https://programmer.help/blogs/basic-principle-and-underlying-analysis-of-hashmap.html
CC-MAIN-2021-49
refinedweb
4,435
58.82
programmers we are regularly faced with the task of creating computer applications, which is a good thing. One of the reasons we are regularly faced with this is that no computer application is exactly like any other - the requirements vary in some detail, the look&feel of an existing application isn't exactly what th...
https://community.devexpress.com/blogs/xaf/archive/2008/04/30/writing-code-is-not-a-workaround.aspx
CC-MAIN-2019-43
refinedweb
2,195
56.59
Abstract: This document describes how to modify 32-bit device drivers that run on the Solaris Operating System (OS) to be compatible with the 64-bit Solaris 10 OS on x86 platforms. Contents: The capabilities of the Solaris platform continue to expand to meet customer needs. The Solaris 10 release is designed to fully s...
http://developers.sun.com/solaris/articles/64_bit_driver.html
crawl-001
refinedweb
7,649
50.57
Mic Raspberry Pi website (click the Getting Started with MicroPython tab and follow the instructions). After that point you might get a bit stuck. The Pico documentation covers connecting to the Pico from a Pi, so if you're wanting to code from your own computer you'll need something else. One option is the Thonny IDE ...
https://www.mfitzp.com/tutorials/using-micropython-raspberry-pico/
CC-MAIN-2021-43
refinedweb
1,809
73.98
A Hitchhiker’s Guide to OCR Optical Character Recognition (OCR) is the process of extracting text out of images. There are numerous open source engines out there which make it incredibly easy to integrate OCR into almost any kind of product. These engines, particularly neural network based ones, know how to extract tex...
https://medium.com/analytics-vidhya/a-hitchhikers-guide-to-ocr-8b869f4e3743
CC-MAIN-2021-04
refinedweb
2,601
64
Hi Folks, I am trying to control the behaviour exhibited by some of our POGOs when they are created using a Map constructor which contains keys that do NOT map to their properties e.g. class Person { String name } def person = new Person([name: 'Edd', age: 35]) Normally the above would call propertyMissing() however I ...
http://mail-archives.eu.apache.org/mod_mbox/groovy-users/201606.mbox/%3CCAO5arLNv7p_3R09ZoSh2TBbBGcy76y7922eiXF3iCh52XB8yuA@mail.gmail.com%3E
CC-MAIN-2020-40
refinedweb
215
51.07
im new to c++ and have been writing the simple programs that i can in console apps. my hardest, simple program yet has become hard. im trying to make a program that has timed shutdown. ie. you put in 10 minutes, and in 10 minutes your computer will shut off. i have been reading posts on how people have been trying to s...
http://cboard.cprogramming.com/cplusplus-programming/8030-nooo.html
CC-MAIN-2014-10
refinedweb
186
71.24
sysctlAPI Mac Adding a sysctl Procedure Call Registering a New Top Level sysctl Adding a Simple sysctl Calling a sysctl From User Space sysctl When adding a sysctl, you must do all of the following first: add the following includes: #include <mach/mach_types.h> #include <sys/systm.h> #include <sys/types.h> #include <sy...
http://docs.huihoo.com/darwin/kernel-programming-guide/boundaries/chapter_14_section_7.html
CC-MAIN-2017-17
refinedweb
273
53.1
Java's miscellaneous operators are: ternary operator, member access, comma, array index, new, instanceof, and typecast. These operators are explained one by one in following sections. Java provides a special operator that is called ternary or conditional operator. This operator is a set of two symbols that are ? and :....
http://cs-fundamentals.com/java-programming/java-miscellaneous-operators.php
CC-MAIN-2017-17
refinedweb
632
50.63
Created 07-05-2016 10:16 PM Hello, I'm using spyder in the Anaconda distribution to execute instruction by instruction a .py. In my .py I have the instruction from pyspark.mllib.clustering import KMeans, KMeansModel But when I execute this instruction I get the error ImportError: No module named 'pyspark' How do I have...
https://community.cloudera.com/t5/Support-Questions/How-to-use-spyder-anaconda3/m-p/42630
CC-MAIN-2019-35
refinedweb
114
53.71
This HTML version of Think Data Structures is provided for convenience, but it is not the best format of the book. In particular, some of the symbols are not rendered correctly. You might prefer to read the PDF version. Or you can buy this book on Amazon.com. As we saw in the previous chapter, Java provides two impleme...
http://greenteapress.com/thinkdast/html/thinkdast003.html
CC-MAIN-2017-43
refinedweb
1,818
63.39
The recent series of Why XYZ Is Not My Favourite Programming Language articles has been fun to do, and it’s been great to see the discussion in the comments (even if it’s mostly people people saying that I am talking a load of fetid dingo’s kidneys). But I don’t want to extend that series beyond the point of diminishin...
https://reprog.wordpress.com/2010/03/18/so-what-actually-is-my-favourite-programming-language/
CC-MAIN-2016-40
refinedweb
10,365
60.65
supports iteration and the with statement. Changed in version 2.7: Support for the with statement was added. Changed in version 2.7: Support for zero-padded files was added. New in version 2.7: The mtime argument. This is a shorthand for GzipFile(filename, mode, compresslevel). The filename argument is required; mode ...
http://docs.python.org/2/library/gzip.html
CC-MAIN-2013-48
refinedweb
141
72.73
Hello, this is Jim Springfield. This post will cover some low-level details about how we represent information in the browse database in VS 2010. As I’ve mentioned in a previous post, we are using SQL Server Compact Edition (SSCE) for storing information about all of the C, C++, and IDL files in your solution. I will s...
https://blogs.msdn.microsoft.com/vcblog/2010/06/09/exploring-the-visual-c-browse-database/
CC-MAIN-2017-13
refinedweb
1,516
74.08
ice-stream An expressive streaming utility for node, inspired by Lo-Dash, Async, and event-stream. Ice-stream goal is to allow for complex processing of streaming data. npm install ice-stream Ice-Stream An expressive streaming utility for node, inspired by Lo-Dash, Async, and event-stream. Ice-Stream aims to make strea...
https://www.npmjs.org/package/ice-stream
CC-MAIN-2014-10
refinedweb
836
56.55