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 |
|---|---|---|---|---|---|
Am Fri, 06 Apr 2012 03:06:51 -0700
schrieb Walter Bright <newshound2@digitalmars.com>:
> On 4/6/2012 2:41 AM, Johannes Pfau wrote:
> > The last time custom attributes where discussed, a C# like model was
> > proposed. Is there a good reason why we should deviate from the C#
> > implementation?
>
> C# uses a runtime imp... | http://forum.dlang.org/thread/mailman.1363.1333627256.4860.digitalmars-d@puremagic.com?page=6 | CC-MAIN-2014-52 | refinedweb | 1,556 | 67.45 |
!ATTLIST div activerev CDATA #IMPLIED>
<!ATTLIST div nodeid CDATA #IMPLIED>
<!ATTLIST a command CDATA #IMPLIED>
I'm not good with shaders.
Can someone tell me how I would take the skin shader below (from the wiki) and make the specular map be a separate texture instead of getting it from the alpha of the MainTex?
I'm l... | http://answers.unity3d.com/questions/21617/making-the-specular-map-separate-in-a-shader-not-a.html?sort=oldest | CC-MAIN-2015-27 | refinedweb | 749 | 64.61 |
User talk:Michael Ten
Internet Protocol Analysis
Thanks for stopping by and editing the intro to Internet Protocol Analysis. If you have any other recommendations, I'd appreciate hearing from you. The course goes live with approximately 100 real world students on January 14. -- Dave Braunschweig (talk) 23:39, 26 Decemb... | https://en.wikiversity.org/wiki/User_talk:Michael_Ten | CC-MAIN-2019-18 | refinedweb | 1,099 | 57.16 |
Diagramming shouldn't be hard. I know. Me too.
Hi @ygrossm, cool idea! Not sure I will be able to assist very well as Im new to TS.
Anyways, I did implement a similar dynamic port thing, where ports are created from an array. Maybe you can find some inspiration there (even though its not perfect)
Also shouldn't you be ... | https://gitter.im/projectstorm/react-diagrams?at=60800834c60826673bb8cee9 | CC-MAIN-2021-49 | refinedweb | 379 | 59.3 |
Learning Vue for Ionic/Angular Developers – Part 3
By Josh Morony
Learning Vue for Ionic/Angular Developers – Part 2: Navigation
Learning Vue for Ionic/Angular Developers – Part 3: Services/Providers and HTTP Requests (this tutorial)
Learning Vue for Ionic/Angular Developers – Part 4: Storing Data with Local Storage, I... | https://www.joshmorony.com/learning-vue-for-ionic-angular-developers-part-3/ | CC-MAIN-2020-10 | refinedweb | 1,363 | 51.58 |
Chatlog 2013-02-07
From Provenance WG Wiki
See original RRSAgent log or preview nicely formatted version.
Please justify/explain all edits to this page, in your "edit summary" text.
15:45:15 <RRSAgent> RRSAgent has joined #prov 15:45:15 <RRSAgent> logging to 15:45:17 <trackbot> RRSAgent, make logs world 15:45:17 <Zakim... | http://www.w3.org/2011/prov/wiki/index.php?title=Chatlog_2013-02-07&oldid=10823 | CC-MAIN-2014-52 | refinedweb | 3,442 | 78.59 |
Werkzeug provides a
Client to simulate requests to a WSGI application without starting a server. The client has methods for making different types of requests, as well as managing cookies across requests.
>>> from werkzeug.test import Client >>> from werkzeug.testapp import test_app >>> c = Client(test_app) >>> respons... | https://getdocs.org/Werkzeug/docs/2.0.x/test | CC-MAIN-2021-49 | refinedweb | 354 | 52.76 |
Lazy signup for Django
Project description
Introduction
django-lazysignup is a package designed to allow users to interact with a site as if they were authenticated users, but without signing up. At any time, they can convert their temporary user account to a real user account.
django-lazysignup is beta software. Bug r... | https://pypi.org/project/django-lazysignup/0.6.1/ | CC-MAIN-2019-43 | refinedweb | 2,124 | 64.3 |
Pre-order, In-order and Post-order traversal of tree use Depth First Search (DFS). These are called DFS since these techniques visit the tree deeper and deeper until it reaches the leaf node. Level-order traversal (as the name suggest) visits the nodes level by level. Level Order Traversal is Breadth First Search(BFS).... | http://geekrai.blogspot.com/2016/01/binary-tree-level-order-traversal.html | CC-MAIN-2019-04 | refinedweb | 588 | 59.19 |
Burk5,215 Points
Not quite sure what is going on...
Can someone please explain what this method is doing, especially the second part (VocabularyWord that = obj as VocabularyWord; return this.Word == that.Word;)
I am not understanding casting and the "as"
public override bool Equals(object obj) { if(!(obj is Vocabulary... | https://teamtreehouse.com/community/not-quite-sure-what-is-going-on | CC-MAIN-2022-40 | refinedweb | 588 | 61.67 |
Over the last 3 years, the OroTeam has worked hard to deliver OroPlatform, OroCRM, and OroCommerce features and we’ve created a lot of code for new applications, extensions, and packages. As the OroTeam continues to work on the new 2.0 release, we wanted to provide an update on the new changes our community members sho... | https://oroinc.com/orocrm/blog/oro-applications-structure-and-code-namespaces | CC-MAIN-2019-47 | refinedweb | 672 | 50.77 |
By: John Kaster
Abstract: In an article on the continuing rapid enhancements to Borland's Web Services solutions, John K discusses prototype support for .NET web services that use Document Literal encoding
Although Borland surprised many people (particularly our competitors) in the industry by releasing the first RAD s... | http://edn.embarcadero.com/article/27986 | crawl-002 | refinedweb | 1,257 | 53.61 |
0
Hi....can anyone help me to explain what is the use of isPrime=true;
in the last line of this coding..??
I found that it is very important because if i delete it, the answer of the prime number will always constantly 2 and 3..
Even if i put 7 as the input ,the result will also became 2 and 3. The 4 and 7 is not there... | https://www.daniweb.com/programming/software-development/threads/251544/c-program-of-finding-the-total-prime-number-help | CC-MAIN-2017-09 | refinedweb | 215 | 79.6 |
This C++ program demonstrates the use of do-while loop. The do-while loop works the same way as a while or for loop with a difference that the condition for execution of the next iteration is checked after the execution of statements inside the block.
Here is the source code of the C++ program demonstrates the use of d... | http://www.sanfoundry.com/cpp-program-demonstrate-do-while-loop/ | CC-MAIN-2017-17 | refinedweb | 191 | 74.22 |
9.14. Random access functions
The file I/O. (Remember
that
stdio insists on the user inserting a buffer-flushing
operation between each element of a read-write-read cycle.) To control this,
the Random Access functions allow control over the implied read/write. Their declarations and descriptions follow.
#include <stdio... | http://publications.gbdirect.co.uk/c_book/chapter9/random_access_io.html | CC-MAIN-2015-11 | refinedweb | 690 | 53.31 |
Shrinkster
Kyle Tinsley designed Shrinkster the other day (), a .Net clone of TinyURL. I was just wondering how the URL Rewriting is done so that that the URL is absolutely minimal? Did he write a HTTP module or handler? If you have any ideas thank you for your contributing answers! :D
Li-fan Chen
Wednesday, August 4, ... | https://discuss.fogcreek.com/dotnetquestions/4043.html | CC-MAIN-2018-30 | refinedweb | 210 | 87.21 |
are, there are ways to get rid of this
community menace. All that's needed are the following ten steps.
#1 is to make the project depend as much as possible on
difficult tools. He noted that.
2: Encourage the presence of poisonous people and maximize the
damage that they can create. There is a special technique
to the... | http://lwn.net/Articles/369880/bigpage | CC-MAIN-2013-20 | refinedweb | 10,010 | 60.85 |
Hiroshi Oota has found a security flaw in EDE (part of CEDET), a development tool included in Emacs. EDE can store various information about a project, such as how to build the project, in a file named Project.ede in the project directory tree. When the minor mode `global-ede-mode' is enabled, visiting a file causes Em... | https://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00387.html | CC-MAIN-2018-47 | refinedweb | 2,454 | 53.17 |
I’ve worked on this for a couple weeks and can’t make a reproducible example outside my codebase. That’s why I need help! I’m not sure if this is a problem with pybind11 or Armadillo. It’s not a problem with Carma since it happens in situations with no conversion going on.
EDIT: This actually does appear to be a bug in... | https://www.tutorialguruji.com/python/why-might-i-get-heap-corruption-using-armadillo-matrices-with-pybind11/ | CC-MAIN-2021-43 | refinedweb | 784 | 53.71 |
Rose::Class - A very simple class base class.
package MyClass; use Rose::Class; our @ISA = qw(Rose::Class); sub foo { ... } ... MyClass->foo(...) or die MyClass->error; ...
Rose::Class is a generic base class for classes. It provides a single class method (
error), but may be expanded further in the future.
A class tha... | http://search.cpan.org/dist/Rose-Object/lib/Rose/Class.pm | CC-MAIN-2016-36 | refinedweb | 174 | 67.55 |
How to Determine if Empty Resultset Was Returned in Java
ResultSet is a class defined in the standard libraries for the Java programming language. A ResultSet object embodies a set of database records (also called "rows"); typically, that set is the result of querying a database for the rows that satisfy a given condit... | http://www.ehow.com/how_10000621_determine-empty-resultset-returned-java.html | crawl-003 | refinedweb | 217 | 52.8 |
futhark-ffifuthark-ffi
Python library using the Futhark C backend via CFFI
Futhark provides several compiler backends, for example
futhark opencl which is a C backend, and
futhark pyopencl which is a Python
backend based on PyOpenCL. However, the host-side code of the Python
backend is quite slow, leading to a lot of o... | https://libraries.io/pypi/futhark-ffi | CC-MAIN-2022-40 | refinedweb | 181 | 52.6 |
Hi,
Just working through a problem in Accelerated C++ and it's to determine if a string has been duplicated in a given vector. I have got the program to work and run but I also then get an error box stating "Debug Assertion Failed" - "Expression: vector subscript out of range".
The code is:
Any idea why I am getting th... | http://cboard.cprogramming.com/cplusplus-programming/118795-vector-search-matching-string.html | CC-MAIN-2014-41 | refinedweb | 171 | 60.55 |
[ ]
Advertising
Qian Ye commented on ZOOKEEPER-779: ----------------------------------- By "check connectivity", I mean check whether client can connect to a zookeeper server which is listed in the parameters. In my usage, zookeeper is used to store some meta infomation. The logic flow of my app is that if it can conne... | https://www.mail-archive.com/zookeeper-dev@hadoop.apache.org/msg09020.html | CC-MAIN-2017-17 | refinedweb | 233 | 67.38 |
Catalyst::Manual::Cookbook - Cooking with Catalyst
Yummy code like your mum used to bake!
These recipes cover some basic stuff that is worth knowing for Catalyst developers.; for my $error ( @{ $c->error } ) { $c->log->error($error); } $c->stash->{template} = 'errors.tt'; $c->forward('MyApp::View::TT'); $c->clear_error... | http://search.cpan.org/~ether/Catalyst-Manual-5.9007/lib/Catalyst/Manual/Cookbook.pod | CC-MAIN-2015-11 | refinedweb | 709 | 58.58 |
Concurrency with Scala (was Concurrency with Erlang)
By sandoz on Nov 01, 2007
Steve Vinosky has written some really interesting articles on Erlang concurrency and Erlang reliability. I think i am going to buy that book on Erlang he recommends.
After i read his article on concurrency i wondered if the same (contrived b... | https://blogs.oracle.com/sandoz/entry/concurrency_with_scala_was_concurrency | CC-MAIN-2015-32 | refinedweb | 1,260 | 69.31 |
Harnessing the power of Django and Python to build a configurable taxonomy
This article aims to present a way to implement a fully flexible taxonomy system inside your Django app. The editing implementation will rely heavily on the use of Wagtail (a CMS built on Django) but will still be relevant if only Django is used... | https://www.codementor.io/lb0/harnessing-the-power-of-django-and-python-to-build-a-configurable-taxonomy-gi88j23vl | CC-MAIN-2018-17 | refinedweb | 3,212 | 50.12 |
From: Thomas Wenisch (twenisch_at_[hidden])
Date: 2002-06-26 09:43:11
Wandering a bit off topic, but interesting nonetheless...
On Tue, 25 Jun 2002, Paul Mensonides wrote:
>
> If we had a #redef directive and the ability to *evaluate* a macro in the
> definition of a macro--rather than the lazy evaluation that we have ... | https://lists.boost.org/Archives/boost/2002/06/30981.php | CC-MAIN-2021-43 | refinedweb | 237 | 54.46 |
Configuration
SDKs are configurable in many ways. The options are largely standardized between SDKs but there are some differences to better accommodate platform peculiarities. Options are set when the SDK is first initialized.
Options are passed to the
init() as tuple where the first argument is the DSN and the second... | https://docs.sentry.io/error-reporting/configuration/?platform=browser | CC-MAIN-2019-04 | refinedweb | 567 | 57.16 |
import "github.com/rogpeppe/go-internal/renameio"
Package renameio writes files atomically by renaming temporary files.
Pattern returns a glob pattern that matches the unrenamed temporary files created when writing to filename.
WriteFile is like ioutil.WriteFile, but first writes data to an arbitrary file in the same d... | https://godoc.org/github.com/rogpeppe/go-internal/renameio | CC-MAIN-2020-50 | refinedweb | 107 | 51.95 |
Prabahar wrote:
I want to know difference between
Python-cgi and Perl-cgi and also I want
to which one is efficient from the performance.
I want to know difference between
Python-cgi and Perl-cgi and also I want
to which one is efficient from the performance.
The difference between a cgi program written in Perl and a c... | https://grokbase.com/p/python/python-list/057yndmt6z/python-cgi-or-perl-cgi-script-doubt | CC-MAIN-2019-09 | refinedweb | 726 | 56.89 |
usually not familiar building code with Visual C++. On a unix
(linux) box, vxl compiles fine under both gcc-2.95.4 and gcc-3.0.
I got a problem in building vxl under windows2000 using Visual Studio
6.0 Enterprise Edition. CMake compiles fine, then I use CMakeSetup to
create allvxl.dsp.
When I build the project, the fi... | https://sourceforge.net/p/vxl/mailman/vxl-users/?viewmonth=200202&viewday=28 | CC-MAIN-2017-47 | refinedweb | 1,001 | 52.05 |
#include <gdbm.h>
extern gdbm_error gdbm_errno;
extern char *gdbm_version;
GDBM_FILE gdbm_open (const char *name, int block_size,
int flags, int mode,
void (*fatal_func)(const char *));
void gdbm_close (GDBM_FILE dbf);
int gdbm_store (GDBM_FILE dbf, datum key, datum content, int flag););
void size);
int gdbm_fdesc (GD... | http://www.linuxhowtos.org/manpages/3/gdbm.htm | CC-MAIN-2019-43 | refinedweb | 246 | 61.16 |
Section 4.10 Pointers
A pointer is a variable with a type
T* derived from a referenced type
T. The value of a pointer is an address. Therefore, the content of a pointer's container is the address of another container. It is important to not confuse a pointer's value (which is an address) with the address of its contain... | https://prog2.de/book/sec-c-ptr.html | CC-MAIN-2022-33 | refinedweb | 1,917 | 57.91 |
>>>>> "Jean" == Jean Tourrilhes <jt@bougret.hpl.hp.com> writes:Jean> I spent enough hours trying to fight this bug, which is quiteJean> difficult to pin point, and I don't want other people to waste as muchJean> time as I did, especially if it is a known problem but not documented.Yes, I spent almost 2 months trying ra... | https://lkml.org/lkml/2000/7/20/17 | CC-MAIN-2017-09 | refinedweb | 483 | 67.35 |
Hello,
I have a program assignment that I have no idea what it's asking for honestly. I've tried to read all I can about it, but I do not understand. I tried my hand at some code, but it's only returning the address of course.
Here is my attempted code:
#include <iostream> #include <iomanip> #include <string> using nam... | https://www.daniweb.com/programming/software-development/threads/457906/pointers-and-arrays | CC-MAIN-2018-39 | refinedweb | 204 | 66.17 |
Odoo Help
Odoo is the world's easiest all-in-one management software. It includes hundreds of business apps:
CRM | e-Commerce | Accounting | Inventory | PoS | Project management | MRP | etc.
How to trigger function on object write?
I want to send a message to the salesperson assigned to an Account when that account is ... | https://www.odoo.com/forum/help-1/question/how-to-trigger-function-on-object-write-5677 | CC-MAIN-2018-22 | refinedweb | 433 | 62.78 |
Task pane add-ins for Project
Project Standard 2013 and Project Professional 2013 both include support for task pane add-ins. You can run general task pane add-ins that are developed for Word 2013 or Excel 2013. You can also develop custom add-ins that handle selection events in Project and integrate task, resource, vi... | https://dev.office.com/docs/add-ins/project/project-add-ins | CC-MAIN-2017-04 | refinedweb | 2,263 | 52.09 |
On Tuesday 2 March 1999, at 11 h 14, the keyboard of Santiago Vila <sanvila@unex.es> wrote: > Debian is dedicated to free software and it is not in the business of > asking permission to distribute non-free apps. Excuse me? Since many non-free packages require a special clearance to have a Debian distribution at all: >... | https://lists.debian.org/debian-legal/1999/03/msg00006.html | CC-MAIN-2015-40 | refinedweb | 188 | 68.2 |
IMPORTANT: The techniques in this post, while interesting, are outdated and sub-optimal. In short, follow standard equals() and hashCode() practice, but TEST your classes using something like TestUtils. I find a bug almost every time I use that.This post is the first in a series on Comparing Objects.
These three method... | http://glenpeterson.blogspot.com/2010/ | CC-MAIN-2017-22 | refinedweb | 787 | 58.58 |
, here and particularly well concluded Premier League (2016/17) season. There’s various sources for this data out there (kaggle, football-data.co.uk, github, API). I built an R wrapper for that API, but I’ll various information for each of the 380 EPL games in the 2016-17 English Premier League season. We restricted th... | https://dashee87.github.io/football/python/predicting-football-results-with-statistical-modelling/ | CC-MAIN-2018-34 | refinedweb | 662 | 53.27 |
Ruby Array Exercises: Set 5 to 1 if there is a 3 immediately followed by a 5 in a given array of integers
Ruby Array: Exercise-20 with Solution
Write a Ruby program to set 5 to 1 if there is a 3 immediately followed by a 5 in a given array of integers (length 3).
Ruby Code:
def check_array(nums) num1 = nums[0], nums[1]... | https://www.w3resource.com/ruby-exercises/array/ruby-array-exercise-20.php | CC-MAIN-2021-21 | refinedweb | 182 | 55.1 |
UFDC Home myUFDC Home | Help | RSS <%BANNER%> TABLE OF CONTENTS HIDE Section A: Main Section B: Regional News Section B: Editorial/Opinion Section C: Features and Sports Section C: Classified Ads36: Editorial/Opinion page B 4 page B 5 page B 6 page B 7 page B 8 Section C: Features and Sports page C 1 page C 2 page C 3 ... | http://ufdc.ufl.edu/UF00027795/00036 | CC-MAIN-2017-43 | refinedweb | 43,421 | 75.4 |
Semantic UI other front end framework libraries: Tailwind CSS is quite new (it was first released in May 2019) and trending these days, and honestly from their website looks very cool; Bootstrap, which can be installed/used with JavaScript- or Ruby-based frameworks, claims to be “the world’s most popular front-end open... | https://mi-shelbyrose.medium.com/semantic-ui-e33025046aaf?source=user_profile---------7---------------------------- | CC-MAIN-2022-33 | refinedweb | 612 | 56.55 |
React-testing-library have fantastic testing
🐐
I did not know what is testing, and why people check their implementation. So, I decided to learn more about it, and the favour is for Kent C. Dodds testing courses.
Check my other article about testing, and what I know about testing for more information “Make JavaScript ... | https://medium.com/yazanaabed/react-testing-library-have-a-fantastic-testing-198b04699237 | CC-MAIN-2020-50 | refinedweb | 971 | 68.81 |
In this post, I will show how I am using JSS to build a dynamic frontend app with reusable components. Also how to build a new web app with Vuejs and JSS which is content editable and dynamic.
For what use case I am using JSS?
I need to design a web app which has so many reusable components with different contents and ... | https://www.nellysattari.com/jss-part2/ | CC-MAIN-2020-24 | refinedweb | 799 | 59.53 |
Technical Support
On-Line Manuals
RL-ARM User's Guide (MDK v4)
#include <rtl.h>
OS_RESULT os_evt_wait_and (
U16 wait_flags, /* Bit pattern of events to wait for */
U16 timeout ); /* Length of time to wait for event */
The os_evt_wait_and function waits for_and function returns when all of the events
specified in the wa... | https://www.keil.com/support/man/docs/rlarm/rlarm_os_evt_wait_and.htm | CC-MAIN-2020-34 | refinedweb | 145 | 65.93 |
Using ON_UPDATE_COMMAND_UI with menu items and controls (2)
If you have a dialog-based application, to which you have added a menu, any OnUpdate handlers that you included in the dialog's message map will never be called. (Note that the corresponding OnCommand handlers work fine).
The first step is to handle WM_KICKIDL... | http://www.codeguru.com/cpp/w-d/dislog/commandui/article.php/c1935/Using-ONUPDATECOMMANDUI-with-menu-items-and-controls-2.htm | CC-MAIN-2015-40 | refinedweb | 595 | 58.79 |
No technology sticks around for 50 years unless it does its job better than most anything else—especially a computer technology. The C programming language has been alive and kicking since 1972, and it still reigns as one of the fundamental building blocks of our software-defined world.
But sometimes a technology stick... | https://www.infoworld.com/article/3402023/why-the-c-programming-language-still-rules.html | CC-MAIN-2019-39 | refinedweb | 291 | 51.58 |
PVDF Coating Aluminum Sheet / Coil Export to South American, Asia, Europe
US $2500-3600 / Metric Ton
3 Metric Tons (Min. Order)
JIANGDUAN Manufacture supplier hydraulic press brake Export to europe for low price
US $5000-30000 / Set
1 Set (Min. Order)
Export Europe products seat stent precision lathe cnc milling machin... | http://www.alibaba.com/showroom/export-europe.html | CC-MAIN-2017-09 | refinedweb | 767 | 68.97 |
I hope I am postin gin the right spot.I am new to this site.
I need help with sorting the grades, please. Can anyone help?Thanks
include<iostream> #include<iomanip> using namespace std; int main() { double *grades; //point used to point to an array that holds grad double total = 0.0; // total of grades double average; ... | https://www.daniweb.com/programming/software-development/threads/198535/help-with-sorting | CC-MAIN-2017-17 | refinedweb | 170 | 60.65 |
Java Quiz: Passing Objects to Methods
Java Quiz: Passing Objects to Methods
The latest intermediate-level Java quiz from DZone's resident quizmaster Sar Maroof!
Join the DZone community and get the full member experience.Join For Free
Verify, standardize, and correct the Big 4 + more– name, email, phone and global addr... | https://dzone.com/articles/java-quiz-passing-objects-to-methods | CC-MAIN-2018-30 | refinedweb | 300 | 68.87 |
Using BlocklyDuino to Create Arduino Sketches - an Easy Intro to the Arduino Uno & C
Hi All...
If any of you have played with MIT's Scratch or Google's Blockly languages, then you will already understand BlocklyDuino. It is a graphic programming language where the "programmer" plugs together various code blocks, operat... | http://www.instructables.com/id/Using-BlocklyDuino-to-Create-Arduino-Sketches-an-E/ | CC-MAIN-2017-17 | refinedweb | 6,593 | 68.7 |
gatsby-source-airtable-linked
gatsby-source-airtable-linkedgatsby-source-airtable-linked
gatsby-source-airtable.We have combined namespaces. Please migrate to
Gatsby source plugin for pulling rows from an Airtable. This plugin will allow multiple tables and bases. Additionally, it will link the columns that you manuall... | https://www.npmjs.com/package/gatsby-source-airtable-linked | CC-MAIN-2018-51 | refinedweb | 644 | 62.78 |
- Code: Select all
class NotWorkingCommand(sublime_plugin.TextCommand):
def run(self, edit):
view = self.view.window().open_file(os.path.join(os.path.cwd(), "test.txt"))
print view.size()
The file opens correctly, however view.size() returns 0 for this returned view object, as does sublime.active_window().active_view()... | http://www.sublimetext.com/forum/viewtopic.php?f=6&t=4184&start=0 | CC-MAIN-2015-22 | refinedweb | 149 | 68.16 |
: Elizabethan Sea Dogs Author: William Wood Release Date: July 8, 2004 [EBook #12855] Language: English Character set encoding: ISO-8859-1 *** START OF THIS PROJECT GUTENBERG EBOOK ELIZABETHAN SEA DOGS ***�gg f�te--�� which gives a wonderfully good idea Labrador to Florida. This map, long discovered three centuries aft... | https://www.scribd.com/document/2401632/Elizabethan-Sea-Dogs-by-Wood-William-William-Charles-Henry-1864-1947 | CC-MAIN-2018-26 | refinedweb | 21,476 | 66.88 |
Subroutines in PIR are roughly equivalent to the subroutines or methods of a high-level language. They're the most basic building block of code reuse in PIR. Each high-level language has different syntax and semantics for defining and calling subroutines, so Parrot's subroutines need to be flexible enough to handle a b... | http://search.cpan.org/dist/Rakudo-Star/rakudo-star/parrot/docs/book/pir/ch06_subroutines.pod | CC-MAIN-2014-10 | refinedweb | 2,945 | 54.73 |
If statements are great, but sometimes they are just not very practical when you have to test for more than a handful of conditions, have a look at this very poor example of how you build up a long set of if-else statements, its fine for a few checks, but if you’re doing multiple equality checks on a value, its best to... | http://www.jameselsey.co.uk/blogs/techblog/tag/core-java-2/ | CC-MAIN-2017-22 | refinedweb | 757 | 56.45 |
Design a class Exchange to accept a sentence and interchange the first alphabet with the last alphabet for each word in the sentence, with single letter words remaining unchanged. The words in the input sentence are separated by a single blank space and terminated by a full stop.
Example:
INPUT: It is a warm day.
OUTPU... | https://www.happycompiler.com/exchange-alphabets/ | CC-MAIN-2020-24 | refinedweb | 356 | 68.47 |
So it was obvious that I needed to show a preview image in the file import dialog. As the user clicks on files in the ListView the preview control updates to show the image. Naturally I turned to CodeProject to see if anyone had already implemented such a beast. If they have I couldn't find it, so I rolled my own.
CFil... | http://www.codeproject.com/KB/dialog/imagepreviewdialog.aspx | crawl-002 | refinedweb | 2,826 | 55.24 |
Connect your Apache Spark application with Kafka-enabled Azure Event Hubs
This tutorial walks you through connecting your Spark application to Kafka-enabled Event Hubs for real-time streaming. This integration enables streaming without having to change your protocol clients or run your own Kafka or Zookeeper clusters. ... | https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-kafka-spark-tutorial | CC-MAIN-2019-39 | refinedweb | 585 | 64.2 |
Code covered by the BSD License
by
Dirk-Jan Kroon
Dirk-Jan Kroon (view profile)
70 files
4803 downloads
4.53065
04 Nov 2008
(Updated
25 Jan 2011)
MIP, Color, Slice and Shaded 3D (shearwarp) Volume Rendering, interactive 3D view/measurement GUI
|
Watch this File.
This file inspired Pcolor3.
Hello,
Can you please tell me... | http://www.mathworks.com/matlabcentral/fileexchange/21993-viewer3d | CC-MAIN-2015-32 | refinedweb | 1,561 | 76.93 |
#include <sys/mac_provider.h> mac_register_t *mac_alloc(uint_t version);
void mac_free(mac_register_t *mregp);
int mac_register(mac_register_t *mregp, mac_handle_t *mhp);
int mac_unregister(mac_handle_t mh);
void mac_tx_update(mac_handle_t mh);
void mac_link_update(mac_handle_t mh, link_state_t new_state);
void mac_rx(... | http://docs.oracle.com/cd/E36784_01/html/E36886/mac-rx-9f.html | CC-MAIN-2016-26 | refinedweb | 708 | 52.39 |
On Tue, 16 Mar 1999, Klaus Weide wrote: > On Sun, 14 Mar 1999, Vlad Harchev wrote: > > On Tue, 16 Mar 1999, Klaus Weide wrote: > [ ... ] > > > > Now I think that it should be: > > LynxChangeStyle (CStyle.style,ABS_ON,CStyle.previous); > > see few lines below, > > > > + current_style++; > > > > + } > > > > +#endif > > >... | http://lists.gnu.org/archive/html/lynx-dev/1999-03/msg00602.html | CC-MAIN-2013-48 | refinedweb | 1,225 | 70.33 |
Java String/int FAQ: How do I convert a
String to an
int data type. Let’s take a look at two short examples.
1) A simple Java “String to int” conversion example
Ignoring the exception it can throw, all you need to convert a
String to
int is this one line of code:
int i = Integer.parseInt(myString);
If the
String repres... | http://alvinalexander.com/comment/361 | CC-MAIN-2019-26 | refinedweb | 473 | 59.74 |
This tip is about the usage of DELETE HTTP verb in Web API RESTful Services. In this tip, we demonstrate how a DELETE request can be issued using jQuery AJAX and how such a Delete request can pass data to Server, both in request Body as well as Uri. We learn to call and consume a Web API DELETE action using jQuery AJAX... | https://www.codeproject.com/Tips/986510/Understand-about-DELETE-Verb-in-Web-API-RESTful-Se | CC-MAIN-2018-13 | refinedweb | 860 | 61.77 |
Opened 6 years ago
Closed 6 years ago
Last modified 6 years ago
#13121 closed (duplicate)
Backwards compatible patch for ModelForm to improve model validation.
Description
Sometimes a model needs to create other model instances (to create relationships that are
unimportant to the model's client) at the time of its own ... | https://code.djangoproject.com/ticket/13121 | CC-MAIN-2016-36 | refinedweb | 2,216 | 58.18 |
RAW File Loading
In this tutorial you will learn how to open RAW or DAT files using the
metavision_core.event_io.RawReader and
metavision_core.event_io.EventDatReader classes.
import os import numpy as np from metavision_core.event_io.raw_reader import RawReader from metavision_core.event_io.py_reader import EventDatRe... | http://docs.prophesee.ai/stable/metavision_sdk/modules/core/tutorials/raw_dat_loading.html | CC-MAIN-2022-05 | refinedweb | 714 | 64.81 |
Exercises 11.10 Exercises
1.
The following sample file called
studentdata.txt contains one line for each student in an imaginary class. The student's name is the first thing on each line, followed by some exam scores. The number of scores might be different for each student.
Using the text file
studentdata.txt write a ... | https://runestone.academy/ns/books/published/httlacs/files_exercises.html | CC-MAIN-2022-40 | refinedweb | 454 | 77.13 |
Daily progress: Saving and Loading Data in Unity
With our Overview panel all filled out, it means we also have our case data all filled out as well. We’ll eventually want to save it to Amazon to retrieve at any time later, but in order to do that, we’ll need to save that information into a file.
Some common forms of sa... | https://stevethedragon.medium.com/daily-progress-saving-and-loading-data-in-unity-1519e14687c5?source=read_next_recirc---------2---------------------8ef56c63_813c_4097_a2cd_e38f7b2c8ebf---------- | CC-MAIN-2022-21 | refinedweb | 994 | 61.16 |
This Space Eater Java Code will eat your space on C drive (or you can change file path in the code below) and slow down your system, this code doesn’t harm your system. When you stop executing the program it will stop eating your space and you can delete the created .dll file, Code is just for fun
package client; impor... | http://www.awasthiashish.com/2012/10/code-that-eats-hard-drive-space-space-eater-virus-in-java.html | CC-MAIN-2021-39 | refinedweb | 151 | 74.59 |
The DC/OS network stack provides
- IP connectivity to containers
- built-in DNS-based service discovery
- layer 4 and layer 7 load balancing
- unique cluster identity option
IP connectivity
A container running on DC/OS can obtain an IP address using one of the three networking modes:
These three networking modes are av... | http://docs-staging.mesosphere.com/mesosphere/dcos/1.11/networking/ | CC-MAIN-2019-51 | refinedweb | 1,610 | 52.09 |
On Mon, Mar 16, 2009 at 9:38 AM, John Zelle <john.zelle at wartburg.edu> wrote: >> = Kirby > = John = Kirby >> Simple solution: >> >>> def kick(o): >> >> return next(o) > > Of couse, the simplest solution is just to bind kick to next: > >>>> o = iter(range(10)) >>>> kick = next >>>> kick(o) > 0 >>>> kick(o) > 1 > > Tha... | https://mail.python.org/pipermail/edu-sig/2009-March/009150.html | CC-MAIN-2018-26 | refinedweb | 574 | 70.23 |
/* * String hash table. * Copyright (c) 1995, 1996, 1997 STRHASH_H #define STRHASH_H #ifndef ___P #if PROTOTYPES #define ___P(protos) protos #else /* no PROTOTYPES */ #define ___P(protos) () #endif /* no PROTOTYPES */ #endif typedef struct stringhash_st *StringHashPtr; /* * Init a hash and return a hash handle or NULL ... | http://opensource.apple.com/source/enscript/enscript-15/enscript/afmlib/strhash.h | CC-MAIN-2015-22 | refinedweb | 265 | 75.71 |
We have struggled with a corrupted database and have gone through too many issues and challenges to document in a blog post. But, I thought I would document the fix to some index corruption that I found during the process. This is all on Red Hat 64 bit Linux Oracle 12.1.0.2 database.
A couple of coworkers of mine built... | https://www.orafaq.com/aggregator/sources/450?page=1 | CC-MAIN-2018-22 | refinedweb | 5,659 | 63.59 |
Regarding “reload” and “capture” input of PSoC4 Timer Counter.YuMa_1534086
Hello.
Customer is considering measuring input pulse width using attached PDF method.
Device is PSoC4.
“reload” is executed at the timing of input signal rising edge.
And “capture” is executed at the next rising edge.
So they are considering mea... | https://community.cypress.com/thread/53429 | CC-MAIN-2020-45 | refinedweb | 853 | 55.13 |
Work at SourceForge, help us to make it a better place! We have an immediate need for a Support Technician in our San Francisco or Denver office.
You can subscribe to this list here.
Showing
4
results of 4
> > Building clisp on Solaris 8 does not run on Solaris 7 and craps out
> > with this error:
>
> why did you think... | http://sourceforge.net/p/clisp/mailman/clisp-list/?viewmonth=200201&viewday=14 | CC-MAIN-2014-35 | refinedweb | 546 | 68.16 |
csEventTimer Class Reference
This class implements a timer. More...
#include <csutil/timer.h>
Inherits scfImplementation1< csEventTimer, iEventTimer >.
Detailed Description
This class implements a timer.
You can add operations to it and they will be performed at the dedicated time.
Definition at line 43 of file timer.h... | http://www.crystalspace3d.org/docs/online/api-1.4.1/classcsEventTimer.html | CC-MAIN-2014-52 | refinedweb | 104 | 53.47 |
I am working on a math tutor program that will generate two random numbers and display the result. I believe I have to use the srand() function to generate random number. The book mentions a seed value which I am a very unclear on. Could I get an explanation on what a seed value is? Below is the source that I have got ... | http://cboard.cprogramming.com/cplusplus-programming/133116-random-number-srand.html | CC-MAIN-2013-48 | refinedweb | 125 | 73.17 |
CDT/User/FAQ?
- 2.13 How can I generate the parser log file?
-?
Introduction
How do I contribute to this FAQ?
Simply edit this page. You will need to log in using your bugzilla username and password to gain access. If you don't have a Bugzilla account, you can create a new one. the CDT Project page to find out more abo... | http://wiki.eclipse.org/index.php?title=CDT/User/FAQ&oldid=342720 | CC-MAIN-2020-24 | refinedweb | 4,012 | 57.27 |
0
Hey there, working on a program thats going to have a bunch of functions, but for now I am stuck on something that will be reused throughout the program alot: passing a string pointer to a function.
It may seem redundant or arbitrary that I am passing it as a pointer, but is required for the project in question.
I am... | https://www.daniweb.com/programming/software-development/threads/358841/passing-a-string-pointer-to-a-function | CC-MAIN-2018-09 | refinedweb | 301 | 65.05 |
I’m a Nurse in New York. Teachers Should Do Their Jobs, Just Like I Did.
Last week, Kristen McConnell argued that schools are essential to the functioning of society, which makes teachers essential workers.
“I can understand that teachers are nervous about returning to school,” she wrote. .”
I don’t know why the idea o... | https://www.theatlantic.com/letters/archive/2020/08/should-schools-reopen-teachers-respond/615055/?utm_source=feed | CC-MAIN-2020-40 | refinedweb | 1,955 | 60.65 |
:)
We.
The powers that be have just posted slides and WMA audio recordings from GameFest! Here’s some links.
We.
If..
When?
I've started to look through some of the feedback from our recent survey, and noticed that there's a lot of you out there who are having trouble understanding the content pipeline. Documentation ... | http://blogs.msdn.com/etayrien/default.aspx | crawl-002 | refinedweb | 679 | 57.37 |
#include <BCP_vg_user.hpp>
Collaboration diagram for BCP_vg_user:
In that derived class the user can store data to be used in the methods she overrides. Also that is the object the user must return in the USER_initialize:.
unpack_module_data.)
Definition at line 50 of file BCP_vg_user.hpp.
Definition at line 116 of fil... | http://www.coin-or.org/Doxygen/CoinAll/class_b_c_p__vg__user.html | crawl-003 | refinedweb | 320 | 50.94 |
Customization for developers
This tutorial provides an overview of how to customise different aspects of Plone 3
Introduction
What are we doing here?
Plone has a strong culture of customisation. That is, virtually every aspect of Plone can be customised or overridden, without touching the original source code. This tut... | http://plone.org/documentation/tutorial/customization-for-developers/tutorial-all-pages | crawl-002 | refinedweb | 1,724 | 55.54 |
Copyright © 2012 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C liability, trademark and document use rules apply.
This document specifies goals, requirements and use cases for the XQuery Update Facility was developed by the W3C XML Query Working Group, which is part of the XML Activity. The Working Group expects to... | http://www.w3.org/TR/xquery-update-30-requirements-use-cases/ | CC-MAIN-2015-06 | refinedweb | 2,363 | 51.34 |
Introduction
I have heard from various people that myprevious articles on common Excel tasks in pandas were useful in helping new pandas users translate Excel processes into equivalent pandas code. This article will continue that tradition by illustrating various pandas indexing examples using Excel’s Filter function a... | http://www.shellsec.com/news/28304.html | CC-MAIN-2017-30 | refinedweb | 2,121 | 61.87 |
to print the argument values in case of an exception (which is most of the time the only case where you want the values to be traced...)
import inspect def fn(x): try: print(1/0) except: frames = inspect.trace() argvalues = inspect.getargvalues(frames[0][0]) print("Argvalues: ", inspect.formatargvalues(*argvalues)) ra... | http://www.javamonamour.org/2015/03/ | CC-MAIN-2020-05 | refinedweb | 102 | 69.99 |
25 May 2010 18:36 [Source: ICIS news]
TORONTO (ICIS news)--A court in Germany’s Lower Saxony state on Tuesday began hearing a case against a chemical trader charged with allegedly supplying hydrogen peroxide to an Islamic terrorist group to make explosives, the court said in a statement.
The court in Verden said the pu... | http://www.icis.com/Articles/2010/05/25/9362504/germany-starts-case-against-chemical-trader-over-terrorist-plot.html | CC-MAIN-2015-11 | refinedweb | 235 | 51.01 |
Customizing the JupyterHub environment for Data 8
The Data 8 course uses a collection of Python modules and open-source technology for course infrastructure as well as teaching. We’ve provided all of these materials as a Docker image that you can connect to your JupyterHub so that all users will have the environment ne... | http://data8.org/zero-to-data-8/deploy/customize_hub_environment | CC-MAIN-2019-35 | refinedweb | 1,094 | 53.1 |
Hi On Sun, Oct 08, 2006 at 08:03:24PM +0300, Siarhei Siamashka wrote: > On Thursday 05 October 2006 11:22, Michael Niedermayer wrote: > > > > > ... > > Well, here are the results of decoding precision tests for the collection of > samples you adviced: > > Each file was compressed with lame 3.96.1 to mp3 > ('lame -b bit... | http://ffmpeg.org/pipermail/ffmpeg-devel/2006-October/017904.html | CC-MAIN-2016-50 | refinedweb | 313 | 56.79 |
Python bindings for librtmp, built with cffi
python-librtmp
python-librtmp is a RTMP client library. It uses the implementation provided by librtmp via cffi.
- Free software: BSD license
- Documentation:
Installation
The latest stable version is available to install using pip
sudo pip install python-librtmp
But you can... | https://pypi.org/project/python-librtmp/ | CC-MAIN-2017-51 | refinedweb | 469 | 61.63 |
AngularJS is a really powerful and extensible Javascript library that can be used for all number of applications. Team that up with Flask and you’ve got a great foundation for building web apps.
Getting started with Flask and AngularJS can seem like a daunting task at first, reading through page after page of documenta... | https://devcereal.com/setting-flask-angularjs/ | CC-MAIN-2017-17 | refinedweb | 1,859 | 73.37 |
I have been searching and i cant seem to understand what i am doing incorrectly. I was previously dealing with the error:
‘int’ object not iterable
I believe this was caused by incorrectly using the sort function. However now i am receiving the following error:
‘object of type ‘NoneType’ has no len()’
I am worried sinc... | https://discuss.codecademy.com/t/type-related-errors-15-15/305384 | CC-MAIN-2018-26 | refinedweb | 119 | 64.41 |
Today I came across this and I want to answer to Ryan since he deserves more than one answer.Today I came across this and I want to answer to Ryan since he deserves more than one answer.
I strongly agree with Ryan but I notice he never tried using web2 (probably because it is not released yet) in Twisted Matrix.
... ha... | http://vvolonghi.blogspot.com/2005/04/today-i-came-across-this-and-i-want-to.html | crawl-001 | refinedweb | 580 | 61.87 |
The main goal of this lab is to gain facility with two common methods of implementing the data organization type called stacks.
Create a directory for this lab in your directory for this class, and move to the lab directory.
The reading describes a stack as an object that can store data and that has the following opera... | http://www.math.grin.edu/~walker/courses/161.fa13/modules/pointers-stacks-queues/lab-stacks.shtml | CC-MAIN-2018-39 | refinedweb | 911 | 63.63 |
______________________________________________________________________________
Tcl_Interp *interp (in)
Interpreter containing variable.
char *varName (in)
Name of variable. May include a series of :: namespace qualifiers to specify a variable in a particular namespace. May refer to a scalar variable or an element of an... | http://alvinalexander.com/unix/man/man3/Tcl_SetVar.3.shtml | CC-MAIN-2019-47 | refinedweb | 146 | 58.28 |
Teaser: Bare-knuckle SOA
Teaser: Bare-knuckle SOA
Join the DZone community and get the full member experience.Join For Free
Are your API program basics covered? Read the 5 Pillars of Full Lifecycle API Management eBook
I’m working on this idea, and I don’t know if it appeals to you guys. I’d like your input on whether ... | https://dzone.com/articles/teaser-bare-knuckle-soa-0 | CC-MAIN-2018-13 | refinedweb | 1,154 | 69.52 |
WiringPi supports an extension module for the SN3218 I2C based LED controller. This little chip can control up to 18 individual LEDs (or 6 RGB LEDs, or any combination in-between) and has an on-board PWM generator to allow for 256 light levels per LED.
wiringPi treats the SN3218 as an 18-pin analog output device.
Inclu... | http://wiringpi.com/extensions/i2c-sn3218-led-controller/ | CC-MAIN-2021-43 | refinedweb | 241 | 70.23 |
3.45 AM, my son is happy and awake. It's time to start his morning routine. He's shouting for some bread with Nutella and wants to go downstairs to play.
3.46 AM I get a punch from my wife, that I have to go out of bed and convince him that it's still the middle of the night. Tough job which results in getting up, goin... | http://www.instructables.com/id/OK-to-wake-light-with-automated-clock/ | CC-MAIN-2017-22 | refinedweb | 4,334 | 75.54 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.