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
Dear, How can I access the command history from python? Does the command history contain all informations of then command (not only the name of the command)? Kind regards Dear, How can I access the command history from python? Does the command history contain all informations of then command (not only the name of the c...
https://discourse.mcneel.com/t/access-command-history-from-python/25057
CC-MAIN-2020-40
refinedweb
418
72.66
Closed Bug 667132 Opened 11 years ago Closed 11 years ago Ion Monkey: Fix greedy register allocation around loops Categories (Core :: JavaScript Engine, defect) Tracking () People (Reporter: dvander, Assigned: dvander) References Details Attachments (2 files, 2 obsolete files) This patch is really two things: (1) Fixes...
https://bugzilla.mozilla.org/show_bug.cgi?id=667132
CC-MAIN-2021-49
refinedweb
754
51.18
Example is a little difficult to follow I'm tryingto follow the example for creating a an application for weather and a night clock. I'm at the part were I need to turn each of my files into modules and components. I'm not sure on how to turn to start the first procees and then create a qmldir. I tried going into the p...
https://forum.qt.io/topic/44982/example-is-a-little-difficult-to-follow
CC-MAIN-2018-34
refinedweb
999
51.75
/ Published in: JavaScript A simple Javascript function to tell if one string starts with another. Usage: if (myString.startsWith("anything") { do something… } NOTE: As always, make sure this is defined before it is used! Expand | Embed | Plain Text - if (typeof String.prototype.startsWith != 'function') { - String.pro...
http://snipplr.com/view/63954/casesensitive-starts-with/
CC-MAIN-2015-48
refinedweb
106
67.65
Today for my 30 day challenge, I decided to learn how to do article extraction using the Python programming language. I have been interested in article extraction for a few month when I wanted to write a Prismatic clone. Prismatic creates a news feed based on user interest. Extracting article's main content, images, an...
https://www.openshift.com/blogs/day-16-goose-extractor-an-article-extractor-that-just-works
CC-MAIN-2014-15
refinedweb
923
58.58
Holy cow, I wrote a book!. When you select "Shut Down" from the Start menu, a dialog appears with three options: "Stand By", "Turn Off" and "Restart". To get the secret fourth option "Hibernate" you have to press the shift key. Would the Alt key be the more obvious choice for revealing alternate options? You might thin...
http://blogs.msdn.com/b/oldnewthing/archive/2006/09.aspx?PostSortBy=MostViewed&PageIndex=1
CC-MAIN-2014-52
refinedweb
2,893
56.89
Here are the topics that have been cooking. Commits prefixed with '-' are only in 'pu' (proposed updates) while commits prefixed with '+' are in 'next'. As we already have merged enough changes to 'master' during this cycle that can potentially cause unforseen regressions, let's not merge topics that are not regression...
https://www.mail-archive.com/git@vger.kernel.org/msg25374.html
CC-MAIN-2017-51
refinedweb
2,172
50.97
. Fortunately, in our house we don't need to clean out the space before we put something else there. Since Object 2 is not needed, as the GC we'll move Object 3 down and fix the pointer in Object 1. Next, as the GC, we'll copy Object 5 down Now that everything is cleaned up we just need to write a sticky note and put ...
http://www.c-sharpcorner.com/UploadFile/rmcochran/csharp_memory_401282006141834PM/csharp_memory_4.aspx
crawl-002
refinedweb
1,004
69.62
[ ] Stephan Ewen commented on FLINK-2999: ------------------------------------- I need this as well! > Support connected keyed streams > ------------------------------- > > Key: FLINK-2999 > URL: > Project: Flink > Issue Type: Improvement > Components: Streaming > Affects Versions: 1.0 > Reporter: Fabian Hueske > Assig...
http://mail-archives.us.apache.org/mod_mbox/flink-issues/201511.mbox/%3CJIRA.12912105.1447233654000.37964.1447236490993@Atlassian.JIRA%3E
CC-MAIN-2020-16
refinedweb
142
60.61
![if !IE]> <![endif]> Handling HTTP get Requests Containing Data When requesting a document or resource from a Web server, it is possible to supply data as part of the request. The servlet WelcomeServlet2 of Fig. 30.12 responds to an HTTP get request that contains a name supplied by the user. The servlet uses the name ...
https://www.brainkart.com/article/Handling-HTTP-get-Requests-Containing-Data---Servlets_11137/
CC-MAIN-2019-51
refinedweb
622
66.54
String.Format Method (String, Object) Replaces one or more format items in a specified string with the string representation of a specified object. Assembly: mscorlib (in mscorlib.dll) Parameters - format - Type: System.String A composite format string (see Remarks). - arg0 - Type: System.Object The object to format. R...
http://msdn.microsoft.com/en-us/library/fht0f5be(v=vs.100).aspx
CC-MAIN-2013-48
refinedweb
284
62.44
Click this for NoviceGuard main page Based on years of teaching, and earlier designs for similar projects, in early 2015, I developed NoviceGuard... a bit of hardware that makes things easier for newcomers to the delights of "playing" with Arduinos. In addition to making it easier to use an Arduino, the NoviceGuard pro...
http://rugguino.com/NovGrdCoreMain.htm
CC-MAIN-2018-17
refinedweb
2,291
73.78
Name | Synopsis | Description | Return Values | Errors | Attributes | See Also #include <stropts.h> int fattach(int fildes, const char *path); The fattach() function attaches a STREAMS- or doors-based file descriptor to an object in the file system name space, effectively associating a name with fildes. The fildes argu...
http://docs.oracle.com/cd/E19253-01/816-5168/fattach-3c/index.html
CC-MAIN-2015-32
refinedweb
303
55.24
That’s not the first post I’m doing on incorporating a Web Server in .NET Microframework (NETMF). In some of my previous posts, I’ve explain how to do it using the existing .NET classes for this. And it is working very well! The main concerns I have is that I’m using a netduino board. This board is great, I love it. Bu...
https://blogs.msdn.microsoft.com/laurelle/2012/05/29/creating-an-efficient-http-web-server-for-net-microframework-netmf/
CC-MAIN-2019-09
refinedweb
2,271
66.23
3.11 Advice Don't reinvent the wheel; use libraries. Don't believe in magic; understand what your libraries do, how they do it, and at what cost they do it. When you have a choice, prefer the standard library to other libraries. Don't think that the standard library is ideal for everything. Remember to #include the hea...
http://www.informit.com/articles/article.aspx?p=25004&seqNum=12
CC-MAIN-2017-43
refinedweb
165
76.72
Hello, following decription is very easy. I have a class UC_Main with constructor where I create EventHandler for SelectionChanged event in MainUCGrid control which is standard DataGridView. MainUCGrid control is part of UC_Main class. public class UC_Main : UserControl { public UC_Main(Evidence.Nodik nod, DataView col...
https://www.daniweb.com/programming/software-development/threads/261134/multiple-selectionchanged-event-in-datagridview
CC-MAIN-2018-05
refinedweb
258
65.62
In this section, you will learn how to get the size of a file. Description of code: You can see in the given example, we have created an object of File class and specified a file in the constructor. The object then calls the method length() which returns the size of the file in bytes. Then we have converted the size of...
http://www.roseindia.net/java/example/java/io/FileSize.shtml
CC-MAIN-2014-52
refinedweb
165
84.68
This chapter includes:. The pfil interface is purely in the stack and supports packet-filtering hooks. Packet filters can register hooks that are called when packet processing is taking place; in essence, pfil is a list of callbacks for certain events. In addition to being able to register a filter for incoming and out...
https://www.qnx.com/developers/docs/6.5.0SP1.update/com.qnx.doc.io-pkt_en_user_guide/filtering.html
CC-MAIN-2021-25
refinedweb
1,381
52.7
Bummer! This is just a preview. You need to be signed in with a Basic account to view the entire video. Coding the Blog Homepage15:52 with Zac Gordon Now that we have our home.php template setup, we continue to code it out with the common blog meta data used on blogs. - 0:00 If we look back at the original static templ...
https://teamtreehouse.com/library/wordpress-theme-development/adding-a-blog-to-a-wordpress-theme/coding-the-blog-homepage
CC-MAIN-2017-30
refinedweb
2,942
74.93
. Mypy is one such tool, and it's an increasingly popular one. The idea is that you run Mypy on your code before running it. Mypy looks at your code and makes sure that your annotations correspond with actual usage. In that sense, it's far stricter than Python itself, but that's the whole point. In my last article, I c...
https://www.linuxjournal.com/content/pythons-mypy-advanced-usage
CC-MAIN-2020-29
refinedweb
1,875
69.31
Summary A mixin is a collection of methods that can be injected into a class. The mixin technique consists in building classes by composing reusable mixins. The advantages and disadvantages of the technique are very much debated. I will focus on the negative aspects. The idea of creating classes by composing reusable c...
http://www.artima.com/weblogs/viewpost.jsp?thread=246341
CC-MAIN-2014-52
refinedweb
1,295
55.34
The earth’s Atmospheric CO2 level is increasing day by day. The global average atmospheric carbon dioxide in 2019 was 409.8 parts per million and in October-2020 it is 411.29. Carbon dioxide is a key greenhouse gas and responsible for about three-quarters of emissions. So CO2 level monitoring has also started to gain i...
https://circuitdigest.com/microcontroller-projects/interfacing-mq135-gas-sensor-with-arduino-to-measure-co2-levels-in-ppm
CC-MAIN-2020-50
refinedweb
1,290
57.98
Delegate.CreateDelegate Method (Type, MethodInfo) Creates a delegate of the specified type to represent the specified static method. Namespace: SystemNamespace: System Assembly: mscorlib (in mscorlib.dll) Parameters - type - Type: System.Type The Type of delegate to create. - method - Type: System.Reflection.MethodInfo...
https://msdn.microsoft.com/en-us/library/53cz7sc6
CC-MAIN-2015-11
refinedweb
1,392
58.58
Firstly: Scala development in IDEA with the Scala plugin is excellent! I'm using it for a large multi-module project and it mostly 'just works'. Very nice work. I've found a couple of weird cases with the error highlighting, though. Here's a simple example where it thinks a comment is a syntax error: class IDEAHighligh...
https://intellij-support.jetbrains.com/hc/en-us/community/posts/206641005-Comment-highlighted-as-error
CC-MAIN-2020-40
refinedweb
195
80.68
Re: ANN: Kamaelia 0.2.0 released! - From: Michael Sparks <ms@xxxxxxxxxxxx> - Date: Wed, 03 Aug 2005 22:16:37 +0200 phil hunt wrote: > On Wed, 03 Aug 2005 16:57:34 +0100, Michael Sparks <michaels@xxxxxxxxxxxx> wrote: >>> Is the audience programmers or >>> less technical people? A project that allows non-technical people...
http://coding.derkeiler.com/Archive/Python/comp.lang.python/2005-08/msg00922.html
crawl-001
refinedweb
892
56.15
Source code for sympy.core.singleton """Singleton mechanism""" from __future__ import print_function, division from .core import Registry from .assumptions import ManagedProperties from .sympify import sympify[docs]class SingletonRegistry(Registry): """ The registry for the singleton classes (accessible as ``S``). This...
http://docs.sympy.org/dev/_modules/sympy/core/singleton.html
CC-MAIN-2017-26
refinedweb
772
51.34
Create a new pager object. #include <zircon/syscalls.h> zx_status_t zx_pager_create(uint32_t options, zx_handle_t* out); zx_pager_create() creates a new pager object. When a pager object is destroyed, any accesses to its vmos that would have required communicating with the pager will fail as if zx_pager_detach_vmo() ha...
https://fuchsia.googlesource.com/fuchsia/+/419b51fe8a82d81b63b0e67951ec6e224c2194f7/zircon/docs/syscalls/pager_create.md
CC-MAIN-2020-24
refinedweb
119
50.02
The alternative syntax I had been suggesting was to use a clause introduced by a new keyword: where. (I had first discussed this idea more than 10 years ago.) For example, instead of the approved type hinting syntax def twice(i: int, next: Function[[int], int]) -> int: return next(next(i)) I was suggesting to use somet...
https://aroberge.blogspot.com/2015/12/revisiting-old-friend-yet-again.html
CC-MAIN-2018-13
refinedweb
446
61.06
Fragments. If you are interested in creating custom template also see: Custom Projects In Android Studio When you first start working with Android it is difficult to see why you should bother with the strange new Fragment object. It really doesn't seem to do anything extra over and above a simple Activity and it adds a...
http://i-programmer.info/programming/android/6882-introducing-android-fragments.html
CC-MAIN-2015-27
refinedweb
1,371
58.42
int main( int argc, char **argv ) { char szModuleName[MAX_PATH]; // Extract the module name from argv[0] { char *szLastSlash = strchr( argv[0], '\\' ); strncpy( szModuleName, szLastSlash + 1 ); char *szExtension = strchr( szModuleName, '.' ); *szExtension = '\0'; } ... }Maybe you could have passed argv[0] to a HelperFu...
http://c2.com/cgi/wiki?BracesAreGood
CC-MAIN-2014-15
refinedweb
734
64.3
Alternative, slightly easier to comprehend: import Data.List diag b = [b !! n !! n | n <- [0 .. length b - 1], n < (length $transpose b) ] getAllDiags f g = map f [drop n . take (length g) $ g | n <- [1.. (length g - 1)] ] problem_11 num= maximumBy (\(x, _) (y, _) -> compare x y) $zip (map product allfours) allfours w...
http://www.haskell.org/haskellwiki/index.php?title=Euler_problems/11_to_20&oldid=18087
CC-MAIN-2014-41
refinedweb
176
85.08
2008ING Using Semantic Web Technology to Design Agent-to-Agent Argumentation Mechanism in an E-Marketplace Abstract In existing e-marketplaces, buyers can use search engines to find products that exactly match their demands, but some products those are potentially interesting to them cannot be found out. This research ...
https://www.techylib.com/en/view/rouleaupromise/using_semantic_web_technology_to_design_agent-to-agent
CC-MAIN-2018-17
refinedweb
7,577
53.31
For learning about the angle between two planes in 3D, we need to learn about planes and angles. Plane is a two-dimensional surface that extends to infinity. Angle is the space in degrees between two lines and surfaces which intersect at a point. So, in this problem we need to find the angle between two 3D planes. For ...
https://www.tutorialspoint.com/angle-between-two-planes-in-3d-in-cplusplus
CC-MAIN-2021-43
refinedweb
281
72.09
1.1 Camera webpage access tutorial Part 1--Connect camera into Raspberry Pi board. Part 2 -- Upgrading the system Part 3 -- 4 -- Using camera 1.You can transfer the video which captured by the Raspberry Pi to the web page. You need to log in to the WinSCP software and transfer the master.zip file to the pi directory of...
https://www.elephantjay.com/blogs/tutorial/642
CC-MAIN-2021-04
refinedweb
1,461
50.73
So you want to get Github to "do something" on a commit? Well, serverless technologies like IBM Cloud Functions (based on Apache Openwhisk) could be the answer for you. A 1080p version of this video is on Cinnamon here. This is part two of a live coding session in which I show how to create an IBM Cloud Function in Pyt...
https://practicaldev-herokuapp-com.global.ssl.fastly.net/hammertoe/using-ibm-cloud-functions-for-github-hooks-3md7
CC-MAIN-2022-40
refinedweb
1,228
55.27
Section (3) posix_fallocate Name posix_fallocate — allocate file space Synopsis #include <fcntl.h> DESCRIPTIONdis not a valid file descriptor, or is not opened for writing. - EFBIG offset+lenexceeds the maximum file size. - EINTR A signal was caught during execution. - EINVAL offsetwas less than 0, or lenwas less than ...
https://manpages.net/detail.php?name=posix_fallocate
CC-MAIN-2022-21
refinedweb
124
60.72
SFD2016 Software Freedom Day Rasbperry Pi Workshop Ali Nik & Radi Almac Workshop Ali Nik & Radi Almac #!/bin/bash Topic="Raspberry Workshop" SubTopic[0]="What is a Raspberry" SubTopic[1]="Why Rasberry" SubTopic[2]="Generations of Raspberry" SubTopic[3]="Parts of the raspberry" SubTopic[4]="Operating System" SubTopic[5]...
https://slides.com/sfd2016/raspberryworkshop
CC-MAIN-2021-21
refinedweb
1,892
62.88
Conversational C# for Java Programmers Pages: 1, 2, 3 Let's dissect this program, starting with the files that the source code goes into. In Java, each class needs to exist in a like-named file (usually with the like-named extension .java) -- there are, of course, exceptions with class visible and inner classes, as tho...
http://archive.oreilly.com/pub/a/dotnet/2001/05/31/csharp_4_java.html?page=2
CC-MAIN-2016-30
refinedweb
1,186
52.29
I want to find a link which contains a text and some noise by BeautifulSoup4: <a href="#"> <span>gggggggggggg</span> Some text123 <div>fdsfdsfdsfd</div> <span> fdsfdsfdsfd</span> </a> soup123.find("a", "Some text123") # => NoneType The following might suit your needs. It simply finds all a tags and determines if the se...
https://codedump.io/share/FnZYtaYP6kjp/1/find-a-text-by-its-text-with-can-contain-noise
CC-MAIN-2017-13
refinedweb
131
57.37
17 July 2012 11:23 [Source: ICIS news] LONDON (ICIS)--New registrations for passenger cars in the 27-member EU in June fell for the ninth consecutive month, an industry body said on Tuesday. According to data from the European Automobile Manufacturers’ Association (ACEA), 1,201,578 new passenger cars were registered in...
http://www.icis.com/Articles/2012/07/17/9578614/eu-new-passenger-car-registrations-fall-for-ninth-consecutive-month.html
CC-MAIN-2014-41
refinedweb
129
66.64
For each node in the kernel device tree, the system selects a driver for the node based on the node name and the compatible property (see Binding a Driver to a Device). The same driver might bind to multiple device nodes. The driver can differentiate different nodes by instance numbers assigned by the system. After a ...
http://docs.oracle.com/cd/E23824_01/html/819-3196/autoconf-60641.html
CC-MAIN-2013-48
refinedweb
1,484
52.19
Hello! How is it possible to connect to an existing sqlite db in the folder of the app? All my trys just resulted in an sqlite db created in the isolated storage of the browser, but it seem's not to be possible to connect to an existing sqlite db in the file system. Where is my mistake ? Regards, Michael For Android, p...
http://www.sencha.com/forum/showthread.php?151444-SqliteProxy-for-ST2/page4
CC-MAIN-2013-48
refinedweb
779
56.66
In the last two posts, we started building up a simple system to reuse a common set of C code in Android and iOS: - OpenGL from C on Android by using the NDK - Calling OpenGL from C on iOS, Sharing Common Code with Android In this post, we’ll also add support for emscripten, an LLVM-to-JavaScript compiler that can conv...
http://www.learnopengles.com/calling-opengl-from-c-on-the-web-by-using-emscripten-sharing-common-code-with-android-and-ios/
CC-MAIN-2018-39
refinedweb
1,309
63.19
Timers can be used for a great variety of tasks, like measuring time spans or being notified that a specific interval has elapsed. These two concepts are grouped into two different subclasses: Chrono: used to measure time spans. Alarm: to get interrupted after a specific interval. You can create as many of these object...
https://docs.pycom.io/firmwareapi/pycom/machine/timer/
CC-MAIN-2021-10
refinedweb
443
69.89
ZF-2544: Add message type as argument to FlashMessenger. Description Currently you can't specify what type of message you're sending with the FlashMessenger in Zend_Controller. It's just a message. I would like to be able to differentiate the messages I'm sending via FlashMessenger (e.g. error, warning, information, ti...
http://framework.zend.com/issues/browse/ZF-2544?focusedCommentId=43350&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel
CC-MAIN-2014-15
refinedweb
219
61.63
Last week we released our latest watch face for Android Wear, and it is a little bit special, it is the first done using something different from Java. It is entirely written in Kotlin. In this post I would like to share our experiences while building it and how doing in the language created by Jetbrains has improved t...
http://www.shellsec.com/news/6726.html
CC-MAIN-2017-09
refinedweb
1,360
67.38
An implementation of the Porter2 English stemming algorithm. Project description An implementation of the Porter2 English stemming algorithm. - Free software: BSD license - Documentation: What is stemming? Stemming is a technique used in Natural Language Processing to reduce different inflected forms of words to a sing...
https://pypi.org/project/porter2stemmer/
CC-MAIN-2019-51
refinedweb
297
67.86
Also, this codes seems to be much easier to understand and to calibrate the ranges for the flex sensors. So the code for the glove is as follows: // This will be the code for the glove. I got parts from two different existting glove codes. // One from Garbry295 on Instuctables and the other from dschurman from // instr...
http://bocabearingsworkshop.blogspot.com/2015/11/3d-printed-robotic-hand-part-7-last.html
CC-MAIN-2017-51
refinedweb
3,259
81.43
Moderators: SecretSquirrel, just brew it! Pauly wrote:Pascal's lovely. Everybody should learn Pascal before any other language... Entroper wrote:Pauly wrote:Pascal's lovely. Everybody should learn Pascal before any other language... Learned Pascal after I learned C/C++. It seemed cumbersome and impotent. Became easier ...
http://techreport.com/forums/viewtopic.php?f=20&t=3731
CC-MAIN-2016-18
refinedweb
165
69.18
Testing a class for correctness using Unit Tests means to exercise all methods of a class. This is especially easy for public methods. You can freely choose where to locate your test code, it always has access to public methods of the class. But how about internal/friend methods for example? They are only visible to te...
http://weblogs.asp.net/ralfw/archive/2006/04/14/442836.aspx
crawl-002
refinedweb
2,302
63.9
The Deque is similar to the double-ended queue that helps to add or remove elements from each end of the data structure. In this tutorial, we will discover & understand completely what is Deque interface, declaration, working of java deque, how to create a deque in java using classes that implement it, and its methods ...
https://btechgeeks.com/deque-in-java-with-example/
CC-MAIN-2021-31
refinedweb
903
64.3
Using Guardian OpenPlatform API Guardian Open Platform is a new API from The Guardian for accessing it's publications, news and articles. API is just HTTP REST, so it's very easy to use. Currently in beta - so when you register your app you will have to wait few days to be activated. Using the API you can search and ge...
https://rk.edu.pl/en/using-guardian-openplatform-api/
CC-MAIN-2021-31
refinedweb
242
56.69
Java 9 provides an interactive REPL tool to test code snippets rapidly without a test project or main method. So we can learn or evaluate Java features easily. In this tutorial, we’re gonna look at how to use Java 9 JShell – REPL. Contents I. Start JShell 1. Run We can run JShell by jshell command available at ${JAVA_H...
https://grokonez.com/java/java-9/java-9-jshell-repl
CC-MAIN-2021-31
refinedweb
343
63.9
I have a method in my class that uses an API to get data. Next I use JsonConvert.DeserializeObject to create another instance of the same class, then I copy the values to the object I'm in, which is where I wanted the values in the first place. Although this works just fine, it seems like there must be a better way to ...
https://codedump.io/share/CtG1pDs4p6Vj/1/deserialize-into-same-object-using-jsonconvert-c
CC-MAIN-2017-30
refinedweb
174
53.92
NAME mi_switch, cpu_switch, cpu_throw - switch to another thread context SYNOPSIS #include <sys/param.h> #include <sys/proc.h> void mi_switch(void); void cpu_switch(void); void cpu_throw(void); DESCRIPTION The mi_switch() function implements the machine independent prelude to a thread context switch. It is called from ...
http://manpages.ubuntu.com/manpages/hardy/man9/mi_switch.9.html
CC-MAIN-2013-48
refinedweb
529
67.89
Asynchronous programming is simplified so much with the release of .NetFramework 4.5 which introduced async and await keywords to write asynchronous methods. Prior to this, the .NetFramework had support for asynchronous programming but it was bit complicated to implement and understand. For example, there was Asynchron...
http://www.codedigest.com/quick-start/10/learn-asynchronous-programming-async-await-in-c-in-10-minutes
CC-MAIN-2017-22
refinedweb
1,267
55.84
Most discussion is on Typelevel Discord: extendsin the same project very similar code compiles without problems. I'll look further tomorrow. If I have an IO with a timeout: IO(somefn).timeout(100 millis) Is it possible for somefn to create an IO which doesnt get timed out? def somefn = { readDb >> computeSomething >> f...
https://gitter.im/typelevel/cats-effect?at=5daa34500ac62f4acd98c66e
CC-MAIN-2022-40
refinedweb
1,170
54.83
Hello everyone, I have had this problem for quite a while but never thought to come and ask on a forum. I just looked around because I thought it was a simple problem that required a key word in the coding or something. Turns out, I can't find any help anywhere. My problem is I want to turn a user specified graphic mad...
http://www.javaprogrammingforums.com/%20awt-java-swing/4626-convert-jframe-graphics-into-jpeg-file-printingthethread.html
CC-MAIN-2013-48
refinedweb
1,039
63.59
This document contains important information about the Sun StorageTek 5800 system, Version 1.0.1. Read this document so that you are aware of issues or requirements that can affect the installation and operation of the Sun StorageTek 5800 system. Use the upgrade command to upgrade the Sun StorageTek 5800 system cluster...
http://docs.oracle.com/cd/E19851-01/819-7553-11/relnotes_body.html
CC-MAIN-2015-22
refinedweb
5,793
60.75
IMAPClient introduction I gave a presentation introducting IMAPClient at the monthly Christchurch Python meetup on Thursday. It included a brief introduction to the IMAP protocol, the motivation for creating the IMAPClient package, some examples of how it compares to using imaplib from the standard library, and some di...
http://freshfoo.com/blog/tags/imapclient
CC-MAIN-2015-14
refinedweb
1,237
66.74
My love for stored procedures When I first started coding Oracle PL/SQL for my employer, I realised that I found myself back in medieval ages. A syntax reminding me of Ada and Pascal, ultra-strong typing, compilers that find compilation errors about 100'000 lines later, etc etc. I was young (OK I still am), full of vis...
http://www.theserverside.com/discussions/thread.tss?thread_id=61675
CC-MAIN-2016-50
refinedweb
1,305
54.73
A minimal, modular, client side application framework. Tinyapp is a simple event-driven client-side JavaScript application architecture and module management framework that serves the following needs: Tinyapp is based on Applitude: Simple module management. View the slideshow: "Introducing Applitude: Simple Module Mana...
https://www.npmjs.com/package/tinyapp
CC-MAIN-2017-09
refinedweb
1,253
51.34
Let's start with understanding the interpreted nature of python. Unlike C/C++ etc, Python is an interpreted object-oriented programming language. By interpreted it is meant that each time a program is run the interpreter checks through the code for errors and then interprets the instructions into machine-readable bytec...
https://www.studytonight.com/network-programming-in-python/interpreted-and-interactive-python
CC-MAIN-2022-05
refinedweb
409
53.41
GET method. 36 * <p> 37 * The HTTP GET method is defined in section 9.3 of 38 * <a href="">RFC2616</a>: 39 * <blockquote> 40 * The GET method means retrieve whatever information (in the form of an 41 * entity) is identified by the Request-URI. If the Request-URI refers 42 * to a data-producing process, it is the produ...
http://hc.apache.org/httpcomponents-client-4.3.x/httpclient/xref/org/apache/http/client/methods/HttpGet.html
CC-MAIN-2015-35
refinedweb
175
64.95
I'm working on an application whose workflow is managed by passing messages in SQS, using boto. My SQS queue is growing gradually, and I have no way to check how many elements it is supposed to contain. Now I have a daemon that periodically polls the queue, and checks if i have a fixed-size set of elements. For example...
https://codedump.io/share/JUsRH12cidKF/1/how-to-get-all-messages-in-amazon-sqs-queue-using-boto-library-in-python
CC-MAIN-2017-47
refinedweb
151
57.16
Your source for hot information on Microsoft SharePoint Portal Server and Windows SharePoint Services ******* REMOVED SOME HARSH WORDS ON THE SESSION ******* I took some notes, and augmented it with some of my own thoughts and information. ------- SharePoint Online provides:Managed Services on the net- No server deploy...
http://weblogs.asp.net/soever/archive/2008/10/27/notes-from-pdc-session-extending-sharepoint-online.aspx
crawl-002
refinedweb
683
61.77
Recently,. Let’s say you created new file Math.re. Boom, you have a new module in your app called Math. By convention, all filenames are capitalized to match module name. You can name file math.re but module name is still capitalized: Math. If you create a type or a function or whatever inside your module it’s automati...
https://alexfedoseev.com/2018/reasonml-modules
CC-MAIN-2018-51
refinedweb
161
62.24
The. RenamespaceTask.java. renameFile dojo.js. djConfig. Greg, would this mean I would be able to use jMaki also within the AjaxTableContainerProvider of Sun Java System Portal Server 7.1 u1, which relies on Dojo 0.3.1? -Christian Posted by: knothec on August 11, 2007 at 11:40 AM Hi, Yes you could use them together. Th...
http://weblogs.java.net/blog/gmurray71/archive/2007/08/renamespacing_d.html
crawl-002
refinedweb
130
67.76
Primitives Primitives are the built-in object types that all other objects are composed from. They can be created through literals, atomic expressions that evaluate to a value. All primitive values in Magpie are immutable. That means that once created, they cannot be changed. 3 is always 3 and "hi" is always "hi". Bool...
http://magpie.stuffwithstuff.com/primitives.html
CC-MAIN-2017-30
refinedweb
503
74.49
51589/query-regarding" ^ You can perform this task in two ways as below,, Hope this helps! If you want to know more about Apache Spark Scala, It's highly recommended to go for Spark certification course today. Thanks!! 1) Use the concat() function. Refer to the below ...READ MORE You can use this: lines = sc.textFile(“...
https://www.edureka.co/community/51589/query-regarding-appending-to-a-string-in-scala
CC-MAIN-2022-33
refinedweb
134
68.16
Java 2 Software Development Kit Since its introduction four years ago, Sun's Java technology has appeared on nearly every size and type of computer system, from IBM's MVS-powered mainframes to 3Com's Palm organizers. New versions of the Java Development Kit and Java Virtual Machine are available first on Sun's systems ...
http://www.linuxjournal.com/article/3424?quicktabs_1=1
CC-MAIN-2014-49
refinedweb
718
54.22
Hello, I've got a problem with APM and Raptor 50 heli I trying to set up APM on Raptor 50 with Glow engine. I connect my JR RC control to APM next variant: RC APM rx in out 1 trotle(pitch) ----> 3 3 2 ailer ----> 1 1 3 elevator ----> 2 2 4 rudder ----> 4 4 my transmitter sets up in "airoplane mode" The essence of the p...
http://diydrones.com/forum/topics/problems-with-apm-and-raptor-50?commentId=705844%3AComment%3A787761&xg_source=activity
CC-MAIN-2013-48
refinedweb
1,288
73.78
question about how to Search for custom text in the ListView By nacerbaaziz, in AutoIt General Help and Support Recommended Posts Similar Content - AndyS19 I'm trying to implement a Ctl-F popup box that looks something like the one that Notepad uses, but I'm not havine much luck. I intend to get it working, then beef u...
https://www.autoitscript.com/forum/topic/192393-question-about-how-to-search-for-custom-text-in-the-listview/?tab=comments
CC-MAIN-2018-51
refinedweb
480
52.63
iPcMovable Struct ReferenceControl moving an iPcMesh. More... #include <propclass/move.h> Inheritance diagram for iPcMovable: Detailed DescriptionControl moving an iPcMesh. Definition at line 44 of file move.h. Member Function Documentation Add a constraint. Get the current mesh on which we're working. Relative move. C...
http://crystalspace3d.org/cel/docs/online/api-1.2/structiPcMovable.html
CC-MAIN-2014-42
refinedweb
164
55
pwauth - authenticator for mod_authnz_external and the Apache HTTP Daemon pwauth Pwauth is an authenticator designed to be used with mod_auth_external or mod_authnz_external and the Apache HTTP Daemon to support reasonably secure web authentication out of the system password database on most versions of Unix. Particula...
http://huge-man-linux.net/man8/pwauth.html
CC-MAIN-2017-26
refinedweb
390
67.65
daily, paycheck, saverate, loanrate, one per line. If there is no file with the inputted name, the program should print out an error message and return 1 instead of zero. If any one of the above values is missing in the input file or has a negative value, the program should print an error message and return 2 instead o...
https://www.usna.edu/Users/cs/wcbrown/courses/F14IC210/project/p01/
CC-MAIN-2018-22
refinedweb
487
66.33
In this tutorial, you will learn how to create your first Web API in ASP.Net Core 2. You will also learn how to deploy your first ASP.Net Core Web API and how to install it on your live server. In addition, I will also demonstrate on how to consume those ASP.Net Core Web APIs using Postman program. Let's get started wi...
https://bytutorial.com/blogs/asp-net-core/how-to-create-your-first-web-api-in-aspnet-core-2
CC-MAIN-2021-04
refinedweb
1,159
61.43
This section describes how to unpack, make, and run LAMMPS, for both new and experienced users.2.1 What's in the LAMMPS distribution When you download LAMMPS you will need to unzip and untar the downloaded file with the following commands, after placing the file in an appropriate directory. gunzip lammps*.tar.gz tar xv...
http://lammps.sandia.gov/doc/Section_start.html
crawl-001
refinedweb
3,076
65.01
posix_mem_offset - find offset and length of a mapped typed memory block (ADVANCED REALTIME) [TYM] #include <sys/mman.h>#include <sys/mman.h> int posix_mem_offset(const void *restrict addr, size_t len, off_t *restrict off, size_t *restrict contig_len, int *restrict fildes);. Upon successful completion, the posix_mem_of...
https://pubs.opengroup.org/onlinepubs/007904875/functions/posix_mem_offset.html
CC-MAIN-2020-29
refinedweb
122
57.47
Here. Fortunately, Dojo’s complex implementation came to the rescue. Dojo injects quite a lot of extra markup around its buttons; in particular the buttons are wrapped with spans. So it occurred to me that I could attach the tooltip to one of the wrappers instead of the button itself. Then even if the button were disab...
https://thunderguy.com/semicolon/2009/05/23/tooltips-on-disabled-buttons-with-dojo/
CC-MAIN-2018-51
refinedweb
599
65.62
NDKshell variable to point to the location of your NDK installation and then in your working dir issue the following command: $NDK/build/tools/make-standalone-toolchain.sh --platform=android-8 --install-dir=./ndk-toolchainReplace android-8with the desired version for your app. Such prepared toolchain targets arm arch (...
http://morgwai.pl/ndkTutorial/
CC-MAIN-2019-18
refinedweb
1,465
50.23
MQTT In the previous tutorial you have learned how to set up and use the ESP8266 chip to collect data from your sensors, connect to the internet over Wi-Fi and send those values to Thingspeak over HTTP protocol. Also, you have seen how you can graph that data, and how you can extend your system with some features that ...
https://tuts.codingo.me/mqtt-and-esp8266
CC-MAIN-2017-51
refinedweb
1,281
66.74
) 200718 * the Initial Developer. All Rights Reserved.19 * 20 * Contributor(s):21 * Felix Gnass [fgnass at neteye dot de]22 * 23 * ***** END LICENSE BLOCK ***** */24 package org.riotfamily.pages;25 26 /**27 * Alias for a page. Aliases are created whenever a page (or one of it's 28 * ancestors) is renamed or moved.29 *3...
http://kickjava.com/src/org/riotfamily/pages/PageAlias.java.htm
CC-MAIN-2018-05
refinedweb
186
60.21
transaction failed" using injected JavaBeanDaniel Roth Nov 27, 2007 8:03 AM Hi all, I have struggled some time with a problem I get when trying to persist some objects. I use the exact same setup as jboss-seam-jpa running om tomcat6 without jboss embedded. (JavaBean an POJO:s). Persisting an object with @Name("register...
https://developer.jboss.org/thread/140113
CC-MAIN-2018-13
refinedweb
282
59.4
Debug Assertion failed error while using an mfc dll via import library in an managed console application - Wednesday, March 25, 2009 4:38 AMI have compiled the libtorrent library in an Visual Studio 2008 mfc dll project. I want to use this dll via an import library in a managed exe console application also developed in...
http://social.msdn.microsoft.com/Forums/en-US/vcgeneral/thread/ec0ce12e-d54d-4b6a-944e-62dd8bb76b7d
CC-MAIN-2013-20
refinedweb
1,272
65.12
It should not be easy to master a language, but it should not be difficult to simply master some usage and use it. Scala and java have many commonalities. From the perspective of Java, it should be easy to enter Scala. Configuring the Scala environment Here I configure Scala version 2.11.8 1. First, configure the local...
https://programmer.help/blogs/simple-introduction-to-scala.html
CC-MAIN-2021-49
refinedweb
1,386
50.46
Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM! #include <wx/wx.h>#include <wx/log.h>#include <wx/intl.h>#include <whatever.h> EDIT:And another thing possible...It may actually be that CVS is working *properly*. Check the editor which you are using under Lin...
http://forums.codeblocks.org/index.php?topic=845.msg5945
CC-MAIN-2019-51
refinedweb
277
64.81
by Michael S. Kaplan, published on 2005/09/18 16:01 -04:00, original URI: Prior posts in the series: Extending collation support in SQL Server and Jet, Part 0 (HISTORY) Extending collation support in SQL Server and Jet, Part 1 (the broad strokes) Okay, let's dig into some details, now. :-) If you look back to June when...
http://archives.miloush.net/michkap/archive/2005/09/18/470869.html
CC-MAIN-2017-13
refinedweb
747
59.13
CHKHELP(1) General Commands Manual CHKHELP(1) chkhelp - check performance metrics help text files $PCP_BINADM_DIR/chkhelp [-eHiOp] [-n pmnsfile] [-v version] helpfile [metricname ...] chkhelp checks the consistency of Performance Co-Pilot help text files generated by newhelp(1) and used by Performance Metric Domain Age...
http://man7.org/linux/man-pages/man1/chkhelp.1.html
CC-MAIN-2017-47
refinedweb
370
54.63
How about starting a campaign to grow and develop the community around ? *Edward Saperia* Conference Director Wikimania London <> email <e...@wikimanialondon.org> • facebook <> • twitter <> • 07796955572 133-135 Bethnal Green Road, E2 7DG On 26 August 2014 13:03, svetlana <svetl...@fastmail.com.au> wrote: > Hi, > > Dav...
https://www.mail-archive.com/wikimedia-l@lists.wikimedia.org/msg14188.html
CC-MAIN-2022-05
refinedweb
366
66.23
23 July 2009 09:44 [Source: ICIS news] GUANGZHOU (ICIS news)--?xml:namespace> The prosperity index for the oil and gas-exploration industry increased 17 points from the first quarter to 153.5 points in the second quarter, while the chemical industry rose 13.3 points to 99.4 points. The figures were published in a joint...
http://www.icis.com/Articles/2009/07/23/9234393/china-petchems-move-up-on-prosperity-index-in-second.html
CC-MAIN-2014-10
refinedweb
238
67.55
RTSP communication problem Hi, It is my first question in this forum, after looking for a long time any solution. I'm using python 2.7 with OPENCV '2.4.13' (I already tried with 3.1) and I can't open streams. I already solved the ffmpeg problem (dll) and tried to run the local camera and after a local video with succes...
https://answers.opencv.org/question/113185/rtsp-communication-problem/
CC-MAIN-2019-39
refinedweb
243
70.6
#include <db.h> int db_env_create(DB_ENV **dbenvp, u_int32_t flags); The db_env_create function creates a DB_ENV structure that is the handle for a Berkeley DB environment. A pointer to this structure is returned in the memory to which dbenvp refers. The flags value must be set to 0 or the following value: The DB_CLIEN...
http://pybsddb.sourceforge.net/api_c/env_create.html
crawl-001
refinedweb
161
62.27
@GolamMostafa, Serial.read() returns an int, not a byte. So you should store it in an int and rerun your tests. Serial.read() returns an int, not a byte. Does it mean that the serial FIFO buffer is word oriented? If so, it agrees with our good old days’ knowledge of UART Port of IBMPC. The upper 8-bit of the return val...
https://forum.arduino.cc/t/understanding-serial-available/524713?page=2
CC-MAIN-2021-31
refinedweb
420
78.04
Like any network client library, libmongoc cannot be fully tested as a black box. Traditional black box tests enter some input and check the output—this only validates one side of the system at a time. But libmongoc has two sides, working in concert. One side is its public API, its structs and functions and so on. The ...
https://dzone.com/articles/black-pipe-testing-a-connected-application-in-c
CC-MAIN-2017-09
refinedweb
1,182
53.71
Aflați mai multe despre abonamentul Scribd Descoperiți tot ce are Scribd de oferit, inclusiv cărți și cărți audio de la editori majori. Documentation Release 0.5.0 Multiple authors 1 Introduction 3 1.1 Hello, World! . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 1.2 Imag...
https://ro.scribd.com/document/388379476/BBC-micro-bit-MicroPython
CC-MAIN-2020-16
refinedweb
17,915
57.87
Let me first discuss how to construct the matrix of distances between a set of vectors \{v_i\}. The idea is, obviously, to use the fact that the p-distance between two vectors is given by the formula d_p(v_1,v_2) = \|v_1-v_2\|_p = \left(\sum_k (v^k_1-v^k_2)^p\right)^{1/p} For the Euclidean distance $p=2$ and we have \|...
http://lapulm.blogspot.com/2011/07/networks-with-distance-dependent.html
CC-MAIN-2016-40
refinedweb
287
56.96
jGuru Forums Posted By: Rick_Bradshaw Posted On: Thursday, March 21, 2002 03:20 PM I would like to host XML and XSL files with Tomcat as in so myself and others can use valid URI's for our XML development (namespaces, schemas, xsl's too). I have tried adding xml files to /ROOT and they are not found when I type in the ...
http://www.jguru.com/forums/view.jsp?EID=807147
CC-MAIN-2015-48
refinedweb
101
72.5
Type classes Type classes are a powerful tool used in functional programming to enable ad-hoc polymorphism, more commonly known as overloading. Where many object-oriented languages leverage subtyping for polymorphic code, functional programming tends towards a combination of parametric polymorphism (think type paramete...
https://typelevel.org/cats/typeclasses.html
CC-MAIN-2019-13
refinedweb
1,330
52.49
Fragmented reading: Here I just briefly summarize the following basic syntax. Because I have experience in java development before, I haven't written some knowledge points. If I want to learn pyhton in detail, I suggest to see the rookie tutorial. Learning the basic grammar of python 1. Mark coding method # -*- coding:...
https://programmer.help/blogs/python-basic-abridged-edition.html
CC-MAIN-2022-21
refinedweb
2,606
61.97