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
There are some great Internet of Things hardware platforms, such as Raspberry Pi’s, ESP-32 based Arduino modules, Particle and Beaglebone to name just a few. Each of these systems have their strengths and weakness. Some are strong on the hardware side, like the Arduino modules, and others excel on the programming side ...
https://funprojects.blog/2019/11/22/arduino-yun-for-iot/
CC-MAIN-2022-40
refinedweb
1,870
61.16
Trade-Seafood Industry Directory | Trade Seafood Directory | Companies by Species | Fish Directory | Seafood & Fish List | Companies by Country | ADD YOUR COMPANY | Sea-Ex is celebrating 21 YEARS of assisting Seafood & Marine Companies with online marketing! Get Your Highlighted Members Listing - Click for details Expo...
http://www.trade-seafood.com/directory/seafood/shells-wholesalers.htm
CC-MAIN-2018-30
refinedweb
370
56.79
The Message Passing Interface (MPI) Standard defines a message passing library, which serves as the basis for many high-performance computing applications today. It provides portable scalable functions for data exchange in parallel computations for various parallel computing architectures. Originally application progra...
https://www.numbercrunch.de/blog/2015/08/mpl-a-message-passing-library/
CC-MAIN-2021-04
refinedweb
1,364
53.31
My system is composed of a L298 (H-bridge to generate de square wave signal for the J1772) and a ADS1115 (an ADC to read the high level of the square wave signal). My problem start when I execute the code and I don't get a frequency of 1 kHz for the square wave signal. This is due to the fact that the part of the code ...
https://www.raspberrypi.org/forums/viewtopic.php?f=32&t=242651&p=1480282
CC-MAIN-2019-30
refinedweb
496
70.09
I will try to be as thorough as possible in describing the problem here, but the task at hand is a peculiar one so I may miss something. let me know if it is unclear. So, I am working on a CFD code. I am still new to programming, so the part I have been given to work on is relatively easy: Given a field of points, I am...
http://cboard.cprogramming.com/cplusplus-programming/140150-trouble-algorithm-find-edges.html
CC-MAIN-2013-48
refinedweb
712
59.77
Refactor api v2 schemas In the glance v2 api, schemas are used to communicate the expected format and attributes of image objects, access record objects, and image tags. These schemas are specific to v2. They are not used by v1 and would likely be changed in any future version. However, they presently live in project-g...
https://blueprints.launchpad.net/glance/+spec/api-v2-refactor-schemas
CC-MAIN-2022-21
refinedweb
145
64.1
! Evan Caballero Ranch Hand 60 2 Threads 0 Cows since Dec 10, 2009 Merit Badge info Cows and Likes Cows Total received 0 In last 30 days 0 Total given 0 Likes Total received 1 Received in last 30 days 0 Total given 0 Given in last 30 days 0 Forums and Threads Scavenger Hunt Ranch Hand Scavenger Hunt Number Posts (60/10...
https://www.coderanch.com/u/219240/Evan-Caballero
CC-MAIN-2020-40
refinedweb
1,134
58.11
- Author: - jezdez - Posted: - January 31, 2008 - Language: - Python - Version: - .96 - settings import reusable apps applications - Score: - 3 (after 5 ratings) Use this snippet at the end of your main settings.py file to automagically import the settings defined in each app of INSTALLED_APPS that begins with APPS_BAS...
https://djangosnippets.org/snippets/573/
CC-MAIN-2017-04
refinedweb
153
60.31
What to Expect from Yii 2.0By Arno Slatius. A tiny bit of history The first version of Yii became popular quite fast after it was released in 2008. It’s founder, Qiang Xue, previously worked on the Prado framework and used experience and feedback from that to build Yii. Yii uses many ideas from other frameworks, langua...
https://www.sitepoint.com/expect-yii-2-0/
CC-MAIN-2016-50
refinedweb
2,442
57.87
A. If you have used Visual Studio for a while, you have probably run across some of the standard code snippets - you may even be using them intentionally all the time. Today we are going to look at first how to use snippets in your code (really easy to do), and then we are going to take a look at how you can write your...
http://tech.pro/tutorial/709/csharp-tutorial-visual-studio-code-snippets
CC-MAIN-2013-48
refinedweb
1,795
70.23
Contributed by Paul Grech. He took NYC Data Science Academy 12 week full time Data Science Bootcamp pr... between Sept 23 to Dec 18, 2015. The post was based on his third class project(due at 6th week of the program). Along with being an electrical engineer and now attending NYCDSA 12 week Data Science bootcamp to beco...
https://www.datasciencecentral.com/profiles/blogs/web-scraping-for-new-business
CC-MAIN-2019-51
refinedweb
1,765
59.13
Number 19 of 20: per-thread p-tools By ahl on Aug 06, 2004 (the associated file, shmid, etc.). pldd(1) is another example; it shows which shared objects a process has opened. Other p-tools apply to the threads in a process. The pstack(1) utility shows the call stacks for each thread in a process. New in Solaris 10 Eric...
https://blogs.oracle.com/ahl/entry/number_19_of_20_per
CC-MAIN-2015-40
refinedweb
831
64.78
Summary: To match a pattern in a given text using only a single line of Python code, use the one-liner import re; print(re.findall(pattern, text)) that imports the regular expression library re and prints the result of the findall() function to the shell. Problem: Given a string and a regular expression pattern. Match ...
https://blog.finxter.com/python-one-line-regex-match/
CC-MAIN-2020-40
refinedweb
499
76.62
Details Description Greg, hello: 1) in this example you say: "Note that this example makes use of the global resource cache to store the loaded images." 2) which reminds of the "java evil singleton pattern" and the consensus seems to be: "Singletons are fine as long as you don't implement them with static" 3) and pivot...
https://issues.apache.org/jira/browse/PIVOT-743
CC-MAIN-2017-47
refinedweb
1,471
52.09
Home >>C++ Tutorial >C++ Comments The statements that are not executed by the compiler are known as the C++ comments. In order to provide the explanation of the variable, method, code or class, the comments in the C++ programming is used. The user can hide the program with the help of C++ comments. There are generally ...
http://www.phptpoint.com/cpp-comments/
CC-MAIN-2021-10
refinedweb
169
59.13
A conflict that has come up a few times is using composition and a pass through or a base class I favor pass through; I write it that way Everytime. The other engineer on the project favors a base class. Here's an example of what we've encountered a few times in the project at work. public class CacheFoo : IFoo{ privat...
https://quinngil.com/2018/04/22/my-thoughts-pass-through-vs-base-class/
CC-MAIN-2020-29
refinedweb
495
75.3
it was solved. The issue Quoting the Lighthouse ticket, imagine the following scenario in Rails 2.3: class) To understand why it does not work, let’s take a look at the source code! Investigating the issue With Active Relation, Active Record is no longer responsible to build queries. That said, ActiveRecord::Base is n...
http://blog.plataformatec.com.br/2010/07/new-active-record-scoping-syntax/
CC-MAIN-2020-16
refinedweb
1,171
63.39
Welcome to std2 ATTENTION: Due to the advances in the D2 compiler, and also to increased and more advanced usage of D2 features the standard library, as of DMD 2.011 I find that it is quite difficult to backport D2 code to D1, and it looks like it will not be possible without spending huge amounts of time on it. So I'm...
http://www.dsource.org/projects/std2
CC-MAIN-2016-18
refinedweb
575
70.5
NAME kqueue_add_filteropts, kqueue_del_filteropts, kqfd_register, knote_fdclose, knlist_add, knlist_remove, knlist_remove_inevent, knlist_empty, knlist_init, knlist_destroy, knlist_clear, knlist_delete, KNOTE_LOCKED, KNOTE_UNLOCKED - event delivery subsystem SYNOPSIS #include <sys/event.h> int kqueue_add_filteropts(int...
http://manpages.ubuntu.com/manpages/maverick/man9/knlist_clear.9freebsd.html
CC-MAIN-2014-41
refinedweb
581
60.85
GTK (GIMP Toolkit) is a library for creating graphical user interfaces. It is licensed using the LGPL license, so you can develop open software, free software, or even commercial non-free software using GTK without having to spend anything for licenses or royalties. Gtk# is a binding for mono to this great toolkit, tha...
http://www.codeproject.com/Articles/9308/A-google-search-application-using-Gtk?fid=144212&df=10000&mpp=10&sort=Position&spc=None&tid=2294309
CC-MAIN-2013-20
refinedweb
1,473
61.02
As I mentioned a few days ago, I chose JScript to script of the optimized PHP build process that I’ve built. JScript in-box on pretty much every modern Windows operating system, and provides a great deal of flexibility and benefits for a scripting language: - it’s syntax is C like. Very tasty. - it gives access to *a l...
https://blogs.msdn.microsoft.com/garretts/2009/05/08/using-jscript-as-a-batch-scripting-language-part-i/
CC-MAIN-2017-47
refinedweb
672
57.06
Querying a database is sometimes best done with hand-written SQL. Of course the trick is to find a way to avoid syntax and type errors at run time. This post will look at how Slick and doobie approach this problem. To keep things simple, we’re just going to look at one SQL statement: select "content" from "message" The...
http://underscore.io/blog/posts/2015/05/28/typechecking-sql.html
CC-MAIN-2017-26
refinedweb
1,606
61.56
Details Description CalciteSchema by default uses cache to store table, sub-schema, function. This would work perfectly for schema-based system, yet would create problem for Drill, which dynamically explore the schema on the fly during query execution. One solution is to refactor CalciteSchema and make it as an interfa...
https://issues.apache.org/jira/browse/CALCITE-911
CC-MAIN-2017-43
refinedweb
2,457
64.91
Myths About Code Comments timothy posted more than 4 years ago | from the myth-conceptions dept. . (5, Insightful) yog (19073) | more than 4 years ago | (#30616696). (3, Insightful) Brian Gordon (987471) | more than 4 years ago | (#30616736). Re:One person's myth is another person's fact. (0) Anonymous Coward | more th...
http://beta.slashdot.org/story/129290
CC-MAIN-2014-42
refinedweb
4,320
70.33
Back to: Python Tutorials For Beginners and Professionals Input and Output in Python In this article, I am going to discuss Input and Output in Python with examples. Please read our previous article where we discussed Operators in Python with examples. At the end of this article, you will understand the following point...
https://dotnettutorials.net/lesson/input-and-output-in-python/
CC-MAIN-2020-29
refinedweb
1,542
61.06
Ticker Ticker class hierarchy Use the Ticker interface to set up a recurring interrupt; it calls a function repeatedly and at a specified rate. You can create any number of Ticker objects, allowing multiple outstanding interrupts at the same time. The function can be a static function, a member function of a particular...
https://os.mbed.com/docs/latest/apis/ticker.html
CC-MAIN-2018-47
refinedweb
315
63.49
Install and create a custom build of Openlayers library for Ember app. This is an Ember CLI addon for managing a custom build of Openlayers library. In order to install the addon just execute in the root of your Ember app: ember install ember-cli-openlayers-builder This will install the addon itself and the Openlayers ...
https://www.npmjs.com/package/ember-cli-openlayers-builder
CC-MAIN-2017-04
refinedweb
353
53.61
ioeric added a comment. Thanks for the review! Advertising ================ Comment at: clangd/index/Index.h:268 + virtual bool + getSymbol(const SymbolID &ID, + llvm::function_ref<void(const Symbol &)> Callback) const = 0; ---------------- sammccall wrote: > sammccall wrote: > > sammccall wrote: > > > Can we make this...
https://www.mail-archive.com/cfe-commits@lists.llvm.org/msg85711.html
CC-MAIN-2018-30
refinedweb
376
59.5
Function ecs_ensure_id Synopsis #include <include/flecs.h> FLECS_API void ecs_ensure_id(ecs_world_t *world, ecs_id_t id) Description Same as ecs_ensure, but for (component) ids. An id can be an entity or pair, and can contain id flags. This operation ensures that the entity (or entities, for a pair) are alive. When thi...
https://flecs.docsforge.com/master/api-c/ecs_ensure_id/
CC-MAIN-2022-40
refinedweb
142
57.77
J is hot and pn=.45 when he is not hot. Suppose Lisa can perfectly detect when he is hot, and when he is not. If Lisa predicts based on her perfect ability to detect when Bob is hot, what correlation would you expect? With that setup, I could only assume the correlation would be low. I did the simulation: > n <- 10000 ...
https://statmodeling.stat.columbia.edu/2016/12/19/30759/
CC-MAIN-2019-09
refinedweb
6,537
60.45
>>>>> "David" == David Gilbert <address@hidden> writes: David> Thanks, I missed that somehow. By the way, I'm not using emacs, and the David> original source has some tabs (which I'm sure I read should be avoided David> in Classpath), so how far should I indent each line here? Or since you David> didn't mention it, sho...
http://lists.gnu.org/archive/html/classpath-patches/2005-06/msg00150.html
CC-MAIN-2015-48
refinedweb
123
73.31
Please login Prime Prepinsta Prime Video courses for company/skill based Preparation (Check all courses)Get Prime Video Prime Prepinsta Prime Purchase mock tests for company/skill building (Check all mocks)Get Prime mock Binary Search in C++ What is binary search in C++? Binary search is another searching algorithm in ...
https://prepinsta.com/cpp-program/binary-search-program/
CC-MAIN-2020-45
refinedweb
578
59.64
What exactly is a unicode string? What's the difference between a regular string and unicode string? What is utf-8? I'm trying to learn Python right now, and I keep hearing this buzzword. What does the code below do? i18n Strings (Unicode) > ustring = u'A unicode \u018e string \xf1' > ustring u'A unicode \u018e string ...
https://codedump.io/share/sU9Dx9PSHEv5/1/what-is-a-unicode-string
CC-MAIN-2017-09
refinedweb
467
74.19
C++ Seasoning - Date: September 4, 2013 from 11:00AM to 12:15PM - Day 1 - 002 - Speakers: Sean Parent - 85,149 Views - 35 Comments Something went wrong getting user information from Channel 9 Something went wrong getting user information from MSDN Something went wrong getting the Visual Studio Achievements Right click ...
http://channel9.msdn.com/Events/GoingNative/2013/Cpp-Seasoning
CC-MAIN-2014-42
refinedweb
1,498
71.65
#include <mount_point.h> The mount_point class is used to represent a mount point parsed from a source file. Definition at line 28 of file mount_point.h. The destructor. It is not virtual, thou shalt not derive from this class. Definition at line 24 of file mount_point.cc. The constructor. Definition at line 29 of file...
http://nis-util.sourceforge.net/doxdoc/classmount__point.html
CC-MAIN-2018-05
refinedweb
258
68.57
Twisted: from: from . In many cases, the protocol only needs to connect to the server once, and the code just wants to get a connected instance of the protocol. In those cases twisted.internet.endpoints provides the appropriate API, and in particular connectProtocol which takes a protocol instance rather than a factory...
https://twistedmatrix.com/documents/current/core/howto/clients.html
CC-MAIN-2019-18
refinedweb
580
50.53
C++ Programming/Classes< C++ Programming ClassesEditEditEditEdit This label indicates any members within the 'public' section can be accessed freely anywhere a declared object is in scope. privateEditEdit The protected label has a special meaning to inheritance, protected members are accessible in the class that define...
https://en.m.wikibooks.org/wiki/C%2B%2B_Programming/Classes
CC-MAIN-2015-40
refinedweb
1,469
54.36
I created a background image bitmap for a view and now the view is being stretched to the size of the background image…. is this normal? <?xml version="1.0" encoding="utf-8"?> <bitmap xmlns: here’s how I apply it to my view v.setBackgroundResource(R.drawable.backgroundgreen); for instance… if the image is 500px in heig...
https://exceptionshub.com/android-setting-a-background-image-to-a-view-stretches-my-view.html
CC-MAIN-2021-10
refinedweb
910
57.27
NAME vga_imageblt - copy a rectangular pixmap from system memory to video memory SYNOPSIS #include <vga.h> void vga_imageblt(void *srcaddr, int destaddr, int w, int h, int pitch); DESCRIPTION Write a rectangular pixmap from system memory to video memory. destaddr is an offset into video memory (up to 2M). The pitch is ...
http://manpages.ubuntu.com/manpages/precise/man3/vga_imageblt.3.html
CC-MAIN-2017-17
refinedweb
123
62.58
Want more? Here are some additional resources on this topic: The System.Data.Common namespace provides generic classes for working with data. These classes are intended to give developers a way to write ADO.NET code that will work against all .NET Framework data providers. Provides an overview of the factory design pat...
http://msdn.microsoft.com/en-us/library/t9f29wbk(VS.80).aspx
crawl-002
refinedweb
128
61.93
The general form of an immediate function is: (function(){ //...})(); This defines a function as being the instructions between the curly brackets {} and then executes it immediately by ending it with the usual (). In this particular case we have two event handling function defined where we are invited to put our start...
http://i-programmer.info/ebooks/creating-javascripthtml5-metro-applications/4045-getting-started-with-metro-javascript.html?start=1
CC-MAIN-2014-42
refinedweb
702
59.13
). There are two main approaches in XML parsing: SAX and DOM. The SAX specification defines an event-based approach where the implemented parsers scan through XML data and they use call-back handlers whenever certain parts of the document have been reached. On the other hand, the DOM specification defines a tree-based ...
http://www.javacodegeeks.com/2010/11/boost-android-xml-parsing-xml-pull.html
CC-MAIN-2015-11
refinedweb
1,814
51.44
!news.sprintlink.net!Sprint!151.164.1.5!news1.rcsntx.swbell.net!news.pbi.net!hunter.premier.net!hammer.uoregon.edu!ais.net!howland.erols.net!blackbush.xlink.net!ka.sub.net!rz.uni-karlsruhe.de!not-for-mail From: ig25@fg70.rz.uni-karlsruhe.de (Thomas Koenig) Newsgroups: comp.graphics.apps.gnuplot,comp.answers,news.answer...
http://www.faqs.org/faqs/graphics/gnuplot-faq/
CC-MAIN-2014-41
refinedweb
6,900
67.86
Visualize Raw data¶ import os.path as op import numpy as np import mne data_path = op.join(mne.datasets.sample.data_path(), 'MEG', 'sample') raw = mne.io.read_raw_fif(op.join(data_path, 'sample_audvis_raw.fif'), preload=True) raw.set_eeg_reference('average', projection=True) # set EEG average reference Out:. Current co...
https://mne.tools/0.18/auto_tutorials/raw/plot_visualize_raw.html
CC-MAIN-2022-33
refinedweb
914
52.05
First of all thanks to Mediatek and Instructables for sending me one LinkIt ONE. It's really a great board and I've had a lot of fun playing with it. Now the project !!! The main idea is to make this little toy dinosaur watch for your chocolates. Teacher Notes Teachers! Did you use this instructable in your classroom? ...
https://www.instructables.com/id/Chocolate-bar-dinosaur-watcher/
CC-MAIN-2019-47
refinedweb
656
73.98
Last week saw London's OSGi Community Event, in conjunction with JAX London. The conference presentations covered a wide range of environments, from Java EE migrations and cloud computing, down to embedded devices and Android. Enterprise Java on OGSi There has been a big upswing in using OSGi on the server side in rece...
https://www.infoq.com/news/2010/10/osgice
CC-MAIN-2019-22
refinedweb
1,007
50.06
thanks - JSP-Servlet thanks thanks sir i am getting an output...Once again thanks for help thanks - Development process thanks thanks for sending code for connecting jsp with mysql. I have completed j2se(servlet,jsp and struts). I didn't get job then i have learnt.... please help me. thanks in advance thanks - JSP-Serv...
http://www.roseindia.net/tutorialhelp/comment/95232
CC-MAIN-2014-10
refinedweb
1,598
84.68
Test.QuickCheck.Parallel Description A parallel batch driver for running QuickCheck on threaded or SMP systems. See the Example.hs file for a complete overview. Synopsis Documentation module Test.QuickCheck pRun :: Int -> Int -> [Test] -> IO ()Source Run a list of QuickCheck properties in parallel chunks, using n Haske...
http://hackage.haskell.org/package/pqc-0.2/docs/Test-QuickCheck-Parallel.html
CC-MAIN-2018-05
refinedweb
130
66.03
Apollo-Angular 1.2 - using GraphQL in your apps just got a whole lot easier! Explore our services and get in touch. Check what’s new in Apollo Angular and how to get the full potential benefits of using Angular + GraphQL + TypeScript combined thanks to GraphQL-Code-Generator. We are very excited to announce a new versi...
https://the-guild.dev/blog/apollo-angular-12
CC-MAIN-2021-31
refinedweb
869
52.6
Introduction to Constructor and Destructor in Java The following article Constructor and Destructor in Java provides a detailed outline for the creation of constructor and destructor in Java. Every Programming language has this concept called constructor and destructor. Java is an object-oriented programming language. ...
https://www.educba.com/constructor-and-destructor-in-java/?source=leftnav
CC-MAIN-2020-34
refinedweb
1,093
56.66
This is a project I've actually had "lying around" for some time (at least in conceptual form) but time constraints prevented me from fully exploring it until now. Actually what sparked my interest was reading about the IPC Channel that's new in .NET 2.0 for Remoting, and how much faster it is than the HTTP or TCP Chan...
http://www.nullskull.com/articles/20060404.asp
CC-MAIN-2014-15
refinedweb
1,667
52.29
I have created several custom Dynamic properties for a Win control. They are written to .config file. config file is a XML based file. I could edit that file in a Text Editor and the changed values shows up in the app. There are functions to read from config file. There are functions in System.configuration namespace t...
http://forums.devx.com/showthread.php?55077-Need-to-Convert-a-Hex-string-to-a-Hex-number&goto=nextnewest
CC-MAIN-2018-17
refinedweb
103
62.95
This module defines functions and classes which implement a flexible error logging system for applications. Logging is performed by calling methods on instances of the Logger class (hereafter called loggers). Each instance has a name, and they are conceptually arranged in a namespace/logging_rotatingfile_example.out, a...
https://docs.python.org/3.0/library/logging.html
CC-MAIN-2017-43
refinedweb
338
56.96
Lead Image © cepixx, 123RF.com Safeguard and scale containers Herding Containers Since the release of Docker [1] three years ago, containers have not only been a perennial favorite in the Linux universe, but native ports for Windows and OS X also garner great interest. Where developers were initially only interested in...
https://www.admin-magazine.com/Articles/Safeguard-and-scale-containers
CC-MAIN-2020-45
refinedweb
776
52.9
Talk:Japan From Progteam Latest revision as of 17:50, 25 March 2008 Ok, so I'm not quite sure I follow the idea given below. I've taken a different route, which isn't as efficient, but was easier for me to understand. By modifying mergesort I was able to do inversion counting in O(nlogn) time, which is now fast enough ...
http://cs.nyu.edu/~icpc/wiki/index.php?title=Talk:Japan&diff=prev&oldid=6799
CC-MAIN-2014-15
refinedweb
764
83.76
This is the mail archive of the cygwin-patches@cygwin.com mailing list for the Cygwin project. > > >Perhaps you would prefer this better. I changed the ifdef to be > > >feature-centric as opposed to project-centric. Perhaps this is a little > > >more to your liking? > > > <snip> > > > I don't understand why the project...
https://sourceware.org/legacy-ml/cygwin-patches/2002-q3/msg00171.html
CC-MAIN-2022-21
refinedweb
474
54.52
File::Util - Easy, versatile, portable file handling version 4.161950 File: } ); You can do much more with File::Util than the examples above. For an explanation of all the features available to you, take a look at these other reference materials: The File::Util::Manual::Examples document has a long list of small, reus...
http://search.cpan.org/~tommy/File-Util/lib/File/Util.pm
CC-MAIN-2017-51
refinedweb
445
53
Because shared files are widely distributed across networks, administrators face growing problems as they try to keep users connected to the data they need. The Distributed File System (Dfs) in the Microsoft Windows® 2000 operating system provides a mechanism for administrators to create logical views of directories an...
http://technet.microsoft.com/en-us/library/bb727150.aspx
crawl-002
refinedweb
1,683
63.59
On Wed, Jan 16, 2008 at 12:44:00PM +0100, Frans Pop wrote: > Until I read this paragraph I was thinking that the initial proposals should > maybe be announced on d-d-a so that at least all DDs could be informed > about the proposal. I'm still unsure whether that would not be a good idea > or not. > Even if d-project is...
https://lists.debian.org/debian-project/2008/01/msg00069.html
CC-MAIN-2014-15
refinedweb
240
63.46
ooOOpsie sorry cedet-semantic'ers Mistakenly sent that to Eric only. Here it is. =2D--------- Forwarded Message ---------- Subject: Re: [cedet-semantic] semanticdb-create-system-database saving blank Date: January 27, 2005 11:48 pm =46rom: Fran=E7ois-Denis Gonthier <neumann@...> To: "Eric M. Ludlam" <eric@...> On Janua...
https://sourceforge.net/p/cedet/mailman/message/3566652/
CC-MAIN-2018-17
refinedweb
214
75.5
#include <hallo.h> * Mario Lang [Fri, Sep 20 2002, 12:58:11AM]: > > I modified the boot-floppies to make it possible to install on a system > > having only an external USB floppy drive. > > Thanks alot! I used this method today to install my new JVC MP-XP7210DE, > and it worked more or less flawlessly. Nice. > What did...
http://lists.debian.org/debian-boot/2002/09/msg00578.html
CC-MAIN-2013-48
refinedweb
173
70.13
Opened 3 years ago Last modified 3 years ago #25947 new Bug Query's str() method fails when 'default' database is empty Description (last modified by ) According to the docs, we can have default database...[with]...parameters dictionary...blank if it will not be used. However, when trying to print a query with somethin...
https://code.djangoproject.com/ticket/25947
CC-MAIN-2019-04
refinedweb
420
59.09
Features/Sugar3 Docs/How To Write This will guide you through how to write docs for a module in sugar3. There are 5 easy steps to writing the documentation, and 3 bonus steps for getting it merged. Example patch: or How To Guide 1. Write a code example for using the code. Try to write a stand alone python script that d...
http://wiki.sugarlabs.org/go/Features/Sugar3Docs/HowToWrite
CC-MAIN-2020-45
refinedweb
712
67.65
I’m trying to install TensorRT 5 from the tar file on Ubuntu 16.04, with CUDA 9.0 and cuDNN 7.3.1. Once I pip installed the wheels file, I tried import tensorrt in a python shell, but get Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/local/anaconda3/lib/python3.6/site-packages/tensor...
https://forums.developer.nvidia.com/t/tensorrt-import-undefined-symbol/66518
CC-MAIN-2021-43
refinedweb
123
59.3
My Google-fu isn’t good enough for this one. For Learn Python3 The Hard Way Exercise 23, under Breaking It: 3) I sort of got that bit to work, but I had to cheat and put the actual byte string in the script and break the loop. Like so: Some Terrible Code import sys script, input_encoding, error = sys.argv def main(lang...
https://forum.learncodethehardway.com/t/solved-lpthw3-exercise-23-extra-credit-3-reverse-script/71
CC-MAIN-2022-40
refinedweb
381
60.85
Text files are not the only type of flat files you can use. You can also use binary files. Binary files are still flat files; however, they are in basic binary format rather than ASCII. Remember that everything in a computer is binary (1’s and 0’s). The binary format has each file stored in a byte-by-byte format. This ...
https://flylib.com/books/en/2.331.1.54/1/
CC-MAIN-2021-25
refinedweb
434
76.11
creating global constant using strcatIt's easy if you use std::string. [code]const std::string str1 = "ABC"; const std::string str2 = "D... Question about class member function initialization...You misspelled ConstructLine on line 10. UDP messages lost[quote]My sender program connects to its own IP-addres[/quote] Inste...
http://www.cplusplus.com/user/Peter87/
CC-MAIN-2016-44
refinedweb
110
53.07
This is the mail archive of the libstdc++@sources.redhat.com mailing list for the libstdc++ project. On Fri, Sep 22, 2000 at 11:00:24AM -0700, Steven King wrote: > > This wont compile with the current library because one of the headers > indirectly #included from locale is iconv.h which defines a function iconv. > This...
http://gcc.gnu.org/ml/libstdc++/2000-09/msg00070.html
crawl-001
refinedweb
323
74.49
What will we cover in this tutorial A high level view of the differences of NumPy and Pandas libraries in Python. We will also make a short exploration of the performance differences in a specific use case. Top level differences between NumPy and Pandas First of all, the purpose of these libraries are different. - NumP...
https://www.learnpythonwithrune.org/numpy-vs-pandas/
CC-MAIN-2021-25
refinedweb
347
66.94
The QGridLayout class lays out widgets in a grid. More... #include <qlayout.h> Inherits QLayout. List of all member functions. The QGridLayout class lays out widgets in a grid. QGridLayout takes the space made available to it (by its parent layout or by the main addColSpacing() and the minimum width of each widget in t...
http://doc.trolltech.com/3.3/qgridlayout.html
crawl-002
refinedweb
795
53.27
The Files class in JDK has a getAttribute() that accepts a Path object and returns a specified attribute. import java.nio.file.Files import java.nio.file.Paths fun main(args: Array<String>) { val path = if (args.isEmpty()) { Paths.get(System.getProperty("user.dir")) } else { Paths.get(args[0]) } if(Files.isDirectory(pa...
https://stonesoupprogramming.com/2017/12/01/koltin-files-getattribute/
CC-MAIN-2022-05
refinedweb
390
57.87
NAME | SYNOPSIS | DESCRIPTION | OPTIONS | EXAMPLES | ENVIRONMENT VARIABLES | ATTRIBUTES | SEE ALSO | DIAGNOSTICS | NOTES The nisgrpadm utility is used to administer NIS+ groups. This command administers both groups and the groups' membership. Principal names must be fully qualified, whereas groups can be abbreviated on...
http://docs.oracle.com/cd/E19683-01/816-5211/6mbcci3hu/index.html
CC-MAIN-2017-04
refinedweb
394
58.69
Perforce Defect Tracking Integration Project This manual is the Perforce Defect Tracking Integration 1.0 Administrator's Guide. It explains how to install, configure, maintain, and administer the Perforce Defect Tracking Integration (P4DTI). Command Line User's Guide. Perforce has a mechanism for linking jobs to change...
http://www.ravenbrook.com/project/p4dti/release/1.1.1/ag/
crawl-002
refinedweb
3,112
57.67
Set Up Salesforce DX Learning Objectives - Describe how the model for traditional org development differs from modular package development. - Describe the key characteristics of a package.. To learn how to migrate your existing dev processes to the package development model, head over to the Package Development Model m...
https://trailhead.salesforce.com/en/content/learn/modules/sfdx_app_dev/sfdx_app_dev_setup_dx
CC-MAIN-2020-29
refinedweb
761
70.94
Introduction With the latest release of C# ASP .NET 3.5, Visual Studio 2008, and LINQ, there is a whole new way of working with the data layer in C# ASP .NET web applications. Prior to LINQ, many developers would either generate or custom-code a data layer based upon the usage of SqlConnection, SqlCommand, and DataRead...
http://www.primaryobjects.com/CMS/Article95.aspx
crawl-002
refinedweb
2,631
53
...one of the most highly regarded and expertly designed C++ library projects in the world. — Herb Sutter and Andrei Alexandrescu, C++ Coding Standards This section describes how to use xpressive to accomplish text manipulation and parsing tasks. If you are looking for detailed information regarding specific components...
http://www.boost.org/doc/libs/1_52_0/doc/html/xpressive/user_s_guide.html
CC-MAIN-2014-41
refinedweb
12,356
54.32
Until C# 9.0, It was all about the Main() method where program control start and ends. With C# 9.0, you don’t need to mention the Main() method or Class definition explicitly using Top-Level Statement. Then how do you pass command-line arguments for your program? especially when you are running it from Visual Studio. I...
https://dailydotnettips.com/command-line-arguments-and-c-9-0-top-level-statement-visual-studio/
CC-MAIN-2021-25
refinedweb
247
67.96
Core Java Technology Section Index | Page 9 How can I traverse a List backwards? In order to traverse a List backwards a ListIterator must be used. The List interface provides a method, which returns a ListIterator. ListIterator<E> listIterator() Using a returned L...more How can I create a thread pool? The Executors c...
http://www.jguru.com/faq/core-java-technology?page=9
CC-MAIN-2013-48
refinedweb
581
60.31
using System; public class Program { public static void Main() { int dataSize = int.Parse(Console.ReadLine()); double[] data = new double[dataSize]; for(int i = 0; i < dataSize; i++) { data[i] = double.Parse(Console.ReadLine()); } for(int i = 0; i < dataSize; i++) { Console.WriteLine(FindTrailingZeros(data[i])); } } pu...
https://ccgivens.wordpress.com/2017/03/09/codechef-factorial/
CC-MAIN-2019-35
refinedweb
217
56.45
Named styles are lost on on read Hi, Just saving a file with a style in a cell makes it lose the style in the output file. Here is the test program I used: import openpyxl wb = openpyxl.load_workbook("test.xlsx") #ws = wb.active #style = ws.cell("A1").style #print(style) #ws.cell("B1").style = style #ws.cell("B1").valu...
https://bitbucket.org/openpyxl/openpyxl/issues/381
CC-MAIN-2018-51
refinedweb
561
59.3
On Wed, 2002-11-27 at 09:01, Ian Sparks wrote: > def delete(self): > self.killSelectedRecords() > self.response().redirect(self.response.url()) #pseudocode! This is what I do. It works well. I keep a list of messages to display to the user in the session, so I add a message, redirect, and then the message is displayed ...
http://sourceforge.net/p/webware/mailman/message/12857442/
CC-MAIN-2014-23
refinedweb
513
72.05
. In this article we'll go over the theory behind transfer learning and see how to carry out an example of transfer learning on Convolutional Neural Networks (CNNs) in PyTorch. - What is PyTorch? - Defining Necessary Terms - Transfer Learning Theory - Image Classification with Transfer Learning in PyTorch - Conclusion ...
https://stackabuse.com/image-classification-with-transfer-learning-and-pytorch/
CC-MAIN-2019-35
refinedweb
4,827
54.73
<< 14 replies to this topic #13 Posted 23 October 2012 - 11:52 AM Are you sure that you're supposed to scramble each word, or just scramble the list? - 0 My Blog: "Women and Music: I'm always amazed by other people's choices." - David Lee Roth "Women and Music: I'm always amazed by other people's choices." - David Lee ...
http://forum.codecall.net/topic/72571-passing-strings-randomizing/page-2
CC-MAIN-2020-40
refinedweb
567
55.24
Attaches a shared memory segment or a mapped file to the current process. Standard C Library (libc.a) #include <sys/shm.h> void *shmat (SharedMemoryID, SharedMemoryAddress, SharedMemoryFlag) intSharedMemoryID, SharedMemoryFlag; const void *SharedMemoryAddress; The shmat subroutine attaches the shared memory segment or ...
https://sites.ualberta.ca/dept/chemeng/AIX-43/share/man/info/C/a_doc_lib/libs/basetrf2/shmat.htm
CC-MAIN-2022-40
refinedweb
687
53.1
Hello, i am creating a two file editors plugin. First editor is implicit, and second is my graphic designer. This first editor is asiciated with .jsl files, which basically contains content of standard XML Job Definition File for Batch Processing. What i want to do is to use standard syntax highlighting, code-completio...
https://intellij-support.jetbrains.com/hc/en-us/community/posts/206108179-Is-there-a-simple-way-how-to-customize-one-of-predefined-XML-Schemas-for-XmlLikeFileType-
CC-MAIN-2020-16
refinedweb
175
57.16
Hopefully, this will be simple: I have a document comprising two pages of single-line paragraphs, i.e. each line consists of only a few words with a carriage-return at the end. I want to highlight the entire line of text (sans carriage return), copy it to the clipboard and paste it. The thing is, Word insists on highli...
http://windowssecrets.com/forums/showthread.php/55970-Auto-hassle-(Word-XP)
CC-MAIN-2013-20
refinedweb
130
78.69
The script creates a series of locators that define a vector and hooks it up to the initial velocity and spin of the rigid bodies, giving the artist an intuitive way to visualize the direction the rigid body will follow. Tested on Maya 2011 and above in Mac and Windows, should work in Linux but haven't tested it myself...
https://www.highend3d.com/maya/script/dynamica-bullet-velocity-helpers-for-maya
CC-MAIN-2017-22
refinedweb
121
64.24
Apache OpenOffice (AOO) Bugzilla – Issue 37151 Inserting External Data not possible from TXT file Last modified: 2004-11-15 08:31:08 UTC I am trying to insert data from a TXT file into the spreadsheet program. By going to Insert > External Data, I browse my local filesystem, find my .txt file with tabs denoted the colu...
https://bz.apache.org/ooo/show_bug.cgi?id=37151
CC-MAIN-2020-24
refinedweb
196
70.73
In the previous post we have learned how to build a multi-container application. On top of the website we have built in the second post of the series, we have added a Web API, which is leveraged by the web application to display the list of posts published on this blog. The two applications have been deployed in two di...
https://blogs.msdn.microsoft.com/appconsult/2018/09/14/introduction-to-docker-deploy-a-multi-container-application/
CC-MAIN-2019-13
refinedweb
2,245
60.24
I am a very beginner. Tell me how to compile a very simple code of Java?? Type: Posts; User: alialomran I am a very beginner. Tell me how to compile a very simple code of Java?? Where r the errors? public class Q3_StudentID { public static void main(String[] args) { int x, y, my Num = 0; double d = 10 + x; x = 3; y = d...
http://www.javaprogrammingforums.com/search.php?s=f9caf85280b4c70793aa73fc6f9ef140&searchid=1273580
CC-MAIN-2014-52
refinedweb
142
75.71
Upbeat about Updates More noteworthy items from the Linux audio world, including news about some long-awaited releases. MusE 1.0rc2 MusE has had an uneven development history. The project first took shape as an audio/MIDI sequencer with notation capabilities until Werner Schweer (MusE's original designer) extracted the...
http://www.linuxjournal.com/content/upbeat-about-updates?quicktabs_1=2
CC-MAIN-2015-40
refinedweb
2,317
53.92
0 #include <iostream> #include <string> #include <windows.h> using std:: cout; using std:: cin; using namespace std; int main() { unsigned long n; char Answer; string mystr; do { cout << " What is your name? "; getline (cin, mystr); cout << "Hello " << mystr << ".\n"; cout << "What is one of your hobbies? "; getline (c...
https://www.daniweb.com/programming/software-development/threads/380291/i-need-help-learning-how-to-do-a-loop-
CC-MAIN-2016-18
refinedweb
243
92.22
rich:autocomplete - is it desperately missing itemValue= ?Brendan Healey Feb 21, 2012 9:30 AM I'm really having problems getting rich:autocomplete to work with what I consider a typical use case. I think part of the problem is that I can't find an example, whether in the showcase or in the practical richfaces 2 book, w...
https://developer.jboss.org/message/718894?tstart=0
CC-MAIN-2015-18
refinedweb
1,684
62.98
OpenTelemetry Java: All you need to know by Ted Young Explore more OpenTelemetry Blogs Hi all, tedsuo here, back with our third installment of All you need to know. Today we’re going to go over Java, and how to instrument it. Getting started with OpenTelemetry Java: TL;DR All you need to know is: - Initialization: How ...
https://lightstep.com/blog/opentelemetry-java/
CC-MAIN-2021-04
refinedweb
1,212
52.05
CR making a library app, you have created a database. so you don’t want to add manually in database. You don’t want to update or delete by going to database table and press delete there. So you want to make a platform where you can create entry for books. Like a form. You will enter everything about books, like book na...
http://www.geekyshadow.com/2020/07/01/django-crud-application-django-3/
CC-MAIN-2020-40
refinedweb
926
55.3
Aaron, When you mention "default" namespace, are you instead trying to use a "no namespace" arena? XML documents and fragments with no target namespace prefix are allocated to the "no namespace" arena. A namespace_name can be associated with more than one prefix. The use of any of the prefixes can then validate to a pr...
http://mail-archives.apache.org/mod_mbox/xalan-c-users/201309.mbox/%3C28553.159.121.180.80.1380136614.squirrel@webmail.iinet.com%3E
CC-MAIN-2016-40
refinedweb
563
53.31
The QNetworkAccessManager class allows the application to send network requests and receive replies More... #include <QNetworkAccessManager> This class is not part of the Qt GUI Framework Edition. Inherits QObject. cache that is used to store data obtained from the network. This function was introduced in Qt 4.5. See a...
https://doc.qt.io/archives/4.6/qnetworkaccessmanager.html
CC-MAIN-2021-39
refinedweb
138
60.82
Welcome to the fifth installment of "Twisted Web in 60 seconds". In the previous installment, I demonstrated how a Twisted Web server can decide how to respond to requests based on dynamic inspection of the request URL. In this installment, I'll show you how to extend such dynamic dispatch to return a 404 (not found) r...
https://as.ynchrono.us/2009/09/twisted-web-in-60-seconds-error_22.html
CC-MAIN-2020-16
refinedweb
471
65.93
Padre::Plugin::Moose - Moose, Mouse and MooseX::Declare support for Padre cpan Padre::Plugin::Moose Then use it via Padre, The Perl IDE. Press F8. Once you enable this Plugin under Padre, you'll get a brand new menu with the following options: Opens up a user-friendly dialog where you can add classes, roles and their m...
http://search.cpan.org/dist/Padre-Plugin-Moose/lib/Padre/Plugin/Moose.pm
CC-MAIN-2014-42
refinedweb
143
54.93
You are in an environment where you do not have access to a built-in, cryptographically strong pseudo-random number generator. You have obtained enough entropy to seed a pseudo-random generator, but you lack a generator. For general-purpose use, we recommend a pseudo-random number generator based on the AES encryption ...
http://etutorials.org/Programming/secure+programming/Chapter+11.+Random+Numbers/11.5+Using+an+Application-Level+Generator/
CC-MAIN-2017-22
refinedweb
2,955
52.09