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 |
|---|---|---|---|---|---|
The pages in this section describe the concepts and tasks associated with saving data from your application to a database.
Provides an overview of how changes are made in a dataset and how the dataset tracks information about changes in order to update a database with new or modified records.
Provides details on sendin... | http://msdn.microsoft.com/en-us/library/ms171932(VS.80).aspx | crawl-002 | refinedweb | 351 | 58.18 |
.
- How many lines of code does it take to build a complete WP8 speech app?
- WP8: Voice Command Phrase Lists
- WP8: Voice Command Wildcards
- WP8 Voice Commands: Dynamic Phrase Lists … From Azure!
Since those posts went live, I’ve completely re-written the application with a full blown UX.
And … It’s not just a sample... | https://blogs.msdn.microsoft.com/robch/2013/07/05/wp8-speech-exploring-the-mvvm-pattern/ | CC-MAIN-2018-34 | refinedweb | 4,060 | 50.97 |
Introduction to Angular 7 Observables
Hi folks,
As promised in the form tuts, today we talk about Observables!
This part is very important for Angular 7 and also the future of JavaScript in general.
Observables are elements that will give us information. In order to get access to those information, we need to subscribe... | https://www.javascripttuts.com/introduction-to-angular-2-observables/ | CC-MAIN-2020-45 | refinedweb | 841 | 56.25 |
Usually, we are completely running React.js on client-side: Javascript is interpreted by your browser. The initial html returned by the server contains a placeholder, e.g.
<div id="root"></div>, and then, once all your scripts are loaded, the entire UI is rendered in the browser. We call it client-side rendering.
The p... | https://blog.theodo.com/2018/04/react-server-side-rendering/ | CC-MAIN-2022-33 | refinedweb | 1,252 | 65.93 |
The Rename family of refactorings helps change names of namespaces, classes, structs, methods,
fields, local variables and other symbols
(see also
The refactoring can be invoked from the text editor, from ReSharper tool windows (for example, Type Hierarchy) and sometimes from other views (Class View, Object Browser).
T... | http://www.jetbrains.com/resharper/webhelp60/Refactorings__Rename.html | CC-MAIN-2015-27 | refinedweb | 345 | 55.03 |
Java 8 vs Scala: a Feature Comparison
Introduction
With the release of JDK 8 planned for 2013, Oracle has a pretty fixed idea of what will be included. Speaking at QCon London earlier this year, Simon Ritter outlined the new features that will be part of JDK 8, which include modularity (Project Jigsaw), JRockit/Hotspot... | http://www.infoq.com/articles/java-8-vs-scala | CC-MAIN-2015-14 | refinedweb | 7,696 | 55.44 |
In this part of tutorial we are going to describe you how one can use "following-sibling" axis in to the XPath expression.
AdsTutorials
In this part of tutorial we are going to describe you how one can use "following-sibling" axis in to the XPath expression. "following-sibling" has some other working rather than "follo... | http://roseindia.net/tutorials/xPath/XPathFollowingSibling.shtml | CC-MAIN-2017-22 | refinedweb | 294 | 50.02 |
module includes Django's templating engine. This is included with the SDK and is part of App Engine, so you do not need to bundle it to use it.
Add the following
import statements at the top of
helloworld/helloworld.py:
import os from google.appengine.ext.webapp import template
Replace the
class MainPage(webapp.Reques... | http://code.google.com/appengine/docs/gettingstarted/templates.html | crawl-001 | refinedweb | 123 | 53.17 |
Details
- Type:
Bug
- Status:
Closed
- Priority:
Major
- Resolution: Fixed
- Affects Version/s: JRuby 1.5.2
- Fix Version/s: JRuby 1.5.4, JRuby 1.6RC1
- Component/s: Core Classes/Modules
- Labels:None
- Environment:HideUbuntu 10.04.1 LTS (64-bit), kernel 2.6.32-24-generic
java version "1.6.0_20"
Java(TM) SE Runtime Env... | http://jira.codehaus.org/browse/JRUBY-5064?focusedCommentId=234309&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel | CC-MAIN-2015-06 | refinedweb | 430 | 63.46 |
Contents
0.2.5 (2011-04-22)
- Added some new includes that were needed after PCL removed them from some of its header files.
0.2.4 ()
0.2.3 (2011-02-09)
Un-mangled namespace Eigen3:: to Eigen::
- General makefile and dependency cleanup.
0.2.2 (2011-01-07)
- Updated for compatibility with unstable PCL and OpenCV.
0.2.1 ... | http://wiki.ros.org/vslam/ChangeList | CC-MAIN-2018-51 | refinedweb | 189 | 72.02 |
There is a time when we want to do manipulation on the index column of the dataframe. Doing manipulation After Converting index to a column is very easy. In this tutorial, I will show step by step guide to convert index to columns in pandas
There will be two methods that will be used here. One is df.reset_index() and t... | https://www.datasciencelearner.com/convert-index-to-column-pandas/ | CC-MAIN-2021-39 | refinedweb | 541 | 69.07 |
Unable to use this.$axios in Vuex: TS2339: Property '$axios' does not exist on type 'Store '.
I’ve initialized a new project using the quasar cli and choose to have Vuex, Axios and Typescript.
Everything seems fine, until I’ve tried to declare an action which uses Axios in the Vuex store, I get the error
TS2339: Proper... | https://forum.quasar-framework.org/topic/7148/unable-to-use-this-axios-in-vuex-ts2339-property-axios-does-not-exist-on-type-store | CC-MAIN-2021-21 | refinedweb | 659 | 52.87 |
#include <DS3231.h>#include <Wire.h>#include <stdio.h>DS3231 Clock;bool Century = false;bool h12;bool PM;char currDate[24];char currTime[22];long lastRun = 0;int pause = 1000;void setup() { Wire.begin(); Serial.begin(57600);}void loop() { if (millis() - lastRun > pause) { sprintf(currDate, "Current Date: 20%02d/%02d/%0... | http://forum.arduino.cc/index.php?topic=142622.msg1071594 | CC-MAIN-2016-22 | refinedweb | 361 | 51.34 |
Hottest Forum Q&A on CodeGuru - January 12th
Comment from the Author:
In last week's column, we got a question from Al_Pennyworth in which he needed to minimize a window in pure C. I asked you to submit some solutions because I didn't find any. Chuck Vogt, a CodeGuru member, helped me out here and sent me the required ... | http://www.developer.com/tech/article.php/3302181/Hottest-Forum-QA-on-CodeGuru---January-12th.htm | CC-MAIN-2015-48 | refinedweb | 1,610 | 61.67 |
ztfy.gallery 0.2.3
ZTFY.blog package extension used to handle an images gallery
Contents
What is ztfy.gallery ?
ZTFY.gallery is an extension to ZTFY.blog package. It's goal is to handle images galleries included into a web site.
Package also includes a small basic set of features to be able to sell printed pictures via... | http://pypi.python.org/pypi/ztfy.gallery/0.2.3 | crawl-003 | refinedweb | 329 | 55.13 |
Content Management API
Introduction
Contentful's Content Management API (CMA) helps you manage content in your spaces. To learn more about how to model your content, read our modeling guide.
Note: You can use the CMA to deliver and manage content, but you shouldn't use it to deliver large amounts of content and instead... | https://www.contentful.com/developers/docs/references/content-management-api/?utm_campaign=automatically-watermark-contentful-assets-using-serverless&utm_medium=referral&utm_source=devto&utm_content=automatically-watermark-contentful-assets-using-serverless&utm_term= | CC-MAIN-2022-40 | refinedweb | 12,598 | 52.49 |
XPages series #4: Backing Bean Management with XPages
Karsten Lehmann July 16 2009 09:58:16In this part of the XPages series about an alternative application architecture, I'm going to talk about Backing Bean Management.
At the end of this blog entry, you should get the trick how the XPages user interface can be connec... | https://blog.mindoo.de/web/blog.nsf/dx/16.07.2009095816KLEBCY.htm?opendocument&comments | CC-MAIN-2018-30 | refinedweb | 5,330 | 64.2 |
On Thu, 2003-10-23 at 00:16, Guido van Rossum wrote:
There have been many proposals in this area, even a PEP (PEP 215, which I don't like that much, despite its use of $).
And PEP 292, which I probably should update.
I should mention that $string substitutions are optional in Mailman 2.1, but they will be the only way ... | https://mail.python.org/archives/list/python-dev@python.org/message/JFWSHLPYAN5CDS7YZGBQ3CIHKG5YJ2X6/ | CC-MAIN-2022-33 | refinedweb | 288 | 65.52 |
#include <shaderFunction.h>
Represents one shader stage function (code snippet).
ShaderFunctions are usually passed to a ShaderProgram, however be careful not to destroy the ShaderFunction after giving it to the program. While this may be safe for OpenGL after the program is created, it does not apply to other graphics... | https://www.sidefx.com/docs/hdk/class_hgi_shader_function.html | CC-MAIN-2021-17 | refinedweb | 150 | 54.29 |
Greetings,
I am trying to import data from a data file located on our unix server (/exports/lvl0.txt). Following is the Maxl that i am using to import data.
-->. import database AA.aa data from server text data_file '/exports/lvl0.txt' on error abort ;
I am getting this error when i call this Maxl using a Shell script.... | https://community.oracle.com/thread/3545284 | CC-MAIN-2016-50 | refinedweb | 199 | 61.73 |
Video capture issue in python
I am having trouble with the following simple code snippet:
import cv2.cv as cv capture = cv.CaptureFromFile('C://video.mp4') frame = cv.QueryFrame(capture) frame_size = cv.GetSize(frame)
cv.GetSize gives this error:
error: Array should be CvMat or IplImage
frame is of type <type 'nonetype... | https://answers.opencv.org/question/2463/video-capture-issue-in-python/ | CC-MAIN-2019-22 | refinedweb | 268 | 71.71 |
fileinput — Iterate over lines from multiple input streams¶
Código-fonte: Lib/fileinput.py
This module implements a helper class and functions to quickly write a
loop over standard input or a list of files. If you just want to read or
write one file see
open().
O uso típico é:
import fileinput for line in fileinput.inp... | https://docs.python.org/pt-br/3/library/fileinput.html | CC-MAIN-2021-39 | refinedweb | 770 | 59.9 |
Each Answer to this Q is separated by one/two green lines.
The loop for root, dir, file in
os.walk(startdir) works through these steps?
for root in os.walk(startdir) for dir in root for files in dir
get root of start dir : C:\dir1\dir2\startdir
get folders in C:\dir1\dir2\startdir and return list of folders “dirlist”
g... | https://techstalking.com/programming/python/do-i-understand-os-walk-right/ | CC-MAIN-2022-40 | refinedweb | 1,526 | 72.76 |
I've realized every object installed as a remote JAX-RPC object is unique between clients inspite of the number of stub objects created on client side.
Even between distinct client executions the accessed remote object is the same.
So I think of remote JAX-RPC Objects as Home Objects.... However with JAX-RPC, a remote ... | http://www.theserverside.com/discussions/thread.tss?thread_id=14318 | CC-MAIN-2014-10 | refinedweb | 320 | 58.89 |
I never liked Captchas because the burden was always on end user to understand the letters and prove that he is a human and not a software bot. But when I recently saw new Google reCAPTCHA on a website, I instantly liked it.
Because all we need is to check a box and it will figure out if you are a human or robot. Googl... | https://www.journaldev.com/7133/how-to-integrate-google-recaptcha-in-java-web-application | CC-MAIN-2021-04 | refinedweb | 2,226 | 59.19 |
Helper class for bilinear forms a(u,v) where u is a 0-form and v is a 1-form. More...
#include <bilinearFormHelper.hh>
Helper class for bilinear forms a(u,v) where u is a 0-form and v is a 1-form.
For example, the Advection-BF is a 0-1-BF
Here | J|, J^{-} and {k} can be precomputed as a single vector intermediateVector... | http://www.math.ethz.ch/~concepts/doxygen/html/classhp2D_1_1BilinearFormHelper__0__1__Part.html | crawl-003 | refinedweb | 146 | 52.05 |
The objective of this post is to test some HTTPS requests using the Requests library on the LinkIt Smart Duo.
Introduction
The objective of this post is to test some HTTPS requests using the Requests library on the LinkIt Smart Duo.
We will use this website for testing the behavior of the library with invalid HTTPS cer... | https://techtutorialsx.com/2016/12/28/linkit-smart-duo-sending-https-requests/ | CC-MAIN-2017-26 | refinedweb | 798 | 71.04 |
Whatever comes to mind
"The official blog of the SQL Server Analysis Services Data Mining Architect" (tm)
Since
Bog!
If!
OK, ok, so just yesterday I posted that it was easy to determine what queries were being used by the browsers to get the data underlying the view. Of course it’s easy to get them, but without a teens... | http://blogs.msdn.com/jamiemac/ | crawl-002 | refinedweb | 2,514 | 64.64 |
Here we will learn iOS UI table view in swift with example and how to use iOS table view to show the data in table format with an example using Xcode editor.
In iOS table view is used to show the data in a scrollable, single-column list of multiple rows that can be divided into sections. By using the iOS table view we ... | https://www.tutlane.com/tutorial/ios/ios-ui-tableview | CC-MAIN-2020-40 | refinedweb | 535 | 51.38 |
JavaScript ES6 (also known as ECMAScript 2015 or ECMAScript 6) is the newer version of JavaScript that was introduced in 2015.
ECMAScript is the standard that JavaScript programming language uses. ECMAScript provides the specification on how JavaScript programming language should work.
This tutorial provides a brief su... | https://www.programiz.com/javascript/ES6 | CC-MAIN-2022-40 | refinedweb | 824 | 60.41 |
Problem: There are two similarly-named functions in Python,
exit() and
sys.exit(). What’s the difference between them, and when should I use one over the other?
Introduction().
💡.
⛔ exit() | Python
The
exit() will straightforwardly end the execution of the Python code/script. The code that follows thereafter the
exit(... | https://blog.finxter.com/difference-between-exit-and-sys-exit-in-python/ | CC-MAIN-2021-43 | refinedweb | 476 | 51.24 |
Send your programming press releases, news items or comments to: NewsDesk@i-programmer.info
The PostgreSQL-compatible edition of Aurora Serverless is now generally available, offering an alternative to the MySQL version.
The latest version of JavaScript compiler Babel 7.5 has been released with the ability to parse and... | https://www.i-programmer.info/component/content/article/700-news.html | CC-MAIN-2019-30 | refinedweb | 613 | 51.28 |
F# is a functional-first language on the .NET platform, which focuses on helping you solve complex problems with simple, clean code. I’ll show you today how writing code that is similar to C#, and writing code that uses features that are completely unique to F#, empowers you to create robust, maintainable solutions. Le... | https://www.codemag.com/article/1605061 | CC-MAIN-2020-10 | refinedweb | 3,145 | 64.3 |
In order to understand the basic syntax of Clojure, let’s first look at a simple Hello World program.
Write ‘Hello world’ in a complete Clojure program. Following is an example.
(ns clojure.examples.hello (:gen-class)) (defn hello-world [] (println "Hello World")) (hello-world)
The following things need to be noted abo... | https://www.tutorialspoint.com/clojure/clojure_basic_syntax.htm | CC-MAIN-2021-10 | refinedweb | 1,024 | 58.48 |
Amazon and IMDB Review Sentiment Classification using SpaCy
Sentiment Classification using SpaCy
What is NLP?
Natural Language Processing (NLP) is the field of Artificial Intelligence concerned with the processing and understanding of human language. Since its inception during the 1950s, machine understanding of langua... | https://kgptalkie.com/amazon-and-imdb-review-sentiment-classification-using-spacy/ | CC-MAIN-2021-17 | refinedweb | 2,523 | 57.47 |
You might be surprised why I am writing an MVC EF Code First article when lots are already available on the web! But it is very tough for a beginner to consolidate all of them.
Also I will try to post a series of step by step articles. Let's now start with an introduction.
Microsoft’s ADO.NET Entity Framework (EF) simp... | http://www.codeproject.com/Articles/256356/How-to-use-Entity-Framework-Code-First-for-MVC?msg=4435369 | CC-MAIN-2016-44 | refinedweb | 1,030 | 56.45 |
This tutorial begins where Tutorial 6 left off. We’re continuing the Web-poll application and will focus on customizing Django’s automatically-generated admin site that we first explored in Tutorial 2.
Customize the admin form:
polls/admin.py
from django.contrib import adminfrom .models import Questionclass:
This isn’t... | https://www.commonlounge.com/discussion/b6ed26ce5e224015ad3382628e7ccae6 | CC-MAIN-2018-43 | refinedweb | 801 | 51.95 |
CroppingImageField
An Archetypes based field to allow you to specify exact dimensions for resized images.
Current release
No stable release available yet.
Project Description
We needed a field that ensured all images on a site were of the same dimensions.
Just add this field to your archetype and you can specify dimens... | http://plone.org/products/cropping-imagefield | crawl-002 | refinedweb | 191 | 54.42 |
Are you sure?
This action might not be possible to undo. Are you sure you want to continue?
The
Religion of
Islam
A standard book
By
Dr. Ahmed A. Galwash, Ph. D., litt. D
Volume TWO
F Fo or r f fr re ee e b bo oo ok k s se er rv vi ic ce e p pl le ea as se e w wr ri it te e t to o: :- -
C Co on nv ve ey yi in ng g I Is... | https://www.scribd.com/document/33338128/The-Religion-of-Islam-Volume-2 | CC-MAIN-2017-51 | refinedweb | 85,124 | 77.74 |
On Mon, 2009-03-09 at 09:07 +0100, Ingo Molnar wrote:> * Mike Galbraith <efault@gmx.de> wrote:> >.> > The fact that your hw triggers it currently is enough of a > justification. Gautham's change to load-balancing might have > shifted the preemption and migration characteristics on his box > just enough to not trigger t... | http://lkml.org/lkml/2009/3/9/99 | CC-MAIN-2015-11 | refinedweb | 396 | 56.45 |
Importance of macros in C++
99.9% of the C++ programs use macros. Unless you are making a basic file you have to write #include, which is a macro that pastes… Read More »
99.9% of the C++ programs use macros. Unless you are making a basic file you have to write #include, which is a macro that pastes… Read More »
errno ... | https://www.geeksforgeeks.org/tag/cpp-macros/ | CC-MAIN-2019-35 | refinedweb | 359 | 57.81 |
You tried to install using the command line and it does nothing. It creates an empty folder (on st start) and that's all.I tried to download & install this file: but when i hit *install package *i get this error in the console:
Exception in thread Thread-47:
Traceback (most recent call last):
File ".\threading.py", lin... | https://forum.sublimetext.com/t/package-control-a-full-featured-package-manager/2238/46 | CC-MAIN-2017-39 | refinedweb | 1,129 | 57.98 |
--- Matt Benson <gudnabrsam@yahoo.com> wrote:
> If you are able to add the ant-contrib jar to
> ANT_HOME/lib, then firstly, you don't need the
> nested
> <classpath> in the <taskdef> above. Also, with later
> ant-contrib distributions, there are other options,
> including any of the various <antlib> loading
> possibili... | http://mail-archives.apache.org/mod_mbox/ant-user/200404.mbox/%3C20040430140239.64281.qmail@web20416.mail.yahoo.com%3E | CC-MAIN-2016-07 | refinedweb | 134 | 52.56 |
to be installed — you can download it free from the Qt website. Go to and download the Qt package. You can opt to install only Creator during the installation.
Open up Qt Creator and you will be presented with the main window. The designer is available
pyuic6tool.
These two approaches are covered below. Personally I p... | https://www.pythonguis.com/tutorials/pyqt6-first-steps-qt-designer/ | CC-MAIN-2022-40 | refinedweb | 366 | 60.82 |
removed some global keys in gforth.el (bug report from a Debian user) fixed TO bug hopefully (reported by Michael Vanier <mvanier@bbb.caltech.edu>) cell+: : endscope ( compilation scope -- ; run-time -- ) \ gforth 463: scope? 464: drop 465: locals-list @ common-list 466: dup list-size adjust-locals-size 467: locals-lis... | https://www.complang.tuwien.ac.at/cvsweb/cgi-bin/cvsweb/gforth/glocals.fs?f=h;only_with_tag=MAIN;ln=1;content-type=text%2Fx-cvsweb-markup;rev=1.35 | CC-MAIN-2022-21 | refinedweb | 575 | 51.07 |
On Sep 19, 2006, at 8:11 AM, Jim Fulton wrote: ... > Note that the scripts generated by zc.buildout don't use > pkg_resources to determine the eggs to be loaded at run time. It's also worth noting that the eggs documentation, http:// peak.telecommunity.com/DevCenter/PythonEggs, explicitly advertises that setuptools is ... | https://mail.python.org/pipermail/distutils-sig/2006-September/006719.html | CC-MAIN-2016-44 | refinedweb | 167 | 60.01 |
MicroXML, a simplification of XML that is compatible with earlier versions, is an emerging specification under the W3C's Community Group process. In Part 1 of this series, "Explore the basic principles of MicroXML," you learned the basics of MicroXML and how it differs from XML 1.x and related standards.
MicroXML was p... | http://www.ibm.com/developerworks/library/x-microxml2/ | CC-MAIN-2016-18 | refinedweb | 1,644 | 54.73 |
This post discusses the importance of including the purpose of hyperlinks in the text shown on the link Itself. It also details specific challenges that can arise for customers using screen readers when they encounter some Win32 SysLink controls and WinForms LinkLabel controls, and suggests steps to avoid those challen... | https://blogs.msdn.microsoft.com/winuiautomation/2018/01/13/learn-more/ | CC-MAIN-2018-30 | refinedweb | 4,240 | 50.87 |
This manual is for GNU Gengen (version 1.4.2, 31 August 2010). GNU Gengen (GENerator GENerator), a tool to generate a C++ class (or C functions) for generating text, based on a template file with parameters, after substituting some parameters. This can be used in code generators. Gengen (GENerator GENerator) is a tool ... | http://www.gnu.org/software/gengen/gengen.html | CC-MAIN-2015-40 | refinedweb | 4,309 | 50.57 |
Important: Please read the Qt Code of Conduct -
Qtest doesnt work
Hi i added this two libraries:
#include <QtTest> try to #include <QtTest/QTest>
QT+=testlib in project
Not seems to work so. A not lot of time was working it's very strange.
- A Former User last edited by A Former User
Hi! Try
#include <QTest>. If it sti... | https://forum.qt.io/topic/72328/qtest-doesnt-work | CC-MAIN-2021-21 | refinedweb | 146 | 75.71 |
Created on 2018-11-04 17:43 by denis-osipov, last changed 2019-03-26 23:00 by cheryl.sabella. This issue is now closed.
6.3.1. Attribute references says:
."
It seems that __getattribute__ method is meaning.
__getattr__ is the correct method to override in most (but not all) cases. I don't think we should encourage peop... | https://bugs.python.org/issue35165 | CC-MAIN-2021-21 | refinedweb | 292 | 69.48 |
Programmer/Controller
- Neil Crawford
- 2 years ago
- Views:
Transcription
1 Systems Plus START envirotronics ALARM STOP ALARM ACK Instrument Manual Systems Plus Programmer/Controller OFF HELP ENTER ALARM RESET DEL Revision 6 9/12/97
2 Table of Contents 2 Menu Map... 4 General Information... 5 Channel Set-up Notes... 6... | http://docplayer.net/15707165-Programmer-controller.html | CC-MAIN-2018-34 | refinedweb | 10,939 | 63.29 |
Here's a fun one. Start here
Lazy PyTwitter: Is there some way with typing/mypy to express that a type must be a 3-element numpy array of reals?— David Beazley (@dabeaz) June 21, 2018
This is a cool question.
Here's an essential clarification on what this structure is.
Sorry, but I'm not letting go of this. Suppose I w... | https://slott-softwarearchitect.blogspot.com/2018/06/ | CC-MAIN-2021-39 | refinedweb | 309 | 77.33 |
I’ve been wondering if perhaps there is not much to this object orientation business. Could it be that an ‘object’ is nothing more than a collection of partially applied functions?
An Example of Object-Orientation
Here is a simple object oriented class, representing a person with a couple of operations.
void Main() { v... | https://www.withouttheloop.com/articles/2014-11-11-oo-partial-application/ | CC-MAIN-2022-27 | refinedweb | 414 | 59.23 |
Feb 09, 2012 07:59 PM|nil68|LINK
Using VS 2010. My Web Service is working fine. But while 'Consuming' from a 'Windows Forms Application', it fails..! Prolem started after I installed VS 2010 SP1. I have uninstalled the VS2010 SP1, VS2010 and VS Web Developer 2010 and Reinstalled all (without the VS 2010 SP1..!)
This is... | http://forums.asp.net/t/1767890.aspx?+Consuming+a+Web+Service+from+a+Windows+Forms+Application+fails+ | CC-MAIN-2014-52 | refinedweb | 1,156 | 74.29 |
Making argument parsing easy
Project Description
easyargs
A project designed to make command line argument parsing. This is probably best shown with an example that takes one required argument and two optional ones:
from __future__ import print_function import easyargs @easyargs def main(name, count=1, greeting='Hello'... | https://pypi.org/project/easyargs/ | CC-MAIN-2018-09 | refinedweb | 677 | 52.39 |
indent - Man Page
changes the appearance of a C program by inserting or deleting whitespace.
Examples (TL;DR)
- Format C/C++ source according to the Linux style guide, automatically back up the original files, and replace with the indented versions:
indent --linux-style path/to/source.c path/to/another_source.c
- Forma... | https://www.mankier.com/1/indent | CC-MAIN-2022-33 | refinedweb | 1,619 | 61.36 |
A couple months have passed since Deepak Kapoor and I wrote an article about Avalon-Windows Forms interop. () I still point people to that article; even though it was written two CTP’s ago it’s still pretty accurate and is one of the best introductions on the subject. But I do have a couple addendums.
WindowsFormsHost ... | http://blogs.msdn.com/b/nickkramer/archive/2005/05/27/422375.aspx | CC-MAIN-2015-22 | refinedweb | 433 | 59.13 |
I am trying to connect to a Portal that uses IWA and get an error:
<class 'pywintypes.error'>
Failed Kerberos authentication
I have tried both the domain accounts and the initial administrator account setup with same issue. Is it possible to login to a site with IWA? If so what am I not doing correct
target = GIS("", "... | https://community.esri.com/t5/arcgis-api-for-python-questions/connect-to-portal-with-iwa/td-p/786990 | CC-MAIN-2022-27 | refinedweb | 468 | 53.92 |
FxCop is a code analysis tool that checks managed code assemblies for conformance to Microsoft® .NET Framework design guidelines plus custom guidelines.
It uses introspection, MSIL parsing, and call graph analysis to inspect assemblies for more than 200 defects in the following areas: Library design, Localization, Nami... | http://www.codeproject.com/Articles/11978/FXCop-1-32?fid=225709&df=10000&mpp=10&noise=1&prof=True&sort=Position&view=None&spc=Relaxed | CC-MAIN-2013-48 | refinedweb | 675 | 56.05 |
Most of us know how to order objects using the Django ORM using
order_by('field') which creates a SQL query for us using
ORDER BY field. That's not the type of ordering I'm going to talk
about today.
I'm talking about keeping a set of objects in order with respect to each other, without any gaps. This has come up for u... | https://www.revsys.com/tidbits/keeping-django-model-objects-ordered/ | CC-MAIN-2019-26 | refinedweb | 1,420 | 57.47 |
This section introduces the basics of writing a CORBA client application. Many of the steps are identical to those required for writing applets. The major difference is that the applet code appears in the init() method rather than in main(). The complete code for the applet version follows shortly (HelloApplet.java).
T... | https://www.oreilly.com/library/view/javabeans-unleashed/067231424X/067231424X_ch20lev1sec3.html | CC-MAIN-2019-35 | refinedweb | 119 | 59.6 |
Accelerated C++
Andrew Koenig & Barbara E. Moo (yes, moo)
ISBN: 0-201-70353-X
I've never really bought the claim that you can't learn C++ without first learning C, and this book proves it. As our esteemed C++ guru ariels once said, "it teaches the language like there never was C." From the very beginning you know the a... | http://everything2.com/title/Accelerated+C%252B%252B | CC-MAIN-2017-04 | refinedweb | 1,058 | 63.46 |
Created on 2013-06-26 03:48 by brycenesbitt, last changed 2021-03-23 15:12 by lars.hammarstrand.
ElementTree offers a wonderful and easy API for parsing XML... but if there is a namespace involved it suddenly gets ugly. This is a proposal to fix that. First an example:
------------------
!/usr/bin/python
# Demonstrate ... | https://bugs.python.org/issue18304 | CC-MAIN-2021-17 | refinedweb | 1,492 | 65.42 |
Widget development
Widgets are reusable user-interface components and are key to providing a rich user experience. The ArcGIS for JavaScript API provides a set of ready-to-use widgets. Beginning with version 4.2, it also provides a foundation for you to create custom widgets.
This guide topic discusses the basic fundam... | https://developers.arcgis.com/javascript/latest/custom-widget/ | CC-MAIN-2021-17 | refinedweb | 952 | 50.12 |
NodeMCU is flashed with latest Micropython 1.9.2, powering the motor shield from 2×18650 lion batteries (approx 7.5 volts), using a shortcut between VIN and VM, so only one power for controller and motor. The code is after many hours of looking for the problem very simple:
Code: Select all
import micropython import mac... | https://forum.micropython.org/viewtopic.php?f=16&t=3977 | CC-MAIN-2020-24 | refinedweb | 161 | 67.65 |
Tim Fountain: Blog 2009-05-11T21:03:54+01:00 Tim Fountain Deploying Zend Framework apps with Capistrano 2009-05-11T21:03:54+01:00 <p>One of the good things the Ruby community has brought us is <a href="">Capistrano</a>, a command line tool for automated deployment. Although it was written for Rails apps, it can be used... | http://feeds.feedburner.com/tim-fountain-blog-web | crawl-002 | refinedweb | 4,926 | 60.35 |
Here is the list of Java Collections interview questions. These questions have been asked over time and are still being asked in interviews. It is good to go through them to understand the various concepts in Collections.
Java Collections Interview Questions and Answers
What is a HashSet and how does it work internally... | https://programtalk.com/java/java-collections-interview-questions/ | CC-MAIN-2021-04 | refinedweb | 2,202 | 50.23 |
proc node_NODE1 { ... } { ... } proc node_NODE2 { ... } { ... } ... eval [xml::parse $file]The basic advantage of this is that, instead of interpreted code manipulating script-level data structures, you have C code (the interpreter) manipulating the data structures that represent the language. See
proc o args { proc [s... | http://c2.com/cgi-bin/wiki?ToolCommandLanguage | CC-MAIN-2015-14 | refinedweb | 1,843 | 62.17 |
Sonoff Touch LAN Mode and MQTT
- here.
I’ve had a couple of the Sonoff Basic devices for quite some time. It’s fairly easy to solder some header pins onto these which makes flashing the firmware somewhat of a non event, but it’s still a bit of a pain.
The other thing I bought (again, some time ago, but a bit after the ... | https://schinckel.net/2019/01/ | CC-MAIN-2019-51 | refinedweb | 960 | 60.21 |
You might be wondering how to use SQL Server Reporting Services Reports with an MVC Application hence you’re in this page, well let me explain to you in this simple steps
At the time of this post there is no controls yet for Report Viewer in MVC so we will be doing some workaround to make it happen. I will also assume ... | http://www.macaalay.com/2012/09/25/using-sql-server-reporting-services-in-mvc-web-application/ | CC-MAIN-2020-45 | refinedweb | 393 | 57.5 |
ftime()
Get the current time
Synopsis:
#include <sys/timeb.h> int ftime( struct timeb * timeptr );
Since:
BlackBerry 10.0.0
Arguments:
- timeptr
- A pointer to a timeb structure where the function can store the current time; see below.
Library:
libc
Use the -l c option to qcc to link against this library. This library ... | http://developer.blackberry.com/native/reference/core/com.qnx.doc.neutrino.lib_ref/topic/f/ftime.html | CC-MAIN-2015-35 | refinedweb | 218 | 70.9 |
- 04 Oct, 2012 1 commit
->
- 13 Dec, 2011 1 commit
- David Howells authored
Rearrange the definition of HZ in asm-generic/param.h so that the user-specific is declared before the kernel-specific one. We then explicitly #undef the userspace HZ value and replace it with the kernel HZ value. This allows the userspace para... | https://gitlab.flux.utah.edu/xcap/xcap-capability-linux/commits/41e1d4fd2978f1035ceb210a7482901434770c2d/include/asm-generic/param.h | CC-MAIN-2019-43 | refinedweb | 310 | 52.76 |
In this article, we provide an introduction to the use of Pandas, which is an extension of NumPy.
Pandas Series, from which DataFrames can be constructed, are built on NumPy arrays. In addition to a wide range of ways Pandas DataFrames can be manipulated, one major advantage that Pandas has over NumPy is that indexes a... | https://docs.astraea.earth/hc/en-us/articles/360052337451-Pandas-Primer | CC-MAIN-2021-31 | refinedweb | 1,941 | 74.19 |
Hello guys,
I am trying to have a st.selectbox() where I am able to change the background color of specific items.
However, I do not want this to be applied to the other dropdown menus of my streamlit app.
Here is what I was able to do untill now:
import streamlit as st ex_1 = st.sidebar.multiselect("Anything", ['Anyth... | https://discuss.streamlit.io/t/custom-background-color-of-selectbox-elements/22200 | CC-MAIN-2022-21 | refinedweb | 131 | 59.3 |
Hi Miles,
I have some questions for DMRG in ITensor. Hope you could help.
What kind of optimization algorithm does it use, single-site or twosite?
PBC is difficult. Will the "Efficient matrix-product state method for periodic boundary conditions" be built in this Library?
Can it run in parallel?
I tried some simulation... | http://itensor.org/support/109/questions-about-dmrg | CC-MAIN-2018-05 | refinedweb | 753 | 75.1 |
Changes are being made to improve the consistency and maintainability of the
ups login files. Most of the fermi files in the /usr/local/etc directory are being
retired. The only required files in /usr/local/etc will be setups.csh and
setups.sh; all other ups files will be located via ups databases.
This report provides... | http://www.fnal.gov/docs/products/template_home/convert_usr_local.html | crawl-002 | refinedweb | 429 | 55.03 |
Is there a search function in the pythonista editor? How can I find a specific word or phrase in a script on iphone without reading through the entire script looking for it?
Thank you.
I have yet another question...over the past few months I have written a number of scripts in which I use a number of TextFields and But... | https://forum.omz-software.com/topic/7301/search-for-phrase-within-script/7 | CC-MAIN-2022-05 | refinedweb | 524 | 50.73 |
Remove computed goto interpreter mode
By descision of the Pike conference, computed goto mode was removed.
Remove !SHARED_NODES
Pike with SHARED_NODES disabled did not work. By descision of the Pike
Conference it is removed.
smartlink: NetBSD uses the Darwin convention for rpath.
smartlink: support Darwin-style rpath
M... | http://pike-librarian.lysator.liu.se/log.xml?module=pike.git&file=src/configure.in | CC-MAIN-2017-47 | refinedweb | 16,274 | 55.5 |
Last year, the SoBig virus humbled me. My team uses Microsoft Exchange Server to manage our internal email system and host several closed external discussion lists. We use client-side spam software to filter out noise from our Inboxes, but we had nothing in place to filter email on the server.
After SoBig hit, each mem... | https://www.itprotoday.com/management-mobility/email-filtering-script | CC-MAIN-2018-34 | refinedweb | 3,209 | 62.88 |
Windows Sever 2008 is out the door, Hyper-V has shipped and SQL 2008 is not far behind. Customers are still upgrading to Vista and Office 2008 so all is good. While not if you are the folks in charge of deploying all of this. If so you may be working your tail off to understand what boxes you currently have that will s... | http://blogs.msdn.com/briancombs/ | crawl-002 | refinedweb | 3,523 | 62.38 |
(Guido van Rossum, 14-17 November 1994)
(Revised: 1 December 1994)
Because I want to leave the original 'marshal' module alone, and Jim complained that 'serialization' also means something totally different that's actually relevant in the context of concurrent access to persistent objects, I'll use the term 'flattening... | https://legacy.python.org/workshops/1994-11/FlattenPython.html | CC-MAIN-2019-18 | refinedweb | 843 | 63.09 |
BizTalk Orchestrations are visual descriptions of processes, models of behaviour and interactions. These models are the basis for a code generation step, during which BizTalk converts the orchestrations into C#. The resulting C# files are then compiled, and afterwards deleted. The models/orchestrations themselves are t... | http://blog.joaopedromartins.net/2006/08/biztalk-server-and-code-generation.html | CC-MAIN-2019-22 | refinedweb | 640 | 57.2 |
Ember Data introduced strong conventions around how to structure API responses. While these conventions allow us to move quickly, there are additional steps we can take to minimize the coupling between the front end and back end. Using concepts from HATEOAS (Hypermedia as the Engine of Application State) we can make ou... | https://robots.thoughtbot.com/hateoas-with-ember-data | CC-MAIN-2018-22 | refinedweb | 529 | 59.64 |
CMake
Why building the makefiles or workspaces needed by whatever development environment you like to work in.
- Read about CMake here:
Install CMake
- For Windows download the CMake installer from : .
- For OS X, the easiest way to install CMake is homebrew :
brew install cmake
- For Linux distributions and *BSD, use ... | http://wiki.icub.org/index.php?title=CMake&action=edit | CC-MAIN-2019-18 | refinedweb | 478 | 65.42 |
Each Answer to this Q is separated by one/two green lines.
There is a JSON like this:
{ "P1": "ss", "Id": 1234, "P2": { "P1": "cccc" }, "P3": [ { "P1": "aaa" } ] }
How can I find all
P1‘s value without it iterating all JSON?
P.S.:
P1 can be anywhere in the JSON.
If no method can do this, can you tell me how to iterate ... | https://techstalking.com/programming/python/how-to-find-a-particular-json-value-by-key/ | CC-MAIN-2022-40 | refinedweb | 1,007 | 56.05 |
Revisaid 0.10 Alpha
Sponsored Links
Revisaid 0.10 Alpha Ranking & Summary
RankingClick at the star to rank
Ranking Level
User Review: 0 (0 times)
File size: 40 KB
Platform: Windows All
License: GPL
Price: $0
Downloads: 80
Date added: 2012-01-15
Publisher: Jamie Lynch
Revisaid 0.10 Alpha description
Revisaid 0.10 Alpha ... | http://wareseeker.com/Home-Education/revisaid-0.10-alpha.zip/3a0198e92 | CC-MAIN-2014-10 | refinedweb | 503 | 55.24 |
Red Hat Bugzilla – Bug 166409
Review Request: gajim - jabber client written in PyGTK
Last modified: 2014-10-16 14:15:20 EDT
Spec Name or Url:
SRPM Name or Url:
sha1sum:
Description:
G.
/*
I have one question: is it better to use python packages (gnome-python2-gtkspell;gnome-python2-libegg) to add systray and spell chec... | https://bugzilla.redhat.com/show_bug.cgi?id=166409 | CC-MAIN-2018-05 | refinedweb | 810 | 74.59 |
import "go.chromium.org/luci/common/bq"
Package bq is a library for working with BigQuery.
Please see BigQuery docs: for the most updated limits for streaming inserts. It is expected that the client is responsible for ensuring their usage will not exceed these limits through bq usage. A note on maximum rows per request... | https://godoc.org/go.chromium.org/luci/common/bq | CC-MAIN-2019-35 | refinedweb | 604 | 50.53 |
Parsr is a simple parser combinator library in pure python.
Project description
parsr
parsr is a little library for parsing simple, mostly context free grammars that might require knowledge of indentation or matching tags.
It contains a small set of combinators that perform recursive decent with backtracking. Fancy tri... | https://pypi.org/project/parsr/0.2.6/ | CC-MAIN-2020-10 | refinedweb | 2,050 | 63.29 |
A colleague approached me today asking whether I've tried importing TIFFs into Python for image processing with SciPy. My image processing experience has been mainly focussed within a MATLAB environment, so we set about going through this together. Unfortunately, none of the images we tried to process with
imread and
i... | http://andrew-hills.blogspot.com/2013/03/importing-16-bit-tiffs-into-numpy.html | CC-MAIN-2018-47 | refinedweb | 748 | 65.12 |
This programming task includes the steps for creating a basic custom Windows SharePoint Services Web Part. It is a simple Web Part that allows you to change the Web Part’s Title property, which is a Windows SharePoint Services WebPart base class property that sets the text in the title bar of the Web Part.
Beginning wi... | http://msdn.microsoft.com/en-us/library/ms452873.aspx | crawl-002 | refinedweb | 2,858 | 65.42 |
Table of contents
Created
11 February 2014
Requirements
Prerequisite knowledge
Experience with ActionScript, Flash Builder, Java, Eclipse, Android and using native extensions will help you make the most of this article.
Additional required other products
User level.
- Download the AIR SDK 3.6 with ASC 2.0 from Adobe La... | https://www.adobe.com/devnet/air/articles/ane-android-devices.edu.html | CC-MAIN-2018-30 | refinedweb | 2,761 | 58.99 |
Given the following data set, what’s the best and fastest way to flatten them? This can be achieved with LINQ, SQL, C#, or whatever else you prefer.
Desired result:
Given the following data set, what’s the best and fastest way to flatten them? This can be achieved with LINQ, SQL, C#, or whatever else you prefer.
Desire... | https://stack247.wordpress.com/tag/linq/ | CC-MAIN-2017-34 | refinedweb | 435 | 57.77 |
:
>
A quick rundown:
- The above template displays a radio button for each poll choice. The value of each radio button is the associated poll' poll just good Web development practice.
- very easy-to-use:
url(r'^(?P<poll poll just good Web development practice. p.id. This redirected URL will then call the 'results' view... | https://docs.djangoproject.com/en/1.6/intro/tutorial04/ | CC-MAIN-2015-22 | refinedweb | 438 | 53.37 |
Ian Lynagh <igloo <at> earth.li> writes: > > On Thu, Mar 01, 2012 at 08:52:29PM +0000, AntC wrote: > > > > And you get "In my opinion, this is ugly, ... > > That comment was from strake888, not SPJ? > Thanks Ian, you're right. Specifically, it's 'igloo's tweak to the proposal and 'strake888's comment. (I had erroneousl... | http://www.haskell.org/pipermail/glasgow-haskell-users/2012-March/022056.html | CC-MAIN-2014-23 | refinedweb | 339 | 76.42 |
BEAST The
February 2018
TRENT MAXWELL Life's a Beach
5 YEARS FREE SERVICING! WITH ALL NEW GARAGE DOORS *Offer only applies to new garage doors with motor sets until 28th February, 2018. Does
TAKE AWAY MENU NOW AVAILABLE FOR LUNCH & DINNER
FOR MORE INFORMATION & MENU ITEMS VISIT CLOVELLYHOTEL.COM.AU PH: 9665 1214 I @THE... | https://issuu.com/jameshutton/docs/the_beast_february_2018_digital | CC-MAIN-2018-26 | refinedweb | 27,059 | 69.01 |
Opened 3 years ago
Closed 17 months ago
#22111 closed Bug (fixed)
Signal can throw ValueError in debug mode
Description
Examples:
// accepts keyword-only arguments @receiver(signals.post_save, sender=MyModel) def my_handler(*, sender, instance, **kwargs): pass // contains annotations @receiver(signals.post_save, sender... | https://code.djangoproject.com/ticket/22111 | CC-MAIN-2017-09 | refinedweb | 289 | 58.08 |
Guide to JNI (Java Native Interface)
Last modified: August 3, 2021
1. Introduction
As we know, one of the main strengths of Java is its portability – meaning that once we write and compile code, the result of this process is platform-independent bytecode.
Simply put, this can run on any machine or device capable of run... | https://www.baeldung.com/jni | CC-MAIN-2021-49 | refinedweb | 2,223 | 52.8 |
: redirect your RSS readers to and enjoy! J
As part of a SharePoint farm configuration, you will need to setup a share on your Query servers in order for the Index Server to propagate (i.e. copy) the search indexes to the Query Servers. In Central Administration (Services on Server > Office SharePoint Server Search Ser... | http://blogs.msdn.com/martinkearn/ | crawl-002 | refinedweb | 2,542 | 59.94 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.