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
. SYNOPSIS ); In order to find the available space and used space, you need to know the total space. As far as I know there is not command to get the tape capacity; you can get the tape drive type, but you have to know the capacity on your own because teh SCSI tape interface is generic and works for many different tape...
https://www.experts-exchange.com/questions/20544472/Get-SCSI-tape-status.html
CC-MAIN-2018-09
refinedweb
306
83.66
Learn how easy it is to sync an existing GitHub or Google Code repo to a SourceForge project! See Demo You can subscribe to this list here. Showing 1 results of 1 After a short delay, Syllable 0.5.6 is now available. Get it from Sourceforge at The full changelog can be found below, but the major highlights of this rele...
http://sourceforge.net/p/syllable/mailman/syllable-announce/?viewmonth=200504
CC-MAIN-2015-18
refinedweb
1,654
65.93
New submission from Ivo van der Wijk <python.org at in.m3r.nl>: This issue is also discussed on Stackoverflow: The following code def top(deck): pass def b(): global deck results in the error "SyntaxError: name 'deck' is local and global" (slightly different for 3.x). This is strange by itself, and is caused by special...
https://mail.python.org/pipermail/new-bugs-announce/2010-September/008819.html
CC-MAIN-2018-09
refinedweb
127
60.82
XML::Pastor - Generate Perl classes with XML bindings starting from a W3C XSD Schema use XML::Pastor; my $pastor = XML::Pastor->new(); # Generate MULTIPLE modules, one module for each class, and put them under destination. $pastor->generate( mode =>'offline', style => 'multiple', schema=>'/some/path/to/schema.xsd', cla...
http://search.cpan.org/~aulusoy/XML-Pastor-1.0.4/lib/XML/Pastor.pm
CC-MAIN-2014-23
refinedweb
4,199
55.44
This article explains how to create a weak list (a list that allows items to be collected by the GC). I already wrote an article about WeakArrays, but the problem of weak arrays is that they have fixed length. Now, I will explain how to create a weak list. First, how can we create a weak list? Solution 1: In our class,...
https://www.codeproject.com/Articles/68990/Creating-a-Weak-List?fid=1566392&df=90&mpp=10&noise=1&prof=True&sort=Position&view=Normal&spc=Relaxed&fr=11
CC-MAIN-2017-22
refinedweb
1,280
62.27
function overloadsPosted Thursday, 25 October, 2007 - 22:44 by george in Hello, there seem to be some issues on this forum with posts being lost. Mine just seems to have vanished. I'll try to sumerise: I was looking into adding some overloads for some of the gl and glu functions that would naturally take the OpenTK.Mat...
http://www.opentk.com/node/76
CC-MAIN-2015-06
refinedweb
1,213
72.05
Subject: Re: [boost] [conversion] Motivation for two NEW generic conver_to and assign_to functions From: vicente.botet (vicente.botet_at_[hidden]) Date: 2009-10-23 19:15:15 ----- Original Message ----- From: "Jeffrey Hellrung" <jhellrung_at_[hidden]> To: <boost_at_[hidden]> Sent: Friday, October 23, 2009 10:07 PM Subje...
https://lists.boost.org/Archives/boost/2009/10/157416.php
CC-MAIN-2021-49
refinedweb
166
56.55
1234567891011121314151617181920212223242526272829303132333435363738394041424344 #include <iostream> #include <iomanip> #include <string> using namespace std; int main() { string again = "y"; float base = 0.0, height = 0.0, area = 0.0; cout << setw(40) << setfill('*') << "*" << endl; cout << " Calculate the Area of a Tr...
http://www.cplusplus.com/forum/beginner/94404/
CC-MAIN-2015-06
refinedweb
155
81.83
menus.create() Creates a new menu item, given an options object defining properties for the item. Unlike other asynchronous functions, this one does not return a promise, but uses an optional callback to communicate success or failure. This is because its return value is the ID of the new item. For compatibility with o...
https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/menus/create
CC-MAIN-2021-43
refinedweb
1,177
58.79
Contact Me!. Episode 371 Mark Rendle on C#. The Null Coalescing operator has been around since the early days of C#. Yet it still remains unused by most developers. I'm guessing this is because they are unaware of it, rather than deliberately rejecting it. The operator is simply a double question mark ("??"). Some peop...
https://www.davidgiard.com/default,month,2015-06.aspx
CC-MAIN-2021-21
refinedweb
1,292
71.95
Hi, I have encountered a timeout issue when calling a service using JsonServiceClient from an Azure Function (a .Net Core project). AFAIK the issue is not related to the Azure environment since I was able to reproduce the issue outside of an Azure Function by creating a .Net Core test. It looks like the Timeout propert...
https://forums.servicestack.net/t/timeout-of-100-seconds-when-using-sendall-in-a-net-core-projet/9664
CC-MAIN-2021-31
refinedweb
217
60.61
Spring is sprung, the Equinoctal gales seem to have blown themselves out, I'm a proud step grandfather and life is generally grand. "So, what's been going on in perl6-internals?" I hear you ask. Let's find out shall we? Parrot grabs SIGINT It appears that embedded Parrot tries to do too much. In particular, it grabs si...
http://www.perl.com/pub/2004/03/p6pdigest/20040321.html
CC-MAIN-2014-15
refinedweb
1,675
64
I've written the program out but I'm not sure on how I can get the largest and smallest # to display.. can anyone help? thanks. Write a program with a loop that lets the user enter a series of integers. The user should enter -99 to signal the end of the series. After all the numbers have been entered, the program shoul...
https://www.daniweb.com/programming/software-development/threads/11509/a-little-help
CC-MAIN-2017-51
refinedweb
113
76.22
This article first appeared in issue 215 of .net magazine - the world's best-selling magazine for web designers and developers. URL design has recently become a topic of discussion again over the past year. It started with Twitter’s autumn 2010 redesign, which seems to have validated what was generally considered to be...
http://www.creativebloq.com/design/design-perfect-url-1126509
CC-MAIN-2017-26
refinedweb
2,566
60.95
Hello everyone, I need to write a simple program. After I input the cost of an entree, drink, and dessert, it should calculate the cost of a meal and its tax. However, when I compile my code, I get three errors. Can you tell me what's wrong and how I can fix it? Here are the errors I get: foodcalc.java:1: error: ';' ex...
http://www.javaprogrammingforums.com/whats-wrong-my-code/38122-3-script-errors-my-code.html
CC-MAIN-2018-22
refinedweb
169
53.37
Vista's Limited Symlinks 271 An anonymous reader writes, "Symlinks haven't really been added to Windows Vista. It seems that the calls to the Windows Vista symlink API only occur during the creation of such files or when accessing them from Windows Explorer.." From the article: "Clearly, Vista's symlink API isn't compl...
http://slashdot.org/story/06/11/19/018256/vistas-limited-symlinks?sdsrc=next
CC-MAIN-2014-23
refinedweb
3,937
67.59
Hi the following program is meant to take input from the user, check if the balance (new_bal) is more than the credit limit (credit_lim) and show the account number (acc_no), balance and credit limit, and print that the limit has been exceeded immediately after the input data, then loop back to the first prompt. I have...
http://cboard.cprogramming.com/c-programming/107409-sentinel-controlled-repetition-example-printable-thread.html
CC-MAIN-2014-52
refinedweb
261
50.6
E4X adds support for XML to the JavaScript programming language. XML is widely recognized as the universally accepted means to exchange documents and data across applications and platforms. This recognition is a direct function of XML's proven track record as an efficient way to resolve interoperability problems associ...
http://www.ibm.com/developerworks/xml/library/x-javascript4x.html
crawl-002
refinedweb
1,828
54.02
Automated Tests with Golem Intro Golem is a complete test automation tool for web applications (and soon for API and mobile app tests as well), it comes with a complete web module to build and run tests and a web reports module. It can run tests in parallel, locally and remotely. The Github repo can be found here: Inst...
https://medium.com/@lucianopuccio/automated-tests-with-golem-c97ff46d2e05
CC-MAIN-2018-13
refinedweb
729
55.37
User Guide Let me just first make it clear, that Fabric is alpha software and still very much in development. So it's a moving target, documentation wise, and it is to be expected that the information herein might not be entirely accurate. Table of contents: - The ache - Fabric: first steps - Getting connected - Managi...
http://www.nongnu.org/fab/user_guide.html
crawl-002
refinedweb
2,687
62.58
.. Linq Comes with 3 Basic Types (Provided there are lots of more types of LINQ on different type of objects : 1. LINQ (Linq to Objects)2. DLINQ (Linq to SQL)3. XLINQ (Linq to XML)Before we continue with LINQ, we must look at some of the new inclusions which may come to us very handy. Linq is always associated with Lam...
http://www.codeproject.com/Articles/33769/Basics-of-LINQ-Lamda-Expressions?fid=1536684&df=90&mpp=10&sort=Position&spc=None&select=4300594&tid=4352986
CC-MAIN-2016-36
refinedweb
1,952
56.96
Spark Dgraph ConnectorSpark Dgraph Connector This project provides an Apache Spark connector for Dgraph databases in Scala and Python. It comes with a Spark Data Source to read graphs from a Dgraph cluster directly into DataFrames, GraphX or GraphFrames. The connector supports filter pushdown, projection pushdown and p...
https://index.scala-lang.org/g-research/spark-dgraph-connector/spark-dgraph-connector/0.1.0?target=_2.12
CC-MAIN-2021-10
refinedweb
2,636
50.43
I have started learning synchronization in threading. Synchronized method: public class Counter{ private static int count = 0; public static synchronized int getCount(){ return count; } public synchoronized setCount(int count){ this.count = count; } } public class Singleton{ private static volatile Singleton _instance;...
https://codedump.io/share/ZMXIPr8ZMzJr/1/why-is-synchronized-block-better-than-synchronized-method
CC-MAIN-2016-50
refinedweb
173
56.25
Back to index Expandable flag attribute. More... import "SALOMEDS_Attributes.idl"; Expandable flag attribute. This presentation attribute specifies if the parent SObject can be expanded by the user in the Object browser (to show its child objects). If this attribute is defined for the parent object and set to false, th...
https://sourcecodebrowser.com/salome-kernel/6.5.0/interface_s_a_l_o_m_e_d_s_1_1_attribute_expandable.html
CC-MAIN-2017-51
refinedweb
161
52.97
In this article by Ashwin Pajankar and Arush Kakkar, the author of the book Raspberry Pi By Example we will learn how to use different types and uses of cameras with our Pi. Let’s take a look at the topics we will study and implement in this article: - Working with a webcam - Crontab - Timelapse using a webcam - Webcam...
https://hub.packtpub.com/working-webcam-and-pi-camera/
CC-MAIN-2021-39
refinedweb
2,603
64.1
DEBSOURCES Skip Quicknav sources / mpich / 1.1.0-3 / man / man3 / MPI_Type_struct .TH MPI_Type_struct 3 "2/18/1997" " " "MPI" .SH NAME MPI_Type_struct \- Creates a struct datatype .SH SYNOPSIS .nf #include "mpi.h" int MPI_Type_struct( count, blocklens, indices, old_types, newtype ) int count; int blocklens[]; MPI_Aint ...
https://sources.debian.org/src/mpich/1.1.0-3/man/man3/MPI_Type_struct.3/
CC-MAIN-2021-17
refinedweb
376
68.87
Comment on Tutorial - continue and break statements in C++ By Priya Comment Added by : case c++ Comment Added at : 2012-02-20 02:45:55 Comment on Tutorial : continue and break statements in C++ By Priya please tell the Flow Chart for the Calendar Demo Progra View Tutorial By: Narayanan V at 2010-01-06 18:57:25 2. Simpl...
https://www.java-samples.com/showcomment.php?commentid=37575
CC-MAIN-2021-21
refinedweb
239
77.13
In either case, you have multiple options. For instance you could write a function or decorator to do this common processing. This only makes sense, though, if most of the processing results end up in for instance the request object itself again. Otherwise you'd simply have way too many return values to keep the code m...
http://zerokspot.com/weblog/e/1037/
crawl-002
refinedweb
810
62.27
Contents Prefixes are a rather controversial topic. Taking everything into account, I think we should not use prefixed names. Here’s why. A few days ago I touched the topic of prefixed names for variables and types in a discussion. Today I’ll write a few points about the topic, and why I am mostly against the use of pr...
https://arne-mertz.de/2017/03/prefixing-names/
CC-MAIN-2018-43
refinedweb
2,478
61.26
JANUARY 2016 Caceres: The food capital of Spain Page 22 Flavorful, foolproof vinaigrettes Page 29 TAKE CONTROL OF YOUR BLADDER ISSUES Page 18 Life in balance HOUSING RESOURCES Page 3 5 Jan Johnson, a St. Paul yoga instructor, inspires all ages to strive for wellness Page 30 LIVELIFE You want the security and peace of m...
https://issuu.com/mngoodage/docs/mn_good_age_0116
CC-MAIN-2017-39
refinedweb
14,495
62.17
> From: Costin Manolache [mailto:cmanolache@yahoo.com] > > J. > > No one is restricting you. What I am giving you is the chance to use diferent names if you wish to do so. > > > >. > It sounds very nice, but the reality is that <if> already exists and has existed for a long time. Hence we can not go and change it just ...
http://mail-archives.eu.apache.org/mod_mbox/ant-dev/200304.mbox/%3C747F247264ECE34CA60E323FEF0CCC0C0F50EA@london.cellectivity.com%3E
CC-MAIN-2020-10
refinedweb
518
71.65
python-mailgun2python-mailgun2 Originally at A super simple Python API for interacting with Mailgun. Currently only supports sending messages. Powered by Requests. Works with Python 3! InstallationInstallation pip install mailgun2 UsageUsage from mailgun2 import Mailgun mailer = Mailgun('example.mailgun.org', 'public_k...
https://libraries.io/pypi/mailgun2
CC-MAIN-2020-34
refinedweb
186
52.26
NAME Chemistry::Mok - molecular awk interpreter SYNOPSIS use Chemistry::Mok; $code = '/CS/g{ $n++; $l += $match->bond_map(0)->length } END { printf "Average C-S bond length: %.3f\n", $l/$n; }'; my $mok = Chemistry::Mok->new($code); $mok->run({ format => mdlmol }, glob("*.mol")); DESCRIPTION This module is the engine be...
https://metacpan.org/pod/Chemistry::Mok
CC-MAIN-2016-22
refinedweb
415
59.3
The StreamReader and StreamWriter classes are used for reading from and writing data to text files. These classes inherit from the abstract base class Stream, which supports reading and writing bytes into a file stream. The StreamReader class also inherits from the abstract base class TextReader that represents a reade...
https://www.tutorialspoint.com/csharp/csharp_text_files.htm
CC-MAIN-2021-04
refinedweb
231
60.95
//populating method: dictionary["constant1"] = value1; dicitonary["constant2"] = value2; ... //consuming method: value1 = dictionary["constant1"]; value2 = dictionary["constant2"]; Then I felt bad. I really should have them in constants. So, private const string constant1key = "constant1key"; private const string const...
http://www.dansolovay.com/2012/09/using-enums-as-constants.html
CC-MAIN-2018-34
refinedweb
210
52.26
ropemacs, rope in emacs Ropemacs is an emacs mode that uses rope library to provide features like refactorings and code-assists. You should install rope library and pymacs before using ropemacs. New Features - added ropemacs minor mode - supporting maxfixes option in rope-goto-definition and rope-show-doc - added ropem...
https://bitbucket.org/elbeanio/ropemacs/src/0abbd016038f
CC-MAIN-2015-35
refinedweb
375
57.47
. concat . filter (/=[x]) . group In Java: “XabXXcdX”.replaceAll(“(^|[^X])X([^X]|$)”, “$1$2″) Here’s a regex-based one in Python. It uses negative lookahead and lookbehind assertions rather than set complements like the Java one above. If we had a non-trivial singleton pattern to find, it would be better to use back-re...
http://programmingpraxis.com/2014/06/06/remove-singleton/
CC-MAIN-2014-42
refinedweb
507
56.18
How to Create MapReduce Jobs for Hadoop Using C# This article introduces you to Big Data, Apache Hadoop and MapReduce jobs. We will also learn how to create MapReduce jobs using C#. What is Big Data? The current pace at which the IT industries are gathering data provides the huge challenge of storing and processing the...
https://www.codeguru.com/columns/experts/how-to-create-mapreduce-jobs-for-hadoop-using-c.htm
CC-MAIN-2019-26
refinedweb
938
56.35
clone() hang when creating new network namespace (dmesg show unregister_netdevice: waiting for lo to become free. Usage count = 2) [25800.412375] [<ffffffff81050 [25800.412385] [<ffffffff8116d [25800.412395] [<ffffffff8118c [25800.412402] [<ffffffff81181 [25800.412410] [<ffffffff8101c [25800.412418] [<ffffffff8167c [25...
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1021471/+index
CC-MAIN-2019-26
refinedweb
4,023
75.71
I. You get the gist. And in hadoop its painstakingly boring to do this. You have to write more than maybe 3 Mapreduce Jobs. One job will read the data line by line and write to the disk. There is a lot of data movement that happens in between that further affects the speed. Another thing I hate is that there is no stra...
https://www.commonlounge.com/discussion/9536b7f234044410b71ac476a0bf8d43
CC-MAIN-2019-18
refinedweb
2,079
64.81
Escalation Engineer for SharePoint (WSS, SPS, MOSS) and MCMS All posts are provided "AS IS" with no warranties, and confers no rights. As discussed by the Office Sustained Engineering group cumulative updates for all Office Products including WSS 3.0 and SharePoint 2007 will be released every second month. Yesterday we...
http://blogs.technet.com/stefan%5Fgossner/
crawl-002
refinedweb
851
57.91
toolshed 0.3.8 Tools for data =========================== .. |build| image:: .. _build: This is a collection of well-tested, simple modules and functions that I use frequently. Files ----- If you have a "proper" CSV file with quoting and such, use python's `csv`_ module. If all you have is a file with a header and you ...
https://pypi.python.org/pypi/toolshed/0.3.8
CC-MAIN-2016-26
refinedweb
654
73.27
Created on 2009-07-13 17:20 by july, last changed 2013-12-01 19:44 by alexandre.vassalotti. This issue is now closed. Python 3.2a0 (py3k:73749M, Jul 1 2009, 23:17:59) [GCC 4.3.2 [gcc-4_3-branch revision 141291]] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import pickle [40072 re...
https://bugs.python.org/issue6477
CC-MAIN-2019-43
refinedweb
1,274
64
I dont know whats wrong with my code.. when i entered the value,there was nothing appeared on my screen.. I've tried put the single quote like this one : case '1' : cout<<Very Acidic; break; ..but it was only works for the acidic value..When i entered the value more than 7,it will display the "very acidic" statement an...
https://www.daniweb.com/programming/software-development/threads/235298/whats-wrong-with-my-switch-statement
CC-MAIN-2018-17
refinedweb
163
73.21
It took me a bit of time to get my head around the difference between methods and functions in Scala. Methods are always defined using the “def” keyword, and they are always invoked on some object (either an object created using the “object” keyword or an object created by instantiating a class). Here are some examples...
https://softwarecorner.wordpress.com/2013/09/06/scala-methods-and-functions/
CC-MAIN-2017-26
refinedweb
1,765
73.88
What are Camel routes? Understanding routes and how to use them in Apache Camel Tags: Apache Camel • Comments If you’re still learning the basics of Camel then you might have come across the term route. But what exactly is a Camel route? A route in Apache Camel is a sequence of steps, executed in order by Camel, that c...
https://tomd.xyz/camel-routes/
CC-MAIN-2021-04
refinedweb
531
72.87
xml_diff 0.6.0 Compares. The module works with any Google Diff Match Patch-compatible differencing library. You provide it a differ function which takes two strings and returns a list of (op, length) tuples, where op is “+” (insertion), “-” (deletion), or “0” (no change). If will use my extension module <> if it is ava...
https://pypi.python.org/pypi/xml_diff/0.6.0
CC-MAIN-2015-14
refinedweb
318
63.49
XML Extensible Markup Language (XML) is an open-standards cross-platform way of specifying documents. At its origins, XML was used to represent data, but it has grown in use to include user interface technologies and even executable logic. While there are many practical uses of XML, this book is mostly concerned with e...
http://developmentsolutionsjunction.blogspot.com/2011/02/xml-in-visual-studio.html
CC-MAIN-2018-05
refinedweb
1,218
61.87
THINGS TO DO: WHEN RUNNING THE PATCH COMMAND ON cccp*.c, EXAMINE THE RESULT VERY CAREFULLY! In some cases, only one section of #if ... #else ... #endif may be patched, even when both sections need to be patched. Other anomalies may also occur. At present, cccp*.c is based on the one from gcc 2.6.0, 2.6.1, or 2.6.3, sin...
http://opensource.apple.com/source/cc/cc-798/NOTES
CC-MAIN-2016-07
refinedweb
14,771
57.87
in reply to (crazyinsomniac) Re: (2) (crazyinsomniac) Re: File upload progress? in thread File upload progress? Well, that's 99% true :-) If you make the assumption that the user has JavaScript (but code for the case where they don't, as well!), you could open up a new, miniature browser window (with window.open) and s...
http://www.perlmonks.org/index.pl?node_id=57407
CC-MAIN-2014-52
refinedweb
179
83.96
C# | Dictionary Class The Dictionary<TKey, TValue> Class in C# is a collection of Keys and Values. It is a generic collection class in the System.Collection.Generics namespace.. Every key in a Dictionary <TKey, TValue> must be unique according to the dictionary’s equality comparer. Note: A key cannot be null, but a val...
https://www.geeksforgeeks.org/c-sharp-dictionary-class/
CC-MAIN-2019-35
refinedweb
289
54.42
#ifndef CASCADESTESTER_HPP #define CASCADESTESTER_HPP #include <bb/cascades/Application> #include <bb/cascades/Page> #include <QtCore/QObject> #include <QtTest/QtTest> /** * @short A helper class to execute QTestLib based unit tests in Cascades * * This class executes a QTestLib based unit test inside the main event lo...
https://developer.blackberry.com/native/documentation/dev/tools/debugging_qtestlib.html
CC-MAIN-2018-43
refinedweb
1,059
57.37
What is the expected behaviour if Node.hasProperty is called with a malformed path? I believe it can throw a RepositoryException, but the spec isn't explicit. If that is the case, there may be an issue with the TCK NodeReadMethodsTest.testHasProperty(). It builds a non-existent property name by cycling through the exis...
http://mail-archives.apache.org/mod_mbox/jackrabbit-dev/200509.mbox/%3CB17B1CFF4282214AB8BAADDDC207112203D54DFA@THHS2EXBE1X.hostedservice2.net%3E
CC-MAIN-2015-11
refinedweb
112
59.3
DNS requirements for Skype for Business Server Summary: Review the DNS considerations in this topic before implementing Skype for Business Server. This article only addresses DNS planning for Skype for Business Server deployments on an organization's on-premise network. For Skype for Business Online refer to "Office 36...
https://docs.microsoft.com/en-us/skypeforbusiness/plan-your-deployment/network-requirements/dns
CC-MAIN-2019-47
refinedweb
1,141
57.2
#include "mock_url_fetcher.h" Simple UrlFetcher meant for tests, you can set responses for individual URLs. Meant only for testing. Adds a new response-header attribute name/value pair to an existing response. If the response does not already exist, the method check-fails. When disabled, fetcher will fail (but not cras...
http://modpagespeed.com/psol/classnet__instaweb_1_1MockUrlFetcher.html
CC-MAIN-2017-09
refinedweb
299
66.74
Let processing, if required. Hence, let us return the results (area and circumference) to the calling function. As a function can return only one value through its name, we will require two functions in this program to calculate the area and circumference: area and circum. The program given below first defines the main...
https://mail.ecomputernotes.com/what-is-c/function-a-pointer/area-and-circumference-of-a-circle-using-functions
CC-MAIN-2020-24
refinedweb
230
65.42
> > Part of the problem is that two of the people working on this don't > > have commit access to httpd. David Reid does. I imagine that Sander > > and I can do stuff and post it to the new-httpd list. If the > > new-httpd list judges it a win, it'd go in. It isn't impossible for us > > to get things in, but it just ma...
http://mail-archives.apache.org/mod_mbox/apr-dev/200107.mbox/%3CJLEGKKNELMHCJPNMOKHOIEBEEDAA.striker@apache.org%3E
CC-MAIN-2016-40
refinedweb
331
76.86
NAN(3) BSD Programmer's Manual NAN(3) nan, nanf, nanl - return quiet NaN libm #include <math.h> double nan(const char *tagp); float nanf(const char *tagp); long double nanl(const char *tagp); The call nan(, n-char-sequence"") is equivalent to the call strod(, NAN(n-char-sequence)"", NULL). The call nan(, "") is equival...
http://mirbsd.mirsolutions.de/htman/sparc/man3/nanl.htm
crawl-003
refinedweb
123
74.9
I’m trying to write some rails metal code to handle a large XML file post, but I’m receiving a 500 from my server. If I use a POST but don’t provide a file to upload, everything works and I receive a 200 response, but if I provide a file (the -d flag with curl), I receive a 500. Here’s the curl command I’m using: curl ...
https://www.ruby-forum.com/t/failure-when-posting-an-xml-file-to-a-rails-metal-app/206749
CC-MAIN-2022-33
refinedweb
278
51.55
its very interesting for learning. its very interesting for learning. data retrieval from database when i retrieve data from MySql database through java class file it is not allowing me to use where clause inside the query why? JTable -i want code fill JTable from database and remove table contents -in java no grid lik...
http://www.roseindia.net/tutorialhelp/allcomments/3260
CC-MAIN-2015-11
refinedweb
237
73.88
posix_spawnattr_setcred() Set the user and group ID attributes in a spawn attributes object Synopsis: #include <spawn.h> int posix_spawnattr_setcred( posix_spawnattr_t *attrp, uid_t uid, gid_t gid); Since: BlackBerry 10.0.0 Arguments: - attrp - A pointer to the spawn attributes object that you want to modify. - uid - T...
https://developer.blackberry.com/native/reference/core/com.qnx.doc.neutrino.lib_ref/topic/p/posix_spawnattr_setcred.html
CC-MAIN-2020-05
refinedweb
167
57.57
IDE Changes for XE Go Up to What's New in Delphi and C++Builder XE The following changes have been made in the IDE (integrated development environment): Introducing Version Insight: Subversion Integration in the IDE The Subversion source control module has been implemented in the IDE using Tools API interfaces. The int...
http://docwiki.embarcadero.com/RADStudio/XE/en/IDE_Changes_for_XE
CC-MAIN-2013-20
refinedweb
489
50.97
Conditionals in Javscript In javascript you generally have on of two choices to test several conditions with different outcomes: If Statements For example if I want to test whether a variable has one of many strings as its value... if (color === "red"){ console.log("it's red") } if (color === "blue"){ console.log("it's...
https://dev.to/alexmercedcoder/pattern-matching-in-javascript-with-alexmerced-patternmatcher-25bc
CC-MAIN-2021-43
refinedweb
1,278
64.91
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3) Gecko/20030312 Build Identifier: cvs-tip in LDAP mode, if a user has not logged in once, their account will not exist in the profiles table, and they will not be able to be added to a bug in any way/shape/form -- despite the fact that they exist in the...
https://bugzilla.mozilla.org/show_bug.cgi?id=201069
CC-MAIN-2017-04
refinedweb
2,714
70.63
core— #include <sys/types.h> #include <sys/exec_elf.h> KERN_NOSUIDCOREDUMPin sysctl(2) for other options. The maximum size of a programname.core file is limited by setrlimit(2). Files which would be larger than the limit are not created. The programname.core file is in the ELF binary file format with an e_type of ET_CO...
https://man.openbsd.org/core.5
CC-MAIN-2018-26
refinedweb
296
58.69
I have a model which has a date time field: date = models.DateField(_("Date"), default=datetime.now()) When I check the app in the built in django admin, the DateField also has the time appended to it, so that if you try to save it it returns an error. How do I make the default just the date? (datetime.today() isn't wo...
https://pythonpedia.com/en/knowledge-base/2029295/django-datefield-default-options
CC-MAIN-2020-29
refinedweb
244
59.43
Swift/ideas/small files/experimentations Contents Experimentations on small files optimization in Swift (irc: rledisez) Note: Despite the official recommendation of the deployment guide (and the performances impact), at OVH we run Swift on XFS filesystems with barrier=on. So, this summary mainly focus on synchronous pe...
https://wiki.openstack.org/wiki/Swift/ideas/small_files/experimentations
CC-MAIN-2018-51
refinedweb
1,146
53.14
On Tue, Mar 18, 2008 at 02:45:37PM +0100, Diego Biurrun wrote: > On Sat, Mar 15, 2008 at 02:53:59PM +0100, Aurelien Jacobs wrote: > > On Sat, 15 Mar 2008 11:32:49 +0100 > > Diego Biurrun <diego at biurrun.de> wrote: > > > > > I found a couple of redundant #if ARCH_* checks that enclose things like > > > HAVE_ALTIVEC an...
http://ffmpeg.org/pipermail/ffmpeg-devel/2008-March/051684.html
CC-MAIN-2019-13
refinedweb
125
65.32
Copyright © 1998-1999 Joseph M. Reagle Jr. W3C® liability, trademark, document use and software licensing rules apply. The ways that digital information is expressed can have substantive policy effects. A schema specifies the constraints and meaning of a particular syntax used to convey information in a human and/or ma...
http://www.w3.org/TR/md-policy-design
CC-MAIN-2013-48
refinedweb
11,308
52.49
The Database Tour can be used as a powerful data export or data pump tool. In this database tool, you can export data to: There is a large set of export options, which gives you the ability to maximally customize the exporting output and the process itself. Exporting to HTML, PDF and RTF can be performed with pictures ...
https://databasetour.net/features/export-import.html
CC-MAIN-2018-34
refinedweb
449
54.22
Discussions around histogramming hist.view() /= 2. python-3.8package, you still get pip 9 even on Python 3.8!!! (which is totally unsupported). I hate distro packaging sometimes… Congratulations on boost-histogram 1.0! I'm adopting the new API for subclassing, and saw in that family=object() is recommended when only o...
https://gitter.im/HSF/PyHEP-histogramming?at=603169a1dc108172e78d2590
CC-MAIN-2022-21
refinedweb
688
62.98
Communication is the backbone of organization. This is true of ants, of people, and, of course, of agents. The reason communication is so important is that it allows individuals to organize into groups with a shared purpose and to operate much more efficiently. An organization is much more (and more effective) than the...
https://www.javaworld.com/article/2076752/learn-java/agents-talking-to-agents.html
CC-MAIN-2018-47
refinedweb
1,511
56.55
Sample Chapter 3: The Servlet Life Cycle In this chapter: The. The Servlet Alternative won't last long on the open market. In this chapter we describe the most common and most sensible life cycle implementations for HTTP servlets. A Single Java Virtual Machine. Instance Persistence. A Simple Counter To demonstrate the ...
http://oreilly.com/catalog/jservlet/chapter/ch03.html
crawl-002
refinedweb
4,458
55.34
Advanced Namespace Tools blog 11 February 2017 Adding Interrupt Note-Passing to Hubfs Clients In a surprising (to me) turn of events, adding this feature turned out to be easier than dealing with end-of-file messages as described in the previous post. I'm going to try to go into a bit more detail about some general Pla...
http://doc.9gridchan.org/blog/170211.hubfs.note.passing
CC-MAIN-2017-22
refinedweb
1,319
54.15
Hello, list! As S.G on November 7, I am also having trouble with building a DLL from the C++ interface under Windows, since I recently switched to MSVC 8 (the 2005 edition). However, I did succeed when I was using the VC 6.0 version, and I actually wrote down a recipe (below). There is a hack, though, related to the of...
http://www.unidata.ucar.edu/mailing_lists/archives/netcdfgroup/2006/msg00230.html
CC-MAIN-2014-42
refinedweb
1,075
65.52
#include <Future.h> Collaboration diagram for ACE_Future< T >: Protect operations on the <Future>. Constructor. Copy constructor binds this and r to the same ACE_Future_Rep. An ACE_Future_Rep is created if necessary. Constructor that initialises an ACE_Future to point to the result r immediately. Destructor. Attaches t...
http://www.dre.vanderbilt.edu/Doxygen/5.5.5/html/ace/classACE__Future.html
CC-MAIN-2013-20
refinedweb
351
60.41
Introduction I’m Eric, I’m a Product Engineer at Realm. Today I will talk about the Realm Platform, which is a real time syncing service that works on top of a product that we’ve had for a few years now called the Realm Database. We’re going around different cities, both in North America, Europe, and Asia, and sharing ...
https://academy.realm.io/posts/realm-world-tour-2017-eric-maxwell/
CC-MAIN-2018-43
refinedweb
9,349
80.31
README.md liblog: Virtual stream for logging This library has been written to provide a sample stream, like a simplified printf to make on calc debug easier. It uses gint, and it is compatible with fxcg50 & fx9860g models. It currenlty supports: - Virtual stream with custom priorities for messages - Dynamic weight in r...
https://gitea.planet-casio.com/Milang/liblog/src/branch/master
CC-MAIN-2021-49
refinedweb
544
71.24
Abstract: Java's serialization mechanism is optimized for immutable objects. Writing objects without resetting the stream causes a memory leak. Writing a changed object twice results in only the first state being written. However, resetting the stream also loses the optimization stored in the stream. Welcome to the 166...
https://www.javaspecialists.eu/archive/Issue166-Serialization-Cache.html
CC-MAIN-2020-45
refinedweb
1,315
56.86
I was looking around for a simple example which would just do an object serialization to a JSON format, and then deserializing back to the original object. I found few examples on MSDN, but did seem to be too long to try. Here I've given a simple code which would make your understanding easy, and simpler. What is JSON?...
http://www.codedigest.com/CodeDigest/112-JSON-Serialization-and-Deserialization-in-ASP-Net.aspx
CC-MAIN-2014-52
refinedweb
515
60.41
Recently I wrote a blog how to use import.io to extract data from any web page and put it into Lumira. This in itself opens up a ton of possibilities, just think about all the information you come across in day to day life, but have no way of analyzing due to it being closed up in a web site. Well, not anymore, import....
https://blogs.sap.com/2014/06/12/introducing-the-very-first-web-page-to-hana-extractor-using-importio/
CC-MAIN-2018-22
refinedweb
738
71.85
This page is a summary of the "Best Practice Recipe" issues presented in a QA review by Karl Dubost in May 2006. The version reviewed by Karl was the 14 Mar working draft, which has been obsoleted by newer revisions. See also ISSUE-18 in the tracker. Contents Abstract [[[ This document describes best practice recipes f...
https://www.w3.org/2006/07/SWD/wiki/BestPracticeRecipesIssues/QaReviewSummary
CC-MAIN-2021-49
refinedweb
1,327
56.55
Opened 4 years ago Last modified 3 years ago #20434 assigned New feature Have a template tag grammar instead of handling token/parser for every tag, and make it possible to introspect the grammar. Description Right now, if people use @register.simpletag (or assignment_tag/inclusion_tag), a compiled parser function will...
https://code.djangoproject.com/ticket/20434
CC-MAIN-2017-13
refinedweb
1,721
59.8
On Mon, Aug 07, 2017 at 11:21:03AM -0700, Davidlohr Bueso wrote: > On Mon, 31 Jul 2017, Guillaume Knispel wrote: > > struct ipc_ids { > > int in_use; > > unsigned short seq; > > + bool tables_initialized; > > So this is really ugly to have, but I understand why you added it. I > wonder what folks would think if we just...
https://www.mail-archive.com/linux-kernel@vger.kernel.org/msg1464974.html
CC-MAIN-2018-05
refinedweb
206
54.05
July 31, 2002 - The onclick Event Handler | 2 addWeb service, we call the JScript .NET function, Submit_Click(). It is the event handler of the ASP:BUTTONcontrol. Here is the code: We define an objectWe define an object public function Submit_Click(sender:Object, E:EventArgs) : void { var result : String; var webServic...
http://www.webreference.com/js/tips/020731.html
CC-MAIN-2017-09
refinedweb
151
53.47
Linenoise-Swift A pure Swift implementation of the Linenoise library. A minimal, zero-config readline replacement. Supports - Mac OS and Linux - Line editing with emacs keybindings - History handling - Completion - Hints Pure Swift Implemented in pure Swift, with a Swifty API, this library is easy to embed in projects ...
https://swiftpack.co/package/andybest/linenoise-swift
CC-MAIN-2018-05
refinedweb
514
54.83
All opinions expressed here constitute my (Jeremy D. Miller's) personal opinion, and do not necessarily represent the opinion of any other organization or person, including (but not limited to) my fellow employees, my employer, its clients or their agents. Forget the neverending argument on the ALT.NET list about wheth...
http://codebetter.com/blogs/jeremy.miller/archive/2008/09/25/using-structuremap-2-5-to-inject-your-entity-objects-into-services.aspx
crawl-002
refinedweb
855
53.92
I have written a code for a polygon that encompass such lines similar to star. I could transform polygon in every point with changing Plane.Origin, but I couldn’t use this for the lines. what is necessary to do for this transform and repeatetion in different points? thanks in advance for your helping. Reza I have writt...
https://discourse.mcneel.com/t/line-transform/93214/3
CC-MAIN-2022-05
refinedweb
350
57.67
I have: class A { public String getID() { return "id of A";} } class B extends A { public String getID() { return "id of B"; } } and class C { public A returnA() { return new A(); } } Now I somehow need to do: C c = new C(); B b = (B)c.returnA(); String id = b.getId(); But I don’t have access to implementation of C.ret...
https://exceptionshub.com/cast-parent-to-its-child.html
CC-MAIN-2022-05
refinedweb
350
66.03
Kubernetes is a powerful orchestrator for docker containers with an impressive number of adopters and a large community around the world. Yet it is notorious for its complexity when it comes to configuration and maintenance. No wonder the community is busy developing new extensions and plugins to facilitate cluster man...
https://dev.to/voskvv/how-to-launch-containerum-platform-in-5minutes-5442
CC-MAIN-2022-05
refinedweb
557
55.74
In this article, we will create a simple python program which will remove the exclamation mark from a string based on the second parameter which specifies how many exclamation marks should be removed from the beginning till the end of that string. Below is that simple solution. def remove(s, n): no_ex = list(s) while(n...
https://www.cebuscripts.com/2019/03/16/codingdirectional-remove-exclamation-mark-from-a-string-with-python/
CC-MAIN-2019-13
refinedweb
143
76.82
In this article an implementation of the Lucas-Kanade optical flow algorithm is going to be described. This problem appeared as an assignment in this computer vision course from UCSD. The inputs will be sequences of images (subsequent frames from a video) and the algorithm will output an optical flow field (u, v) and t...
https://sandipanweb.wordpress.com/2018/02/
CC-MAIN-2020-24
refinedweb
737
53.92
netlink man page netlink — communication between kernel and user space (AF_NETLINK) Synopsis #include <asm/types.h> #include <sys/socket.h> #include <linux/netlink.h> netlink_socket = socket(AF_NETLINK, socket_type, netlink_family);. Netlink messages consist of a byte stream with one or multiple nlmsghdr headers and as...
https://www.mankier.com/7/netlink
CC-MAIN-2018-51
refinedweb
323
58.89
Returns the indices of a tensor that give its sorted order along an axis. tf.argsort( values, axis=-1, direction='ASCENDING', stable=False, name=None ) For a 1D tensor, tf.gather(values, tf.argsort(values)) is equivalent to tf.sort(values). For higher dimensions, the output has the same shape as values, but along the g...
https://www.tensorflow.org/versions/r2.1/api_docs/python/tf/argsort?hl=th
CC-MAIN-2020-10
refinedweb
242
59.7
I have a lmdb database and I'm trying to read its contents! the irony is nothing gets printed on screen! This is the code snippet that I have written for reading from lmdb : import caffe import lmdb import numpy as np from caffe.proto import caffe_pb2 import cv2 import sys db_train = lmdb.open('mnist_train_lmdb') db_tr...
https://codedump.io/share/nE1pdmpuLCW8/1/no-data-is-read-when-using-lmdb-cursor-in-python
CC-MAIN-2016-50
refinedweb
261
54.59
Anomaly detection is a branch of machine learning that seeks to identify anomalies in datasets or data streams. Airbus uses it to predict failures in jet engines and detect anomalies in telemetry data beamed down from the International Space Station. Credit-card companies use it to detect credit-card fraud. The goal of...
https://www.wintellect.com/pca-based-anomaly-detection/
CC-MAIN-2021-39
refinedweb
2,498
54.93
First time here? Check out the FAQ! Hi Koprenee, since the day you asked the question we switched back to rosmake from catkin. I don't know if you already tried, but if you check out the latest code and do rosmake mjpeg_server it should compile just fine. Ben Hi Beubeu, as Dejan pointed out wviz now lives in bosch_web_...
https://answers.ros.org/users/1003/bener-suay/?sort=recent
CC-MAIN-2020-10
refinedweb
755
75.2
1 AnswerNew Answer #include <stdio.h> int main() { float x=0.1; printf("%d%d%d",sizeof(x),sizeof(0.1),sizeof(0.1f)); return 0; } 1 AnswerNew Answer First note: with the current version of SoloLearn compiler, your code does not compile, because sizeof() returns 8 bytes, but %d expects 4 bytes. So replace "%d%d%d" with "...
https://www.sololearn.com/Discuss/2296012/explain-the-output
CC-MAIN-2020-29
refinedweb
116
66.03
Vue smart table Install Repository: CDNs bundle.run: jsDelivr: unpkg: vue-smart-table Vue Smart Table lets you deploy beautiful tables when you are in a hurry and all you got is a tangled json from the backend. After such a hack you are left with super mainainable code because the table is completely modular and divide...
http://tahuuchi.info/vue-smart-table
CC-MAIN-2021-25
refinedweb
748
56.45
Introduction to Reinforcement Learning As a small recap: In reinforcement learning our main task is to figure out an optimal policy π . An optimal policy π is an "instruction set" for the agent so it knows how to act in order to maximize the total return (=reward) in every state. There are often situations in Reinforce...
http://siegel.work/blog/RLModelFree/
CC-MAIN-2020-34
refinedweb
3,019
53.61