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
The C Standard, 7.21.9.3 [ISO/IEC 9899:2011], defines the following behavior for fsetpos(): The fsetposfunction sets the mbstate_tobject (if any) and file position indicator for the stream pointed to by streamaccording to the value of the object pointed to by pos, which shall be a value obtained from an earlier success...
https://wiki.sei.cmu.edu/confluence/pages/viewpage.action?pageId=87152071
CC-MAIN-2019-22
refinedweb
306
50.46
Life Thread Life Cycle Example in java Thread Life Cycle Example in java In this section we will read about the life cycle example of Thread in Java. Life cycle of Thread explains you the various... when its run() method execution is completed. The life cycle of Thread is ended Explain about threads:how to start progra...
http://www.roseindia.net/tutorialhelp/comment/94923
CC-MAIN-2016-07
refinedweb
2,528
65.83
The latest version of the book is P (04-Jul-15) PDF page: 18 Spent a lot of time getting the sample code to run with Ruby. It seems that the require statement has changed since Ruby 1.9 to not include the local directory. Supposed to use require_relative instead. This was fixed quite a while ago in Ruby since 1.9 due t...
https://pragprog.com/titles/jbmaze/errata
CC-MAIN-2017-26
refinedweb
494
63.29
hi, I have a problem with jpa on servicemix when my bundle starts, I created a route builder. In the constructor of the class, I ask a database to know the route definition to create. it is only at this point that I know the name of the datasource to use (already declared in osgi). I have to define jpa consumer who wil...
https://developer.jboss.org/thread/247465
CC-MAIN-2018-13
refinedweb
256
50.23
ric@giccs.georgetown.edu aixterm wsh, xwshand winterm cmdtooland shelltool dtterm This document is now part of the Linux HOWTO Index and can be found at. The latest version can always be found in several formats at. This document supercedes the original howto written by Winfried Trümper. A static title may be set for a...
http://www.ibiblio.org/pub/Linux/docs/HOWTO/other-formats/html_single/Xterm-Title.html
CC-MAIN-2016-44
refinedweb
140
64.41
How to Deploy Symfony Apps with Capifony Free JavaScript Book! Write powerful, clean and maintainable JavaScript. RRP $11.95. How does Capifony work? Before we start, it’s important to understand how Capifony works. By running the deploy command, Capifony runs certain commands performing different tasks. For example, i...
https://www.sitepoint.com/deploy-symfony-apps-capifony/
CC-MAIN-2020-34
refinedweb
1,851
58.18
Writing Pipeline Components This page describes common information needed to write generators, transformers and serializers. Using the sitemap, you describe how pipelines should be assembled. The resulting pipeline always has the following structure: one generator, zero or more transformers, and one serializer. The onl...
http://wiki.apache.org/cocoon/WritingPipelineComponents?highlight=%28%28WritingReaders%29%29
CC-MAIN-2016-36
refinedweb
423
54.73
Tasks¶ Tasks are where the execution takes place. Tasks depend on each other and output targets. An outline of how a task can look like: Task.requires¶. Requiring another Task¶ Note that requires() can not return a Target object. If you have a simple Target object that is created externally you can wrap it in a Task cl...
https://luigi.readthedocs.io/en/stable/tasks.html
CC-MAIN-2018-34
refinedweb
1,335
51.65
Solution for Error in using swap() STL while implementing Queue using two Stacks is Given Below: I was trying to implement Class Queue using Two Stacks and I noticed an error. If I swap both the stacks(after pop and front operation), using swap() operation of STL, I am getting wrong answer but when I swap both the stac...
https://codeutility.org/error-in-using-swap-stl-while-implementing-queue-using-two-stacks/
CC-MAIN-2021-49
refinedweb
368
66.54
Who doesn't know the Outlook Navigation Pane on the left side of the Outlook screen? Do you want to use the Navigation Pane in your project for free? Read on. There is a lot of junk on the .NET market. Small study room projects being sold as large toolkits providing a bunch of crappy controls for a lot of money. To ext...
http://www.codeproject.com/Articles/43181/A-Serious-Outlook-Style-Navigation-Pane-Control?msg=4498536
CC-MAIN-2015-18
refinedweb
1,506
50.84
SPOPS::Manual::Object - Shows how you interact with SPOPS objects. This section of the SPOPS manual should be of interest to users and developers, since it describes how SPOPS objects are used. Note that all examples here assume the SPOPS class has already been created -- for more on this see SPOPS::Manual::Configurati...
http://search.cpan.org/~cwinters/SPOPS/SPOPS/Manual/Object.pod
CC-MAIN-2016-36
refinedweb
2,649
56.18
Introduction to Bubble Sort in Java Bubble sort is one of the most commonly used algorithms for sorting data in Java. Sorting here is done by recursively comparing the adjacent numbers and shifting them in the increasing or decreasing order as required. This shifting of elements is done until all the digits are complet...
https://www.educba.com/bubble-sort-in-java/?source=leftnav
CC-MAIN-2020-34
refinedweb
1,048
62.38
in reply to use common::sense; Because you didn't meditate. And you didn't even make it clear that you were seeking wisdom from others. You just pointed and gesticulated. As for the module, I was struck with the author's need to include the quotes. It struck me as a demonstration of "I'm so arrogant, I'll include the q...
http://www.perlmonks.org/?node_id=804870
CC-MAIN-2016-50
refinedweb
684
55.03
Core Graphics Tutorial Part 3: Patterns and Playgrounds Welcome back to the third and final part of the Core Graphics tutorial series! Flo, your water drinking tracking app, is ready for its final evolution, which you’ll make happen with Core Graphics. In part one, you drew three custom-shaped controls with UIKit. Then...
https://www.raywenderlich.com/167352/core-graphics-tutorial-part-3-patterns-playgrounds
CC-MAIN-2018-13
refinedweb
3,094
58.79
1: public class Advent5 : IDisposable 2: { 3: private IFileUtil m_file; 4: 5: public void Dispose() 6: { 7: m_file.Delete(); 8: } 9: 10: [Fact] 11: public void TestReadOK() 12: { 13: // Create a test file 14: m_file = new FileUtil("SomeFile.txt"); 15: m_file.Create("CONTENT"); 16: 17: // Should be able to read file 18:...
https://blogs.msdn.microsoft.com/cellfish/2008/12/05/2008-advent-calendar-december-5th/
CC-MAIN-2017-47
refinedweb
344
66.44
Will null instanceof SomeClass return false or throw a NullPointerException? No, a null check is not needed before using instanceof. The expression x instanceof SomeClass is false if x is null. From the Java Language Specification, at “At run time, the result of the instanceof operator is true if the value of the Relat...
https://exceptionshub.com/is-null-check-needed-before-calling-instanceof.html
CC-MAIN-2022-05
refinedweb
435
50.94
[FNR] [2.1.1 / 2.1.3] Tooltip bug and tooltip shadow issue in IE8 [FNR] [2.1.1 / 2.1.3] Tooltip bug and tooltip shadow issue in IE8 In IE8, there's a 1px gap between the top of the tooltip and middle of the tooltip. It only appears when the browser is in quirksmode, but the instructions for GXT still say that GXT requi...
http://www.sencha.com/forum/showthread.php?96985-FNR-2.1.1-2.1.3-Tooltip-bug-and-tooltip-shadow-issue-in-IE8
CC-MAIN-2015-14
refinedweb
225
76.82
19 March 2010 14:55 [Source: ICIS news] By Malini Hariharan A solution to the Mab Ta Phut mess is slowly emerging but the issue, which resulted in the suspension of 65 projects by the Thai Supreme Court last December, is likely to force Thai chemical companies to invest overseas for future growth. The government has pu...
http://www.icis.com/Articles/2010/03/19/9344408/insight-mab-ta-phut-crisis-will-force-thai-companies-to-look-overseas.html
CC-MAIN-2014-52
refinedweb
494
57.5
This internal memo linked from slashdot caught my attention. It details why Java should not be used in Sun's own production software. Summary is "Java implementation sucks" and here is some input from me. Back in 97 I had used Java to write a small 3d graphics library, which I found to be quite poor in performance. Yea...
http://www.advogato.org/article/624.html
crawl-002
refinedweb
9,619
62.07
Premium block blob storage accounts Premium block blob storage accounts make data available via high-performance hardware. Data is stored on solid-state drives (SSDs) which are optimized for low latency. SSDs provide higher throughput compared to traditional hard drives. File transfer is much faster because data is sto...
https://docs.microsoft.com/en-in/azure/storage/blobs/storage-blob-block-blob-premium
CC-MAIN-2022-27
refinedweb
2,633
51.99
randyn0611 16-11-2017 We make use of the xtype tags field on a page dialog and the users are able to add new tags to the default namespace via the TagInputField. Is it possible to disable creation of new tags in that widget and make it select only? Or will it be necessary to listen for an event to stop it? I've read th...
https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/restrict-user-from-adding-new-tags-via-taginputfield/td-p/251720
CC-MAIN-2021-04
refinedweb
132
78.28
The monologues of the player add a lot of charm, really clever adventure game, love the planet based mechanics. RoboNutria Game Recent community posts Very good concept to play around, enjoyed it playing on my phone. Touch controls work fine, the tutorial really helps a lot. The game requires some patience, but it's re...
https://itch.io/profile/robonutria
CC-MAIN-2018-09
refinedweb
2,862
69.52
define MyBetterMap, a better implementation of the Map interface than MyLinearMap, and introduce hashing, which makes MyBetterMap more efficient. MyBetterMap Map MyLinearMap To improve the performance of MyLinearMap, we’ll write a new class, called MyBetterMap, that contains a collection of MyLinearMap objects. It div...
http://greenteapress.com/thinkdast/html/thinkdast011.html
CC-MAIN-2017-43
refinedweb
1,704
72.56
Spring Integration provides support for Syndication via Feed Adapters As we know Web syndication is a form of syndication where material such as news items, press releases that is available to any website is also made available via we feeds such as RSS, ATOM etc. Spring integration provides support for Web Syndication ...
http://docs.spring.io/spring-integration/docs/2.0.0.RC2/reference/html/feed.html
CC-MAIN-2015-11
refinedweb
514
52.09
In part one of ApprovalTests and MVC Views, Getting Started, I covered the basic mechanics of getting an MVC View under test. In part two, Working with Data, I showed how you can create seams in your MVC project that allow you to avoid your repository and inject test data into the View. These tests were more interestin...
https://ihadthisideaonce.com/tag/cassinidev/
CC-MAIN-2019-09
refinedweb
2,156
70.63
I’ve been playing with the master branch of tracker and i’m loving it – it looks like its finally reached the stage where I won’t just turn it straight off after a fresh install. It now brings GNOME an RDF store with a SPARQL interface. Powerful joo-joo, but kinda scary if you haven’t seen it before. Most conversations...
http://blogs.gnome.org/johncarr/tag/tracker/
CC-MAIN-2014-15
refinedweb
370
76.93
Exponential Growth: The Power of Compounding My first salary... Many of us recall our first job rather fondly – primarily because of the power that the sense of financial independence gave us. We may have done different things with the first salary – maybe blown it all off celebrating. Or for those with a practical ben...
https://hubpages.com/money/Exponential-growth-The-power-of-compounding
CC-MAIN-2018-22
refinedweb
1,630
55.07
BasicDataStructures When using JavaScript, the basic data structures do not behave as you expect. There are other data structures you can use, but they have syntactic nuances. You can read the MSDN page about these data structures but the basics are collected here. Static Typing Unity uses Javascript's data typing feat...
http://wiki.unity3d.com/index.php?title=BasicDataStructures&direction=next&oldid=3563&printable=yes
CC-MAIN-2019-47
refinedweb
502
55.64
Folks, now that there's finally a decent (well, somewhat decent:-) Mac CVS client that supports ssh I'd like to move MacPython to sourceforge. There's two ways I can go about this: start a new MacPython project or merge the MacPython stuff into the main Python CVS repository. The Mac specific stuff for Python is all co...
http://mail.python.org/pipermail/python-dev/2001-May/014611.html
crawl-001
refinedweb
238
65.56
. Hope this helps!!! Babu From testing, looks like select() only return if the another end is closed such as shutdown or application quit. It cannot detect situation such as network link broken. Am I right? With monday.com’s project management tool, you can see what everyone on your team is working in a single glance. ...
https://www.experts-exchange.com/questions/20167329/A-question-on-TCP-SO-KEEPALIVE-WSAECONNRESET.html
CC-MAIN-2018-09
refinedweb
578
65.52
. When working with PDFs, I've run across the MIME types application/pdf and application/x-pdf among others. Is there a difference between these two types, and if so what is it? Is one preferred over the other? I'm working on a web app which must deliver huge amounts of PDFs and I want to do it the correct way, if ther...
http://boso.herokuapp.com/content-type
CC-MAIN-2017-26
refinedweb
166
66.74
andrej hocevar <ah@siol.net> [2002-12-20 19:26:16 -0200]: > But if I add sequences that already have a meaning (like "\C-s") > it's still the old value that's in effect. Besides, how do I > represent function keys? At one time an example .inputrc file in the bash package contained this template. Perhaps it would be use...
https://lists.debian.org/debian-user/2002/12/msg04257.html
CC-MAIN-2018-17
refinedweb
193
66.23
Overview The Python Panel Editor window lets you create, edit and delete PySide2 or PyQt5 interfaces that can be displayed in Python Panel panes. The editor also lets you manage the entries in the Python Panel interfaces menu as well as the entries in the Houdini pane tab menu. Requirements There are no requirements wh...
http://www.sidefx.com/docs/houdini/ref/windows/pythonpaneleditor.html
CC-MAIN-2019-47
refinedweb
1,481
57.27
On Tue, 2002-08-20 15:30:22 +0200, Maciej W. Rozycki <macro@ds2.pg.gda.pl> wrote in message <Pine.GSO.3.96.1020820152046.8700E-100000@delta.ds2.pg.gda.pl>: > On Tue, 20 Aug 2002, Jan-Benedict Glaw Actually, I had written all that using separate functions before, but neither I nor Ralf liked this approach (because it ad...
http://www.linux-mips.org/archives/linux-mips/2002-08/msg00135.html
CC-MAIN-2014-10
refinedweb
211
68.16
29 August 2012 23:59 [Source: ICIS news] LONDON (ICIS)--European August acrylic acid (AA) and acrylate esters contract prices have increased by €30-50/tonne ($38-63/tonne) on higher feedstock propylene costs, sources said on Wednesday. Despite healthy supply, subdued summer demand and market uncertainty amid global eco...
http://www.icis.com/Articles/2012/08/29/9590667/europe-august-aa-acrylate-esters-up-on-propylene.html
CC-MAIN-2015-06
refinedweb
408
50.06
Python Interview Questions & Answers PDF 2022. Here, you will come across some of the most frequently asked questions in Python job interviews in various fields. python interview questions and answers Advanced Level Python Interview Questions for Experienced and Professionals Like as a What is Python?, What are the key...
https://www.pakainfo.com/python-interview-questions/
CC-MAIN-2022-21
refinedweb
1,115
66.33
Introduction SQL Server 2008 Reporting Services (SSRS 2008) features an on-demand report processing engine. This on-demand architecture has a number of key advantages over the processing engine design that existed in previous major releases. The most significant benefits are vast improvements to report engine scalabili...
https://blogs.msdn.microsoft.com/robertbruckner/2008/07/21/using-group-variables-in-reporting-services-2008-for-custom-aggregation/?replytocom=23
CC-MAIN-2018-13
refinedweb
1,416
58.62
In this chapter, we will explore the first concepts related to clean code, starting with what it is and what it means. The main point of the chapter is to understand that clean code is not just a nice thing to have or a luxury in software projects. It's a necessity. Without quality code, the project will face the peril...
https://www.packtpub.com/product/clean-code-in-python/9781788835831
CC-MAIN-2021-17
refinedweb
6,549
66.88
Description Various small tools that help with C++ code editing. Package Information Installation To use this package, put the following dependency into your project's dependencies section: Readme Simple Tooling for C++ Code Various small tools that help with C++ code editing build on top of Facebook's C++ Linter flint...
http://code.dlang.org/packages/tooling
CC-MAIN-2017-17
refinedweb
232
66.13
Hi, I've been programming some examples out of a book and I've noticed something about getline that's made me curious. In the following simple program, you enter a make and model of a car, and then it outputs it. But say you change the line "cin.getline(make, 19);" to "cin.getline(make, 3);". Then, if you enter somethi...
http://cboard.cprogramming.com/cplusplus-programming/115370-question-about-getline.html
CC-MAIN-2015-22
refinedweb
115
75.81
OBJECTIVES - Present the GSM / GPRS card based on the SIM900 module. - Learn to connect and start it. - Use it to make calls and send SMS. BILL OF MATERIALS GSM AND GPRS We have seen several ways to connect our Arduino to the outside, such as Ethernet and Wi-Fi, but we may ever want to communicate with it and we do not...
https://prometec.org/communications/gprs-sim900/call-send-sms/
CC-MAIN-2021-49
refinedweb
1,933
66.88
SerialPort<PortNumber, RxBufSize, TxBufSize> #include <SerialPort.h>SerialPort<0, 0, 0> NewSerial;void setup() { NewSerial.begin(9600); NewSerial.write("Hello World\r\n");}void loop() {} #include <SerialPort.h>SerialPort<0, 32, 0> NewSerial;void setup() { NewSerial.begin(9600); NewSerial.write("Hello World\r\n");}void ...
http://forum.arduino.cc/index.php?topic=85207.0
CC-MAIN-2015-18
refinedweb
495
59.19
Hello, I am fairly new to c and i am finding it hard to spot why a part of a program I am making is not working. The program lets you work out the area and circumference of a circle. This is the code: #include <stdio.h> #include <math.h> int area() ; int circ() ; int main() { char choice ; printf("\n Do you want circum...
https://www.daniweb.com/programming/software-development/threads/440726/why-is-this-code-not-working
CC-MAIN-2019-04
refinedweb
152
79.09
itoa() Convert an integer into a string, using a given base Synopsis: #include <stdlib.h> char* itoa( int value, char* buffer, int radix ); Since: BlackBerry 10.0.0 Arguments: - value - The value to convert into a string. - buffer - A buffer in which the function stores the string. The size of the buffer must be at lea...
http://developer.blackberry.com/native/reference/core/com.qnx.doc.neutrino.lib_ref/topic/i/itoa.html
CC-MAIN-2015-35
refinedweb
229
66.84
Laserjungle, The way you wrote it causes an explosive number of function calls for increase of n. You're computing fib(n-1)+fib(n-2) each time, but you don't need to do that, because in the process of computing each value of fib(n-1), you also need to compute fib(n-2). That causes an unnecessary doubling of the code pa...
https://sourceforge.net/p/cxx/mailman/attachment/95A85723CFE2B746894057FCD575CF7E5BC8438889@GMSPRDM04.prd.domain/1/
CC-MAIN-2017-17
refinedweb
352
73.58
Agenda See also: IRC log Date: 16 December 2010 <scribe> Meeting: 185 <scribe> Scribe: Norm <scribe> ScribeNick: Norm -> Accepted. -> Accepted. Skipping the rest of December for seasonal festivities. No regrets heard. -> Henry: I want to behave as much like XQuery as possible. Alex: I think it's XSLT not XQuery that we...
http://www.w3.org/2010/12/16-xproc-minutes.html
CC-MAIN-2014-35
refinedweb
672
75.91
Current software development emphasizes the delivery of value and quality to customers as quickly as possible. However, in order to accomplish this, quality must be ensured on many levels. One of these levels comes in the form of visual testing, or how the look and feel of the application is, taking into consideration ...
https://gorillalogic.com/blog/reducing-ui-bugs-with-automated-visual-testing/
CC-MAIN-2021-21
refinedweb
1,372
55.74
@nativescript/webpack rewrite The rewrite allows us to simplify things, and introduce some breaking changes. Listing them here, so we can keep track of them - will be in the merge commit, and the release notes once we are ready. BREAKING CHANGES: package.jsonmain should now use a relative path to the package.json inste...
https://www.npmjs.com/package/@nativescript/webpack
CC-MAIN-2022-05
refinedweb
174
59.8
Learning Next.js - Part 1: Reviewing React - Part 2: Pages - Part 3: Links and Head - Part 4: Dynamic Routing - Part 5: Serverless API Next.js is a JavaScript framework based on React for rapidly developing web sites and applications. Links In the previous section, the Pages functionality of Next.js was introduced. Any...
https://videlais.com/2019/12/25/learning-next-js-part-3-links-and-head/
CC-MAIN-2021-04
refinedweb
268
59.09
While working on a recent application in C#, I ran into a situation I hadn’t hit before and worked out a solution I wanted to pass along for others that might come up against this same scenario. I’m not sure if it’s the “preferred” way to do it, but it sure worked for me and will definitely work for you. In C#, combobo...
http://www.prodigyproductionsllc.com/articles/programming/bind-objects-to-combo-boxes-in-c/
CC-MAIN-2017-04
refinedweb
468
59.03
Hi, I have one big while loop in my script (that calls other modules), and I want to throw one big try/except around that while loop. I'd like to catch the exception and write the error along with the location of the error to file on the Pyboard (probably in some sort of .txt file in flash or on sd). I am running the P...
https://forum.micropython.org/viewtopic.php?f=2&t=8620&p=48728
CC-MAIN-2021-04
refinedweb
212
66.94
Question: If your income after taxes is 28 000 per year and If your income after taxes is $28,000 per year, and you expect to pay about $100 per month for utilities, about how much can you afford to spend on monthly rental payments? View Solution: View Solution: Answer to relevant QuestionsGiven an affordable monthly m...
http://www.solutioninn.com/if-your-income-after-taxes-is-28000-per-year-and
CC-MAIN-2017-34
refinedweb
193
58.52
David Abrahams wrote: >>The python interpreter then figures out that it should create the so >>defined wrapper object and wrap it around my existing foo instance. > > > It's not really clear to me just what you mean. What I understood well from your tutorial was how to define python type objects (wrappers around C++ cl...
https://mail.python.org/pipermail/cplusplus-sig/2003-May/003790.html
CC-MAIN-2016-36
refinedweb
264
58.38
Something very strange appears to be happening with Time.deltaTime when used in the Update loop in C# Scripts. Time.fixedDeltaTime does not have this problem, and I have not tested it in Javascript. Essentially, it appears that Time.deltaTime is not correctly calculating or that Update is not being called consistently ...
https://answers.unity.com/questions/59115/timedeltatime-not-working-correctly.html
CC-MAIN-2021-10
refinedweb
1,263
67.15
Flask-CouchDB makes it easy to use the powerful CouchDB database with Flask. First, you need CouchDB. If you’re on Linux, your distribution’s package manager probably has a CouchDB package to install. (On Debian, Ubuntu, and Fedora, the package is simply called couchdb. On other distros, search your distribution’s repo...
https://pythonhosted.org/Flask-CouchDB/
CC-MAIN-2018-17
refinedweb
3,139
65.83
Using Memory-Mapped Files in .NET 4.0 Introduction Assume you have the need to manipulate multi-gigabyte files and read and write data to them. One option would be to access the file using a sequential stream, which is fine if you need to access the file from the beginning to the end. However, things get more problemat...
https://www.developer.com/net/article.php/3828586/Using-Memory-Mapped-Files-in-NET-40.htm
CC-MAIN-2018-34
refinedweb
701
63.7
(){ .. .. } 2) a block of code can also be defined as synchronised with an specified object, to capture a lock control on. function updateTotal(){ .. .. Synchronised(this){ .. .. } } Thread Sates or Life cycle. Thread follwos a life cycle, which starts from the threation till it is destroyed. New State: This is the fir...
http://www.javaworld.com/article/2075487/java-concurrency/multithreading-in-java.html
CC-MAIN-2015-22
refinedweb
469
60.72
Find Maximum Perimeter of a Triangle Reading time: 20 minutes | Coding time: 5 minutes Given an array of integers, find which three elements form a non-degenerate triangle such that: - the triangle has maximum perimeter - if there are two or more combinations with same value of maximum perimeter, output the one with th...
https://iq.opengenus.org/maximum-perimeter-of-triangle/
CC-MAIN-2020-24
refinedweb
820
65.22
UWP and Azure Service Bus Today's Hardware Friday post comes to us via MSDN Magazine and is an "internet of things" kind of project, meshing Azure with a smart thermostat (making it Smart++? Here’s a bold prediction: Connected devices are going to be big business, and understanding these devices will be really importan...
https://channel9.msdn.com/coding4fun/blog/How-cool-is-this-bus-Using-the-Service-Bus-to-create-a-cloud-enabled-smart-thermostat
CC-MAIN-2018-13
refinedweb
1,670
58.32
This article demonstrates the form of DNS query messages and how to submit a request to a DNS server and interpret the result. I have wrapped this functionality up into a small easy-to-use C# assembly which you can easily deploy in your own applications to make ANAME, MX, NS and SOA queries. The assembly is entirely sa...
http://www.codeproject.com/Articles/12072/C-NET-DNS-query-component?msg=2625146
CC-MAIN-2016-36
refinedweb
2,296
63.9
OKay here's the program Im suppose to write.. it involves looping and branching(I think :confused: ) ****************************************** ************************************************************************Code: #include <iostream> int main() { using namespace std; string fullname,Student_No,Phone; int option...
https://cboard.cprogramming.com/cplusplus-programming/76719-school-assignment-need-help-printable-thread.html
CC-MAIN-2017-43
refinedweb
156
79.9
hi christian, On 10/6/06, UpAndGone <upandgone@web.de> wrote: > Hi all, > > I would like to use an existing storage server that has a REST interface. So > storing files is basically writing its contents to a HTTP stream. Would it > be possible to implement this form of a file system for jackrabbit? theoretically, yes. ...
http://mail-archives.apache.org/mod_mbox/jackrabbit-dev/200610.mbox/%3C90a8d1c00610090244n4b4e48a3te66c8570ba5eec4c@mail.gmail.com%3E
CC-MAIN-2016-44
refinedweb
178
50.63
15 September 2009 06:46 [Source: ICIS news] By Bohan Loh and Jeremiah Chan SINGAPORE (ICIS news)--Spot prices of fibre intermediates paraxylene (PX) and purified terephthalic acid (PTA) in Asia could extend their slide if producers do not cut output amid weak demand, market sources said on Tuesday. PX was in danger of ...
http://www.icis.com/Articles/2009/09/15/9247343/asia-px-pta-may-break-key-price-supports-on-weak-demand.html
CC-MAIN-2014-42
refinedweb
413
56.39
Dear All, I am trying to translate C code to inline assembly to check whether I get a (timing) performance improvement. However, I am having problems to use my variables from C code into inluine assembly code. For example, I have: u8x8_out = vqmovn_u16(u16x8_tmp); and the following assembly code: And the error message ...
https://developer.qualcomm.com/forum/qdn-forums/increase-app-performance/snapdragon-llvm-compiler-android/27391
CC-MAIN-2019-09
refinedweb
304
75.91
Trip report: Evolution Working Group at the Summer ISO C++ standards meeting (Toronto) Andrew The Summer 2017 ISO C++ standards meeting was held in July 10-15 at the University of Toronto. Many thanks to Google, Codeplay, and IBM for sponsoring the event, as well to folks from Mozilla, Collège Lionel-Groulx, Christie D...
https://devblogs.microsoft.com/cppblog/trip-report-evolution-working-group-at-the-summer-iso-c-standards-meeting-toronto/
CC-MAIN-2019-51
refinedweb
2,673
53.61
Yesterday,. If you want to define a new type that accepts dynamic operations, then it's easy to do so, and you don't even need C# 4. You just implement IDynamicObject IDynamicMetaObjectProvider, which is the interface that tells the DLR, "I know how to dispatch operations on myself." It's a simple interface, in the spi...
https://blogs.msdn.microsoft.com/cburrows/2008/10/28/c-dynamic-part-ii/
CC-MAIN-2017-39
refinedweb
1,459
61.16
TIP: Round a Decimal to an Integer How will your code round decimals to integers? Most people will focus the decimal fraction on the round off topic, so that they will separate the integer and the decimal fraction at first, and round the integer if the decimal fraction is equal to or lager than 0.5. So, here is a commo...
https://www.codeguru.com/cpp/cpp/algorithms/math/article.php/c15071/TIP-Round-a-Decimal-to-an-Integer.htm
CC-MAIN-2020-10
refinedweb
362
74.9
new coming antique kids outdoor sports playground equipment US $1000-5000 / Set 1 Set (Min. Order) Antique Paradise Playground Equipment,Indoor Sports Games For Kids US $80-150 / Square Meter 20 Square Meters (Min. Order) sport Fitness Equipment For Adults ,building machines US $600-2500 / Set 5 Sets (Min. Order) impor...
http://www.alibaba.com/showroom/antique-sports-equipment.html
CC-MAIN-2016-44
refinedweb
363
75.4
Introduction to Palindrome in C++ A palindrome is a number, sequence or a word that reads the same backward as forwards. Madam In Eden, I’m Adam is one of the best examples of palindrome words that sounds the same after reversing. This is where palindrome makes things interesting they act as mirrors. The name ‘palindro...
https://www.educba.com/palindrome-in-c-plus-plus/
CC-MAIN-2020-29
refinedweb
993
64.14
High-level logic is typically full of indirection, so performance suffers when it’s used heavily. This is the case in game AI when you start adding more behaviors; a constant overhead for virtual calls quickly takes its toll. So what do you do to optimize your engine, once the typical bottlenecks (i.e. collision querie...
http://aigamedev.com/open/article/optimize-virtual-functions/
crawl-002
refinedweb
1,271
53.51
New deadline for employers to issue Form 16 to employees is July 31, 2021 and the individual taxpayer can file the Income Tax Return till September 30, 2021. The last date to file income tax return (ITR) for the financial year 2020-21 has been extended till September 30,2021. The ITR filing last date is generally July ...
https://www.financialexpress.com/money/income-tax/last-date-for-issuing-form-16-extended-till-july-31-heres-how-you-may-still-file-itr-for-ay-2021-22/2284336/
CC-MAIN-2021-31
refinedweb
540
60.04
we will learn how to set working directory in python. We will also learn to get the current working directory in Python. Let’s discuss how to get and set working directory in python with an example for each. Get Current Working directory in python: import os os.getcwd() The above code gets the current working directory...
https://www.datasciencemadesimple.com/get-set-working-directory-python-2/
CC-MAIN-2021-17
refinedweb
102
58.69
Summary: Microsoft Scripting Guy, Ed Wilson, talks about using Windows PowerShell 3.0 and the CIM cmdlets to explore WMI classes. Microsoft Scripting Guy, Ed Wilson, is here. Today, the Scripting Wife and I are on the train from Dortmund to Geneva. Teresa was really smart and found tickets for us to tour the Particle A...
http://blogs.technet.com/b/heyscriptingguy/archive/2012/11/26/use-powershell-3-0-and-the-cim-cmdlets-to-explore-wmi-classes.aspx
CC-MAIN-2013-48
refinedweb
797
61.67
This page describes useful app settings in the module-level build.gradle file. In addition to giving an overview of important properties set in the build.gradle file, learn how to: - Change the application ID for different build configurations. - Safely adjust the namespace independent of the application ID. Set the ap...
https://developer.android.com/static/studio/build/configure-app-module?hl=fa
CC-MAIN-2022-40
refinedweb
556
64
HTTP client¶ The first code example is the simplest thing you can do with the cpp-netlib. The application is a simple HTTP client, which can be found in the subdirectory libs/network/example/http_client.cpp. All this example doing is creating and sending an HTTP request to a server and printing the response body. The c...
https://cpp-netlib.org/0.12.0/examples/http/http_client.html
CC-MAIN-2019-09
refinedweb
434
56.55
;20 21 /**22 * Implementation of FileNameMapper that always returns the source23 * file name without any leading directory information.24 *25 * <p>This is the default FileNameMapper for the copy and move26 * tasks if the flatten attribute has been set.</p>27 *28 */29 public class FlatFileNameMapper implements FileNameM...
http://kickjava.com/src/org/apache/tools/ant/util/FlatFileNameMapper.java.htm
CC-MAIN-2016-44
refinedweb
150
68.97
Situation: Exchange 2010 & 2016 coexistence. Outlook Anywhere is enabled on both with NTLM webmail.domain.com is configured as the CAS namespace (for all virtual directories on 2016) autodiscover.domain.local/autodiscover.autodiscover.xml is configured as the SCP (external autodiscover is not used) DNS points for both ...
https://serverfault.com/questions/854631/credential-pop-ups-after-moving-mailbox-from-2010-to-2016/854651
CC-MAIN-2019-22
refinedweb
594
57.2
PyFunge can be extended with various means. In particular, since PyFunge comes as a library you can experiment with them. (See Internals for extensive API documentation.) You can write your own Funge-98 fingerprints and use them in PyFunge. Thanks to Python’s dynamic nature, PyFunge can directly load your fingerprint; ...
http://packages.python.org/PyFunge/extending.html
crawl-003
refinedweb
960
53.17
The lambda expression was introduced in C++11 and convenient way of writing [ capture_clause ] (parameters) -> return_type { lambda_body } []is the empty clause, which means that the lambda expression accesses no variables in the enclosing scope. [&]means all variables that you refer to are captured by reference. [=]me...
https://www.educative.io/answers/lambda-expressions-in-cpp
CC-MAIN-2022-33
refinedweb
255
63.9
I have a python script which at one point is required to run a perl script, wait for it to finish, then continue. As this case will only occur on a windows machine, I thought I could simply open a new cmd and run the perl script there, but I'm having difficulties to do so. import os os.system("start /wait cmd /c {timeo...
http://www.howtobuildsoftware.com/index.php/how-do/bCIQ/python-perl-subprocess-stdout-run-a-perl-script-from-my-python-script-print-the-output-and-wait-for-it-to-finish
CC-MAIN-2018-47
refinedweb
248
75.1
Win a copy of Barcodes with iOS this week in the iOS forum or Core Java for the Impatient in the Java 8 forum! Originally posted by Jose Botella: In the exam there will not be questions about the garbage collection eligibility of objects either: a) pointed to by local variables that falls out scope or b) string objects...
http://www.coderanch.com/t/240898/java-programmer-SCJP/certification/local-variable
CC-MAIN-2015-11
refinedweb
175
59.98
Bio::MAGETAB::Util::Reader - A parser/validator for MAGE-TAB documents. use Bio::MAGETAB::Util::Reader; my $reader = Bio::MAGETAB::Util::Reader->new({ idf => $idf, relaxed_parser => $is_relaxed, }); my $magetab = $reader->parse(); This is the main parsing and validation class which can be used to read a MAGE-TAB docume...
http://search.cpan.org/~tfrayner/Bio-MAGETAB/lib/Bio/MAGETAB/Util/Reader.pm
CC-MAIN-2014-35
refinedweb
190
56.25
On Fri, Nov 27, 2020 at 08:32:04AM +1100, Cameron Simpson wrote: On 27Nov2020 00:25, Steven D'Aprano steve@pearwood.info wrote: Block scoping allows shadowing within a function. Just to this: it needn't. Yes, I'm aware of that, and discussed languages such as Java which prohibit name shadowing within a function. Shadow...
https://mail.python.org/archives/list/python-ideas@python.org/message/X3DCRCNH52KVWCOOPJNVI2RHJRCK3LI2/
CC-MAIN-2021-17
refinedweb
582
70.94
Episode #21: Python has a new star framework for RESTful APIs Published Thurs, Apr 13, 2017, recorded Wed, Apr 12, 2017. This episode has been sponsored by Rollbar. Get a special offer via #1 Brian: profile and pstats — Performance Analysis - Doug Hellman is working on the Python 3 MOTW series that was so successful fo...
https://pythonbytes.fm/episodes/show/21/python-has-a-new-star-framework-for-restful-apis
CC-MAIN-2018-30
refinedweb
542
61.87
TensorFlow feed_dict: Use feed_dict To Feed Values To TensorFlow Placeholders TensorFlow feed_dict example: Use feed_dict to feed values to TensorFlow placeholders so that you don't run into the error that says you must feed a value for placeholder tensors < > Code: Transcript: We import TensorFlow as tf. import tensor...
https://aiworkbox.com/lessons/use-feed_dict-to-feed-values-to-tensorflow-placeholders
CC-MAIN-2019-51
refinedweb
620
56.96
Each piece of advice is of the form [ strictfp ] AdviceSpec [ throws TypeList ] : Pointcut { Body }where AdviceSpec is one of and where Formal refers to a variable binding like those used for method parameters, of the form Type Variable-Name, and Formals refers to a comma-delimited list of Formal. Advice defines crossc...
http://www.eclipse.org/aspectj/doc/released/progguide/semantics-advice.html
CC-MAIN-2015-22
refinedweb
1,557
52.6
Up to [DragonFly] / src / sys / sys Request diff between arbitrary revisions Keyword substitution: kv Default branch: MAIN AMD64 Support: * Add an identifier to SYSINIT structures for debugging purposes. Submitted-by: Jordan Gordeev <jgordeev@dir.bg> Obtained-from: FreeBSD, with modifications Synchronize some of the ma...
http://www.dragonflybsd.org/cvsweb/src/sys/sys/kernel.h?f=h
CC-MAIN-2014-15
refinedweb
1,019
57.57
Controversial extension methods: CastTo<T> and As<T> Raymond You’ve probably had to do this in C#. You get an object, you need to cast it to some type T and then fetch a property that is returned as an object, so you have to cast that to some other type U, so you can read the destination property. For example, you have...
https://devblogs.microsoft.com/oldnewthing/20191227-00/?p=103271
CC-MAIN-2021-10
refinedweb
1,836
62.38
Opened 6 months ago Last modified 6 months ago #29345 new Bug Migrations that recreate constraints can fail on PostgreSQL if table is not in public schema Description The django.db.backends.postgresql.introspection.get_constraints(...)-function contains an SQL expression that assumes that all tables are in the public s...
https://code.djangoproject.com/ticket/29345
CC-MAIN-2018-43
refinedweb
302
54.22
Table of Contents This document describes the shell coding style used for all the SMF script changes integrated into (Open)Solaris. All new SMF shell code should conform to this coding standard, which is intended to match our existing C coding standard. When in doubt, think "what would be the C-Style equivalent ?" and ...
http://web.archive.org/web/20121103080047/http:/hub.opensolaris.org/bin/view/Project+shell/shellstyle
CC-MAIN-2017-30
refinedweb
3,944
59.43
Removing Custom Class Instances¶ The following text was taken from the Panda3D 1.6 Game Engine Beginner’s Guide available from Packt Publishing with the author’s permission. The text refers to a “custom class”, which is a python class that is not part of the Panda3D SDK. Here is an example of a custom class: class MyCl...
https://docs.panda3d.org/1.10/cpp/programming/garbage-collection/removing-custom-class-instances
CC-MAIN-2020-45
refinedweb
861
56.69
* Brian Dessent wrote on Sat, Apr 19, 2008 at 03:59:19PM CEST: > Ralf Wildenhues wrote: > > <> > > The MULTITARGETS and foo_{TARGETS,SOURCES,COMMAND} syntax that you came > up with is certainly in line with the Automake way of doing things, but > the observation that writing a MULTITARGET rule looks nothing like a > no...
http://lists.gnu.org/archive/html/automake/2008-04/msg00053.html
CC-MAIN-2016-36
refinedweb
389
64.64
Minitest is inspired by Ruby minispec. Project Description This project is inspired by Ruby minispec, but now it just implement some methods including: must_equal, must_true, must_false, must_raise, must_output, only_test. And some other useful functions: p, pp, pl, ppl, length, size, inject, flag_test, p_format, pp_fo...
https://pypi.org/project/minitest/
CC-MAIN-2018-17
refinedweb
1,177
52.05
Hi guys i have a very difficult problem in hands. Im trying to render part of the ghosts when my player passes close to them. They are 3d objects and i really need to render just part of them based on player's distance or player's collider. Any clue? Answer by tanoshimi · Sep 03, 2013 at 04:49 PM Hi, I'm having a littl...
https://answers.unity.com/questions/529814/how-to-have-2-different-objects-at-the-same-place.html
CC-MAIN-2019-43
refinedweb
1,020
58.82
17 May 2012 06:30 [Source: ICIS news] KUALA LUMPUR (ICIS)--Siam Mitsui is currently running its three purified terepthalic acid (PTA) units in Map Ta Phut, ?xml:namespace> The company's PTA units at the site have a combined nameplate capacity of 1.45m tonnes/year. “About 20,000 tonnes of PTA is being moved monthly from...
http://www.icis.com/Articles/2012/05/17/9560475/apic-12-siam-mitsui-runs-map-ta-phut-pta-units-at-full-capacity.html
CC-MAIN-2014-35
refinedweb
129
62.68
Developer forums (C::B DEVELOPMENT STRICTLY!) > Plugins development Plug-Ins : some suggested "case" conventions (1/3) > >> killerbot: When ones creates a plug-in for Code::Blocks (focusing here on contrib plug-ins that should work under Windows and linux), the plug-in project will contain several files : 1) Source fil...
https://forums.codeblocks.org/index.php/topic,4290.0/wap2.html?PHPSESSID=53833cb6248503dbfea4891d0a1012aa
CC-MAIN-2021-43
refinedweb
672
56.66
shrink cells composing PolyData More... #include <vtkShrinkPolyData.h> shrink cells composing PolyData vtkShrinkPolyData shrinks cells composing a polygonal dataset (e.g., vertices, lines, polygons, and triangle strips) towards their centroid. The centroid of a cell is computed as the average position of the cell point...
https://vtk.org/doc/nightly/html/classvtkShrinkPolyData.html
CC-MAIN-2021-39
refinedweb
145
62.54
Download presentation Presentation is loading. Please wait. Published byAlexander Allis Modified about 1 year ago 1 Social Media and Teaching Tools by Hongmei Chi 2 Social Media Blogging Teaching Tools Piazza Outlines 3 The most three most trusted forms of advertising are: Recommendations from people I know - 90% Consu...
http://slideplayer.com/slide/3550469/
CC-MAIN-2017-09
refinedweb
604
51.48
My intention is not for this to be a massive how-to on HTTP Modules - I think this little DLL is quite useful (I know that there are similar libraries out there that does mostly the same). Hopefully, posting it on Code Project will get it out to as many people as possible. The Rewrite class implements the IHttpModule i...
http://www.codeproject.com/KB/aspnet/dnn2url_rewrite.aspx
crawl-002
refinedweb
425
53.07
Products and Services Downloads Store Support Education Partners About Oracle Technology Network Goetz Lindenmaier from SAP AG found an issue loading jni libraries where the stack is set to ???execstack???, or where this flag is not set at all. After loading such a library, the stack guard pages are lost and though sta...
http://bugs.java.com/bugdatabase/view_bug.do?bug_id=7107135
CC-MAIN-2014-10
refinedweb
712
69.92