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 |
|---|---|---|---|---|---|
Tooling Tuesday is a new series of short, to the point blog posts that highlight a fun and useful tool for developers, coders, makers, hackers and of course system administrators.
For the first in the series of Tueday Tooling blog posts, I have chosen to highlight a rather fun and useful Python library that can provide... | http://bigl.es/tuesday-tooling-custom-python-spinners/ | CC-MAIN-2018-09 | refinedweb | 587 | 71.85 |
Chatlog 2010-04-29 Data Catalog Vocabulary
From W3C eGovernment Wiki
See CommonScribe Control Panel, original RRSAgent log and preview nicely formatted version.
Please justify/explain all edits to this page, in your "edit summary" text.
<sandro> Guest: Bobbin Teegarden, <sandro> Guest: William (ww) Waites <sandro> Gues... | http://www.w3.org/egov/wiki/Chatlog_2010-04-29_Data_Catalog_Vocabulary | CC-MAIN-2014-15 | refinedweb | 3,213 | 64.24 |
In this tutorial, we’ll learn about Mock Service Worker and how we can use it to mock network requests. We’ll build a chat application that will use the mock data provided by the Mock Service Worker API.
What is Mock Service Worker, and what problem does it solve?
According to its official website, Mock Service Worker ... | http://blog.logrocket.com/getting-started-with-mock-service-worker/ | CC-MAIN-2020-40 | refinedweb | 1,880 | 58.38 |
Python package to make it easy to use Isogeo REST API
Project description
Isogeo API Python SDK
A Python package to use Isogeo REST API.
Getting API keys
API keys are required to use it. Send us your request by email.
Getting Help
There is a basic documentation about the Isogeo API.
Installing
To use:
pip install --use... | https://pypi.org/project/isogeo-pysdk/ | CC-MAIN-2018-26 | refinedweb | 267 | 52.05 |
Java Application Development on Linux 428
The authors, Carl Albing and Michael Schwarz, chose to create a book that is a complete guide to writing commercial-quality Java programs. With the burgeoning presence of Linux, they focused on how to use the tools of the Linux platform to assist in the creation and maintenance... | https://news.slashdot.org/story/05/01/25/1840259/java-application-development-on-linux | CC-MAIN-2016-44 | refinedweb | 6,654 | 73.27 |
Find all triplets with zero-sum in C++ (Hash Tables)
In this C++ tutorial, we will learn to Find all triplets with zero-sum in C++. To solve this problem in this tutorial we are going to use hash tables.
Introduction
In this problem, we have to find triplets with sum equals to zero. This means if we have three elements... | https://www.codespeedy.com/find-all-triplets-with-zero-sum-in-cpp-hash-tables/ | CC-MAIN-2020-40 | refinedweb | 454 | 80.92 |
With the new use of C++ namespaces in the 3.7 API, is it possible for an Out-of-tree (OOT) module to create blocks that are part of an existing GR namespace? For instance, if I have a new block that processes digital data streams, can I create an OOT module called "digital" and add my block to it? Or will this cause a ... | https://www.ruby-forum.com/topic/4567043 | CC-MAIN-2017-13 | refinedweb | 224 | 73.41 |
Most of you likely already know this, but I've seen 2 customers that were confused by this but I forgot to post this back then. The idea is that they were avoiding the use of static fields because they had the belief that the static fields in all the types in an assembly were initialized (if they had initializers) when... | http://blogs.msdn.com/b/jmanning/archive/2008/02/06/a-type-s-static-fields-don-t-get-initialized-until-the-type-is-referenced.aspx | CC-MAIN-2015-27 | refinedweb | 239 | 56.66 |
23 April 2010 12:27 [Source: ICIS news]
(Recasts, clarifying headline)
LONDON (ICIS news)--Polypropylene (PP) buyers in Europe will face more price increases in May as producers formulate plans after the May propylene contract was settled up by €20/tonne on Thursday, sources said on Friday.
The new monthly monomer cont... | http://www.icis.com/Articles/2010/04/23/9353516/europe-pp-producers-seek-more-hikes-in-may-on-tight-supply.html | CC-MAIN-2014-35 | refinedweb | 553 | 59.33 |
t = null is only valid if T is a reference type and t = 0 will only work for numeric value types but not for structs. The solution is to use the default keyword, which will return null for reference types and zero for numeric value types. For structs, it will return each member of the struct initialized to zero or nul... | http://msdn.microsoft.com/en-us/library/xwth0h0d(VS.80).aspx | crawl-002 | refinedweb | 128 | 68.57 |
The new release features support of VC++ 6.0/7.0/7.1/8 (tested on VC++ 6.0 SP 6 and VC++ .NET 2005 beta) and Linux support
(tested in Feudora Core 2 distribution). Unfortunately, I was not able to test it under VC++ .NET 2003 and Embedded VC++,
but it should remain compatible. Anyway, I keep the previous version source... | http://www.codeproject.com/Articles/3641/Code-that-debugs-itself?msg=1231124 | CC-MAIN-2015-32 | refinedweb | 5,702 | 63.39 |
LWP_YIELD(3L) LWP_YIELD(3L)
NAME
lwp_yield, lwp_suspend, lwp_resume, lwp_join, lwp_setpri, lwp_resched,
lwp_sleep - control LWP scheduling
SYNOPSIS
#include <<lwp/lwp.h>>
int lwp_yield(tid)
thread_t tid;
int lwp_sleep(timeout)
struct timeval *timeout;
int lwp_resched(prio)
int prio;
int lwp_setpri(tid, prio)
thread_t t... | http://modman.unixdev.net/?sektion=3&page=lwp_setpri&manpath=SunOS-4.1.3 | CC-MAIN-2017-30 | refinedweb | 639 | 54.93 |
Automate/Schedule a Macro
Hi,
I’ve created a macro that I would like to run at a scheduled interval, e.g. every 15 min.
Is there a way to schedule a macro to run?
Thanks,
Pat
- PeterJones last edited by
There isn’t a way to do that natively.
However, there may be a way using one of the scripting plugins, like PythonScr... | https://community.notepad-plus-plus.org/topic/16746/automate-schedule-a-macro | CC-MAIN-2019-51 | refinedweb | 1,339 | 72.46 |
Here's how to handle signals from a Button and a CheckBox by using signal handlers in QML. Cascades provides these signal handlers for you to use, and you can access them by using the prefix "on," followed by the signal name that you want to handle. In this code sample, the checked status of the check box is displayed ... | https://developer.blackberry.com/native/documentation/device_comm/input/touch_input.html | CC-MAIN-2019-30 | refinedweb | 156 | 71.75 |
unittest exits
Discussion in 'Python' started by Alan Baljeu,56
- Bob Helber
- Jan 13, 2004
How many namespace exits?Franco Figún, Apr 26, 2004, in forum: ASP .Net
- Replies:
- 6
- Views:
- 2,132
- Cowboy \(Gregory A. Beamer\)
- Apr 26, 2004
Tomcat 5.0 dies/exits with no info in log filesAnders, Jul 26, 2005, in forum:... | http://www.thecodingforums.com/threads/unittest-exits.644355/ | CC-MAIN-2014-52 | refinedweb | 109 | 79.6 |
Mono 0.29
Hello everyone,
A new release of Mono has been released. Mono is an open source implementation of the .NET Framework for Unix, Linux and Windows systems.
There are big breaking news: Mono JIT on PowerPC runs Hello World, ASP.NET is feature complete, AppDomain unloading is supported and 64-bit ports of HPPA an... | http://www.mono-project.com/docs/about-mono/releases/0.29.0/ | CC-MAIN-2018-26 | refinedweb | 2,803 | 56.15 |
Pause the processing of a message
#include <sys/neutrino.h> int MsgPause( int rcvid, unsigned cookie ); int MsgPause_r( int rcvid, unsigned cookie );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The MsgPause() and MsgPause_r() kernel calls pause a message... | http://www.qnx.com/developers/docs/7.0.0/com.qnx.doc.neutrino.lib_ref/topic/m/msgpause.html | CC-MAIN-2018-43 | refinedweb | 142 | 57.67 |
I'm making a cross platform application which does it's storage in SQLite files. These files are quite big, 10,000,000 in a table.
When I open the file I run a query to count the amount of rows in the table.
My code, using the sqlite3 module:
- Code: Select all
def runquery(con):
# con is a sqlite3 connection object
wi... | http://www.python-forum.org/viewtopic.php?p=7260 | CC-MAIN-2016-50 | refinedweb | 216 | 76.11 |
wrapperTutorial Overview
Objective: Learn the architecture of wrapper S-functions and how to create an inlined wrapper S-function using TLC.
Folder:
(open)
matlabroot/toolbox/rtw/rtwdemos/tlctutorial/wrapper
Wrapper S-functions enable you to use existing C functions without fully rewriting them in the context of Simuli... | https://fr.mathworks.com/help/ecoder/ug/wrapping-user-code-with-tlc.html | CC-MAIN-2021-49 | refinedweb | 1,492 | 56.25 |
Agenda
See also: IRC log
<mhausenblas> ok, I guess we're set and ready!
<cygri> member:zakim, who is on the phone?
<cygri> member:zakim who is on the phone?
<cygri> zakim BartvanLeeuwen is with Galway
<sandro> I'm thinking skype is the best bet.
<sandro> (with sound turned off)
<mhausenblas> the only thing we now need ... | http://www.w3.org/2012/01/25-gld-minutes.html | CC-MAIN-2015-18 | refinedweb | 10,932 | 61.36 |
Monetary Policy and Asset Prices)
- Citations (0)
- Cited In (0)
-
Page 1
Review of Economic Dynamics 10 (2007) 761–779
Monetary policy and asset prices
Athanasios Geromichalos, Juan Manuel Licari, José Suárez-Lledó∗
Department of Economics, University of Pennsylvania, Philadelphia, USA
Received 1 December 2006; revise... | http://www.researchgate.net/publication/24046872_Monetary_Policy_and_Asset_Prices | CC-MAIN-2013-20 | refinedweb | 1,887 | 57.37 |
Break and Continue
#include <iostream.h> void main(){ int i; for(i=1; i<= 10; i++){ if(i%2==0){ continue; } cout<<i<<" "; } }
The output of the program is 1, 3, 5, 7, 9. Because when i=2, 4, 6, 8, 10 then the continue statement get exexuted and forced the loop to go to next iteration i.e i=3, 5, 7, 9; also it does not ... | https://www.mcqtoday.com/CPP/flowloop/break-and-continue.html | CC-MAIN-2022-27 | refinedweb | 191 | 79.19 |
unable to read memory
I use opencv 3.1.0 and have a function at myClass.cpp below;
void initialize(Mat frame);
and i call the function from main like;
myClass temp = myClass::myClass(); temp.initialize(current_frame);
constructer works and assigns correct values to temp also current_frame is initialized and its values ... | https://answers.opencv.org/question/87205/unable-to-read-memory/ | CC-MAIN-2019-43 | refinedweb | 521 | 59.5 |
flea 8.0.3
Functional testing for WSGI applications: a library to drive WSGI apps from your test suite
Flea is a library that helps you write functional tests for WSGI applications.
Flea uses CSS selectors and XPath to give you a simple but powerful tool to navigate and test the HTML responses generated
Changes
Version... | https://pypi.python.org/pypi/flea | CC-MAIN-2017-13 | refinedweb | 1,096 | 50.23 |
When addressing the question of what it means for an algorithm to learn, one can imagine many different models, and there are quite a few. This invariably raises the question of which models are “the same” and which are “different,” along with a precise description of how we’re comparing models. We’ve seen one learning... | https://jeremykun.com/2015/05/18/boosting-census/?like_comment=54945&_wpnonce=a8be5d15ec | CC-MAIN-2019-51 | refinedweb | 6,414 | 60.75 |
Connect to Java
You can connect both components and data between Java and the UI made with Designer. In practice, this is accomplished with a Java class that enables Vaadin Flow to connect your Java code to the UI. In other words, you access the UI defined in a design programmatically through the companion class for th... | https://vaadin.com/docs/latest/tools/designer/using-designer/java | CC-MAIN-2021-49 | refinedweb | 920 | 56.35 |
Colin Maunder CMaunder Subtext 2009-01-12T12:14:57Z Controlling the WSDL created from a .Net Web Service 2009-01-12T12:03:33-06:00:00 2009-01-12T12:14:57Z <ul class="Download"><li><a href="">Download DataBindingAndWebService - 26.41 KB</a> </li></ul> <h2>Introduction</h2> <p>Its good practice to design the interface to... | http://geekswithblogs.net/CMaunder/Atom.aspx | crawl-003 | refinedweb | 1,978 | 56.76 |
Introduction
MySQL is a free database included with many web hosting services on linux and Windows platforms. C# ASP .NET developers, using a MySQL database back-end, may notice an unnecessarily large list of sleeping connections that remain online in MySqlAdministrator. This can cause wasteful use of memory on the ser... | http://www.primaryobjects.com/CMS/Article69.aspx | crawl-002 | refinedweb | 1,177 | 57.37 |
Google Cloud Platform
Kubernetes best practices: Organizing with Namespaces
Editor’s note: Today is the second installment in a seven-part video and blog series from Google Developer Advocate Sandeep Dinesh on how to get the most out of your Kubernetes environment.
As you start to build more and more services on top of... | https://cloud.google.com/blog/products/gcp/kubernetes-best-practices-organizing-with-namespaces | CC-MAIN-2019-18 | refinedweb | 1,695 | 62.07 |
Created on 2008-12-29 17:21 by beazley, last changed 2011-07-06 04:59 by anacrolix. This issue is now closed.
The email.generator.Generator class does not work correctly message
objects created with binary data (MIMEImage, MIMEAudio, MIMEApplication,
etc.). For example:
>>> from email.mime.image import MIMEImage
>>> da... | http://bugs.python.org/issue4768 | crawl-003 | refinedweb | 668 | 61.43 |
Hello, <address@hidden> writes: > On Fri, Apr 10, 2009 at 08:51:03PM +0300, Sergiu Ivanov wrote: >> <address. > > Not at all -- the idea is to use something completely different instead > of unionfs, if we require different functionality... > > Having the merging code in a separate component (be it unionfs or > somethi... | http://lists.gnu.org/archive/html/bug-hurd/2009-04/msg00074.html | CC-MAIN-2013-20 | refinedweb | 301 | 64.3 |
Text Editor Application Using Tkinter
In this tutorial, we will help you to build a simple Text Editor Application using Tkinter which is a very good beginner project for Tkinter.
Text Editor Application is an application where you can write your text, open any text file, you can edit any text file and you can also sav... | https://www.studytonight.com/tkinter/text-editor-application-using-tkinter | CC-MAIN-2021-04 | refinedweb | 1,494 | 64.3 |
It’s interesting to see the varying emotions people have had in reaction to the standardization of the Office Open XML formats. It was obviously an immense amount of work, and it resulted in a 6,000 page standard. As you all know by now, the reason there was so much information in the specification was that we absolute... | https://blogs.msdn.microsoft.com/brian_jones/2007/02/20/beyond-the-basics/ | CC-MAIN-2016-44 | refinedweb | 1,880 | 57.1 |
This is one of the 100 recipes of the IPython Cookbook, the definitive guide to high-performance scientific computing and data science in Python.
import numpy as np import pandas as pd import matplotlib.pyplot as plt import seaborn as sns %matplotlib inline
x1 = np.random.randn(80) x2 = np.random.randn(80) x3 = x1 * x2... | http://nbviewer.jupyter.org/github/ipython-books/cookbook-code/blob/master/notebooks/chapter06_viz/02_seaborn.ipynb | CC-MAIN-2017-47 | refinedweb | 166 | 62.64 |
Originally posted by Shivaji Marathe: Sonir : public class TestClass implements Runnable{
int x = 5;
public void run() {
this.x = 10;
}
public static void main(String[] args) {
TestClass tc = new TestClass();
new Thread(tc).start(); // 1
System.out.println(tc.x);
}
}
When you call the start method a new thread object i... | http://www.coderanch.com/t/236167/java-programmer-SCJP/certification/method | CC-MAIN-2015-35 | refinedweb | 141 | 65.42 |
I copied this code from this article and I don't get any idea why define class inside classes as properties. Also, what happens when the class
PersonalLoan string AccountNumber { get; set; }
public float LoanAmount { get; set; }
public bool IsLoanApproved { get; set; }
public Loan(string accountNumber)
{
Console.WriteL... | https://codedump.io/share/p4qdeeFFvFgO/1/declaring-class-as-properties-inside-another-class | CC-MAIN-2018-26 | refinedweb | 293 | 53.92 |
In IR and many other research domains, we always have to use statistical Test to evaluate whether a newly proposed model can bring significant improvement over baselines. I do not want to judge it is a good means. Here I just introduce how to conduct statistical Test using R, python, etc.
————————————————–
————————————... | http://blog.so8848.com/2012/09/wilcoxon-signed-rank-test-for-r-and.html | CC-MAIN-2017-39 | refinedweb | 242 | 59.7 |
Adding a optional parameter is a breaking change. This topic came up more frequently around the time the feature was introduced but, I haven’t seen it brought up in a while. I mentioned it on a code review recently so, now it’s fresh on my mind. The “breaking” nature of optional parameters is a fun one because it is no... | https://espressocoder.com/2018/09/10/dont-break-consumers-with-optional-parameters/ | CC-MAIN-2020-40 | refinedweb | 596 | 50.84 |
trywith Resource Statement
JDK 7 introduces a new version of try statement known as try-with-resources statement. This feature add another way to exception handling with resources management. It is also referred to as automatic resource management.
Syntax:
try(resource-specification(there can be more than one resource)... | https://www.studytonight.com/java/try-with-resource-statement.php | CC-MAIN-2020-05 | refinedweb | 251 | 52.05 |
In this step, you will create a new custom control. You will also insert a method into the control that calls a method on one of the controls you imported earlier.
Through the preceding steps, you should have created the following two Java files in the controls folder:
These files contain only a default framework at th... | http://docs.oracle.com/cd/E13224_01/wlw/docs100/guide/webservices/WSTutorial/tutWebSvcStep6.html | CC-MAIN-2016-18 | refinedweb | 183 | 56.55 |
Download on your machine from here. You can check whether Node.js is installed by running the command,
- node –version
To start with creating a folder and change directory to that folder. In the directory create package.json file using the command:
- npm init
Just keep pressing the return key (Enter) for all the questi... | https://debugmode.net/2019/12/31/step-by-step-using-typescript-in-node-js-application/ | CC-MAIN-2022-05 | refinedweb | 752 | 61.22 |
Issues
returning the sorted set of sources in _Automoc::__call__ actually returns a list sorted on object pointers
Originally reported by Danny Valente:
in the method _Automoc::call, a sorted set of sources are returned from the emitter. The call to "sorted" is done on a set of Entry objects however.
A cmp argument is ... | https://bitbucket.org/dirkbaechle/scons_qt4/issues/7/returning-the-sorted-set-of-sources-in | CC-MAIN-2017-39 | refinedweb | 158 | 63.39 |
.
Initially, all the three values will be as zero, but as you move your breadboard you can observe these values getting changed. If they change it means your connection is correct, else check your connections. Take some time here notice how the three values Pitch Roll and Yaw vary according to the way you tilt your sen... | https://circuitdigest.com/microcontroller-projects/arduino-inclinometer-using-mpu6050 | CC-MAIN-2020-34 | refinedweb | 1,915 | 62.58 |
Drag a Node from a BeanTreeView onto a Node
By Geertjan-Oracle on Mar 16, 2009
When you hold down the Ctrl key and drag a Node from the list of boy names, you can drop it onto a name in the list of girl names, which will cause the boy name to be added to the list of girl names:
Do the following:
- Take the steps outlin... | https://blogs.oracle.com/geertjan/entry/drag_a_node_from_a1 | CC-MAIN-2016-07 | refinedweb | 1,085 | 62.58 |
Announcing Minderbinder v0.2.0> <groupId>fogus</groupId> <artifactId>minderbinder</artifactId> <version>0.2.0</version> </dependency>
Examples
Minderbinder includes unit conversions for the following units of measure:
- Time: via
#unit/time, base is
:milliseconds, ns is
minderbinder.time
- Length: via
#unit/length, bas... | http://blog.fogus.me/2012/10/16/announcing-minderbinder-v0-2-0/ | CC-MAIN-2019-35 | refinedweb | 508 | 51.18 |
candlestick plot from pandas dataframe, replace index by dates
python interactive candlestick chart
candlestick chart python plotly
dash candlestick chart python
python candlestick patterns
how to make a stock chart in python
candlestick chart creator
mpl_finance
This code gives plot of candlesticks with moving average... | http://thetopsites.net/article/50559200.shtml | CC-MAIN-2020-45 | refinedweb | 1,172 | 51.14 |
Although powerful, these resource definitions can become unwieldy. Puppet has ways around this too. Create a directory under manifests called services, and create a file in this directory called ntpclient.pp with the following contents:
class ntpclient { package { ntp: ensure => installed } file { "ntp.conf": mode => 6... | http://www.linuxjournal.com/magazine/automate-system-administration-tasks-puppet?page=0,2&quicktabs_1=1 | CC-MAIN-2013-48 | refinedweb | 953 | 58.38 |
cin >> iwhere i is of type int and cin encounters non-numbers in the input stream it does not extract that input from the stream. After all, you're asking for an int, not anything else. What it does do is go into an error state.
using namespace std;you are adding in a whole bunch of things you mainly never will use in ... | http://www.cplusplus.com/forum/beginner/93769/ | CC-MAIN-2014-42 | refinedweb | 102 | 77.37 |
On 23/09/2009, at 7:57 PM, Martin Sudmann wrote:
>
> 2009-09-23 11:49:11,014 [http-9090-2] WARN
> org.apache.struts2.components.Form - No configuration found for the
> specified action: 'none' in namespace: ''. Form action defaulting to
> 'action' attribute's literal value.
This could be a bug in the page that you shou... | http://mail-archives.apache.org/mod_mbox/continuum-users/200909.mbox/%3CB4854497-1880-4172-97A6-D23D4C577091@apache.org%3E | CC-MAIN-2015-22 | refinedweb | 161 | 72.05 |
Sudoku quietly appeared on the scene in the United States in the last couple of years, and then became a phenomenon, just as it had in Japan, where it originated. It's a simple game, similar to crossword puzzles in that it uses a grid, but different because it uses numbers, and requires no external clues. The idea is t... | http://www.ibm.com/developerworks/xml/library/x-xformssudoku1/ | crawl-002 | refinedweb | 2,490 | 67.89 |
Key Takeaways
- Java 10 introduces a shiny new feature: type inference for local variables. For local variables, you can now use a special reserved type name “var” instead of actual type.
-, such as when initialising Arrays and Streams.
- Experiment with this hands-on tutorial on how to reduce the boilerplate code usin... | https://www.infoq.com/articles/java-10-var-type/ | CC-MAIN-2021-49 | refinedweb | 2,468 | 61.97 |
Why use Lua?!
Minimal project setup
Download LuaBridge from the repository
You also need to download Lua.
Add Lua include/ directory and LuaBridge to include directories and link lua52.lib to your project.
Create script.lua with this code in it:
testString = "LuaBridge works!" number = 42
Add main.cpp to your project:
... | https://eliasdaler.wordpress.com/2014/07/18/using-lua-with-cpp-luabridge/ | CC-MAIN-2019-26 | refinedweb | 2,919 | 67.96 |
In EPiServer 7.5 we have done some additions that makes it possible to alter quite a few things regarding how your content types should look and behave in the EPiServer UI. This is done by adding something called a UI Descriptor which is responsible for instructing the EPiServer UI how you want instances of the given c... | https://world.episerver.com/blogs/Linus-Ekstrom/Dates/2013/12/Customizing-the-look-and-behavior-in-the-UI-for-your-content-types/ | CC-MAIN-2020-05 | refinedweb | 1,635 | 60.75 |
- Ember Components: A Deep Dive
Tuesday, January 07, 2014 by martijn broeders
Ember.js is a JavaScript MVC framework that allows developers to create ambitious web applications. Although pure MVC allows a developer to separate concerns, it does not provide you with all the tools and your application will need other con... | http://www.4elements.com/blog/comments/ember_components_a_deep_dive | CC-MAIN-2017-47 | refinedweb | 3,241 | 56.55 |
In Part 1 of this series, I briefly outlined the goals for this project, which at a high level is to use Windows Azure table storage as a data store for a SharePoint custom claims provider. The claims provider is going to use the CASI Kit to retrieve the data it needs from Windows Azure in order to provide people picke... | http://blogs.technet.com/b/speschka/archive/2012/02/20/the-azure-custom-claim-provider-for-sharepoint-project-part-3.aspx | CC-MAIN-2014-42 | refinedweb | 4,571 | 60.65 |
File and Type Layout
ReSharper can reorder types and type members in C# files according to the configured patterns. Patterns can describe a lot of conditions and constraints that are evaluated when reordering items in a file and/or wrapping them with specified regions.
In this topic:
- Introduction to layout patterns
-... | https://www.jetbrains.com/help/resharper/10.0/File_and_Type_Layout.html | CC-MAIN-2018-05 | refinedweb | 1,958 | 59.94 |
When we graduated Loki into a GA release last year, there were more than 137 contributors who already made more than 1,000 contributions to the project. We also added hosted Loki to the lineup of Grafana Cloud offerings after it proved to be stable internally for our ops cluster, storing 40TB and half a trillion log li... | https://grafana.com/blog/2020/06/08/how-a-regex-simplification-in-loki-increased-performance-by-up-to-300x/ | CC-MAIN-2021-31 | refinedweb | 960 | 61.97 |
Have you ever wondered how a computer manages the most complex tasks with such efficiency and accuracy? The answer is, with the help of the operating system. It is the operating system that uses hardware resources efficiently to perform various tasks and ultimately makes life easier. At a high level, the OS can be divi... | http://opensourceforu.com/2015/06/an-introduction-to-the-linux-kernel/ | CC-MAIN-2017-13 | refinedweb | 2,726 | 50.33 |
CTags for PHP
A Sublime Text 2 plugin that use CTag for cool PHP programming
Details
Installs
- Total 19K
- Win 11K
- OS X 4K
- Linux 4K
Readme
- Source
- raw.githubusercontent.com
Sublime CTags PHP
This Sublime Text 2 Package provides cool stuff for PHP 5.3+ coding session.
Sublime Text 3 support
This plugin will NOT ... | https://packagecontrol.io/packages/CTags%20for%20PHP | CC-MAIN-2019-51 | refinedweb | 284 | 71.85 |
Ramblings from the Creator of WilsonDotNet.com
Thanks Paul. Your presenation was great and helped me clear up a few issues I was having. Thanks for letting us know baout the source code being released too!
Hi,
This is my first foray into ASP 2.0 and after following your guide (in Readme.txt) I get the following error:
... | http://weblogs.asp.net/pwilson/archive/2006/05/14/446372.aspx | crawl-002 | refinedweb | 291 | 72.87 |
I've looked all over the www, and called a refurb sonic wall vendor, for a power supply for my SW Pro1260e. (The capacitors in my PS are swollen and leaking.) I figured that refurb vendors would surely know where to obtain one. However, the vendor I called said, "When you find out where to get one of these, let me know... | https://community.spiceworks.com/topic/198405-need-power-supply-for-sonic-wall-pro-1260e | CC-MAIN-2017-26 | refinedweb | 1,689 | 80.41 |
You will make a menu-driven program in this tutorial. Using a
while loop, you will learn how to add a menu to a C# console application. This technique helps your users navigate your app, and it enables you to create more robust C# programs.
If you have been following our beginners tutorial series, you have written simp... | https://wellsb.com/csharp/beginners/create-menu-csharp-console-application/ | CC-MAIN-2022-21 | refinedweb | 798 | 55.84 |
I need to generate a string from random letters given in list take_from. The first time the function was executed it generated a phrase but all my following tries prompted an error "list index out of range". I can`t understand this error in my case and I tried while loop instead of for loop but it did not work either.
... | https://codedump.io/share/zFI0OAEDoF61/1/lndexerror-list-index-out-of-range | CC-MAIN-2017-17 | refinedweb | 182 | 75.44 |
This page is likely outdated (last edited on 16 Apr 2009). Visit the new documentation for updated content.
Continuations
Starting with Mono 2.6 the Mono runtime supports a continuation framework that allows for a number of high-level abstractions like co-routines and cooperative multi-threading to be implemented on to... | http://www.mono-project.com/archived/continuations/ | CC-MAIN-2014-41 | refinedweb | 335 | 57.67 |
Name:
[002] Ian Ozsvald
Member: 127 months
Authored: 181 videos
Description: I am the co-founder of ShowMeDo (see), author of `The Screencasting Handbook <>`_ and the founder of the professional screencast production company `ProCasts <>`_: .. image:: ...
Refactoring with functions and doc strings [ID:249] (8/17)
in se... | http://showmedo.com/videotutorials/video?name=910070 | CC-MAIN-2016-26 | refinedweb | 903 | 71.85 |
Up to [cvs.NetBSD.org] / src / lib / libc / gen
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.15.8.1 / (download) - annotate - [select for diffs], Wed Aug 20 00:02:14 2014 UTC (15 months ago) by tls
Branch: tls-maxphys
Changes since 1.15: +19 -36 lines
Diff to previous 1.15 (colored) next mai... | http://cvsweb.netbsd.org/bsdweb.cgi/src/lib/libc/gen/verr.c | CC-MAIN-2015-48 | refinedweb | 928 | 76.42 |
>> largest good number in the divisors of given number N in C++
In this problem, we are given a number N. Our task is to find the largest good number in the divisors of given number N.
A good number is a number in which every digit is larger than the sum of digits of its right (all less significant bits than it). For e... | https://www.tutorialspoint.com/find-the-largest-good-number-in-the-divisors-of-given-number-n-in-cplusplus | CC-MAIN-2022-33 | refinedweb | 438 | 57.84 |
This is probably easy stuff for most of you guys but have tried to have this working for the past hour and it's not working.
I basicly have made my own button which is a movieclip. Inside the movieclip on the normal/roll off state i've put a dynamic textfieldwith instance name "textbtn"
my button is supposed to span 2 ... | http://forums.adobe.com/message/4338538 | CC-MAIN-2013-20 | refinedweb | 2,736 | 66.94 |
[
]
Hoss Man updated SOLR-1592:
---------------------------
Fix Version/s: 3.1
4.0
Correcting Fix Version based on CHANGES.txt, see this thread for more details...
> Refactor XMLWriter startTag to allow arbitrary attributes to be written
> -----------------------------------------------------------------------
>
> Key:... | http://mail-archives.apache.org/mod_mbox/lucene-dev/201005.mbox/%3C12534662.37741275002617557.JavaMail.jira@thor%3E | CC-MAIN-2015-14 | refinedweb | 326 | 57.98 |
Watch variables with Watch windows and QuickWatch
While you're debugging, you can use Watch windows and QuickWatch to watch variables and expressions. The windows are only available during a debugging session.
Watch windows can display several variables at a time while debugging. The QuickWatch dialog displays a single... | https://docs.microsoft.com/en-us/visualstudio/debugger/watch-and-quickwatch-windows?view=vs-2019 | CC-MAIN-2021-25 | refinedweb | 1,888 | 54.93 |
BGE: Loading values with configparser
Someone recently asked on the BA forums about loading variables from a file into the game engine. There are a number of ways to do this. The usual suggestions are Python’s built in IO – a simple, but messy solution to the problem. In this particular thread there was also the sugges... | https://whatjaysaid.wordpress.com/2012/04/04/bge-loading-values-with-configparser/ | CC-MAIN-2019-04 | refinedweb | 1,473 | 73.27 |
Other Aliasmandoc, man_deroff, man_meta, man_mparse, man_node, mdoc_deroff, mdoc_meta, mdoc_node, mparse_alloc, mparse_free, mparse_getkeep, mparse_keep, mparse_open, mparse_readfd, mparse_reset, mparse_result, mparse_strlevel, mparse_wait
SYNOPSIS#include <sys/types.h>
#include <mandoc.h>
#define ASCII_NBRSP
#define A... | http://manpages.org/mparse_strerror/3 | CC-MAIN-2021-39 | refinedweb | 1,348 | 61.02 |
Action<'T> Delegate
Encapsulates a method that has a single parameter and does not return a value.
To browse the .NET Framework source code for this type, see the Reference Source.
Assembly: mscorlib (in mscorlib.dll)
You can use the Action<'T> delegate to pass a method as a parameter without explicitly declaring a cus... | https://msdn.microsoft.com/library/018hxwa8.aspx?cs-save-lang=1&cs-lang=fsharp | CC-MAIN-2016-36 | refinedweb | 491 | 50.53 |
Move/Merge articles to external wikis
- 3.3 New dependencies for pacman
- 3.4 vmlinuz26
- 3.5 Switch initscripts to systemd on all pages
- 3.6 ConsoleKit and D-Bus
- 3.7 virtualbox-iso-additions & Co. package name changes
- 3.8 Inconsistent block size value for dd command
- 3.9 Move openjdk6 to jdk7-openjdk
- 3.10 com... | https://wiki.archlinux.org/index.php?title=ArchWiki:Requests&oldid=330061 | CC-MAIN-2017-34 | refinedweb | 633 | 55.44 |
KDEUI
KCModule Class ReferenceThe base class for configuration modules. More...
#include <kcmodule.h>
Detailed DescriptionThe base class for configuration modules.
Configuration modules are realized as plugins that are loaded only when needed. a factory function like the following:
#include <KPluginFactory> K_PLUGIN_FA... | http://api.kde.org/4.x-api/kdelibs-apidocs/kdeui/html/classKCModule.html | crawl-002 | refinedweb | 691 | 51.95 |
This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.
On Thu, May 16, 2002 at 01:30:00PM -0400, Daniel Jacobowitz wrote: > On Thu, May 16, 2002 at 11:04:20AM -0400, Nathanael Nerode wrote: > > I was looking for things to clean up, and I found that > > _ALL_SOURCE is defined in several places... | http://gcc.gnu.org/ml/gcc/2002-05/msg01541.html | CC-MAIN-2018-13 | refinedweb | 179 | 63.09 |
Many of you SQL folks out there have extended stored procedures installed and being used in your SQL Server. Most often this is installed by some 3rd party applications like backup applications or linked server providers. There are times when some custom business logic is implemented in XPROC’s and hence these are load... | http://blogs.msdn.com/b/sqlserverfaq/archive/2011/05/24/inf-sql-server-extended-stored-procedures-amp-behaviour-change-starting-with-windows-2008.aspx | CC-MAIN-2014-41 | refinedweb | 1,232 | 66.33 |
Automating .NET Core Services with PostSharp and Aspect-Oriented Code
Alexander Johnston
Originally published at
Medium
on
・15 min read
If you’re writing software targeting .NET then there’s a good chance you’re using Object-Oriented principles to do your work. In the process you may run into design patterns which you ... | https://dev.to/dealeron/automating-net-core-services-with-postsharp-and-aspect-oriented-code-2j8i | CC-MAIN-2019-43 | refinedweb | 3,094 | 56.05 |
Technical Support
On-Line Manuals
RL-ARM User's Guide (MDK v4)
#include <rtl.h>
int os_tick_init (void);
The os_tick_init function initializes the hardware timer as
a system tick timer and starts it. It is used in Cortex™-M
library, if you want to use alternate peripheral timer as RTX tick
timer. If this function does ... | http://www.keil.com/support/man/docs/rlarm/rlarm_os_tick_init.htm | CC-MAIN-2020-05 | refinedweb | 182 | 65.22 |
[Android] Building a simple menu in Android
5 August, 2008 7 Comments
25 Nov 2008, This tutorial has been superceded by Building a Menu for your Android (V1.0 R1) App.
19 Aug 2008, Note: Due to changes to the Android SDK, the code in this example does not work in 0.9 beta.
The menu builder class provides a way to build... | https://kahdev.wordpress.com/2008/08/05/building-a-simple-menu-in-android/ | CC-MAIN-2019-13 | refinedweb | 769 | 68.36 |
User account creation filtered due to spam.
Hello,
Here is a small sample to repeat the case:
------------
#include <stdio.h>
main()
{
double d1, *pd1;
char *c = (char*)&d1;
pd1 = &d1;
((int*)pd1)[0] = -1;
((int*)pd1)[1] = -1;
fprintf(stderr,">> d1 = %lf\n", d1);
fprintf(stderr,">> int: %d %d\n", ((int*)pd1)[0], ((int*... | https://gcc.gnu.org/bugzilla/show_bug.cgi?id=25692 | CC-MAIN-2017-13 | refinedweb | 408 | 65.01 |
This article explain shortly how implement NAT discovery with the ByteBlower API. We'll focus on the basic use-case and provide pointers for more in-depth info. Some experience with FrameBlasting using the ByteBlower API is assumed. Throughout the text we'll use Python but the same principles also apply to the Tcl vers... | https://support.excentis.com/index.php?/Knowledgebase/Article/View/doing-nat-discovery-with-byteblower-api | CC-MAIN-2020-40 | refinedweb | 492 | 58.18 |
Singletons. They’re your worst nightmare — or at least that’s what you’ve been led to believe.
Are they really so bad? Why are they considered evil? And were they always on the wrong side of public opinion?
Singletons have been called a design pattern. They have also been called an anti-pattern. So which is it? Surely ... | https://codecapers.com.au/singletons/ | CC-MAIN-2021-49 | refinedweb | 2,577 | 55.95 |
I'm trying to configure a bridge between two TAP interfaces each created inside their own network namespace, on Linux.
I'm using OpenVSwitch as software bridge.
These are the steps that I believe should work:
ip netns add test_ns1
ip netns exec test_ns1 ip tuntap add mode tap testif1
ip netns exec test_ns1 ip addr add ... | http://serverfault.com/questions/515500/openvswitch-between-namespaces/532044 | CC-MAIN-2015-48 | refinedweb | 380 | 69.21 |
IRC log of er on 2008-05-28
Timestamps are in UTC.
12:22:02 [RRSAgent]
RRSAgent has joined #er
12:22:02 [RRSAgent]
logging to
12:22:11 [Zakim]
Zakim has joined #er
12:22:17 [shadi]
zakim, this will be ert
12:22:17 [Zakim]
ok, shadi; I see WAI_ERTWG()8:30AM scheduled to start in 8 minutes
12:22:25 [shadi]
meeting: ERT W... | http://www.w3.org/2008/05/28-er-irc | CC-MAIN-2016-44 | refinedweb | 1,605 | 53.75 |
Android, Rx and Kotlin: a Case Study
Android, Rx and Kotlin: a Case Study
Join the DZone community and get the full member experience.Join For Free
Learn how to build stream processing applications in Java-includes reference application. Brought to you in partnership with Hazelcast.
There are countless introductions to... | https://dzone.com/articles/android-rx-and-kotlin-case | CC-MAIN-2018-30 | refinedweb | 2,496 | 61.06 |
Opened 7 months ago
Closed 7 months ago
#8371 closed bug (invalid)
ghci byte compiler + FFI crashes when used with embedded R
Description
The ghci interpreter destroys the C stack when initializing embedded R (the statistical
software system available at). There is no problem using
embedded R with ghc (compiled code). ... | https://ghc.haskell.org/trac/ghc/ticket/8371 | CC-MAIN-2014-15 | refinedweb | 852 | 72.66 |
A module is a Python file that contains Python executable statements and methods; while, a Python function is a group of related statements that are called to perform a specific task. One of the Python modules is the aifc module, which has the
getparams() function. The
getparams() function of the aifc module will form ... | https://www.educative.io/answers/what-is-aifc-getparams-function-in-python | CC-MAIN-2022-33 | refinedweb | 776 | 63.09 |
OK…here’s a list of links that grabbed my attention this week:
- The PHP on Windows Training Kit (which contains LOTS of great demos for almost anything that is PHP on Windows) has been updated so it can be installed on Windows 7:
- Are you ever been annoyed by having to restart your Web server or application pool afte... | https://blogs.msdn.microsoft.com/brian_swan/2010/04/02/this-weeks-link-list-april-2-2010/ | CC-MAIN-2017-13 | refinedweb | 192 | 65.15 |
That is because the ethernet add-on that you're using is more than likely also using the SPI bus. .......For my own project last year, I went the bit-bang route. I only had two strings of 20 LEDs each. I used the analog pins (of all things) to control the strings, A0 and A1 for one, and A2 and A3 for the other. Note: b... | http://forum.arduino.cc/index.php?topic=122793.msg937737 | CC-MAIN-2015-11 | refinedweb | 358 | 64.91 |
#include "FBX_API.h"
#include "FBX_SceneProxy.h"
#include <UT/UT_Map.h>
#include <UT/UT_String.h>
#include <UT/UT_StringHolder.h>
Go to the source code of this file.
Definition at line 24 of file FBX_AnimationUtils.h.
Add extra channels to the clip for any geometry nodes with blendshapes.
Add extra channels to the clip... | https://www.sidefx.com/docs/hdk/_f_b_x___animation_utils_8h.html | CC-MAIN-2022-05 | refinedweb | 107 | 62.54 |
On Thu, Jan 15, 2009 at 02:37:56PM +0000, M?ns Rullg?rd wrote: > Michael Niedermayer <michaelni at gmx.at> writes: > > > On Thu, Jan 15, 2009 at 12:43:27AM +0000, M?ns Rullg?rd wrote: > >> Aurelien Jacobs <aurel at gnuage.org> writes: > >> > +/** > >> > + * converts fourcc string to int > >> > + */ > >> > +static inlin... | http://ffmpeg.org/pipermail/ffmpeg-devel/2009-January/067530.html | CC-MAIN-2014-42 | refinedweb | 121 | 73.78 |
I've been developing for nearly 20 years now, and in all that time I've had the privilege to program in a multitude of different languages.
Each language has its own beauty and features that make it great, but if I had to choose one feature I would miss greatly if I could never use it again, it would be LINQ.
LINQ adds... | http://tech.pro/tutorial/1152/demystifying-linq | CC-MAIN-2014-10 | refinedweb | 3,292 | 61.26 |
Friday, July 06, 2001, 12:15:19 PM, dwall@myEastside.com wrote:
>> RL> The InetAddress...getHostName() call will use the DNS
DW> databases.
>> RL> For most computers, however, this won't return anything useful.
>>
>> That is not true. Most of US IPs have PTR records. That includes your
>> own IP, that you had when send... | http://mail-archives.apache.org/mod_mbox/tomcat-users/200107.mbox/%3C10721667520.20010706132819@mailops.com%3E | CC-MAIN-2013-48 | refinedweb | 360 | 70.39 |
I found this code here which monitors the progress of downloads. -
import urllib2
url = ""
file_name = url.split('/')[-1]
u = urllib2.urlopen(url)
f = open(file_name, 'wb')
meta = u.info()
file_size = int(meta.getheaders("Content-Length")[0])
print "Downloading: %s Bytes: %s" % (file_name, file_size)
file_size_dl = 0
b... | https://codedump.io/share/88pGPjM1hPzB/1/does-readsize-have-a-built-in-pointer | CC-MAIN-2017-09 | refinedweb | 213 | 70.09 |
MDX Custom Elements
Disclaimer: This is an advanced topic that bends the internals of MDX to our will. It is not how you should be using MDX for everyday use. If you’re interested in some internal trickery then read on, if you’re looking to use MDX in a real project maybe check out the gatsby-mdx docs instead.
The prob... | https://www.christopherbiscardi.com/post/mdx-custom-elements/ | CC-MAIN-2019-47 | refinedweb | 1,017 | 58.08 |
This.
A number of issues regarding the use of XML[XML] in HTML documents were brought to the attention of the W3C Hypertext Coordination Group. In particular, MathML[MathML] and RDF[RDF] are written in XML and intended to be used in HTML documents.
In response, the coordination group held a meeting 11-12 Feb 1998 in Sa... | http://www.w3.org/TR/NOTE-xh.html | CC-MAIN-2013-48 | refinedweb | 2,163 | 60.85 |
and the LDAP server should be encrypted using SSL/TLS. Clients and nodes that connect via SSL/TLS to the LDAP server need to have the LDAP server’s certificate or the server’s root CA certificate installed in their keystore or truststore. For more information about installing certificates, see Setting up SSL Between E... | https://www.elastic.co/guide/en/x-pack/current/ldap-realm.html | CC-MAIN-2019-22 | refinedweb | 598 | 54.42 |
I have a question about a script i'm making. It asks the user to input an integer, then finds two prime numbers that sum up to the number, and displays what those two prime numbers are ( something like "54 = 5 + 49" ). I have most of the code working, but i'm not sure how to finish it up. So far, it finds the prime num... | https://www.daniweb.com/programming/software-development/threads/113981/need-help-with-this-script-please | CC-MAIN-2016-50 | refinedweb | 244 | 82.58 |
Name | Synopsis | Description | Return Values | Errors | Files | Usage | Attributes | See Also
#include <stdlib.h> void closefrom(int lowfd);
int fdwalk(int (*func)(void *, int), void *cd);
The closefrom() function calls close(2) on all open file descriptors greater than or equal to lowfd.
The effect of closefrom(lowfd... | http://docs.oracle.com/cd/E19082-01/819-2243/closefrom-3c/index.html | CC-MAIN-2014-35 | refinedweb | 139 | 59.13 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.