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 |
|---|---|---|---|---|---|
Introduction
MSBuild 4.0 has all sorts of features for targeting different .NET Framework versions. The idea is that you can use MSBuild 4.0 to build all your legacy (pre-4.0) project types, as well as new projects that just target a downlevel version of the .NET Framework. In addition, you can mix and match the target... | https://blogs.msdn.microsoft.com/adamroot/2009/12/10/building-vs-2008-unit-test-projects-in-msbuild-4-0-beta-2/ | CC-MAIN-2017-47 | refinedweb | 2,841 | 51.55 |
Introduction
Should I take this tutorial?
This tutorial examines the validation of XML documents using either Document Type Definitions (DTDs) or XML Schema. It is aimed at developers who need to control the types and content of the data in their XML documents, and assumes that you are familiar with the basic concepts ... | http://www.ibm.com/developerworks/xml/tutorials/x-valid/ | crawl-003 | refinedweb | 625 | 53.21 |
Hi As you may have noticed, the beloved target of many flamewars, the NEW queue [1] has been reduced to an average of less than 10 packages. Packages are processed within days, sometimes even within hours. In order to slow it right back down again, so you dont get used to it too much, I decided to become insane and do ... | http://lists.debian.org/debian-devel-announce/2005/08/msg00011.html | crawl-002 | refinedweb | 1,800 | 74.19 |
regarding mini project - JDBC
regarding mini project i need to make a mini project using servlet and jdbc.pls help me with a real time application
real+page - Java Beginners
real+page
real+finance - Java Beginners
real+finance
real+contact - Java Beginners
real+contact
static keyword with real example
static keyw... | http://www.roseindia.net/tutorialhelp/comment/58275 | CC-MAIN-2014-49 | refinedweb | 1,650 | 51.58 |
Kotlin introduction
Kotlin is a statically typed language which means that it does most the check at compile time rather being dependent on runtime. Well this language has stayed in the development period for quite 6 years and when it was released it was production ready right form the beginning. It’s quite similar to ... | https://medium.com/android-news/kotlin-now-official-android-language-36364b4914c1 | CC-MAIN-2021-43 | refinedweb | 941 | 52.83 |
pg has asked for the wisdom of the Perl Monks concerning the following question:
I run a chat room on my web site. To make the content more attractive, and also to visually confirm to the user that the content has refreshed when they click "listen", I change the background color each time randomly.
Now if the foregroun... | https://www.perlmonks.org/bare/index.pl/?node_id=305198 | CC-MAIN-2021-25 | refinedweb | 225 | 53.58 |
Code :
public boolean same_State (Search_State s2) { Jugs_State js2= (Jugs_State) s2; return ((j1==js2.get_j1())&& (j2==js2.get_j2())); }
I just want to know what the part :
does.does.Code :
Jugs_State js2= (Jugs_State) s2;
I know you can create an object by e.g. Classname object = new Classname() but
what is this "(Ju... | http://www.javaprogrammingforums.com/%20whats-wrong-my-code/16969-what-does-short-part-code-do-printingthethread.html | CC-MAIN-2017-34 | refinedweb | 113 | 79.4 |
Ionic 3 Performance Boost with Observable using VirtualScroll and WKWebView
What.
- The unoptimized case
- The WKWebView solution
- The Ionic 3 VirtualScroll solution
Let's fire up our Ionic 3 app:
ionic start smoothapp blank --v2
The same home.ts file will be used for each case:
import { Component } from "@angular/cor... | https://javascripttuts.com/ionic-3-performance-boost-with-observable-using-virtualscroll-and-wkwebview/ | CC-MAIN-2019-26 | refinedweb | 637 | 57.37 |
> From arj@cam-orl.co.uk Fri Jul 2 08:23:04 1993
> Return-Path: <arj@cam-orl.co.uk>
> Received: from gossip.pyramid.com by ubitrex.mb.ca (4.1/SMI-4.1)
> id AA23093; Fri, 2 Jul 93 08:22:54 CDT
> Received: from sword.eng.pyramid.com
> by gossip.pyramid.com (5.61/OSx5.1a Pyramid-Internet-Gateway)
> id AA20688; Fri, 2 Jul ... | http://www.linux-mips.org/archives/riscy/1993-07/msg00189.html | CC-MAIN-2014-41 | refinedweb | 300 | 52.87 |
It is a common problem that people want to import code from IPython Notebooks. This is made difficult by the fact that Notebooks are not plain Python files, and thus cannot be imported by the regular Python machinery.
Fortunately, Python provides some fairly sophisticated hooks into the import machinery, so we can actu... | https://nbviewer.jupyter.org/github/ipython/ipython/blob/rel-4.0.1/examples/Notebook/Importing%20Notebooks.ipynb | CC-MAIN-2019-18 | refinedweb | 767 | 53.47 |
Introduction: How to Augmented Reality App for Beginners With Unity 3D, Vuforia, and User Defined Targets
This tutorial is designed for anyone beginning with mobile development and augmented reality. We will use the Unity 3D video game engine as well as the Vuforia augmented reality plugin to animate some Imperial Walk... | https://www.instructables.com/id/Star-Wars-Augmented-Reality-App-for-Beginners/ | CC-MAIN-2018-34 | refinedweb | 1,896 | 75.5 |
Dart’s Web UI package offers live, two-way data binding implemented with an efficient observable engine. The new observable system propagates changes proportional to the number of changes, instead of the number of watched expressions. This results in less work per event loop and more responsive web UIs.
This article co... | https://www.dartlang.org/web-ui/observables/ | CC-MAIN-2014-15 | refinedweb | 1,821 | 57.16 |
PICA::Record - Perl module for handling PICA+ records
version 0.584
To get a deeper insight to the API have a look at the documentation,
the examples (directory
examples) and tests (directory
t).
Here are some additional two-liners:
# create a field my $field = PICA::Field->new( "028A", "9" => "117060275", "d" => "Mart... | http://search.cpan.org/~voj/PICA-Record-0.584/lib/PICA/Record.pm | CC-MAIN-2017-26 | refinedweb | 2,410 | 61.97 |
Tag Helper Syntax for View Components
Tag Helper Syntax for View Components
Calling view components in ASP.NET Core views may lead to long and ugly code lines containing generic type parameter of view component and anonymous type for...
Join the DZone community and get the full member experience.Join For Free
Calling v... | https://dzone.com/articles/tag-helper-syntax-for-view-components?utm_medium=feed | CC-MAIN-2019-26 | refinedweb | 413 | 57.87 |
ICANN Names New CEO, Will Pay Him $800,000 To Run the Internet 141
darthcamaro writes "ICANN has officially hired a new CEO to replace the Rob Beckstom. ICANN industry unknown Fadi Chehade is taking the top job — but there is a catch. He can't start for another 90 days, even though ICANN has been looking for a new CEO ... | https://tech.slashdot.org/story/12/06/22/2226202/icann-names-new-ceo-will-pay-him-800000-to-run-the-internet?sdsrc=next | CC-MAIN-2016-40 | refinedweb | 4,943 | 73.47 |
I am trying to find the longest common subsequence of 3 or more strings. The Wikipedia article has a great description of how to do this for 2 strings, but I'm a little unsure of how to extend this to 3 or more strings.
There are plenty of libraries for finding the LCS of 2 strings, so I'd like to use one of them if po... | https://pythonpedia.com/en/knowledge-base/5057243/longest-common-subsequence-of-3plus-strings | CC-MAIN-2020-45 | refinedweb | 744 | 65.42 |
13:55:15 <LeeF> AxelPolleres, you don't need to do rrsagent & zakim by hand in the future - you can just use "trackbot, start meeting" 13:56:56 <OlivierCorby> Hello, I am Olivier Corby from INRIA Sophia Antipolis, new member of the WG 13:57:02 <AxelPolleres> ah right, but I don't need to say it again now, do I? 13:57:... | http://www.w3.org/2009/sparql/wiki/Chatlog_2009-09-22 | CC-MAIN-2015-48 | refinedweb | 3,428 | 72.56 |
The ReactiveConf 2017 took place in Bratislava on the 26th and 27th of October. In my view CSSinJS, and optimization techniques in general, were the major themes of this year’s conference.
Given that I regularly attend more “popular” conferences, I have to admit that I was really surprised by the high quality of the ta... | https://www.rainerhahnekamp.com/en/reactiveconf-2017-summary/ | CC-MAIN-2019-39 | refinedweb | 2,090 | 56.05 |
I have a program that creates a double array for 50 states storing the last 10 tax rates for each year. The tax rate is less than .06 in all of them and is randomly configured to make the program run easier. This program is just to help me learn to access multidimensional arrays.
I need to create the following:
A metho... | http://www.javaprogrammingforums.com/%20whats-wrong-my-code/27894-returning-array-indexes-my-program-printingthethread.html | CC-MAIN-2015-40 | refinedweb | 315 | 66.33 |
Launchers overview¶
About Launchers¶
Launchers let you turn your analyses into self-service web forms that less technical colleagues can interact with. They are great for creating templatized reports and analyses, so stakeholders can answer questions without bothering data scientists.
You can build a Launcher to let co... | https://docs.dominodatalab.com/en/4.3.2/reference/publish/launchers/Launchers_overview.html | CC-MAIN-2021-25 | refinedweb | 1,000 | 64 |
Python Data Structures Tutorial
Data structures are a way of organizing and storing data so that they can be accessed and worked with efficiently. They define the relationship between the data, and the operations that can be performed on the data. There are many various kinds of data structures defined that make it eas... | https://www.datacamp.com/community/tutorials/data-structures-python | CC-MAIN-2018-39 | refinedweb | 3,826 | 60.24 |
A simple query interface for tabular data.
Project description.
Some Examples
The examples below will query a CSV file containing the following data (example.csv):
To begin, we load the CSV file into a Select object:
import squint select = squint.Select('example.csv')
Installation
The Squint package is tested on Python... | https://pypi.org/project/squint/ | CC-MAIN-2020-40 | refinedweb | 155 | 57.98 |
These notebooks convert Abjad original examples to well... notebook format ;) .
To be have to use abjad output (i.e the scores) inlined in notebook you will need my code to bridge those.
After installation and importing, its usage is 100% transparent against abjad's standard dialect. Remember that abjad tends to use:
f... | http://nbviewer.jupyter.org/github/tiagoantao/abjad-ipython/blob/master/notebooks/Index.ipynb | CC-MAIN-2018-09 | refinedweb | 227 | 66.13 |
The QContactSaveRequest class allows a client to asynchronously request that certain contacts be saved to a contacts store. More...
#include <QContactSaveRequest>
Inherits: QContactAbstractRequest.
This class was introduced in Qt Mobility 1.0.
The QContactSaveRequest class allows a client to asynchronously request that... | http://doc.trolltech.com/qtmobility-1.2/qcontactsaverequest.html | crawl-003 | refinedweb | 405 | 53.92 |
Feature #5445
Need RUBYOPT -r before ARGV -r
Description
Libraries given by -r options in RUBYOPT should be loaded before ones in direct command line arguments..
My custom loader is too large to include here, so I will simply demonstrate the problem with simple sample code:
$ cat req.rb
p "Custom Require"
module Kernel... | https://bugs.ruby-lang.org/issues/5445 | CC-MAIN-2014-15 | refinedweb | 408 | 57.98 |
On 13.07.2021 03:59, Bobby Eshleman wrote:
> --- a/xen/arch/x86/gdbstub.c
> +++ b/xen/arch/x86/gdbstub.c
> @@ -18,7 +18,9 @@
> * You should have received a copy of the GNU General Public License
> * along with this program; If not, see <>.
> */
> -#include <asm/debugger.h>
> +#include <asm/uaccess.h>
> +#include <xen/d... | https://lists.xenproject.org/archives/html/xen-devel/2021-07/msg01009.html | CC-MAIN-2021-49 | refinedweb | 651 | 51.24 |
Created on 2018-05-16 00:12 by rad164, last changed 2018-12-03 10:17 by vstinner.
I just reported a bug about email folding at issue 33524, but this issue is more fatal in some languages like Chinese or Japanese, which does not insert spaces between each words.
Python 3.6.5 has this issue, while 3.6.4 does not.
Create ... | https://bugs.python.org/issue33529 | CC-MAIN-2019-09 | refinedweb | 634 | 54.59 |
One of the smartest guys in the ASP.NET world, Nikhil Kothari, just wrote a short piece and is sharing code for a Facebook app framework. Sweet. Check it out here:.
It occurred to me fairly recently that these systems provide a level of abstraction that makes sense in terms of data storage, but you still have to do a f... | http://weblogs.asp.net/jeff/archive/2007/07.aspx | CC-MAIN-2014-15 | refinedweb | 544 | 63.19 |
C# features from 2.0 to 5.0 versionGENERICS
.” by MSDN
Generics are very easy feature to learn and it is inevitably to know. It is very easy to learn the basics of C# language like: iterations, classes, structures, methods, properties,… but you will have to learn other parts of the language if you want to say that you ... | http://forum.codecall.net/blog/1799/entry-1931-c-features-part-1-c-20-features/ | CC-MAIN-2017-13 | refinedweb | 514 | 82.75 |
Fill all 2D contours to create polygons. More...
#include <vtkContourTriangulator.h>
Fill all 2D contours to create polygons.
vtkContourTriangulator will generate triangles to fill all of the 2D contours in its input. The contours may be concave, and may even contain holes i.e. a contour may contain an internal contour... | https://vtk.org/doc/nightly/html/classvtkContourTriangulator.html | CC-MAIN-2019-47 | refinedweb | 215 | 53.37 |
Building custom tags for Django templates has gotten much easier over the years, with decorators provided that do most of the work when building common, simple kinds of tags.
One area that isn't covered is block tags, the kind of tags that have an opening and ending tag, with content inside that might also need process... | https://www.caktusgroup.com/blog/2017/05/01/building-custom-block-template-tag/ | CC-MAIN-2018-39 | refinedweb | 1,725 | 64.3 |
How do I make a M2Web call to get a list of ewons for a particular pool on a PRO account?
How do I make a M2Web call to get a list of ewons for a particular pool on a PRO account?
anontywdfuin #1
The following api call will do what you are looking for.
Note at the end the &pool=poolname parameter. Just update to have y... | https://forum.hms-networks.com/t/how-do-i-make-a-m2web-call-to-get-a-list-of-ewons-for-a-particular-pool-on-a-pro-account/5109 | CC-MAIN-2019-30 | refinedweb | 251 | 64.91 |
05 September 2006 22:36 [Source: ICIS news]
HOUSTON (ICIS news)--Dow Chemical is just ahead of the industry curve in its decision to shut down five plants around the world, an analyst with Citigroup said on Tuesday.
“Dow’s new CEO [chief executive officer] Andrew Liveris is making his mark on the company by pro-activel... | http://www.icis.com/Articles/2006/09/05/1089312/dow-ahead-of-the-curve-in-shutdowns-citigroup.html | CC-MAIN-2015-14 | refinedweb | 219 | 50.77 |
#include "ltkrn.h"
#include "ltclr.h"
L_LTCLR_API L_INT L_LoadICCProfile(pszFilename, pICCProfile, pLoadOptions)
Loads an ICC profile saved/embedded in an image file.
Character string containing the name of the file from which to load the ICC profile.
Pointer to an ICCPROFILEEXT structure to be updated with the loaded ... | https://www.leadtools.com/help/sdk/v22/colorconversion/api/l-loadiccprofile.html | CC-MAIN-2022-27 | refinedweb | 126 | 52.66 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" ""> <html xmlns=""> <head> <meta http- >Hacker's Guide to Subversion</title> </head> <body> <div class="app"> <h1 style="text-align: center;">Hacker's Guide to Subversion</h1> <p>If you are contributing code to the Subversion project, please read this first.</p> ... | http://opensource.apple.com/source/subversion/subversion-35/subversion/www/hacking.html | CC-MAIN-2014-49 | refinedweb | 12,151 | 54.12 |
View Poll Results: If you read it, did you find DirectJNgine User's Guide adequate?
- Voters
- 54. You may not vote on this poll
Yes
No
Ext Direct Java based implementation
Ext Direct Java based implementation
We have finished the first public release of DirectJNgine, an Ext Direct implementation for Java.
You can find... | http://www.sencha.com/forum/showthread.php?73027-Ext-Direct-Java-based-implementation&p=353149&viewfull=1 | CC-MAIN-2013-48 | refinedweb | 940 | 57.37 |
Basically, I am trying to send a single frequency tone for a specified
duration (currently 5ms) whenever a user wants to send one. My current
solution uses messages by basically sending a single byte of ones no
matter what a person enters on the cmd line. I convert that byte to
symbols (representing one due to my above... | https://www.ruby-forum.com/t/variable-transmission-time-of-a-single-frequency/185719 | CC-MAIN-2022-33 | refinedweb | 383 | 60.31 |
In this tip, you learn how to create and use templates in the MVC framework that you can use to display database data. I show you how to create a new MVC Helper method named the RenderTemplate() method.
In this tip, you learn how to create and use templates in the MVC framework that you can use to display database data... | http://weblogs.asp.net/stephenwalther/archive/2008/07/07/asp-net-mvc-tip-14-create-a-template-helper-method.aspx | crawl-002 | refinedweb | 1,406 | 52.56 |
I have a test case listener that, in the method under the @BeforeTestCase annotation, reads through an external file to obtain information. I am wondering if it’s possible to stop execution of the test case and mark it as an error from a catch block on the event of an error, e.g. file not found. I’ve tried KeywordUtil.... | https://forum.katalon.com/t/stop-and-mark-test-case-as-error-from-listener/20101 | CC-MAIN-2022-33 | refinedweb | 733 | 73.47 |
Hi everyone,
I’m new here. First of all thank you really much for your great work in this forum. It helped me out multiple times. But now I encountered an issue where I couldn’t find a thread on, yet.
With the latest version (0.84.0) I’m experiencing a problem with the file_uploader widget.
In the prior version (0.82.0... | https://discuss.streamlit.io/t/issue-with-file-uploader-and-streamlit-version-0-84-0/14812 | CC-MAIN-2021-31 | refinedweb | 313 | 69.79 |
Hello Codeforces! Did you enjoy the AtCoder Beginner Contest 130? As usual, there was only Japanese editorial published, so I translated it into English. Um, actually it's already three days after the contest, it might be a bit late, but well, whatever?
Disclaimer. Note that this is an unofficial editorial and AtCoder ... | http://codeforces.com/blog/WaterColor2037 | CC-MAIN-2019-47 | refinedweb | 1,221 | 67.08 |
As promised, here's my first entry with more details about Customer Debug Probes and CLR SPY.
The Marshaling probe is the easiest one to understand and great for experimentation since it's the only one that doesn't report on error/warning conditions. It also fits best into the spy theme since it non-intrusively reports... | http://blogs.msdn.com/b/adam_nathan/archive/2003/05/15/56687.aspx | CC-MAIN-2014-52 | refinedweb | 508 | 55.24 |
Hi All,
please help me on this issue, deployed the custom ui5 application in fiori launchpad, after clicking the tile we are facing the below error.
I am having some doubts.
In "LPD_CUST" under "Additional Information" tab, what I need to specify if the application is custom UI5 application.
SAPUI5.Component=zmm2 (I me... | https://answers.sap.com/questions/12626097/after-deploying-custom-ui5-appliaction-in-flp.html | CC-MAIN-2020-40 | refinedweb | 295 | 74.29 |
Serving up Mercurial using mod_python
The following information resulted from several hours of battling with SELinux and Apache, attempting to find some way of serving up my Mercurial repository (now at) over HTTP. In short, I found that cgi-bin would not work at all with SELinux, for reasons I couldn’t figure out (it ... | http://www.advogato.org/person/johnw/diary/10.html | CC-MAIN-2014-10 | refinedweb | 906 | 59.8 |
Introspection and Actions; UIA_PaneControlTypeId and A Grid Within
Started by
Sn3akyP3t3,
3 posts in this topic
You need to be a member in order to leave a comment
Sign up for a new account in our community. It's easy!
Register a new account
Already have an account? Sign in here.?
I devised my program for two main reas... | https://www.autoitscript.com/forum/topic/169207-introspection-and-actions-uia_panecontroltypeid-and-a-grid-within/ | CC-MAIN-2018-05 | refinedweb | 882 | 71.04 |
David Kellum wrote:
>
> I'm writing a performance minded server in Java that needs to repeatedly
> parse relatively small (5k) XML documents obtained from a remote
> server. I don't need or want to have the overhead of any validation in
> this parse. However, the returned document includes a doctype
> declaration like ... | http://mail-archives.apache.org/mod_mbox/xml-general/200102.mbox/%3C3A97361B.25A60E87@eng.sun.com%3E | CC-MAIN-2015-06 | refinedweb | 329 | 57.27 |
ABOUT SASM ---------- MOTIVATION for SASM: hiding the details of Pentium asm. lang. (on purpose!) SASM code will look more like HLL code -- to make student's transition easier. Introducing one more level of abstraction in order to postpone discussion of several topics. HLL SASM assembly machine code each HLL statement ... | http://pages.cs.wisc.edu/~smoler/x86text/lect.notes/SASM.html | crawl-003 | refinedweb | 1,411 | 52.73 |
Hello. I would like to have (in Xamarin Forms) ListView, where ViewCell contains label + image. Image source is from internet url.
So I followed this tutorial
So in my case its should be something like this:
public partial class FruitPage : ContentPage { public FruitPage() { InitializeComponent(); var listView = new Li... | https://forums.xamarin.com/discussion/comment/207195/ | CC-MAIN-2019-35 | refinedweb | 461 | 59.7 |
Constants refer to fixed values that the program may not alter and they are called literals.
Constants can be of any of the basic data types and can be divided into Integer Numerals, Floating-Point Numerals, Characters, Strings and Boolean Values.
Again, constants are treated just like regular variables except that the... | https://www.tutorialspoint.com/cplusplus/cpp_constants_literals.htm | CC-MAIN-2022-21 | refinedweb | 344 | 58.72 |
On Mon, Dec 29, 2008 at 04:18:55PM +0530, Kedar Sovani wrote: > > > #include_next is not understood by the compiler, and hence it gives up. > > > > > > (I don't understand why this is not seen in x86 builds, comments?) > > > > Probably because the binary package in the archive was built with > > some older gcc version,... | https://www.redhat.com/archives/fedora-arm/2008-December/msg00030.html | CC-MAIN-2015-18 | refinedweb | 169 | 75.4 |
#pragma comment(linker,"/delayload:xxx.dll") -- not supported in VS .NET
#1 Members - Reputation: 301
Posted 14 October 2005 - 06:10 AM
#2 Members - Reputation: 331
Posted 14 October 2005 - 09:21 AM
(If you don't already know this, LoadLibrary takes a path or filename of a DLL and returns a handle. GetProcAddress takes... | http://www.gamedev.net/topic/351577-pragma-commentlinkerdelayloadxxxdll----not-supported-in-vs-net/ | CC-MAIN-2016-44 | refinedweb | 591 | 60.14 |
On Tue, 2011-01-04 at 10:33 -0800, Kevin D. Kissell wrote:
> On 01/04/11 09:54, Anoop P A wrote:
> > On Tue, 2011-01-04 at 09:21 -0800, Kevin D. Kissell wrote:
> >> I'm trying to figure out a reason why your change below should help, and
> >> offhand, modulo tool bugs, I don't see it. I'm assuming that your diff
> >> b... | https://www.linux-mips.org/archives/linux-mips/2011-01/msg00061.html | CC-MAIN-2016-40 | refinedweb | 384 | 70.13 |
#include <librets/RetsXmlEndElementEvent.h>
Clasify the type of the Xml event.
Contstruct the object with a default line and column number.
These numbers should reflect the line/column from the XML stream where this element can be found and is used for debugging.
Checks to see if the attribute names are identical betwe... | http://lpod.org/librets/classlibrets_1_1_rets_xml_end_element_event.html | CC-MAIN-2020-10 | refinedweb | 105 | 62.85 |
This is the mail archive of the cygwin mailing list for the Cygwin project.
Hi Robert. Thanks for your reply. > On Sun, 11 Nov 2007 03:50:28 -0500 (EST), Robert Kiesling wrote >> > and not, > typedef-name: > identifier1 identifier2... identifiern > The compiler is looking for a semicolon after, "fred," and your > examp... | https://sourceware.org/legacy-ml/cygwin/2007-11/msg00535.html | CC-MAIN-2021-43 | refinedweb | 359 | 68.87 |
From the L.A. Times:
A generating tower at the world’s largest solar energy plant was shut down Thursday after a mirror misalignment caused sunlight to burn through electrical wiring and start a small fire, according to officials.
The blaze at the Ivanpah Solar Electric Generating System in the Mojave Desert broke out ... | https://wattsupwiththat.com/2016/05/21/fire-breaks-out-at-worlds-largest-solar-power-plant-ivanpah/?shared=email&msg=fail | CC-MAIN-2020-05 | refinedweb | 17,237 | 63.8 |
Gitweb:;a=commitdiff;h=36c5bb40a27c7faac2a167df8c5cbd7c98c5168d Commit: 36c5bb40a27c7faac2a167df8c5cbd7c98c5168d Parent: 97ba18f4cbedbdf7933d30d719cf997bb06e7214 Author: Alasdair G Kergon <agk redhat com> AuthorDate: Mon Sep 16 19:57:14 2013 +0100 Committer: Alasdair G Kergon <agk redhat com> CommitterDate: Mon Sep 16 ... | https://www.redhat.com/archives/lvm-devel/2013-September/msg00061.html | CC-MAIN-2015-18 | refinedweb | 259 | 58.79 |
Migrations¶
Migr.
A Brief History¶
Prior to version 1.7, Django only supported adding new models to the
database; it was not possible to alter or remove existing models via the
syncdb command (the predecessor to
migrate).
Third-party tools, most notably South, provided support for these additional types of change, but ... | https://docs.djangoproject.com/en/1.8/topics/migrations/ | CC-MAIN-2017-22 | refinedweb | 1,540 | 53 |
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4
import java.util.ArrayList;
import java.util.List;
Java class for items complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="items"> <complex... | http://grepcode.com/file/repo1.maven.org$maven2@com.sun.jersey.samples$extended-wadl-webapp@1.9-ea07@com$sun$jersey$samples$extendedwadl$model$Items.java | CC-MAIN-2017-04 | refinedweb | 130 | 51.44 |
Re: Shit that makes me LOL
Posted: Fri Nov 04, 2011 1:33 am
What the fuck? I guess they didn't mention the families relation to a certain brentsg? Haha. Geez louise. Not going to sleep right.
import games
Gaijin Punch wrote:I like the headline but it doesn't load.
Gaijin Punch wrote:I like the headline but it doesn't l... | http://forums.gamengai.com/viewtopic.php?f=5&t=1482&start=450&view=print | CC-MAIN-2020-29 | refinedweb | 274 | 61.36 |
note elusion I hadn't seen [cpan:/. <p> <code><rant></code> <p> Some people will naturally like templates better. That's fine, but let's ignore that at the moment, because I personally don't care much for them. They have their place, but most of the time it's not with me. <p> Where is the best place to put a module lik... | https://www.perlmonks.org/?displaytype=xml;node_id=256438 | CC-MAIN-2019-51 | refinedweb | 259 | 77.43 |
The QWMatrix class specifies 2D transformations of a coordinate system. More...
#include <qwmatrix.h>
List of all member functions.
The standard coordinate system of a paint device has the origin located at the top left position. X values increase to the right, and Y values increase downwards.
This coordinate system, a... | https://doc.qt.io/archives/2.3/qwmatrix.html | CC-MAIN-2021-49 | refinedweb | 718 | 51.04 |
.
The ReportLab library is available on PyPI. A user guide (not
coincidentally, a PDF file) is also available for download.
You can install ReportLab with
pip:
$ python -m
FileResponse
objects accept file-like objects.
Here’s a “Hello World” example:
import io from django.http import FileResponse from reportlab.pdfgen ... | https://django.readthedocs.io/en/latest/howto/outputting-pdf.html | CC-MAIN-2021-43 | refinedweb | 447 | 57.77 |
I told the Microsoft Visual C++ compiler not to generate AVX instructions, but it did it anyway!
Raymond
A customer passed the /arch:SSE2 flag to the Microsoft Visual C++ compiler, which means “Enable use of instructions available with SSE2-enabled CPUs.” In particular, the customer did not pass the /arch:SSE4 flag,¹ s... | https://devblogs.microsoft.com/oldnewthing/20201026-00/?p=104397 | CC-MAIN-2021-43 | refinedweb | 764 | 64 |
Ev2 Representation of Moves
Contents
- Summary
- Why is This Necessary?
- Move-Away and Move-Here
- Conclusion
- Further Work
Summary
Ev2 was designed with an intention to support “move” semantics, but the current design of its move() method does not satisfy the requirements. Here I explain why, and present a solution.... | http://wiki.apache.org/subversion/MoveDev/Ev2MovesDesign?action=diff | CC-MAIN-2014-42 | refinedweb | 4,004 | 54.26 |
Hi it's me again.
Well I've done this program where it converts roman numerals to numbers but I've used it with if else.
But I'm supposed to use switch.But I'm supposed to use switch.Code:/* wo0dy at home doing assignment. March 24th 2006 Friday 9am D-48-A Cyberia (5) Write a program that converts a C++ string represen... | https://cboard.cprogramming.com/cplusplus-programming/78270-if-else-works-but-i-cant-do-switch.html | CC-MAIN-2017-26 | refinedweb | 423 | 62.68 |
Note: the generator has evolved since this post. Although the post is still worth reading, please go to for the most up to date doc.
The first blog post I ever wrote was titled “Turning an ascx user control into a redistributable custom control”. It was almost exactly five years ago, and it still gets a lot of hits tod... | https://blogs.msdn.microsoft.com/davidebb/2010/10/27/turn-your-razor-helpers-into-reusable-libraries/ | CC-MAIN-2017-39 | refinedweb | 2,686 | 63.29 |
Building a Custom Twig Filter the TDD Way). For example, the
number_format filter can convert a number into a more readable one:
{{price|number_format(2, '.', ',')}}
Assuming
price is a variable with value
1234567.12345, after the filter operation, the output in the page will be
1,234,567.12: 2 decimal places, “.” as t... | https://www.sitepoint.com/building-custom-twig-filter-tdd-way/?utm_source=rss | CC-MAIN-2020-05 | refinedweb | 1,307 | 53.81 |
Introduction to Internationalization Programming
If you are going to write a real i18n program, it would be wise to think that you know nothing about a specific language and take charsets into account. Ideographic languages have many more than 26 letters: Japanese has about 2,000, and Chinese has about 5,000. To deal w... | http://www.linuxjournal.com/article/6176?page=0,1 | CC-MAIN-2014-52 | refinedweb | 1,085 | 65.42 |
Step-by-step
Download the zip file
You can get the zip file containing the TI Debugger here.
Configure TM1 server
Edit the tm1s.cfg file
- Enable ODATA on the TM1 Server (i.e. HTTPPortNumber=8000)
- Enable TI Debugging (EnableTIDebugging=True)
Unzip file and run the debugger
Run the TurboDebugger.bat file to use the de... | https://developer.ibm.com/recipes/tutorials/ibm-tm1-turbointegrator-debugger/ | CC-MAIN-2017-51 | refinedweb | 782 | 78.04 |
OAuth 2 All the Things with oPRO: Users and API
In my previous article we met oPRO – a Rails engine to build full-fledged OAuth 2 providers. We’ve already created a server (the actual provider) and a client app. For now, the server has a basic authentication system powered by Devise. Users are able to create applicatio... | https://www.sitepoint.com/oauth-2-all-the-things-with-opro-users-and-api/ | CC-MAIN-2020-10 | refinedweb | 1,962 | 51.34 |
Grant Griffin <g2 at seebelow.org> wrote: > Of course, I don't expect that eveyone will share this sensibility; if > Perl makes sense to _you_, more power to 'ya. But I did it off-and-on > for three years, and my fingers did a lot of walking through the > camel--they probably walked a mile for it. I found I had to do a... | https://mail.python.org/pipermail/python-list/2000-September/021499.html | CC-MAIN-2016-50 | refinedweb | 596 | 63.29 |
The system builds the updater binary from
bootable/recovery/updater
and uses it in an OTA package.
ota_update.zip,
incremental_ota_update.zip) that contains the executable binary
META-INF/com/google/android/update-binary.
Updater contains several builtin functions and an interpreter for an
extensible scripting language... | https://source.android.com/devices/tech/ota/inside_packages | CC-MAIN-2017-39 | refinedweb | 1,682 | 56.66 |
On Thu, Apr 29, 2021 at 08:48:26AM +0800, Kefeng Wang wrote:> > On 2021/4/28 13:59, Mike Rapoport wrote:> > On Tue, Apr 27, 2021 at 07:08:59PM +0800, Kefeng Wang wrote:> > > On 2021/4/27 14:23, Mike Rapoport wrote:> > > > On Mon, Apr 26, 2021 at 11:26:38PM +0800, Kefeng Wang wrote:> > > > > On 2021/4/26 13:20, Mike Rap... | https://lkml.org/lkml/2021/4/29/69 | CC-MAIN-2021-25 | refinedweb | 325 | 72.66 |
be achieved via the Mammoth package. It's an easy, efficient, and fast library used to convert DOCX files to HTML. In this article, we'll learn how to use Mammoth in Python to convert DOCX to HTML.
Installing Mammoth
As a good practice, remember to have your virtual environment ready and activated before the installat... | https://stackabuse.com/how-to-convert-docx-to-html-with-python-mammoth/ | CC-MAIN-2021-17 | refinedweb | 1,765 | 63.7 |
React JSX: How to Do It the Right Way, Part I
React JSX: How to Do It the Right Way, Part I
In this, the first part of React JSX series, we will take a look at multiple ways you can \correctly loop through arrays the using React.js.
Join the DZone community and get the full member experience.Join For Free
Usually, when... | https://dzone.com/articles/react-jsx-how-to-do-it-the-right-way-part-i?fromrel=true | CC-MAIN-2019-47 | refinedweb | 893 | 70.94 |
No matter what kind of component you’re building, every component needs styles. In this tutorial, we’re going to take a deep dive into styling components using Stencil. We’ll learn how to implement global styles in Stencil, which helps us keep our components visually consistent when building a design system. We’ll also... | https://ionicframework.com/blog/advanced-stencil-component-styling/ | CC-MAIN-2022-21 | refinedweb | 2,638 | 62.48 |
Sashkin - Fotolia
Use Python for easy VM management
Python continues to grow in popularity, as different use cases are established and new features are added. Follow this guide to manage VMs with the simple programming language.
In the age of DevOps, organizations expect system administrators to have some knowledge of ... | https://searchservervirtualization.techtarget.com/tip/Use-Python-for-easy-VM-management | CC-MAIN-2021-31 | refinedweb | 969 | 73.27 |
#include <CutAndFill.h>
ithCAF_Component.
This method gives access to the internal data structures, namely to a Zone2 object whose vertices have z-values that correspond to the height differences between the two input meshes (SurfaceBefore minus SurfaceAfter). And a map is returned that contains for each vertex the hei... | https://www.geom.at/fade25d/html/classGEOM__FADE25D_1_1CutAndFill.html | CC-MAIN-2019-22 | refinedweb | 104 | 50.97 |
view raw
I am using Promoted Build plugin. And using some custom groovy scripts to validate the build! I wanted to access the value of
BUILD_NUMBER
println
If it's in runtime you can use:
def env = System.getenv() //Print all the environment variables. env.each{ println it } // You can also access the specific variable... | https://codedump.io/share/WlvCilL9vh33/1/access-buildnumber-in-jenkins-promoted-build-plugin-scripts | CC-MAIN-2017-22 | refinedweb | 139 | 50.63 |
Xavier <xavier at noreality.net> writes: > I pretty much copied the code from the tutorial. Could the part I ^^^^^^^^^^^ Why not an exact copy? > commented out during the boost compile be causing this error? > > On a slightly unrelated note, I downloaded the MSVC 2003 Toolkit from > MS with the 7.1 compiler - Can I jus... | https://mail.python.org/pipermail/cplusplus-sig/2004-April/006950.html | CC-MAIN-2014-15 | refinedweb | 135 | 69.07 |
I really need this, I have to give up with RN for this project if this is currently unsupported. Could someone spend a minute with this issue
? To be more specific I need to show a vis.js graph in my webview.
Some details:
My webview works correctly when I launch on a real device a debug build using
react-native-script... | https://forums.expo.io/t/solved-local-javascript-in-webview/9198 | CC-MAIN-2019-09 | refinedweb | 667 | 63.9 |
Thanks guys I fixed it in class today. I had to set my double monthlypay1=0; and that made it work. As for the hiding my variable's I'll fix that up so my variables aren't hiding. But thanks for...
Thanks guys I fixed it in class today. I had to set my double monthlypay1=0; and that made it work. As for the hiding my v... | http://www.javaprogrammingforums.com/search.php?s=d55f2e3059776707fcdb04098b2cd711&searchid=784547 | CC-MAIN-2014-10 | refinedweb | 771 | 78.35 |
Class Names
Class declarations introduce new types, called class names or class types, into programs. Except for forward declarations, these class declarations also act as definitions of the class for a given translation unit. There may be only one definition for a given class type per translation unit. Using these new... | https://msdn.microsoft.com/en-us/library/w1bwzwc4(v=vs.90).aspx | CC-MAIN-2017-30 | refinedweb | 231 | 53.81 |
For this tutorial I've written a simple program in C that overflows a buffer on the stack with whatever it reads from the network. I cross-compiled it for MIPS Linux and ran it using QEMU chrooted into the unpacked filesystem of the Netgear WNDR3700v3 (Firmware 1.0.0.18).
The program, vulnerable.c contains the followin... | https://shadow-file.blogspot.com/2013/03/buffer-overflows-with-crossbow-part-1.html | CC-MAIN-2018-34 | refinedweb | 660 | 55.54 |
Serial Communication Between ATtiny UART and Computer
Serial Communication Between ATtiny UART and Computer
ATtiny13 UART How to Serial Communication Between ATtiny and Computer - When we create a project, sometimes we need a debug method.
With this debug method we will send data to the serial, so we can see the respon... | https://www.chippiko.com/2020/09/attiny13-uart.html | CC-MAIN-2021-39 | refinedweb | 801 | 54.05 |
Exploring interesting use cases for the Ethereum blockchain by building a simple dice roll DApp game with Truffle Framework.
‘DApp’ is an abbreviation for Decentralized app. DApps are a new paradigm for building apps where a back end centralized server is replaced by a decentralized peer to peer network.
Industry-wide,... | https://blog.crowdbotics.com/building-a-dice-game-dapp-on-the-ethereum-blockchain/ | CC-MAIN-2021-17 | refinedweb | 1,784 | 61.02 |
Stateful Session Beans
In this section we will introduce, how to create Stateful Session Beans and the various lifecycle events that are provided by the bean.
Bean Creation
Same as Stateless beans, Stateful session beans consists of 1 class, the bean class and 2 interfaces, local and remote. The class is required and t... | http://www.wideskills.com/ejb/stateful-session-beans | CC-MAIN-2018-09 | refinedweb | 334 | 51.99 |
Here's a way to get the server and database name of the content database that a site belongs to using C#:
using Microsoft.SharePoint;
using Microsoft.SharePoint.Administrator;
public class Test
{
private static SPGlobalAdmin oGlobAdmin = new SPGlobalAdmin();
public static SPVirtualServer GetVirtualServerBySite(SPSite o... | http://www.sharepointblogs.com/avelez/ | crawl-001 | refinedweb | 2,646 | 64.41 |
Unable to create WLAN access point with old firmware
- Sirajuddin Asjad last edited by Sirajuddin Asjad
Hi, I'm trying to set up an access point and I must use firmware version 1.20.0.rc11 because I'm using an old LoRa library which only works with this specific version. The LoRa network is up and running, however I am... | https://forum.pycom.io/topic/6793/unable-to-create-wlan-access-point-with-old-firmware | CC-MAIN-2021-10 | refinedweb | 740 | 73.78 |
Please can someone take some time to read my comments in the below script. Now, I understand how I can use argv. However, I'm having trouble explaining how it actually works. I think it's because there's gaps in my terminology. I was wondering whether someone can tell me if the comments are correct ans show examples of... | http://www.dreamincode.net/forums/topic/240996-problem-explaining-argv/ | CC-MAIN-2016-07 | refinedweb | 184 | 85.79 |
Have you ever wondered how your ID tag works? In this tutorial, we will be able to show you how to read a RFID button or tag if it’s held up against ID-12 RFID reader or any 125KHz module. Also this project is an easy and fun way to explain the basic concept of digital identification technique using ID-12 together with... | https://www.jayconsystems.com/tutorials/RFIDmonitor | CC-MAIN-2019-04 | refinedweb | 2,082 | 60.35 |
io-pkt-v4, io-pkt-v4-hc, io-pkt-v6-hc
Networking manager
Syntax:
io-pkt-variant [-d driver [driver_options]] [-i instance] [-P priority] [-p protocol [protocol_options]] [-t threads] [-v]
where variant is one of v4, v4-hc, or v6-hc.
The BlackBerry 10 OS includes only io-pkt-v6-hc.
Options:
- -d driver [driver_options]
... | https://developer.blackberry.com/native/reference/core/com.qnx.doc.neutrino.utilities/topic/i/io-pkt.html | CC-MAIN-2020-34 | refinedweb | 1,454 | 56.96 |
#include <CGAL/Combinatorial_map.h>
Inherited by CGAL::Linear_cell_complex_for_combinatorial_map< class, class, class, class, class >.
The class
Combinatorial_map represents a dD combinatorial map.
Darts and non void attributes are stored in memory using
Compact_container, using
Alloc as allocator.
CombinatorialMap
Com... | https://doc.cgal.org/latest/Combinatorial_map/classCGAL_1_1Combinatorial__map.html | CC-MAIN-2019-35 | refinedweb | 282 | 56.35 |
25 July 2007 03:24 [Source: ICIS news]
SHANGHAI (ICIS news)--China’s methanol output reached 4.6m tonnes in the first half of the year, up a sharp 34.1% compared with the same period a year ago on growing demand from downstream sectors and emerging industries, the National Bureau of Statistics said late on Tuesday. ?xm... | http://www.icis.com/Articles/2007/07/25/9047198/methanol-leads-hike-in-china-h1-chem-output.html | CC-MAIN-2014-10 | refinedweb | 305 | 63.09 |
C Programming/C Reference/stdlib.h/abort
C programming standard library function .It is used in programming process or environment to stop the program or process abnormally.This function is required in the program when wrong condition gets encountered in program execution then to come out of process this function is us... | http://en.wikibooks.org/wiki/C_Programming/C_Reference/stdlib.h/abort | CC-MAIN-2013-48 | refinedweb | 232 | 59.6 |
Diophantine Reciprocals
September 19, 2014
Career Cup claims that Amazon asked this as an interview question; it is also Problem 108 at Project Euler:
In the following equation x, y and n are positive integers: 1 / x + 1 y = 1 / n. For n = 4 there are exactly three distinct solutions: 1/5 + 1/20 = 1/6 + 1/12 = 1/8 + 1/... | https://programmingpraxis.com/2014/09/19/diophantine-reciprocals/ | CC-MAIN-2021-04 | refinedweb | 549 | 62.21 |
*
using Objects and Classes to Add Students to Courses
Kd Martin
Ranch Hand
Joined: Nov 28, 2011
Posts: 58
posted
Nov 28, 2011 00:33:07
0
I have a few questions pertaining to this assignment I have. Firstly, I'm having some trouble figuring out how to add a student to a course and keep an index of the courses the stud... | http://www.coderanch.com/t/560014/java/java/Objects-Classes-Add-Students-Courses | CC-MAIN-2014-15 | refinedweb | 1,444 | 64.04 |
I am new to develop network app. I am currently developing metro app for Windows 8.
I have a dll that use winsock api to support raw socket. I found out that winsock is not supported on Windows 8 metro app.
So I am planning to re-write my own dll in C++ using Windows.Networking.Sockets.
My questions are...
(1) What is ... | https://social.msdn.microsoft.com/Forums/en-US/49aaa678-73f1-47e3-989c-c411d9bbc106/windows-socket-2-and-windows-8-metro-app?forum=winappswithnativecode | CC-MAIN-2020-40 | refinedweb | 261 | 59.5 |
rbb 00/08/05 19:21:06
Modified: src/include mpm_common.h
Log:
Update the mpm_common.h file with docs to use ScanDoc
Revision Changes Path
1.8 +41 -0 apache-2.0/src/include/mpm_common.h
Index: mpm_common.h
===================================================================
RCS file: /home/cvs/apache-2.0/src/include/mpm_... | http://mail-archives.apache.org/mod_mbox/httpd-cvs/200008.mbox/%3C20000806022106.37964.qmail@locus.apache.org%3E | CC-MAIN-2016-50 | refinedweb | 268 | 59.8 |
Did you get an answer for this problem? (being 7 days old and all)
You might want to post this to the geronimo mailing list for XBean. It's
really hard to get any answers from anyone except David Jencks and Dain
Sundstrom. You can also try the IRC channel.
Alex
On Wed, Nov 19, 2008 at 4:50 PM, Emmanuel Lecharny <elecha... | http://mail-archives.apache.org/mod_mbox/directory-dev/200811.mbox/%3Ca32f6b020811261146j13ef60b4lea1cb9255e9778b0@mail.gmail.com%3E | CC-MAIN-2019-18 | refinedweb | 312 | 62.38 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.