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 |
|---|---|---|---|---|---|
Stephen Early
University of Cambridge
July 1997
This document describes a port of the Nemesis operating system to Intel Pentium based platforms. The majority of personal computers sold are based on Pentium-compatible processors, and share the same system architecture (commonly known as the `PC' architecture).
Some back... | http://www.cl.cam.ac.uk/research/srg/netos/old-projects/pegasus/packages/2.1.2-pentium-port/report.html | CC-MAIN-2014-15 | refinedweb | 3,554 | 51.68 |
This:
- Eclipse
We're using the CDT, which is a plug-in to Eclipse, so of course you need Eclipse. The article uses Eclipse V3.2.
- Java Runtime Environment
We're building a C++ application, but we're using Eclipse. Eclipse is a Java application itself, so it needs a Java Runtime Environment (JRE). The article uses Ecl... | http://www.ibm.com/developerworks/library/os-eclipse-stlcdt/ | CC-MAIN-2014-23 | refinedweb | 483 | 65.12 |
Read and write data in spreadsheet files, including
.xls and
.xlsx files.
Import spreadsheet data interactively using the Import Tool. Import or export spreadsheet data
programmatically using the functions on this page. To compare primary
import options for spreadsheet files, see Ways to Import Spreadsheets.
Select Spr... | http://uk.mathworks.com/help/matlab/spreadsheets.html?requestedDomain=uk.mathworks.com&nocookie=true | CC-MAIN-2016-40 | refinedweb | 266 | 50.67 |
eow!! can u make a code for fibonacci series using for loop?? please..
What happen if I enter 100?
why does this code have errors in my turbo c?
hi can you create a pr5ogram that generates N series of the fibonaccci nos. with MAX of 50 using an array,, please..
#include
using namespace std;
int main()
{
int fib1 = 0;
i... | http://www.dreamincode.net/code/snippet790.htm | crawl-002 | refinedweb | 140 | 81.63 |
template<typename T> class Dial : public Encoder { private: T m_value; T m_min; T m_max; T m_step; ... Dial(Board::InterruptPin clk, Board::InterruptPin dt, Mode mode, T initial, T min, T max, T step) : Encoder(clk, dt, mode), m_value(initial), m_min(min), m_max(max), m_step(step) {}};...Rotary::Dial<int> dial(Board::P... | http://forum.arduino.cc/index.php?topic=150299.105 | CC-MAIN-2016-40 | refinedweb | 1,092 | 56.45 |
public class Solution { public List<List<String>> findLadders(String endWord, String beginWord, Set<String> wordList) { wordList.add(endWord); Queue<Node> queue = new LinkedList<>(); Set<String> visited = new HashSet<>(), unvisited = new HashSet<>(); unvisited.addAll(wordList); int level = 0, minDist = Integer.MAX_VALU... | https://discuss.leetcode.com/topic/63151/clear-java-solution-with-a-single-bfs | CC-MAIN-2017-51 | refinedweb | 396 | 62.44 |
The Adapter Pattern is the first software design pattern of the Structural Pattern, that the Gang of Four (GOF) Design Patterns, presented in their book , Design Patterns – Elements of Reusable Object-Oriented Software.
The Adapter pattern is a structural design pattern that enables incompatible interfaces, from dispar... | https://practicaldev-herokuapp-com.global.ssl.fastly.net/gary_woodfine/the-adapter-pattern-20f6 | CC-MAIN-2022-33 | refinedweb | 761 | 50.87 |
Introduction
Some times we want to change a component while some event of another component is triggered, we can achieve this by posting an event with some data to the component we want to change instead of modify it directly in the event listener of another component.
This seems a little bit weird and useless but this... | http://ben-bai.blogspot.com/2012/12/pass-event-to-other-component.html | CC-MAIN-2018-30 | refinedweb | 1,563 | 58.52 |
I want to know if there is a way to use target to test users on safari 11 browsers? I believe you can do this using target's personalization. Is this assumption correct? If so, what are the step to create this on the tool?
When you go to Audiences you will find many prebuilt browser selection options. If you need somet... | https://forums.adobe.com/thread/2404295 | CC-MAIN-2018-05 | refinedweb | 186 | 73.58 |
How_0<<
What if you just want a simple map without all the GIS stuff? In this post, I’ll show you how to make a county-specific choropleth map using only free tools.
Here’s what we’re after. It’s an unemployment map from 2009.
Step 0. System requirements
This tutorial was written with Python 2.5 and Beautiful Soup 3. I... | https://flowingdata.com/2009/11/12/how-to-make-a-us-county-thematic-map-using-free-tools/ | CC-MAIN-2017-30 | refinedweb | 5,423 | 73.98 |
%matplotlib inline import matplotlib.pyplot as plt # Mandatory imports... import numpy as np import torch from torch import tensor from torch.nn import Parameter, ParameterList from torch.autograd import grad # Custom modules: from model import Model # Optimization blackbox from display import plot, train_and_display f... | http://jeanfeydy.com/Teaching/GeomData_2018/measures_2.html | CC-MAIN-2021-17 | refinedweb | 2,393 | 55.27 |
fourth post in the Little Pitfalls series where I explore these issues; the previous Little Pitfall post can be found here.
Today we are going to look at a potential pitfall that can bite developers who expect the default behavior of declaring the same method (with same signature) in a subclass to perform an override.... | http://geekswithblogs.net/BlackRabbitCoder/archive/2011/07/21/c.net-little-pitfalls-the-default-is-to-hide-not-override.aspx | CC-MAIN-2020-34 | refinedweb | 1,396 | 59.33 |
Hide Forgot
Testing with meta.c (attached)
Test program created numerous files using various file open() flags and truncated each to 10 MiB. The test then wrote a 512-byte block beginning at offset 0 to each file. After a 10-second delay, the next 512-byte block was written, and so forth.
During the testing, both regul... | https://partner-bugzilla.redhat.com/show_bug.cgi?id=1066181 | CC-MAIN-2020-10 | refinedweb | 1,935 | 59.43 |
Output text
Hello everyone:
I've been trying to find a way to use the output text as drawn text, but I'm not really winning the battle, so I finished copying the text, here is my code:
#Set today's time day = 29 month = 8 year = 2019 date = '%02d/%02d/%04d' % (day, month, year) print("Today is " + str(date)) #Birthday ... | https://forum.drawbot.com/topic/188/output-text/5 | CC-MAIN-2019-51 | refinedweb | 980 | 50.54 |
One. (The source code for the application is posted on CodePlex at the following link. I encourage the community to grab the code and contribute to it. )
Source:
The sample application uses mathematical calculations to determine how to play each chord. As any guitar player knows, there are many ways to play each chord ... | https://www.red-gate.com/simple-talk/dotnet/.net-framework/using-silverlight-to-build-a-guitar-chord-calculator/ | CC-MAIN-2018-05 | refinedweb | 2,903 | 67.79 |
Whiteknight's Blog 2016-01-18T21:18:17+00:00 Andrew Whitworth (Whiteknight) wknight8111@gmail.com Big Ball of Mud Refactor to Testability 2015-12-27T00:00:00+00:00 <p>We had a small utility application which took in messages off the service bus and imported the data into ElasticSearch for querying. The task I was given... | http://feeds.feedburner.com/afwknight | CC-MAIN-2016-40 | refinedweb | 39,846 | 59.84 |
In this example, we extend our LCDRange class to include a text label. We also provide something to shoot at.
The LCDRange now has a text label.
class QLabel;
We name declare QLabel because we want to use a pointer to it in the class definition.
class LCDRange : public QVBox { Q_OBJECT public: LCDRange( QWidget *parent... | http://vision.lbl.gov/People/qyang/qt_doc/tutorial1-12.html | CC-MAIN-2013-20 | refinedweb | 1,127 | 66.13 |
The visualization is an important part of any data analysis. This helps us present the data in pictorial or graphical format. Data visualization helps in
- Grasp information quickly
- Understand emerging trends
- Understand relationships and pattern
- Communicate stories to the audience
I work in the transportation dom... | https://onezero.blog/generate-publication-ready-facet-pair-and-joint-plots-using-seaborn-library/ | CC-MAIN-2022-40 | refinedweb | 1,923 | 56.25 |
>>.)
The New York Times. (Score:3, Insightful), Insightful)
That would involve coding in C++ for a week. Eew.
Straight up C, no problem. Awesome language. Love it.
C++ requires me to mentally juggle too many balls in the air, it is mental effort that I could be expending on writing actual code.
Re:A more appropriate qu... | http://developers.slashdot.org/story/10/07/06/2140253/Microsoft-Out-of-Favor-With-Young-Hip-Developers | CC-MAIN-2014-42 | refinedweb | 6,260 | 71.65 |
hw_dataflash.h File Reference
Dataflash HW control routines (interface). More...
#include <cfg/compiler.h>
Go to the source code of this file.
Detailed Description
Dataflash HW control routines (interface).
Definition in file hw_dataflash.h.
Function Documentation
Data flash init function.
This function provide to init... | http://doc.bertos.org/2.7/hw__dataflash_8h.html | crawl-003 | refinedweb | 175 | 69.28 |
Community discussion forum
How to create this
I need help
I want to create this:
Nowe I have tried to use Flash but cannot get on with it. Any ideas on an easier application to do this?
Cheers
Won't allow to insert this as a image for some reason.
-
- 4 years agoby
Thushan Fernando
Thushan FernandoAustralia :: Melbourn... | http://www.developerfusion.com/forum/thread/25799/ | crawl-002 | refinedweb | 1,738 | 82.54 |
Last Updated on December 14, 2020.
We use apps of email clients on our phones to access our emails seamlessly. Gmail is one of the most popular email clients out there. In this blog post, let’s see how to prompt a user to open their email client’s compose section with our own delivery email address, subject and body in... | https://reactnativeforyou.com/how-to-prompt-to-compose-email-with-given-subject-and-body-in-react-native/ | CC-MAIN-2021-31 | refinedweb | 242 | 58.58 |
Awake is called when the script instance is being loaded.
Awake is called either when an active GameObject that contains the script is initialized when a Scene loads, or when a previously inactive GameObject is set to active, or after a GameObject created with Object.Instantiate is initialized.
Use Awake to initialize... | https://docs.unity3d.com/2020.3/Documentation/ScriptReference/MonoBehaviour.Awake.html | CC-MAIN-2021-43 | refinedweb | 496 | 66.44 |
Are there any plans to start supporting union types, similarly to how it's done in Dotty (e.g., Int | Long | Float | Double)? If yes, is there any time estimate?
Int | Long | Float | Double
If not, what would be the best way to implement the following functionality in Scala 2.12?
Suppose we are interacting with a nativ... | https://contributors.scala-lang.org/t/dotty-style-union-types-in-scala/733 | CC-MAIN-2017-43 | refinedweb | 1,916 | 65.22 |
Head First Java 2nd Ed. Problems
El Mitchel
Greenhorn
Joined: Jun 03, 2007
Posts: 1
posted
Jun 03, 2007 09:37:00
0
Hi I'm new here. I do have some basic
Java
background but very minimal. I first learned it from school like a year ago.
I just started reading Head First Java 2nd Edition and I already have problems with ... | http://www.coderanch.com/t/407242/java/java/Head-Java-Ed-Problems | CC-MAIN-2015-48 | refinedweb | 558 | 81.93 |
Prism & Silverlight: Part 10 - A Larger Example - "Email Client"
- Posted: Oct 27, 2009 at 3:31 AM
- 43,056 Views
- 38 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 “Sa... | http://channel9.msdn.com/Blogs/mtaulty/Prism--Silverlight-Part-10-A-Larger-Example-Email-Client | CC-MAIN-2013-20 | refinedweb | 2,012 | 72.76 |
Timers
Timers are lightweight objects that enable you to specify a delegate to be called at a specified time. A thread in the thread pool performs the wait operation.
Using the Timer class is straightforward. You create a Timer, passing a TimerCallback delegate to the callback method, an object representing state that ... | http://msdn.microsoft.com/en-US/library/zdzx8wx8(v=vs.80).aspx | CC-MAIN-2013-48 | refinedweb | 186 | 56.45 |
I use ReadyAPI 3.0.0 and I cannot upgrade.Consider the groovy script below which is inside a ReadyAPI test.
import java.security.*;
import Custom.Authorization;
//some code.
obj = new Authorization();
obj.doSomething();
//more code.
I want to read the documentation of the Authorization class to learn a bit about it. To... | https://community.smartbear.com/t5/API-Functional-Security-Testing/Groovy-script-How-to-find-out-the-actual-source-or-package-of-a/td-p/209524 | CC-MAIN-2021-10 | refinedweb | 212 | 67.15 |
Back to index
#include "nsCOMPtr.h"
Go to the source code of this file.
This routine attempts to delete a directory that may contain some files that are still in use.
Resolves a relative path string containing "." and ".." with respect to a base path (assumed to already be resolved).
This routine returns the trash dire... | https://sourcecodebrowser.com/lightning-sunbird/0.9plus-pnobinonly/ns_delete_dir_8h.html | CC-MAIN-2016-44 | refinedweb | 176 | 58.89 |
One of the most common issues that our users bring to our attention is the fact that the launch of the web page which contains the pivot also calls the web service and prefills (or at least it tries to prefill) the pivot with data.
That is a big issue because:
I think you see where I am going to with this. We need a wa... | https://www.flexmonster.com/question/pivot-initialization-show-column-headers-without-receiving-data/ | CC-MAIN-2021-31 | refinedweb | 1,710 | 70.43 |
go to bug id or search bugs for
Description:
------------
Hello!
I know this feature request has been made a few times in the last years, but I
want to reopen this request to add arguments in favor to this feature request.
It would be really nice for developper to be able to call a function like this:
func($param1 => '... | https://bugs.php.net/bug.php?id=62787 | CC-MAIN-2019-39 | refinedweb | 319 | 60.61 |
Is Asynchronous EJB Just a Gimmick?
Is Asynchronous EJB Just a Gimmick?
Blocking APIs can hurt your applications performance. So does using Asynchronous EJBs help?
Join the DZone community and get the full member experience.Join For Free
Sensu is an open source monitoring event pipeline. Try it today.
void or a
Future ... | https://dzone.com/articles/is-asynchronous-ejb-just-a-gimmick | CC-MAIN-2019-09 | refinedweb | 2,816 | 51.78 |
Bitten by inlining (again)
By Darryl Gove-Oracle on Feb 15, 2010
So this relatively straight-forward looking code fails to compile without optimisation:
#include <stdio.h> inline void f1() { printf("In f1\\n"); } inline void f2() { printf("In f2\\n"); f1(); } void main() { printf("In main\\n"); f2(); }
Here's the linke... | https://blogs.oracle.com/d/entry/bitten_by_inlining_again | CC-MAIN-2016-22 | refinedweb | 503 | 61.97 |
John Nagle wrote: > Chris Rebert wrote: >> On Tue, Mar 30, 2010 at 8:40 AM, gentlestone <tibor.beck at hotmail.com> >> wrote: >>> Hi, how can I write the popular C/JAVA syntax in Python? >>> >>> Java example: >>> return (a==b) ? 'Yes' : 'No' >>> >>> My first idea is: >>> return ('No','Yes')[bool(a==b)] >>> >>> Is there... | https://mail.python.org/pipermail/python-list/2010-March/572409.html | CC-MAIN-2014-15 | refinedweb | 156 | 68.16 |
Date: 2004-12-05T22:47:12
Editor: AlexKarasulu <akarasulu@apache.org>
Wiki: Apache Directory Project Wiki
Page: EveGeneral
URL:
Change Log:
------------------------------------------------------------------------------
@@ -4,41 +4,13 @@
== Out-of-the-box Authentication ==
-I really wanted to make Authentication somethi... | http://mail-archives.apache.org/mod_mbox/directory-commits/200412.mbox/%3C20041206064712.11875.63465@minotaur.apache.org%3E | CC-MAIN-2016-22 | refinedweb | 964 | 56.55 |
The Java Specialists' Newsletter
Issue 0682003-04-21
Category:
Performance
Java version:
GitHub
Subscribe Free
RSS Feed
Welcome to the 68th edition of The Java(tm) Specialists' Newsletter, sent to 6400 Java
Specialists in 95 countries.
Since our last newsletter, we have had two famous Java authors
join the ranks of sub... | http://www.javaspecialists.co.za/archive/Issue068.html | CC-MAIN-2014-52 | refinedweb | 1,465 | 72.46 |
PyWebDAV 0.9.8
WebDAV library including a standalone server for python
WebDAV library for python.
Consists of a server that is ready to run Serve and the DAV package that provides WebDAV server(!) functionality.
Currently supports
- WebDAV level 1
- Level 2 (LOCK, UNLOCK)
- Experimental iterator support
It plays nice w... | https://pypi.python.org/pypi/PyWebDAV | CC-MAIN-2016-18 | refinedweb | 1,271 | 56.96 |
The
DataFrame.axes attribute in Pandas is used to return a list of values representing the axes of a given DataFrame. It also returns the labels of the row and columns axis as the only member.
DataFrame.axes attribute
This attribute takes no parameter value.
This attribute returns a list showing the labels of the row a... | https://www.educative.io/answers/how-to-return-a-list-representing-the-axes-of-a-given-dataframe | CC-MAIN-2022-33 | refinedweb | 123 | 58.38 |
Opened 3 years ago
Last modified 3 years ago
#11879 new Bugs
Incorrect use of reset cause unexpected impact on previous code segment
Description
#include <boost/scoped_ptr.hpp> #include <iostream>
int main() {
boost::scoped_ptr<int> p{new int{1}}; std::cout << *p << '\n'; std::cout << p.get() << '\n'; p.reset(new int{2... | https://svn.boost.org/trac10/ticket/11879 | CC-MAIN-2018-34 | refinedweb | 239 | 68.57 |
Is it possible to add a documentation string to a namedtuple in an easy manner?
I tried
from collections import namedtuple
Point = namedtuple("Point", ["x", "y"])
"""
A point in 2D space
"""
# Yet another test
"""
A(nother) point in 2D space
"""
Point2 = namedtuple("Point2", ["x", "y"])
print Point.__doc__ # -> "Point(... | https://codedump.io/share/CsoqqsrHCM2c/1/adding-docstrings-to-namedtuples | CC-MAIN-2017-26 | refinedweb | 212 | 62.98 |
Howdy all,
I've just rolled out the first install.sh (version 6.0.11) with support for Ubuntu 18.04 LTS. I've also created a new virtualmin-bionic repository with 18.04 LTS binary packages.
This should be considered a beta release. Please test your use case thoroughly before counting on it in production! We always expe... | https://www.virtualmin.com/comment/802308 | CC-MAIN-2020-16 | refinedweb | 4,689 | 57.77 |
I'm curious of the conversion of interfaces. Here is the
example
In that example,
interface B defines a method returning an interface A, and
struct C implement a method returning a pointer to struct CA which
implements interface A.
I wonder why Go can't deduce interface B from C.
If *interface A, B* and *struct C, CA* ... | https://grokbase.com/t/gg/golang-nuts/157x4g5rz5/go-nuts-implicit-conversion-of-interfaces/oldest | CC-MAIN-2021-49 | refinedweb | 161 | 60.55 |
.d.ts generator.d.ts generator
Generates a single
.d.ts bundle containing external module declarations exported from TypeScript module files.
What does this mean?What does this mean?
If you have a project with lots of individual TypeScript files that are designed to be consumed as external modules,
the TypeScript compi... | https://preview.npmjs.com/package/dts-generator-tf | CC-MAIN-2020-05 | refinedweb | 514 | 52.15 |
retrieve the Emitter's number of particles (with their corresponding PSR) at a given frame using expresso?
I tried dragging the emitter to the xpresso editor but I couldn't see such data but I could be wrong.
Regards,
Ben
P.S. I'm referring to the emitter object and not the thinking particles.
I understand there is a ... | https://plugincafe.maxon.net/topic/13395/get-emitter-s-number-of-particles-and-their-psr/1 | CC-MAIN-2021-43 | refinedweb | 1,268 | 66.13 |
For example, if the primary grouping interval is 3, and the secondary is 2, then this corresponds to the pattern "#,##,##0", and the number 123456789 is formatted as "12,34,56,789". Want to make suggestions and discuss with dev team? It is the same code as in this tutorial. The members, admins, and authors of this webs... | http://systemajo.com/how-to/decimalformat-cannot-resolved.php | CC-MAIN-2018-34 | refinedweb | 968 | 54.73 |
I am trying to assign
int
std::map
int
F:\Programming\korki\BRUDNOPIS\main.cpp|14|error: invalid user-defined conversion from 'char' to 'const key_type& {aka const std::basic_string&}' [-fpermissive]|
#include <iostream>
#include <string>
#include <cstdlib>
#include <map>
using namespace std;
int main()
{
std::map <std... | https://codedump.io/share/gttVrZgEQmLF/1/error-invalid-user-defined-conversion-from-char-to-const-keytypeamp | CC-MAIN-2021-21 | refinedweb | 202 | 59.77 |
Tutorial: Create the Keyboard application
In this tutorial, we'll show you how to use the glview library and OpenGL ES to capture and process input from the keyboard of your BlackBerry 10 device and to render graphics to the screen.
The app also shows you how to:
- show or hide the touch screen keyboard
- change the ke... | https://developer.blackberry.com/native/documentation/device_comm/input/tutorial_keyboard.html | CC-MAIN-2018-43 | refinedweb | 1,370 | 50.46 |
I have this regular FETCH code that returns an object called json I want to be able to use the object in another function so I was trying to turn it into a constant but it won't let me do it
import {fetch} from 'wix-fetch'; // ... fetch("", {method: "get"}) .then( (httpResponse) => { if (httpResponse.ok) { return httpR... | https://www.wix.com/corvid/forum/community-discussion/extracting-an-object-from-fetch | CC-MAIN-2020-05 | refinedweb | 151 | 74.69 |
On Fri, 16 Jan 2009 02:51:43 -0500, Ken Pu wrote: > Hi, below is the code I thought should create two generates, it[0] = > 0,1,2,3,4,5, and it[1] = 0,10,20,30,..., but they turn out to be the > same!!! [...] > I see what Python is doing -- lazy evaluation doesn't evaluate (x+(i*10) > for x in count()) until the end. Bu... | https://mail.python.org/pipermail/python-list/2009-January/520363.html | CC-MAIN-2016-50 | refinedweb | 149 | 80.55 |
Hello
After some advice from a few more experienced members on this board I decided to scrap my poor attempt at a chess engine and start over , this time using OOP.
I am currently having an issue with using enum variables and objects.
Please excuse my ignorance before hand , I come from a background of embedded program... | http://www.javaprogrammingforums.com/object-oriented-programming/34502-problems-objects-enum.html | CC-MAIN-2014-42 | refinedweb | 346 | 70.43 |
Nepomuk-Core
#include <Nepomuk2/Tag>
Detailed Description
A Tag can be assigned to any Thing.
This allows simple grouping of resources. Each Tag is identifed by its label which should be unique.
Definition at line 38 of file tag.h.
Constructor & Destructor Documentation
Member Function Documentation
Retrieve a list of ... | https://api.kde.org/4.x-api/kdelibs-apidocs/nepomuk-core/html/classNepomuk2_1_1Tag.html | CC-MAIN-2019-13 | refinedweb | 122 | 58.58 |
[How To] Building components with Quasar
This is a more detailed write up from my post here:
This is still work in progress and some topics are missing. If some information is wrong, or I am missing on something, just let me know and I will update this post accordingly.
Building reusable components with Quasar
Vue.js g... | https://forum.quasar-framework.org/topic/696/how-to-building-components-with-quasar/4 | CC-MAIN-2020-24 | refinedweb | 1,617 | 54.63 |
Hi,
I am a newbie and have been learning this language for only 3 months as a part of university degree. I can't figure out the problem with this code.
It is basically a simple programme which tells a user how many letters he has entered. I have debugged the programme and it all works fine until it reaches the for loop... | http://cboard.cprogramming.com/c-programming/73838-program-error-counting-length-string.html | CC-MAIN-2015-11 | refinedweb | 175 | 53.41 |
Hey everyone- I'm new here and this is my first forum post so I hope this is in the right place!
I would appreciate all the help I can get:
I'm trying to make a Java code to find the volume of a sphere but can't seem to use the user's input because I'm getting an error that "keyboard.readLine()" does not represent a re... | http://www.javaprogrammingforums.com/%20java-theory-questions/30331-user-input-output-math-calculations-java-printingthethread.html | CC-MAIN-2014-42 | refinedweb | 179 | 64.41 |
In early February of this year, I happened to see a tweet:
The author of fluent Python has an exciting message: he’s writing the second edition!
If you want to vote for the best Python advanced bibliography, this book will definitely be one of the most popular books. When I first wrote the “Python cat recommendation se... | https://developpaper.com/if-only-one-python-book-is-recommended-i-want-to-pick-it/ | CC-MAIN-2021-21 | refinedweb | 936 | 60.24 |
On Mon, 2006-05-08 at 23:15 +0200, Roman Zippel wrote:> The point is to give the _clock_ control over this kind of stuff, only the > clock driver knows how to deal with this efficiently, so as long as you > try to create a "dumb" clock driver you're going to make things only > worse. Now the archs have most control ove... | http://lkml.org/lkml/2006/5/8/216 | CC-MAIN-2015-14 | refinedweb | 872 | 62.88 |
Migrating OOP Libraries and Frameworks to PHP 5.3.
For instance, we've been doing things like the following in Zend Framework:
Zend_Controller_Request_Abstract
Zend_View_Interface
These conventions make it really easy to find Abstract classes and Interfaces
using
find or
grep, and also are predictable and easy to under... | https://mwop.net/blog/181-Migrating-OOP-Libraries-and-Frameworks-to-PHP-5.3.html | CC-MAIN-2019-04 | refinedweb | 393 | 54.83 |
Search Criteria
Package Details: ros-indigo-desktop-full 1.1.4-1
Dependencies (7)
- ros-indigo-desktop
- ros-indigo-perception
- ros-indigo-simulators
- cmake (cmake-git) (make)
- git (git-git) (make)
- ros-build-tools (ros-build-tools-py3) (make)
- ros-indigo-catkin (make)
Latest Comments
emersonjr commented on 2016-1... | https://aur.tuna.tsinghua.edu.cn/packages/ros-indigo-desktop-full/ | CC-MAIN-2021-10 | refinedweb | 545 | 55.95 |
I'll keep this short and sweet, mostly because I don't have a lot of time to write a paragraph per question like I usually do.
1: What is the point of properties in a class?
2: Why do people sometimes inherit from an object class? I mean something like this:
class stuff(object):
Typing dir(object) revealed it's documen... | https://forum.audiogames.net/post/427203/karmaplus/e16cf3d89c1dedaae4c13100e6648670420d2e88/ | CC-MAIN-2019-35 | refinedweb | 123 | 73.78 |
Thomas Wittek <[EMAIL PROTECTED]> writes: > Steffen Schwigon schrieb: >> At least the many keywords seem to be necessary to map the complexity >> of different paradigms possible in Perl6. Multimethods are not just >> overloading as in C++. Second, the different keywords declare >> different behaviour you can choose. Ju... | https://www.mail-archive.com/perl6-users@perl.org/msg00315.html | CC-MAIN-2018-34 | refinedweb | 321 | 64.91 |
.
Two old designers in VS 2005 have been removed from Orcas product. There are several reasons why they are removed:
1, there will be a brand new schema designer built into VS. However, because of schedule issues, it is not in Orcas, but will be released off-cycle;
2, the two old designers depend on some old components... | http://blogs.msdn.com/lifenglu/ | crawl-002 | refinedweb | 4,655 | 62.78 |
Requirements
You’ll need at least Python 2.5 to run Snakelets and Yaki.
Please consider installing a
sendfile(2)system call extension module such as the one available on Pypi, which will boost performance significantly when handling static files. Snakelets will automatically use it if it is installed.
Out-of-the-box st... | https://taoofmac.com/space/docs/snakelets/starting | CC-MAIN-2018-47 | refinedweb | 1,388 | 56.86 |
Which Programming Language?
In this article, I survey a clutch of popular programming languages and provide some personal opinions as to when it is appropriate to use each of them. I'll also talk about some of the development tools available for each language. Hopefully, by the end of this article, Paul will be in a po... | http://www.linuxjournal.com/article/4402?quicktabs_1=2 | CC-MAIN-2016-07 | refinedweb | 2,808 | 61.97 |
The.
Sign up for a google voice account a Gmail account will be needed to do this. A guide on how to sign up for google voice is at the following link(I assume you can do this its super easy):
Enable 2-step verification of your google account.
a link can be found on the following page:
Ensure your Raspberry Pi is setup... | https://community.spiceworks.com/how_to/68063-send-sms-messages-from-raspberry-pi | CC-MAIN-2018-22 | refinedweb | 531 | 74.29 |
Simple c# live soap client. No need to create or use proxy classes. It parses WSDL and get a simplified definition, then use webclient to call webservice. It doesn't work with complex types (definitions in xsd) and not with wcf (soapAction parsing). maybe it could he...
This projects creates a wrapper around the Jira S... | http://www.findbestopensource.com/product/soapclient | CC-MAIN-2017-13 | refinedweb | 513 | 57.16 |
Microsoft officially defined .NET Framework as follows:
The .NET Framework is the heart of Microsoft .NET. The .NET Framework is a software development platform of Microsoft .NET. Like any platform, it provides a runtime, defines functionality in some libraries, and supports a set of programming languages. The .NET Fra... | http://ecomputernotes.com/csharp/dotnet/dot-net-framework | CC-MAIN-2018-05 | refinedweb | 915 | 58.18 |
MWI Device Description Working Group News
Supporting Web Content Adaptation through Device Knowledge
Post details: Meeting Summary - 25 June 2007
Thursday, June 28th 2007
06:58:46 pm, Categories:
Meeting Summaries
Meeting Summary - 25 June 2007
[Weekly conference call, 25 June 2007] F2F well subscribed. TP topics. Norm... | https://www.w3.org/blog/DDWG/2007/06/28/meeting_summary_25_june_2007 | CC-MAIN-2017-17 | refinedweb | 649 | 53.61 |
things.
The script has two functions. The first is to create a linked Roto node. If you have a tracker node selected, and have installed it as described, press Alt-O, and a Roto node will be created with a layer linked to the selected Tracker node. Sometimes you might want to create a linked layer in an existing Roto,... | http://jedypod.com/tracker-link-tools | CC-MAIN-2017-22 | refinedweb | 483 | 65.83 |
Extending the VendingMachine
Mick Jones
Greenhorn
Joined: May 21, 2009
Posts: 7
posted
May 27, 2009 03:12:14
1
Hi everyone
I have fixed the error and tidied up the code, so here is the final, working version of the Vending Machine.
I want to carry on developing this as I feel I am learning a lot doing this...
Does any... | http://www.coderanch.com/t/447084/java/java/Extending-VendingMachine | CC-MAIN-2015-35 | refinedweb | 1,275 | 55.44 |
Summary
Lets you set how mosaic dataset overviews are generated. The settings made with this tool are used by the Build Overviews tool.
Usage
This tool is used when there are specific parameters you need to set to generate your overviews, such as
- Defining the location to write the files
- Defining an extent that vari... | https://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/define-overviews.htm | CC-MAIN-2020-50 | refinedweb | 302 | 50.77 |
Using Connected Objects To Keep Your Job
We keep hearing about the Internet of Things. The basic idea is simple: Everyday objects (like a watch or even a toothbrush) will soon be connected to Internet, and will be able to communicate with each other.
The last hack day at marmelab allowed me to learn more about this sub... | https://marmelab.com/blog/2013/07/22/using-connected-objects-to-keep-your-job.html | CC-MAIN-2022-27 | refinedweb | 2,250 | 56.55 |
# One Day in the Life of PVS-Studio Developer, or How I Debugged Diagnostic That Surpassed Three Programmers
Static analyzers' primary aim is to search for errors missed by developers. Recently, the PVS-Studio team again found an interesting example proving the power of static analysis.
 you guys did implemented a lot of
features, which means there is quite a bit of work in defining an XML
format (but of course that is good for me in the long run) and (b) I
didn't find as much time as I hoped to have (as usual). But since I
really want a proper way of embedding JF... | https://sourceforge.net/p/jfreechart/mailman/jfreechart-developers/?style=flat&viewmonth=200304 | CC-MAIN-2017-30 | refinedweb | 418 | 69.15 |
A proxy that applies AES encryption over requests to prevent scrapers from easily accessing our data.
The central idea behind the proxy is that it forwards the requests to the underlying API, encrypts the response, and handles the decryption through WASM. Why WASM? Because nobody knows how to decrypt binary to understa... | https://golang.ch/a-golang-based-proxy/ | CC-MAIN-2022-40 | refinedweb | 444 | 65.93 |
Handshake Distribution Quadrants
Understanding Handshake’s Asset Distribution
Handshake puts the world’s root zone on a blockchain, making it a public commons. And in order to bootstrap this commons into a valuable decentralized namespace, Handshake must seed ownership into the broadest and most intelligible stakeholde... | https://medium.com/blockchannel/handshake-distribution-quadrants-f6199ff3cdcd?source=collection_home---4------1----------------------- | CC-MAIN-2021-04 | refinedweb | 885 | 52.8 |
Hello and welcome to part 9 of the Python for Finance tutorial series. In the previous tutorials, we've covered how to pull in stock pricing data for a large number of companies, how to combine that data into one large dataset, and how to visually represent at least one relationship between all of the companies. Now, w... | https://pythonprogramming.net/preprocessing-for-machine-learning-python-programming-for-finance/?completed=/stock-price-correlation-table-python-programming-for-finance/ | CC-MAIN-2021-39 | refinedweb | 1,118 | 58.89 |
This.
IEnumerable<T>
IEnumerable
T
In order to access the extension method include the following using directive in your program:
using Rankep.CollectionExtensions;
You will need a collection which implements the IEnumerable<T> interface (for example: List<T>) on which the method will act. Example:
IEnumerable<T>
List<... | http://www.codeproject.com/Articles/380153/ForEach-elements-with-a-derived-type-in-an-IEnumer | CC-MAIN-2015-35 | refinedweb | 1,135 | 50.57 |
table of contents
- stretch 4.10-2
- testing 4.16-2
- stretch-backports 4.16-1~bpo9+1
- unstable 4.16-2
NAME¶getpwent_r, fgetpwent_r - get passwd file entry reentrantly
SYNOPSIS¶
#include <pwd.h> int getpwent_r(struct passwd *pwbuf, char *buf,
size_t buflen, struct passwd **pwbufp); int fgetpwent_r(FILE ¶The¶On success... | https://manpages.debian.org/stretch/manpages-dev/fgetpwent_r.3.en.html | CC-MAIN-2019-51 | refinedweb | 119 | 53.78 |
Name | Synopsis | Description | Return Values | Usage | Attributes | See Also | Notes
#include <dlfcn.h> int dladdr(void *address, Dl_info_t *dlip);
int dladdr1(void *address, Dl_info_t *dlip, void **info, int flags);
The dladdr() and dladdr1() functions determine if the specified address is located within one of the m... | http://docs.oracle.com/cd/E19082-01/819-2243/6n4i098ta/index.html | CC-MAIN-2014-23 | refinedweb | 331 | 53.51 |
(This article was first published on Thinking inside the box , and kindly contributed to R-bloggers)Two weeks after the Rcpp 0.7.0 release, Romain and I are happy to announce release 0.7.1 of Rcpp. It is currently in the incoming section of CRAN and has been accepted into Debian. Mirrors will catch up over the next few... | http://www.r-bloggers.com/rcpp-0-7-1/ | CC-MAIN-2013-48 | refinedweb | 221 | 65.12 |
Framework Test Loading
Registered by Charlie Poole
Earlier releases of NUnit load tests in a hierarchy based on the namespace and may optionally load them as a flat list of fixtures. The test hierarchy is built as the tests are loaded and reflected in the gui display.
With NUnit 3.0, the test loader will only load fixt... | https://blueprints.launchpad.net/nunit-3.0/+spec/test-loading | CC-MAIN-2021-39 | refinedweb | 104 | 62.48 |
Camera and photos for Windows Phone 8
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
This section describes how your app can capture photos and video on Windows Phone. It also shows how your app can save photos to the media library and use extensib... | https://msdn.microsoft.com/en-us/library/hh202973 | CC-MAIN-2017-09 | refinedweb | 534 | 62.27 |
When something goes wrong with your code instead of using standard debugging techniques such as print statements use debugging tools. I found two great tools for debugging.
1.using code module: This is very useful if your code working with out errors but dint give expected result.The code module has a function interact... | https://micropyramid.com/blog/debugging-in-python/ | CC-MAIN-2020-05 | refinedweb | 229 | 57.98 |
The iImage interface is used to work with image objects. More...
#include <igraphic/image.h>
Detailed Description
The iImage interface is used to work with image objects.
You cannot manipulate the pixel data of iImage objects directly. To do this, you need to instantiate a your own copy of the image, e.g. by creating a... | http://www.crystalspace3d.org/docs/online/api-1.4.1/structiImage.html | CC-MAIN-2016-07 | refinedweb | 399 | 59.19 |
I looking for the way to get parent ID or name from child thread.
In example, I have main thread as MainThread. In this thread i create a few new threads. Then I use
threading.enumerate() to get references to all running thread, pick one of child threads and somehow get ID or name of MainThread. Is any way to do that?
... | http://www.dlxedu.com/askdetail/3/921634a84a87310bf6be7500a902669c.html | CC-MAIN-2018-22 | refinedweb | 204 | 84.27 |
T
rav
November 5, 2007
Halloween Gets Even Stupider
in Lahaina, Maui, Hawaii
Lilo, from the 5th Element, and the Little Mermaid. New Disney
idea?
You do not know Jack.
Ponder the historical possibilities
if Marie Antoinette actually had a
cell phone. Serve the cake!
Chicks dig the mask. Tony
Orlando and Dawn?
Grim rea... | http://www.ericluck.net/November2007.html | crawl-001 | refinedweb | 757 | 75.71 |
Bummer! This is just a preview. You need to be signed in with a Basic account to view the entire video.
Dependency Management8:44 with Chris Ramacciotti
One of the main purposes of a build tool is dependency management. This video discusses how to add external libraries to your projects with Maven.
- 0:00
A dependency ... | https://teamtreehouse.com/library/dependency-management | CC-MAIN-2017-39 | refinedweb | 1,774 | 83.56 |
Web Dynpro is a standard SAP UI technology that allows you to develop web applications using graphical tools and development environment integrated with ABAP workbench. Using graphical tools reduces the implementation effort and you can better reuse and maintain components in ABAP workbench.
To access Web Dynpro runtim... | https://www.tutorialspoint.com/sap_web_dynpro/sap_web_dynpro_quick_guide.htm | CC-MAIN-2019-51 | refinedweb | 5,532 | 55.74 |
This is your resource to discuss support topics with your peers, and learn from each other.
05-11-2014 04:46 PM
I have few lines of code that is common for cases such as onCreationCompleted, onSubmitted and onClicked. Is there a way I put this common code in a function or in a file or as a section within QML and call t... | https://supportforums.blackberry.com/t5/Native-Development/Replace-repetitive-lines-of-code-in-Blackberry-QML/m-p/2878552 | CC-MAIN-2017-04 | refinedweb | 449 | 50.2 |
Examples of overlapping quota policies
With the ability to define a quota policy on namespaces and tables, you have to define how the policies are applied. A table quota should take precedence over a namespace quota.
Scenario 1
For example, consider Scenario 1, which is outlined in the following table. Namespace n has ... | https://docs.cloudera.com/runtime/7.2.8/configuring-hbase/topics/hbase-overlapping-quota-policies.html | CC-MAIN-2021-17 | refinedweb | 247 | 59.3 |
Attribute::GlobalEnable - Enable Attrubutes and flags globally across all code.
package Attribute::GlobalEnable::MyPackage; use Attibute::GlobalEnable( ENABLE_CHK => \%ENV, ENABLE_ATTR => { Debug => 'DEBUG_PERL' } ); ## see Attribute::Handlers for more info on these variables. Note ## that this_package is not included ... | http://search.cpan.org/~cmonson/Attribute-GlobalEnable-0.01/lib/Attribute/GlobalEnable.pm | CC-MAIN-2014-15 | refinedweb | 1,536 | 63.49 |
Ok, so i am actually going through K&R C book (I know it is old and it has a lot of outdated stuff specially on the security side but i am just trying to do the excercises) Ive been playing with excercise 5-2 where i need to implement my own strcat with pointers. My code is the following:
#include <stdio.h>
#include <s... | https://codedump.io/share/U8Usw1mcbjJk/1/learning-c-pointers-i-cant-figure-out-why-this-is-not-working-kampr-excercise-5-2 | CC-MAIN-2017-34 | refinedweb | 180 | 64.98 |
The Webpack 4 docs state that:
Webpack is a module bundler. Its main purpose is to bundle JavaScript files for usage in a browser, yet it is also capable of transforming, bundling, or packaging just about any resource or asset.
Webpack has become one of the most important tools for modern web development. It’s primaril... | https://www.sitepoint.com/beginners-guide-webpack-module-bundling/ | CC-MAIN-2018-22 | refinedweb | 3,531 | 58.69 |
facebook ◦ twitter ◦
View blog authority
View blog top tags
Last Friday I posed the question of being able to create "more than SharePoint but less than InfoPath" input forms without having to resort to writing an entire facade on top of a SharePoint List. Didn't get any response to things but I did some digging into t... | http://weblogs.asp.net/bsimser/archive/2005/05/24/408727.aspx | crawl-002 | refinedweb | 1,022 | 67.18 |
#831 – Embedding a Cursor in Your Project as a Resource
If you have a custom cursor that your application uses, you can load it at run-time from an external file. But this requires that you distribute the cursor file with your application. To avoid distributing the .cur file, you can embed this file into your project a... | https://wpf.2000things.com/tag/cursor/ | CC-MAIN-2019-35 | refinedweb | 144 | 53.07 |
Egg cooking
Since Trac 0.9 it has been possible to write plugins for Trac to extend Trac functionality. Even better, you can deploy plugins as Python eggs that really makes plugin development fun.
This tutorial shows how to make an egg, successfully load an egg in Trac and in advanced topics how to serve templates and ... | http://trac-hacks.org/wiki/EggCookingTutorial/BasicEggCooking?version=3 | CC-MAIN-2015-14 | refinedweb | 401 | 52.26 |
Install boto
My machine is running Ubuntu 10.04 with Python 2.6. I ran 'easy_install boto', which installed boto-2.0rc1. This also installs several utilities in /usr/local/bin, of interest to this article being /usr/local/bin/route53 which provides an easy command-line-oriented way of interacting with Route 53.
Create ... | http://agiletesting.blogspot.com/2011/06/managing-amazon-route-53-dns-with-boto.html?showComment=1308797023222 | CC-MAIN-2014-52 | refinedweb | 957 | 65.01 |
Firslty my setup is an Ubuntu laptop and an Ubuntu server.
I have a program on my local laptop which needs to access a certain web-service, (lets call it). Now this service has a firewall which only allows access from my server's IP.
Is there some type of SSH tunnel I could use between my laptop and server so that when... | http://serverfault.com/questions/443620/use-servers-ip-via-ssh-tunnel/443622 | CC-MAIN-2014-52 | refinedweb | 666 | 70.53 |
Table of Contents.
The.0 FAQ — MySQL, DRBD, and Heartbeat”.
Because DRBD is a Linux Kernel module it is currently not supported on platforms other than Linux.
To.
To file.
Although you can rely on the DNS or NIS system for host resolving, in the event of a major network failure these services may not be available. If p... | http://idlebox.net/2009/apidocs/MySQL-5.0-20090720.zip/ha-overview.html | CC-MAIN-2013-48 | refinedweb | 14,936 | 62.48 |
Welcome to the FlashGen.Com Flex Biulder Ant Script page.Here you will find the latest information on the Flex Builder Ant scripts developed to in some way make your development processes smoother and easier.
Articles on how to use these scripts:
- Manifest and Config overview
- Setting up the FlashGen.Com Ant scripts
... | https://blog.flashgen.com/components/distribution/flex-builder-ant-scripts/ | CC-MAIN-2018-22 | refinedweb | 316 | 64.2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.