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
Defines a plane in 3D space. More... #include <OgrePlane.h> Defines a plane in 3D space. Definition at line 61 of file OgrePlane.h. The "positive side" of the plane is the half space to which the plane normal points. The "negative side" is the other half space. The flag "no side" indicates the plane itself. Definition ...
http://www.ogre3d.org/docs/api/html//classOgre_1_1Plane.html
crawl-003
refinedweb
304
63.46
Hello World -- Your First Program (C# Programming Guide) The following console program is the C# version of the traditional "Hello World!" program, which displays the string Hello World!. Let us now look at the important parts of this program in turn. The first line contains a comment: The characters // convert the res...
http://msdn.microsoft.com/en-US/library/k1sx6ed2(v=vs.80).aspx
CC-MAIN-2013-20
refinedweb
498
64.71
1600718400 There are so many resources out there that can teach you deep learning, and if you are reading this, you are probably wondering which one you should pursue. I wrote this article to share the course I took that not only helped me to get a good grasp of deep learning in about 9 months, but also allowed me to b...
https://morioh.com/p/e60636bfeb2e
CC-MAIN-2021-49
refinedweb
502
51.89
This is one of the 100 recipes of the IPython Cookbook, the definitive guide to high-performance scientific computing and data science in Python. You need scikit-image for this recipe. You will find the installation instructions here. You also need to download the Beach dataset. () import numpy as np import matplotlib ...
http://nbviewer.jupyter.org/github/ipython-books/cookbook-code/blob/master/notebooks/chapter11_image/01_exposure.ipynb
CC-MAIN-2017-47
refinedweb
258
51.04
ObjectScript Class Explorer - Exploring ObjectScript Classes in the UML Notation Hello!! Introduction to InterSystems Products IRIS (previously known as Caché) is a multi-model DBMS. You can access it by using SQL queries or interact with stored objects and procedures via interfaces available for various programming la...
https://community.intersystems.com/post/objectscript-class-explorer-exploring-objectscript-classes-uml-notation
CC-MAIN-2021-39
refinedweb
1,201
53.55
In C#, an enum (or enumeration type) is used to assign constant names to a group of numeric values. It makes constant values more readable . To understand Enum, have a look to the course Table Shown below. Here course level 1,2,3 indicates the course difficulty where 1 means the course is for beginners , 2 means, the c...
https://www.sharpencode.com/article/EntityFramework/database-first-approach/working-with-enums
CC-MAIN-2021-43
refinedweb
1,348
60.55
Juanjo Aguililla (hexagonkt.com) I work as a JVM Back-end developer using Kotlin, Java or Groovy. I maintain the Hexagon Toolkit for writing server applications in Kotlin. Education Technical Education in Software Development Work Backend Developer TechEmpower released round 19 of their server benchmark (including Hexa...
https://dev.to/jaguililla
CC-MAIN-2021-49
refinedweb
162
67.65
13 May 2011 14:38 [Source: ICIS news] LONDON (ICIS)--Synthos’ saw its first-quarter net profit climb 87.9% to zlotych (Zl) 178.3m ($64.8m, €45.6m) from Zl 94.9m in the same period a year ago, as the company continued to capitalise on a boom in demand for synthetic rubber, the Polish producer said on Friday. Sales reven...
http://www.icis.com/Articles/2011/05/13/9459873/polands-synthos-first-quarter-net-profit-climbs-87.9-to.html
CC-MAIN-2015-11
refinedweb
186
67.65
Hash Table vs STL Map This article focus on : Compare and contrast Hash table and an STL Map. How is the hash table implemented? If the number of inputs is small, which data structure options can be used instead of a hash table? Hash table In a hash table, a value is stored by calling a hash function on a key. - Values...
https://www.geeksforgeeks.org/hash-table-vs-stl-map/
CC-MAIN-2019-43
refinedweb
831
57.1
Hide Forgot Needing Back up and Restore procedures/feature to restore a single project. -Looking for a feature that would make it easy to restore a whole project to its original state if deleted. - Either restoring from past ectd backups or from a separate back up of the project. Currently `oc export` requires addition...
https://bugzilla.redhat.com/show_bug.cgi?id=1303205
CC-MAIN-2021-10
refinedweb
260
64.95
Want to spice up your text-effects in CSS? Check out this quick tip on creating funky text backgrounds with the CSS background-clip property. Replacing React's Redux library with the useReducer Hook Redux can be a tricky concept to get. By using React's useReducer Hook we can replace complex Redux configurations and st...
https://robkendal.co.uk/blog/2020-04-07-replacing-reacts-redux-library-with-usereducer-hook/
CC-MAIN-2020-34
refinedweb
3,796
51.89
Containers Set up soft multi-tenancy with Kiosk on Amazon Elastic Kubernetes Service Introduction Achieving complete isolation between multiple tenants running in the same Kubernetes cluster is impossible today. The reason is because Kubernetes was designed to have a single control plane per cluster and all the tenants...
https://aws.amazon.com/blogs/containers/set-up-soft-multi-tenancy-with-kiosk-on-amazon-elastic-kubernetes-service/
CC-MAIN-2020-45
refinedweb
2,412
58.89
Now that you have the basic idea behind iterators under your belt, you can already answer some questions on iterator usage. Here's a scenario based on actual events: I have an iterator that is rather long and complicated, so I'd like to refactor it. For illustrative purposes, let's say that the enumerator counts from 1...
https://blogs.msdn.microsoft.com/oldnewthing/20080813-00/?p=21253
CC-MAIN-2017-22
refinedweb
4,116
71.55
no module named 'mqtt' !!! Hello, I'm trying to follow the example given for mqtt , but I always get that error , is there someone who had the same problem ?? - RobTuDelft As Alex says it's an external library. The file needs to be present alongside your boot.py and main.py or in one of the folders in your search path....
https://forum.pycom.io/topic/1103/no-module-named-mqtt
CC-MAIN-2018-17
refinedweb
119
86.5
Setting Logging Level At Line Granularity The basic idea is to define a local static variable for each logging statement. The variable is used to enable/disable each individual log statement. A Set() function will be defined as a way to change the value of any of the local static variables. The static variable can have...
http://www.drdobbs.com/cpp/logging-in-c/cpp/logging-in-c-part-2/221900468?pgno=2
CC-MAIN-2015-22
refinedweb
1,104
52.9
[Android] Filtering a ListView using an ArrayAdapter 22 May, 2010 7 Comments The contents ListView can be filtered by the users input when it is enabled. The filter input is enabled by calling its setTextFilterEnabled method. When this is called, the next sequence of user’s input will taken as the filter for the list. ...
https://kahdev.wordpress.com/2010/05/22/filtering-a-listview-using-an-arrayadapter/
CC-MAIN-2019-13
refinedweb
411
61.56
I don't know the inner workings of c so this is quite confusing. I've been playing with arrays and pointers and a lot of weird stuff is going on, I hope someone can point me to a resource that explains how this stuff works under the hood. I was looking at the c programming reference but could not find answers. So here ...
https://codedump.io/share/YlN33t1nmrsk/1/i-can-access-array-element-32-when-i-only-allocate-30c
CC-MAIN-2017-47
refinedweb
354
56.42
30 August 2012 04:54 [Source: ICIS news] SINGAPORE (ICIS)--The heavy rain threat from Tropical Storm Isaac is expected to spread inland during the next few days, with water levels to remain high along the northern gulf coast, the US National Hurricane Center (NHC) said in its latest update. "Even though Isaac is no lon...
http://www.icis.com/Articles/2012/08/30/9591079/heavy-rain-threat-from-isaac-to-spread-inland-over-next-few-days-nhc.html
CC-MAIN-2015-22
refinedweb
152
59.03
Build an Online Store with Rails Free JavaScript Book! Write powerful, clean and maintainable JavaScript. RRP $11.95 Online shopping is a form of electronic commerce which allows customers to directly buy products or services like e-books, software, and streaming media over the Internet using a web browser. This kind o...
https://www.sitepoint.com/build-online-store-rails/
CC-MAIN-2021-04
refinedweb
3,543
56.55
12-05-2017 05:25 AM - edited 12-05-2017 05:26 AM Hi, I want to always have the newest yammer post in a specific group to be showen at the top. But when using the REST call as it is, it will always show the one that has had the latest activity. My call look like this. I would like either to orderby the created_at date o...
https://techcommunity.microsoft.com/t5/Yammer-Developer/Yammer-REST-call-how-to-order-by-creation-date/m-p/138535/highlight/true
CC-MAIN-2019-35
refinedweb
198
76.56
I am using Boost 1.47 I have these class methods: void Remove(const std::type_info &type); void Remove(const boost::python::type_info type); I tried wrapping them both in Boost.Python: void (Entity::*Remove1)(const std::type_info&) = &Foo::Remove; void (Entity::*Remove2)(const boost::python::type_info) = & Foo::Remove;...
https://mail.python.org/pipermail/cplusplus-sig/2012-February/016406.html
CC-MAIN-2016-44
refinedweb
205
57.37
What are web components? This interactive tutorial introduces the basics of what web components are, how they work, and why they're useful. Each short section introduces a single concept, then lets you try out that concept in a live demo. Time required: 5–10 minutes Every web app or site you’ve ever made was created wi...
https://component.kitchen/tutorial
CC-MAIN-2018-26
refinedweb
2,639
61.77
0 I wonder why this program does not do any changes to the text file that I am trying to modify. Scenario: My program uses the Fstream header file, I declared infile as IFSTREAM and outfile as OFSTREAM. I simply want to transfer data from infile to outfile. The data is as follows; Adam Larson 89 90 This data is saved i...
https://www.daniweb.com/programming/software-development/threads/490529/c-net-i-o-using-fstream-not-working
CC-MAIN-2017-09
refinedweb
246
62.48
Next: nc_inq_dim Family, Previous: nc_def_dim, Up: Dimensions The function nc_inq_dimid returns (as an argument) the ID of a netCDF dimension, given the name of the dimension. If ndims is the number of dimensions defined for a netCDF dataset, each dimension has an ID between 0 and ndims-1. int nc_inq_dimid (int ncid, c...
http://www.unidata.ucar.edu/software/netcdf/old_docs/docs_3_6_1/netcdf-c/nc_005finq_005fdimid.html#nc_005finq_005fdimid
crawl-003
refinedweb
170
56.55
Using event bus in Vue.js to pass data between components Brian Neville-O'Neill Originally published at blog.logrocket.com on ・5 min read Written by Nwose Lotanna✏️ Prerequisites This post is suited for developers of all stages, including beginners. Here are a few things you should already have before going through thi...
https://dev.to/bnevilleoneill/using-event-bus-in-vue-js-to-pass-data-between-components-39k4
CC-MAIN-2019-43
refinedweb
1,135
64.81
A friend asked to help to write a tiny script that would list fields that contain only nulls (i.e., no data at all). So, basically find any columns that were not populated with any value for any feature since their creation time. Quite easy and quick to do with arcpy. import arcpy fc = r"C:\Users\user\Documents\ArcGIS\...
https://tereshenkov.wordpress.com/2015/06/29/find-fields-in-a-feature-class-that-has-only-nulls-with-arcpy/
CC-MAIN-2017-43
refinedweb
169
59.6
In lesson 2.9 --. It’s worth noting that a const object is not required to initialize its member variables (that is, it’s legal for a const class object to call a constructor that initializes all, some, or none of the member variables)! rule: Make any member function that does not modify the state of the class object c...
http://www.learncpp.com/cpp-tutorial/810-const-class-objects-and-member-functions/
CC-MAIN-2017-26
refinedweb
3,267
63.09
(For more resources on wxPython, see here.) Introduction Displaying collections of data and managing complex window layouts are a task that most UI developers will be faced with at some point. wxPython provides a number of components to help developers meet the requirements of these more demanding interfaces. As the am...
https://www.packtpub.com/books/content/wxpython-28-advanced-building-blocks-user-interface
CC-MAIN-2017-51
refinedweb
5,506
56.76
Lesson 2 - Java Testing - The first unit test in JUnit In the previous lesson, Introduction to software testing in Java, beans or JavaFX applications that just pick something from the database. To be more specific, there is no point in testing a method like this: public void insertItem(string name, double price) { try ...
https://www.ict.social/java/testing/java-testing-the-first-unit-test-in-junit
CC-MAIN-2020-16
refinedweb
1,641
54.12
putmsg(2) putmsg(2) NAME putmsg, putpmsg - send a message on a stream SYNOPSIS #include <<<<stropts.h>>>> int putmsg( int fildes, struct strbuf *ctlptr, struct strbuf *dataptr, int flags ); int putpmsg( int fildes, struct strbuf *ctlptr, struct strbuf *dataptr, int band, int flags ); DESCRIPTION things Hewlett-Packard ...
http://modman.unixdev.net/?sektion=2&page=putmsg&manpath=HP-UX-11.11
CC-MAIN-2017-17
refinedweb
407
60.55
While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial. The alert() method available on the Window object for notifications and alerts in yo...
https://www.digitalocean.com/community/tutorials/vuejs-vue-sweetalert2
CC-MAIN-2022-33
refinedweb
572
54.93
source code Optimised sequence conversion code (PRIVATE). You are not expected to access this module, or any of its code, directly. This is all handled internally by the Bio.SeqIO.convert(...) function which is the public interface for this. The idea here is that while doing this will work: from Bio import SeqIO record...
http://biopython.org/DIST/docs/api/Bio.SeqIO._convert-module.html
CC-MAIN-2016-30
refinedweb
119
52.97
. On Windows 8, see Native Image Task. automatically installed with Visual Studio. To run the tool, use the Developer Command Prompt for Visual Studio (or the Visual Studio Command Prompt in Windows 7). For more information, see Command Prompts. At the command prompt, type the following: Syntax assembly specified by th...
https://docs.microsoft.com/en-us/dotnet/framework/tools/ngen-exe-native-image-generator
CC-MAIN-2019-13
refinedweb
608
50.53
Google Play Games plugin for Unity Google Play Games plugin for Unity allows you to access the Google Play Games API through Unity's social interface. The plugin provides support for the following features of the Google Play Games API: - unlock/reveal/increment achievement - post score to leaderboard - cloud save read/...
http://unitylist.com/r/1de/play-games-plugin-for-unity
CC-MAIN-2016-50
refinedweb
2,441
57.16
Introduction Happy to start blogging after few months. I had to wait to publish my work about 3 months as academic works are getting heavier day by day. But at the end of the semester I was able to allocate a time slot for my blogging. One interesting thing I found in Java was Java Robot class. I said it is interesting...
https://buddhimawijeweera.wordpress.com/2012/04/
CC-MAIN-2017-43
refinedweb
368
64.81
[ ] Norval Hope commented on DIRSERVER-796: --------------------------------------- ========= from Norval Hope <nrhope@gmail.com> hide details 10:29 am (4 hours ago) to Apache Directory Developers List <dev@directory.apache.org> I have a question regarding what to me seems to be a problem with Rdn.tostring() and LdapDN...
http://mail-archives.apache.org/mod_mbox/directory-dev/200612.mbox/%3C9828209.1165982422881.JavaMail.jira@brutus%3E
CC-MAIN-2016-44
refinedweb
666
58.08
First of all, I want to apologize in advance for my bad English since I'm not a native speaker. I'll try my best to describe the issue I have and hopefully someone here would help solving my problem. Any suggestions/comments would be highly appreciated. I'm trying to implement simple USART echo program. The program sho...
https://forum.sparkfun.com/viewtopic.php?f=4&t=38130
CC-MAIN-2019-09
refinedweb
452
65.62
You can use quaternions to describe rotations and quaternion products to carry out these rotations. These products have the form qpq* where q represents a rotation, q* is its conjugate, and p is the the vector being rotated. (That’s leaving out some details that we’ll get to shortly.) The primary advantage of using qua...
https://www.johndcook.com/blog/2021/06/16/faster-quaternion-rotations/
CC-MAIN-2022-40
refinedweb
942
61.06
Invalid read in js _Pop Statement Status () People (Reporter: romaxa, Assigned: igor) Tracking Firefox Tracking Flags (Not tracked) Attachments (3 attachments) Created attachment 270474 [details] Full Valgrind log Open Trunk ff on URL with valgrind ==30698== Invalid read of size 4 ==30698== at 0x4F007FA: js_PopStatemen...
https://bugzilla.mozilla.org/show_bug.cgi?id=386478
CC-MAIN-2018-51
refinedweb
814
57.98
AMA with webpack Team A bundler for JavaScript and friends. Packs many modules into a few bundled assets. Held on What are the highlights of webpack 2? - new features? - breaking changes? - motivations? We published a gist that explains the changes in detail. Here is a short summary: webpack 2 will have native ES6 Modu...
https://hashnode.com/ama/with-webpack-team-cilqks5re00038g53qqgpvqza
CC-MAIN-2017-43
refinedweb
5,544
67.35
Top PHP interview questions and answers Below are the few Latest Php programming interview questions calling static methods/variables of a Class. Example usage:- $Cache::getConfig($key); 3. What is the difference between == and === operator in PHP ? In PHP == is equal operator and returns TRUE if $a is equal to $b afte...
https://www.onlineinterviewquestions.com/core-php-interview-questions/
CC-MAIN-2018-26
refinedweb
966
58.79
Oracle ACE Director Celvin Kattookaran explains how to use Groovy in conjunction with Calculation Manager to generate Custom Defined Functions (CDF) to enhance existing Essbase calculation functions, and to generate new ones. Introduction Custom defined functions (CDFs) can enhance Essbase calculation functions or be u...
https://community.oracle.com/docs/DOC-1005667
CC-MAIN-2019-43
refinedweb
2,181
51.78
public class Solution { public int findMin(int[] nums) { // Do a binary search. Runs in O(log n) worst case. int lower = 0; int upper = nums.length; while (upper - lower > 1) {// Continue till we have only one element left in the range int mid = lower + upper >> 1; if (nums[mid] > nums[0]) lower = mid; else upper = mid...
https://discuss.leetcode.com/topic/46989/neat-solution-in-java-0-ms-beats-90-97
CC-MAIN-2017-43
refinedweb
111
68.47
digitalmars.D.learn - sort!("a < b")( arr ); - opCmp - Joel Christensen (6/6) Jun 17 2011 How do you override "int opCmp( Object obj )"? What can I do with obj? - David Nadlinger (21/22) Jun 17 2011 You can do pretty much whatever you want with it – obviously, you shou... - Joel Christensen (3/3) Jun 17 2011 Yeah, it w...
http://www.digitalmars.com/d/archives/digitalmars/D/learn/sort_a_b_arr_-_opCmp_27701.html
CC-MAIN-2016-26
refinedweb
278
73.17
When you read binary data you still read bytes from the file, so the process is essentially the same as we used in the previous example. To read a binary file, we create a FileInputStream object and get the FileChannel object from it, then read the data into a byte buffer. We could set up a file channel to read our pri...
http://www.yaldex.com/java_tutorial/0513605195.htm
CC-MAIN-2017-17
refinedweb
1,515
64
This guide will show you how to write a simple HTTP Rest Angular application. It is also important to point out that we will cover it through the perspective of Angular 7. You will also be able to learn how to use the Master-Detail pattern, including how to work with services. Preparations First thing first, let us mak...
https://www.gajotres.net/ionic-2-making-rest-http-requests-like-a-pro/?replytocom=10420
CC-MAIN-2020-10
refinedweb
1,952
64.51
Packages If your application becomes quite big, you may have lots of classes. Although you can browse them in their alphabetic order, it becomes confusing. So your application classes can be sorted into packages. A package is a name space that mainly contains classes and interfaces. For instance, the standard class Arr...
https://en.wikibooks.org/wiki/Java_Programming/Packages
CC-MAIN-2017-04
refinedweb
816
64.81
Developing, Building and Debugging PJSIP, it seems that Carbide is now able to build PJSIP projects properly. And since it seems that Nokia strongly suggests to use Carbide for the development tools instead of CodeWarrior, it may worth to write some small documentation to help you get started with developing PJSIP appl...
https://trac.pjsip.org/repos/wiki/DevelopingSymbianAppWithCarbide?version=12
CC-MAIN-2019-26
refinedweb
489
74.59
Are you sure? This action might not be possible to undo. Are you sure you want to continue? By SUDIPTA DE Effects – Taxes. . Investment and Financing Decision.Issues in Dividend Policy Earnings to be Distributed – High Vs. Low Payout. Objective – Maximize Shareholders Return. Relevance Vs. Irrelevance Walter's Model Go...
https://www.scribd.com/presentation/131008209/Dividend-Theory
CC-MAIN-2017-43
refinedweb
621
62.14
into. Related posts 79 replies on “The future of scripting in Unity” Its really informative post . […] 2008年にiOS向け出力をサポートして以来、モバイルの世界で一躍有名になったUnityですが、将来のIL2CPPによっても、Editorでの柔軟性を維持しつつ、C++トランスレータによってバイナリ出力時に.NET Nativeライクな最適化を施せるようになるという方向性が示されています。 […] Awe damn it. Garbage Collection is a dead end guys! Stop trying to ...
https://blogs.unity3d.com/2014/05/20/the-future-of-scripting-in-unity/
CC-MAIN-2020-29
refinedweb
4,295
72.46
Hi! How can you access the global namespace in python 1.5.1? I'd like to get a version string which is declared in the main script file. However, each module also has a version string which overrides the original one. I tried to access it as __main__.Version, similarly to $main::Version in Perl, which is what I'm more ...
https://mail.python.org/pipermail/python-list/1999-November/007403.html
CC-MAIN-2019-30
refinedweb
125
79.67
Haskell is my language of choice, and one of the features that I miss the most when working in a different language is algebraic data types. I get particularly frustrated about the lack of algebraic data types (and the associated destructuring) because they are so simple. You don’t need any fancy runtime features to ma...
http://spin.atomicobject.com/2013/07/29/ruby-data-types-algebraic/
CC-MAIN-2014-15
refinedweb
438
62.27
This is your resource to discuss support topics with your peers, and learn from each other. 10-05-2012 08:59 PM Well mreed, I'm starting to think that this must be a bug or just not possible. App sees sd card no problem when clicked on but will not see sd card at auto run when device restarts. I've exhausted all sorts ...
https://supportforums.blackberry.com/t5/Java-Development/Detect-SDCARD-on-App-Startup/m-p/1937715/highlight/true
CC-MAIN-2017-13
refinedweb
1,295
54.59
Tornado Unittesting: Eventually Correct I'm a fan of Tornado, one of the major async web frameworks for Python, but unittesting async code is a total pain. I'm going to review what the problem is, look at some klutzy solutions, and propose a better way. If you don't care what I have to say and you just want to steal my...
https://emptysqua.re/blog/tornado-unittesting-eventually-correct/
CC-MAIN-2017-09
refinedweb
1,498
52.56
On Tue, May 24, 2005 at 09:55:31PM -0400, Jurij Smakov wrote: > Hi, > > Thanks to everyone who responded to the proposal on new uniform packaging > scheme. Below is the summary: > > Sven Luther wrote: > > >To be absolutely sure that there will be no namespace collision between > >this one and the flavour version, i wou...
https://lists.debian.org/debian-kernel/2005/05/msg00516.html
CC-MAIN-2016-36
refinedweb
1,079
62.27
Is there a way to change the behavior of the vim omnicomplete menu? vim omnicomplete while typing vim omnicomplete c++ autocomplpop vim supertab vim autocomplete vim omnicomplete tab vim omnicomplete install Omnicompletion is working, but it automatically inserts the first result. What I'd like to do is open the omnico...
https://thetopsites.net/article/59134351.shtml
CC-MAIN-2021-25
refinedweb
994
58.11
Hi, I am trying to implement total variation function for tensor or in more accurate, multichannel images. I found that for above Total Variation (in picture), there is source code like this: def compute_total_variation_loss(img, weight): tv_h = ((img[:,:,1:,:] - img[:,:,:-1,:]).pow(2)).sum() tv_w = ((img[:,:,:,1:] - i...
https://www.tutorialguruji.com/python/total-variation-regularization-for-tensors-in-python/
CC-MAIN-2021-43
refinedweb
313
69.82
I have generated a BED like tab delimited file with intersections with the Gencode v.19 annotated gtf and splice junction files from the Human BodyMap 2.0. I am in the process of completing a script that will allow me to create weighted venn diagrams of this dataset. My problem is that I have 1D arrays and I need to co...
https://www.biostars.org/p/106412/
CC-MAIN-2020-50
refinedweb
899
76.82
From: Sohail Somani (s.somani_at_[hidden]) Date: 2006-09-22 15:50:46 > -----Original Message----- > From: boost-bounces_at_[hidden] > [mailto:boost-bounces_at_[hidden]] On Behalf Of Martin Bonner > Sent: Friday, September 22, 2006 6:52 AM > To: boost_at_[hidden] > Subject: Re: [boost] Geometry/Vector Lib > > ----Origin...
https://lists.boost.org/Archives/boost/2006/09/110579.php
CC-MAIN-2020-29
refinedweb
156
59.4
  forgot password i want to proper code for forgot password, means how to send password into email id if i forgot my password import java.io.*; import javax.mail.*; import javax.mail.internet.*; // important how to forget password in spring framework :// Please.../ to forget password in spring framework how to forget ...
http://www.roseindia.net/tutorialhelp/comment/96298
CC-MAIN-2015-14
refinedweb
2,146
57.27
09 March 2011 20:50 [Source: ICIS news] NEW YORK (ICIS)--Despite high crude oil prices, supplies are sufficient to meet customer needs in the near term, the CEO of US-based energy giant ExxonMobil said on Wednesday. “Physically there is no supply shortage. All supply requirements are being met,” said Rex Tillerson, cha...
http://www.icis.com/Articles/2011/03/09/9442398/global-oil-supply-is-sufficient-us-exxonmobil-ceo.html
CC-MAIN-2014-52
refinedweb
211
68.2
State Reporting for Video Skills When you implement a video skill, you have the ability to update Alexa on the state of endpoints. Alexa uses this information to provide the best customer experience. - Why implement change reports for video skills? - Supported properties and conditions for change reports - Steps to sen...
https://developer.amazon.com/pt-BR/docs/alexa/video/state-reporting-for-video-skills.html
CC-MAIN-2021-10
refinedweb
1,130
52.09
Contents tagged with .NET Namespaces are obsolete To those of us who have been around for a while, namespaces have been part of the landscape. One could even say that they have been defining the large-scale features of the landscape in question.. State. Storing non-content data in Orchard A CMS like Orchard is, by defi...
http://weblogs.asp.net/bleroy/Tags/.NET
CC-MAIN-2014-35
refinedweb
151
66.98
- TCL_EVAL_INVOKE is only used for interp alias calls. - TCL_EVAL_GLOBAL is used for source, history, package HISTORYNote: revision numbers refer to the file tclBasic.c1.65 (starting point) - TCL_EVAL_GLOBAL: resolves cmd and runs traces in caller's scope, runs cmd in #0 - TCL_EVAL_GLOBAL: no change - TCL_EVAL_NO_TRACE...
http://wiki.tcl.tk/17156
CC-MAIN-2017-09
refinedweb
442
51.41
qier-player Qier-player is a web video player component based on the React with a simple interface and smooth operation which supports the most functions of other player. Note that, Qier-player can switch the video clarity and provide the video source interface of original video, 4K, 2K, 1080P, 720P and 480P. Feature V...
https://reactjsexample.com/a-lightweight-and-sophisticated-react-based-h5-video-player/
CC-MAIN-2021-21
refinedweb
228
54.73
Introduction: Raspberry Pi and Arduino LCD This is a beginning project for those who want to learn more about the basics of raspberry Pi. You do not need to have any experience with the Raspberry Pi or Arduino, but it would help if you had some past programming experience to understand the code that you will be copying...
https://www.instructables.com/Raspberry-Pi-and-Arduino-LCD/
CC-MAIN-2022-27
refinedweb
782
61.29
>>?" Some, not all... (Score:5, Insightful) Some of those are obnoxious and good to see them gone. Others, not so much. For instance, sorting/searching algorithms, data structures, etc. Don't they still make you code these things in school? Isn't it good to know how they work and why? On the other hand, yeah... fuck pu...
https://developers.slashdot.org/story/09/04/29/2226241/old-school-coding-techniques-you-may-not-miss
CC-MAIN-2017-43
refinedweb
6,590
62.68
Provided by: lam-mpidoc_7.1.4-6build1_all NAME MPI_Waitany - Waits for any specified send or receive to complete SYNOPSIS #include <mpi.h> int MPI_Waitany(int count, MPI_Request *reqs, int *index, MPI_Status *stat) INPUT PARAMETERS count - list length (integer) reqs - array of requests (array of handles) OUTPUT PARAMET...
http://manpages.ubuntu.com/manpages/eoan/man3/MPI_Waitany.3.html
CC-MAIN-2020-40
refinedweb
147
50.33
tinylog Simplify your logging with tinylog. This lightweight logging framework can be used with Java, Kotlin, Scala, and any other JVM language. tinylog is open source and runs on any Java platform (Java 6 or newer), as well as on Android (API Level 1 or higher). Getting StartedDownload tinylog Latest version: 2.0.0 Av...
https://tinylog.org/v2/
CC-MAIN-2019-39
refinedweb
349
62.78
What is Declarray?What is Declarray? Declarray is my own linq like library for manipulations with collections. I did it just for improve my skills at my free time. This lib allows filter, sort, change and etc. collection in declarative style. Declarray supports lazy computations. Your expression will computed once and ...
https://libraries.io/npm/declarray
CC-MAIN-2022-27
refinedweb
139
55.71
Can. Printable View Can. -Prelude-PreludeCode: system ( oss.str() ); Thank you very much! I have a file that has names listed in it. I need to figure out how to read each name and have it printed out on the screen. I know how to read columns of numbers one by one, but when I try to do a name it doesn't grab the whole t...
http://cboard.cprogramming.com/cplusplus-programming/36604-possible-do-printable-thread.html
CC-MAIN-2015-22
refinedweb
823
84.47
In a previous blog posting, I discussed how I used a XAML ListBox to create a control rather like an iOS UITableView. In this installment, I’m going to expand upon that a little and explain how you can change the appearance of individual items in the list. In iOS development, you usually get data into a UITableView by ...
https://blogs.msdn.microsoft.com/johnkenn/2013/12/27/more-on-listboxes-using-databinding-to-control-appearance/
CC-MAIN-2016-36
refinedweb
1,019
63.29
Created on 06-30-2016 09:10 PM This article will focus on creating a custom HIVE UDF in the Scala programming language. Intellij IDEA 2016 was used to create the project and artifacts. Creation and testing of the UDF was performed on the Hortonworks Sandbox 2.4 using Oracle Virtual Box. The full source code for the pro...
https://community.cloudera.com/t5/Community-Articles/How-to-create-a-Hive-UDF-in-Scala/ta-p/246563
CC-MAIN-2022-33
refinedweb
404
60.61
Stream file to user: Discussion in 'ASP General' started by CJM, Mar 28, 2006.: - 888 - popov - Apr 30, 2004 - Replies: - 9 - Views: - 825 - Alex Buell - Apr 27, 2006 get stream mode flags from an opened streamAlexander Korsunsky, Feb 17, 2007, in forum: C++ - Replies: - 1 - Views: - 575 - John Harrison - Feb 17, 2007 ...
http://www.thecodingforums.com/threads/stream-file-to-user.800992/
CC-MAIN-2015-48
refinedweb
101
63.06
Listing 5. form_textarea.html <HTML> <HEAD> <TITLE>Text Area Test</TITLE> <SCRIPT LANGUAGE="JavaScript"> function seeTextArea (form) { alert (form.myarea.value); } </SCRIPT> </HEAD> <BODY> <FORM NAME="myform"> <INPUT TYPE="button" NAME="button3" Value="Test" onClick="seeTextArea(this.form)"> <TEXTAREA NAME="myarea" COL...
https://www.javaworld.com/article/2077176/scripting-jvm-languages/using-javascript-and-forms.html?page=2
CC-MAIN-2018-09
refinedweb
839
57.16
Regardless, please create an equivalent upstream patch and submit it to dm-devel for review. Alasdair HiHere I'm submitting a patch to sync code with RHEL 4. The patch doesn't fix any bug in upstream.). So I reworked the code in RHEL 4 to use timer instead of schedule_timeout() for sleeping, so when some code needs to ...
https://www.redhat.com/archives/dm-devel/2008-March/msg00137.html
CC-MAIN-2016-44
refinedweb
543
54.22
How to Answer the "What Do You Like About Me" Question (for Men) Explore this Article Knowing What To Say Knowing How to Say It Article Summary Questions & Answers Related Articles References It's important to offer regular compliments to help your relationship grow and stay strong. Mutual attraction is how relationshi...
https://www.wikihow.com/Answer-the-%22What-Do-You-Like-About-Me%22-Question-(for-Men)
CC-MAIN-2020-05
refinedweb
2,246
74.29
Introduction than SOAP. strong>BlazeDS, enables Flex applications make remote procedure calls to the Java server. BlazeDS Simplifies integration with existing Java code. In this article we will see how to develop Flex RIA and integrate with Java server side using BlazeDS – Remote Object Service. Software used in BlazeD...
http://www.javabeat.net/flex-3-0-applications-with-blazeds-in-eclipse/
CC-MAIN-2014-42
refinedweb
1,554
66.64
Tech Off Thread16 posts Forum Read Only This forum has been made read only by the site admins. No new threads or comments can be added. Programatically Using A Webcam In C# Conversation locked This conversation has been locked by the site admins. No new comments can be made. Does anyone know how to programatically take...
https://channel9.msdn.com/forums/TechOff/93476-Programatically-Using-A-Webcam-In-C/
CC-MAIN-2017-43
refinedweb
377
73.07
This is the second in a series of articles I’m writing about the ongoing XForms implementation in Mozilla Firefox, with the previous article being Why XForms Matters, Revisited. Then next article in the series is Understanding XForms: Components When you talk to people who’ve heard about XForms, they like the idea in t...
http://www.oreillynet.com/xml/blog/2006/03/understanding_xforms_the_model.html
crawl-002
refinedweb
2,102
56.29
netCDF4 via h5py Project description A Python interface for the netCDF4 file-format that reads and writes local or remote HDF5 files directly via h5py or h5pyd, without relying on the Unidata netCDF library. Why h5netcdf? It has one less binary dependency (netCDF C). If you already have h5py installed, reading netCDF4 ...
https://pypi.org/project/h5netcdf/
CC-MAIN-2022-40
refinedweb
1,147
50.73
Hello, so I am very new to using python more and more with GIS. However, I have ran across a problem that I cannot seem to figure out. We are trying an evaluation copy of ArcGIS GeoEvent Server. One cool idea that we are going for is basically reading an excel sheet as it is updated. I am messing around with some featu...
https://community.esri.com/thread/202412-using-python-with-pyodbc-to-export-sql-to-excel
CC-MAIN-2018-47
refinedweb
253
69.07
Early Contenders for the Automotive X-Prize 309." Love the snark... not (Score:5, Insightful) (Score:5, Interesting) (Score:3, Informative) I have little reason to disbelieve auto manufacturers when they say it is impossible to build a 100 MPH automobile, according to the legal de Re:Still (Score:4, Insightful): (Score...
https://tech.slashdot.org/story/08/05/01/2317205/early-contenders-for-the-automotive-x-prize?sdsrc=nextbtmnext
CC-MAIN-2017-22
refinedweb
3,259
70.13
enumerationマニュアルに切り替える 指の画面へのタッチの状態を表します。 TouchPhase is an enum type that contains the states of possible finger touches. The states represent each action the finger can take on the most recent frame update. Since a touch is tracked over its "lifetime" by the device, the start and end of a touch and movements in betwee...
https://docs.unity3d.com/ja/2020.1/ScriptReference/TouchPhase.html
CC-MAIN-2020-29
refinedweb
237
58.18
gpiocrust 0.9.0 A pythonic wrapper around RPi.GPIO A concise, pythonic wrapper around the Raspberry Pi’s RPi.GPIO library. An encrusting, if you will. In a nutshell from gpiocrust import Header, OutputPin with Header() as header: pin = OutputPin(pin=15, value=0) pin.value = 1 Classes Header The Header class just wraps ...
https://pypi.python.org/pypi/gpiocrust/0.9.0
CC-MAIN-2018-13
refinedweb
497
52.26
Answered I'm trying to make thumbnails from pdfs. To do it, I need to import wand. It runs fine if I do `./manage.py runserver` from the command line, but if I run from PyCharm, it breaks. When I step through the code, the problem is that the code used to open the blob is always empty. It's the right class (wand.image)...
https://intellij-support.jetbrains.com/hc/en-us/community/posts/115000059330-PyCharm-Runserver-command-issues
CC-MAIN-2021-43
refinedweb
983
77.03
] Manpreet Singh(8) Prasham Sabadra(6) Sagar Pardeshi(6) Sibeesh Venu(4) Veda Bs(4) Priyaranjan K S(3) Rahul Bansal(3) Jacob Robinson(3) Aqib Shehzad(2) Ankur Mistry(2) Vignesh Ganesan(2) Mahender Pal(2) Gowtham K(2) Pankaj Kumar Choudhary(2) Gowtham Rajamanickam(2) Ajay Yadav(2) Harpreet Singh(2) Akshay Patel(2) Ketak...
http://www.c-sharpcorner.com/tags/Hidden-field-in-Servlet
CC-MAIN-2016-26
refinedweb
1,975
65.01
I am having trouble trying to filter the folders in a tag browse tree to a selected string in a drop down list. There are two types of tag browse. system.tag.browse browses through tags you have defined via the Designer. system.opc.browse browses through device hardware of Gateway connected devices. Here are two exampl...
https://forum.inductiveautomation.com/t/filtering-a-tag-browse-tree-to-a-drop-down-list/15461
CC-MAIN-2021-39
refinedweb
167
52.87
Using SQLite for Windows RT and Windows Phone, using MVVM and PCL - Posted in: - windows phone - mvvm - windows rt - .net - sql There are many options to manage data in Windows RT and Windows Phone. You can store data locally on the device using XML o JSON files, you can store data on the Cloud using Azure Mobile Servi...
http://bloggiovannimodica.azurewebsites.net/post/using-sqlite-for-windows-rt-and-windows-phone-using-mvvm-and-pcl
CC-MAIN-2020-45
refinedweb
2,996
67.04
{- This should be in the standard library. -} module StorableInstance where import Foreign.Storable (Storable (..), ) import Foreign.Ptr (castPtr, ) import qualified Number.Complex as Complex import qualified Number.Ratio as Ratio import qualified Algebra.PrincipalIdealDomain as PID roundUp :: Int -> Int -> Int roundUp...
http://hackage.haskell.org/package/synthesizer-0.0.3/docs/src/StorableInstance.html
CC-MAIN-2014-52
refinedweb
328
61.93
Author: rhillegas Date: Thu Oct 11 06:50:37 2007 New Revision: 583824 URL: Log: DERBY-3117: Require a Java 5 (or higher) compiler to build Derby. Modified: db/derby/code/trunk/BUILDING.txt db/derby/code/trunk/build.xml Modified: db/derby/code/trunk/BUILDING.txt URL: =====================================================...
http://mail-archives.apache.org/mod_mbox/db-derby-commits/200710.mbox/%3C20071011135043.920651A9832@eris.apache.org%3E
CC-MAIN-2017-13
refinedweb
806
61.33
24 April 2012 08:11 [Source: ICIS news] SINGAPORE (ICIS)--?xml:namespace> The supply will consist entirely of contractual cargoes, including 3,000-4,000 tonnes of delayed cargoes from April, but the volume of spot cargoes has not been finalised, the source added. FPCC is considering raising offers for its May spot carg...
http://www.icis.com/Articles/2012/04/24/9552882/taiwans-fpcc-to-raise-base-oil-exports-to-china-by-47-in-may.html
CC-MAIN-2013-48
refinedweb
112
62.51
EF6 Code First: Mapping All Private Properties Using Custom Conventions A while back I blogged about mapping to private properties with Code First. The approach shown in that post works with EF4.1 onwards but it requires you to explicitly configure every private property that you want included in your model. That’s goi...
http://romiller.com/2013/01/23/ef6-code-first-mapping-all-private-properties-using-custom-conventions/
CC-MAIN-2014-42
refinedweb
674
55.54
Two). We need a little structure We were finally able to get through to the remote server after adjusting the dates to use GMT:. In the end, we just used the ugly time tuples directly. A SOAP message was constructed and sent to the server. We were unable to get that far with ZSI until after the recent publication of th...
http://www.ibm.com/developerworks/webservices/library/ws-pyth17/index.html
crawl-003
refinedweb
1,093
64
Bug Description I've recently installed duplicity v0.7.07. Have not used duplicity before. I have noticed very low performance doing backups. For medium sized files (several MB) throughput was about 8MB/s. I have done a test backup (89.3 MB, 785 small files) which has run for 167 seconds. This is about 0.5MB/s. In both...
https://bugs.launchpad.net/duplicity/+bug/1570293
CC-MAIN-2019-18
refinedweb
526
67.35
- str - The string to copy.The string to copy. A new string with the same value as str. The string.Copy(string) method returns a string object that has the same value as the original string but represents a different object reference. It differs from an assignment operation, which assigns an existing string reference t...
http://docs.go-mono.com/monodoc.ashx?link=M%3ASystem.String.Copy(System.String)
CC-MAIN-2018-26
refinedweb
145
63.46
This document is for Celery's development version, which can be significantly different from previous releases. Get the stable docs here: 3.1. Configuration and defaults¶ This document describes the configuration options available. If you’re using the default loader, you must create the celeryconfig.py module and make ...
http://docs.celeryproject.org/en/master/configuration.html
CC-MAIN-2016-26
refinedweb
3,937
50.53
BugTraq Back to list | Post reply CVE-2014-5289 - Kolibri WebServer 2.0 Vulnerable to RCE via Overly Long POST Request Aug 17 2014 03:25PM tekwizz123 riseup net Exploit Details ------------------ Senkas Kolibri WebServer 2.0 (available at) is vulnerable to RCE. PoC --------------- A: PoC Code --------------------------...
http://www.securityfocus.com/archive/1/533150
CC-MAIN-2015-11
refinedweb
982
56.49
Chapter contents Overview......................................................................................................................................... 1 11.1. Basic statistics for asset returns: mean, standard deviation, covariance, and correlation.... 2 11.2. Downloaded data from commercial sources is adju...
https://ru.scribd.com/document/341953094/Chapter-12-Portfolio-Returns-Efficient-Frontier
CC-MAIN-2019-35
refinedweb
7,624
74.69
Introduction to the MFlow Web framework Here the basic elements of the MFlow frameworks are put in action in an example to show how easy is to create a demo app with 10+ pages. If you don´t know Haskell and just whant to see a code example and how it works, go straight to the code example, look at it, see what happens ...
https://www.schoolofhaskell.com/user/agocorona/MFlow-tutoria
CC-MAIN-2019-26
refinedweb
2,282
59.03