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 |
|---|---|---|---|---|---|
Guideline 2 encourages you to think of objects of bundles of services, not bundles of data. This guideline irreverently suggests that sometimes its OK to design objects that are bundles of data.
On occasion, you will see objects that are nothing more than containers for data. I like to call such objects Messengers. A m... | https://www.artima.com/interfacedesign/Messenger.html | CC-MAIN-2019-13 | refinedweb | 781 | 55.64 |
Yes, btw: there will be an automatic converter from .tmLanguage to .sublime-syntax files.
Syntax Fun
Tmlanguage to sublime-syntax convertor
Textmate 2 has nice feature that I’d like to see in SublimeText and that’s being able to generate the syntax name base on what you’re matching. here is a cool example from Markdown... | https://forum.sublimetext.com/t/syntax-fun/14830/37 | CC-MAIN-2022-27 | refinedweb | 3,006 | 63.9 |
The:
public enum ClientStates{ Ordinary, HasDiscount, IsSupplier, IsBlackListed, IsOverdrawn}As you can see - these options could be combined in several ways. Rather then creating separate properties in the Client class, we could enable a bitwise combination of enumeration values by using the FlagsAttribute, when defin... | http://weblogs.asp.net/wim/archive/2004/04/07/109095.aspx | crawl-002 | refinedweb | 1,494 | 50.53 |
Daniel Caujolle-Bert wrote:
> Hi Dirk,
>
> Le dim 30/11/2003 =E0 20:19, Dirk Meyer a =E9crit :
>> Hi,
>>=20
> ...
> In CVS.
Thanks. And it may be interesting for you to know that the current
Freevo cvs fully supports xine as video player (latest release only
used xine for dvd playback). Except one thing: how can I pla... | https://sourceforge.net/p/xine/mailman/xine-devel/?viewmonth=200312&viewday=1 | CC-MAIN-2016-36 | refinedweb | 1,266 | 74.69 |
Hello all. I’m having trouble understanding how to set up multiple
relationships between two models.
I have a database for an art gallery. It will be used to track people
(artists, buyers, donors, press contacts, etc) and artworks. Thus, I
have three main tables: “contacts,” “roles,” and “items,” plus a join
table “con... | https://www.ruby-forum.com/t/multiple-relationships-between-two-models/127704 | CC-MAIN-2021-43 | refinedweb | 262 | 58.48 |
New in Symfony 3.3: Optional class for named services
Contributed by
Martin Hasoň and Nicolas Grekas
in #21133.
Services in Symfony applications are traditionally defined in YAML, XML or PHP configuration files. A typical but simple service definition looks like this in YAML:
And like this in XML:
In Symfony 3.3, we're... | http://symfony.com/blog/new-in-symfony-3-3-optional-class-for-named-services | CC-MAIN-2018-34 | refinedweb | 322 | 55.47 |
module Lava2000.Ref ( Ref , ref , deref , memoRef , TableIO , tableIO , extendIO , findIO , memoRefIO , TableST , tableST , extendST , findST , memoRefST ) where import Lava2000.MyST import System.IO import System.IO.Unsafe import Data.IORef unsafeCoerce :: a -> b unsafeCoerce a = unsafePerformIO $ do writeIORef ref a ... | http://hackage.haskell.org/package/chalmers-lava2000-1.0.2/docs/src/Lava2000-Ref.html | CC-MAIN-2018-05 | refinedweb | 615 | 63.83 |
> wordunp.zip > WU.CPP
// wu.cpp -- Unprotect Microsoft Word/Winword Document // Marc Thibault
// Word protects a document by XOR'ing a 16-byte key repetitively // through the document file, starting at byte 40. The header (0x180 bytes) // is filthy with zeros including what appears to be over 48 of them at // the end... | http://read.pudn.com/downloads2/sourcecode/hack/crack/3228/WU.CPP__.htm | crawl-002 | refinedweb | 431 | 52.36 |
Asked by:
missing namespaces in schema
Question
Hi there,
I use a schema, which creates an xml while "create an instance" which looks like that.<?xml version="1.0"?>
<ns0:employee xmlns:
<ns0:city>City</ns0:city>
....
</ns0:employee>
When running in Biztalk the genereated xml looks like that
<employee xmlns="/employee"... | https://social.technet.microsoft.com/Forums/azure/en-US/841f3802-0cc9-4b51-afc1-b28401235ca3/missing-namespaces-in-schema?forum=biztalkgeneral | CC-MAIN-2019-47 | refinedweb | 269 | 68.47 |
Graph Processing With Apache Flink
Graph Processing With Apache Flink
Gelly uses Flink API to process large scale graphs, provides simple API to create and edit graphs, and has handy algorithms for different graph processing tasks.
Join the DZone community and get the full member experience.Join For Free
Graphs are eve... | https://dzone.com/articles/graphs-processing-with-apache-flink | CC-MAIN-2019-18 | refinedweb | 1,887 | 54.93 |
Red Hat Bugzilla – Bug 891952
Review Request: perl-ExtUtils-Typemaps - Reads, modifies, creates and writes Perl XS typemap files
Last modified: 2013-02-28 02:11:08 EST
Spec URL:
SRPM URL:
Description:
ExtUtils::Typemaps can read, modify, create and write Perl XS typemap files.
The module is not entirely round-trip safe... | https://bugzilla.redhat.com/show_bug.cgi?id=891952 | CC-MAIN-2017-26 | refinedweb | 2,712 | 52.36 |
A Primer on Automating Chaos
This Gremlin Time Travel Experiment Pack shares how you can utilize the Gremlin Time Travel attack to change the clock time of cloud infrastructure instances. This attack is cloud-agnostic and will work across AWS, GCP, Azure, DigitalOcean, Linode and more. There are many reasons to regular... | https://www.gremlin.com/community/tutorials/time-travel-experiment-pack/ | CC-MAIN-2020-16 | refinedweb | 1,364 | 63.19 |
Code. Collaborate. Organize.
No Limits. Try it Today.
Users of C#, VB.NET and MC++ have a nice feature available :- delegates. The C++
language does not support this construct. But fortunately, there is a way to
implement rudimentary delegates using templates and some clever tricks borrowed
from the boost library.
I as... | http://www.codeproject.com/Articles/2922/NET-like-Delegates-in-Unmanaged-C?fid=7643&df=90&mpp=10&sort=Position&spc=None&tid=670578 | CC-MAIN-2014-23 | refinedweb | 1,105 | 52.49 |
SWAPONSection: Linux Programmer's Manual (2)
Updated: 2004-10-10
Index Return to Main Contents
NAMEswapon, swapoff - start/stop swapping to file/device
SYNOPSIS#include <unistd.h>
#include <asm/page.h> /* to find PAGE_SIZE */
#include <sys/swap.h>
int swapon(const char *path, int swapflags);
int swapoff(const char *pat... | http://www.thelinuxblog.com/linux-man-pages/2/swapon | CC-MAIN-2017-22 | refinedweb | 180 | 59.9 |
0
ok, yes this is a homework help question, and no i don't want just the answer. i actually really want to learn this.
Ok, so I have to the simple date format that displays today's date in "week day month day, year)
so here is what i got:
import java.text.*; //for SimpleDateFormat import java.util.*; // for Date public... | https://www.daniweb.com/programming/software-development/threads/147535/simple-date-format | CC-MAIN-2017-26 | refinedweb | 157 | 66.94 |
Preprocessing¶
dask_ml.preprocessing contains some scikit-learn style transformers that
can be used in
Pipelines to perform various data transformations as part
of the model fitting process. These transformers will work well on dask
collections (
dask.array,
dask.dataframe), NumPy arrays, or pandas
dataframes. They’ll ... | https://dask-ml.readthedocs.io/en/latest/preprocessing.html | CC-MAIN-2019-04 | refinedweb | 957 | 52.46 |
view raw
I'm working on a UI for an app, and I'm attempting to use grayscale icons, and allow the user to change the theme to a color of their choosing. To do this, I'm trying to just apply a ColorFilter of some sort to overlay a color on top of the drawable. I've tried using PorterDuff.Mode.MULTIPLY, and it works almo... | https://codedump.io/share/TU7pS4pM20DF/1/understanding-the-use-of-colormatrix-and-colormatrixcolorfilter-to-modify-a-drawable39s-hue | CC-MAIN-2017-22 | refinedweb | 486 | 64 |
What it is :
A package of dynamic scene instant update (so you don’t have to shutdown Panda and reload it again and again everytime you make minor/major changes) and a little attempt to minimize Panda3D - IDE windows switch, if you have 1 small monitor like mine.
It’s a 1 application, 1 window solution.
Full reason why... | https://discourse.panda3d.org/t/onscreen-ide-dynamic-instant-update-v0-5-4/3534/1 | CC-MAIN-2022-33 | refinedweb | 1,345 | 70.63 |
Opened 9 years ago
Closed 9 years ago
#3504 closed (fixed)
Missing self in authentification doc
Description
There is a typo in authentification doc, in part ow writing an authentification bakend:
class MyBackend:
def authenticate(username=None, password=None):
# Check the username/password and return a User.
class MyBa... | https://code.djangoproject.com/ticket/3504 | CC-MAIN-2015-48 | refinedweb | 184 | 50.5 |
GDB (GNU Project debugger) is a command line base debugger that is good at analyzing running and cored programs. According to the user manual GDB supports C, C++, D, Go, Objective-C, Fortran, Java, OpenCL C, Pascal, Rust, assembly, Modula-2, and Ada.
GDB has the same feature set as most debuggers but is different from ... | https://riptutorial.com/gdb | CC-MAIN-2019-30 | refinedweb | 416 | 69.72 |
Difference between revisions of "Middle School Computing with Robots: 2010"
Latest revision as of 13:05, 29 April 2010
Contents..
Section Two
Our last formal class. Next week is the field trip to the BMC labs!
Strong Areas
They liked the lesson plan (I was worried the boys might think it wasn't "cool" enough for them) ... | http://wiki.roboteducation.org/index.php?title=Middle_School_Computing_with_Robots:_2010&diff=9588&oldid=8001 | CC-MAIN-2020-05 | refinedweb | 985 | 65.52 |
C++11 Hash Containers and Debug Mode
Microsoft has never been a slacker in the C++ department — it has always worked hard to provide a top-notch, compliant product. Visual Studio 10 supports its current incarnation, and for the most part it is up to Microsoft's usual standards. It's a great development environment, and... | http://www.drdobbs.com/cpp/c11-hash-containers-and-debug-mode/232200410?pgno=1 | CC-MAIN-2015-27 | refinedweb | 558 | 54.86 |
Error building empty project
Hi,
In order to solve another isue, i had try to build an empty QT console project ( Not even a single line added, regular .pro file).
I had recived the next error:
13:25:57: Running steps for project test1Hello...
13:25:57: Configuration unchanged, skipping qmake step.
13:25:57: Starting: ... | https://forum.qt.io/topic/72932/error-building-empty-project | CC-MAIN-2018-30 | refinedweb | 337 | 51.75 |
iObjectWatcher Struct ReferenceThis is a generic object watcher.
More...
[Crystal Space 3D Engine]
#include <iengine/objwatch.h>
Inheritance diagram for iObjectWatcher:
Detailed DescriptionThis is a generic object watcher.
Currently it can watch on light and movable changes. You can query if something has changed by ex... | http://www.crystalspace3d.org/docs/online/api-1.0/structiObjectWatcher.html | CC-MAIN-2014-10 | refinedweb | 430 | 62.95 |
On Wed, May 21, 2008 at 05:18:49PM +0200, Jim Meyering wrote: > "Richard W.M. Jones" <rjones redhat com> wrote: > > On Tue, May 20, 2008 at 03:51:53PM +0100, Daniel P. Berrange wrote: > >> +if GLIBC_RPCGEN > >> + mv $@ $ bak > >> + sed -e 's/\t/ /g' $ bak > $@ > >> +endif > > > > I guess it doesn't matter in a generate... | https://www.redhat.com/archives/libvir-list/2008-May/msg00396.html | CC-MAIN-2018-22 | refinedweb | 220 | 80.72 |
BackTracking:
Find a solution by trying one of several choices. If the choice proves incorrect, computation backtracks or restarts at the point of choice and tries another choice. It is often convenient to maintain choice points.
In an exhaustive search algorithm you search every possible choice to reach to the goal st... | http://www.crazyforcode.com/queens-backtracking-problems/ | CC-MAIN-2016-50 | refinedweb | 657 | 73.78 |
Opened 4 years ago
Closed 4 years ago
Last modified 3 years ago
#16563 closed Bug (fixed)
Error pickling request.user
Description (last modified by jezdez)
trying to pickle a request.user in trunk raises: TypeError, can't pickle function objects
Looking it shows that request.user is a SimpleLazyObject and it is a <lamb... | https://code.djangoproject.com/ticket/16563?cversion=0&cnum_hist=21 | CC-MAIN-2015-48 | refinedweb | 1,606 | 64.71 |
What is Liquibase?
Liquibase is an open-source database-independent library for tracking, managing and applying database schema changes. It was started in 2006 to allow easier tracking of database changes, especially in an agile software development environment.
I find Liquibase as a neat tool to migrate your database ... | https://dev.to/vladonemo/splitting-liquibase-changelong-no-problem-2a4l | CC-MAIN-2020-50 | refinedweb | 1,803 | 56.96 |
In a previous example, “3D Rotating objects in Flex 4 using the Spark Rotate3D effect and Flash Player 10”, we saw how you could rotate objects in 3D space from 0 to 360 degrees along the X, Y, and Z axis using the Spark Rotate3D effect in the Flex 4 SDK.
The following example shows how you can rotate an image relative... | http://blog.flexexamples.com/2008/10/25/incrementally-3d-rotating-objects-in-flex-using-the-fxrotate3d-in-flex/ | CC-MAIN-2017-22 | refinedweb | 1,253 | 69.11 |
Kubernetes: Getting Started
Kubernetes: Getting Started
Getting started with Kubernetes might seem a bit daunting at first. Fortunately, this collection of guides, tips, and advice will help out.
Join the DZone community and get the full member experience.Join For Free
Getting Started with Kubernetes sounds like quite ... | https://dzone.com/articles/kubernetes-getting-started | CC-MAIN-2019-51 | refinedweb | 676 | 65.22 |
Details
- Type:
New Feature
- Status: Closed
- Priority:
Major
- Resolution: Fixed
- Affects Version/s: None
-
- Component/s: None
- Labels:None
- Hadoop Flags:Incompatible change, Reviewed
- Release Note:HideAdded.
Description.
Issue Links
- blocks
-
- is depended upon by
HADOOP-4077 Access permissions for setting acc... | https://issues.apache.org/jira/browse/HADOOP-1869?focusedCommentId=12628412&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel | CC-MAIN-2015-11 | refinedweb | 5,709 | 74.59 |
28 February 2013 17:37 [Source: ICIS news]
LONDON (ICIS)--The European polyethylene terephthalate (PET) market is waiting for March contract news from the upstream paraxylene (PX) and monoethylene glycol (MEG) industry, in what is a turbulent time for exchange rates, sources said on Thursday.
The market is suffering fr... | http://www.icis.com/Articles/2013/02/28/9645541/europe-pet-market-holds-out-for-upstream-contract-news.html | CC-MAIN-2014-10 | refinedweb | 259 | 59.33 |
System.
I have a C++ object that creates a thread to read from a blocking UDP socket:
mRunning.store(true); while (mRunning.load(boost::memory_order_consume)) { ... int size = recvfrom(mSocket, buf, kTextBufSize , 0, (struct sockaddr *) &packet->mReplyAddr.mSockAddr, (socklen_t*)&packet->mReplyAddr.mSockAddrLen); if (s... | http://developerweb.net/extern.php?action=feed&tid=7250&type=atom | CC-MAIN-2015-11 | refinedweb | 135 | 51.65 |
How to deploy a reference database with an app for Windows Phone 8
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Starting with Windows Phone OS 7.1, you can store reference data in a local database and deploy it with your Windows Phone app. After ... | https://msdn.microsoft.com/library/windows/apps/hh286411 | CC-MAIN-2017-17 | refinedweb | 820 | 55.95 |
How to disable model timestamps in Laravel 5.3?
Sometimes we require to disable created_at and updated_at timestamps on Model on Laravel, so we can do it simply by using
$timestamps variable of model. It is very small things but important to understand and how to use it.
When you create new item or user using model at ... | https://www.itsolutionstuff.com/post/how-to-disable-model-timestamps-in-laravel-53example.html | CC-MAIN-2020-34 | refinedweb | 168 | 53.61 |
General Discussion
Hello Everyone,
I want to get NFS share which are in Netapp, can some one please tell me the command through which I can find all NFS shares listed under NetApp ??
Thanks..
Solved!
See The Solution
The "volume show -vserver * -junction" CLI command will show you all volumes in a given cluster, and th... | https://community.netapp.com/t5/General-Discussion/How-to-find-all-NFS-share-details/td-p/152892 | CC-MAIN-2021-39 | refinedweb | 112 | 69.82 |
Odoo Help
Odoo is the world's easiest all-in-one management software. It includes hundreds of business apps:
CRM | e-Commerce | Accounting | Inventory | PoS | Project management | MRP | etc.
Notes For Contact and Attachments Need To Trickle Up To Parent Accounts
I need to trickle up the internal notes and attachments t... | https://www.odoo.com/forum/help-1/question/notes-for-contact-and-attachments-need-to-trickle-up-to-parent-accounts-97204 | CC-MAIN-2017-04 | refinedweb | 177 | 66.33 |
Article Body: An Arc Core ComponentArticle Body: An Arc Core Component
What does this do?What does this do?
When used in a Fusion Project, this Core Component can be used to render content elements of an ANS Story.
The Article Body currently supports the following ANS elements:
- Text
- Images
- Corrections
- Interstit... | https://www.npmjs.com/package/@arc-core-components/feature_article-body | CC-MAIN-2022-33 | refinedweb | 430 | 55.84 |
Check out this quick tour to find the best demos and examples for you, and to see how the Felgo SDK can help you to develop your next app or game!
The MultiResolutionImage changes the used image based on the display size to improve performance and memory usage. More...
A MultiResolutionImage changes automatically with ... | https://felgo.com/doc/felgo-multiresolutionimage/ | CC-MAIN-2021-04 | refinedweb | 972 | 56.15 |
Full pytest documentation¶
Table Of Contents
- Installation and Getting Started
- Usage and Invocations
- Calling pytest through
python -m pytest
- Getting help on version, option names, environment variables
- Stopping after the first (or N) failures
- Specifying tests / selecting tests
- Modifying Python traceback pr... | http://docs.activestate.com/activepython/2.7/pkg/pytest/contents.html | CC-MAIN-2018-39 | refinedweb | 27,361 | 50.02 |
be able to use a custom UINavigationBar the UINavigationController has a type of constructor.
new UINavigationController(typeof (BankingNavigationBar), typeof (UIToolbar));
Using the UINavigationController in this way requires for the UINavigationBar to have a IntPtr constructor which the base class is internal protec... | https://xamarin.github.io/bugzilla-archives/44/44495/bug.html | CC-MAIN-2019-43 | refinedweb | 286 | 52.49 |
Finds edges in an image using the [Canny86] algorithm.
The function finds edges in the input image image and marks them in the output map edges using the Canny algorithm. The smallest value between threshold1 and threshold2 is used for edge linking. The largest value is used to find initial segments of strong edges. Se... | http://docs.opencv.org/2.4.3/modules/imgproc/doc/feature_detection.html | CC-MAIN-2016-30 | refinedweb | 1,057 | 52.6 |
This is the mail archive of the archer@sourceware.org mailing list for the Archer project.
On Fri, 27 Feb 2009 23:03:26 +0100, Sami Wagiaalla wrote: > Sami Wagiaalla wrote: >> I introduced this problem earlier when i was trying to resolve a >> conflict that I had with a patch of Jan's. >> 1de38657622396795ce681e64b03fb... | https://www.sourceware.org/ml/archer/2009-q1/msg00298.html | CC-MAIN-2018-30 | refinedweb | 442 | 59.4 |
puka 0.0.7
Puka - the opinionated RabbitMQ clientPuka - the opinionated RabbitMQ client
======================================
Puka is yet-another Python client library for RabbitMQ. But as opposed
to similar libraries, it does not try to expose a generic AMQP
API. Instead, it takes an opinionated view on how the user ... | https://pypi.python.org/pypi/puka/0.0.7 | CC-MAIN-2015-40 | refinedweb | 786 | 50.63 |
User Name:
Published: 18 Oct 2006
By: Azhar Khan
This article provides steps to solve the "Unrecognized Tag" problem for an Atlas Control. It provides the necessary solution to solve that given problem.
Having extender class, the page tag and behavior were rendered as:
Since I had changed the Root namespace, I had to c... | http://dotnetslackers.com/articles/ajax/unrecognized_tag_change_namespace_for_custom_atlas_control_project.aspx | crawl-003 | refinedweb | 177 | 54.46 |
I have not seen this be much of debate externally, but it
has been pretty hotly debated internally. We just closed down on this
guideline… As always, your comments are welcome:2.3.4 Assembly/DLL Naming GuidelinesAn assembly is the
unit of deployment and security for managed code projects. Typically
an assembly contains... | https://blogs.msdn.microsoft.com/brada/2003/04/19/assemblydll-naming-guidelines/ | CC-MAIN-2016-30 | refinedweb | 609 | 55.03 |
You need to write a program similar to NOTEPAD. The program will allow the user to type anything he/she wants. Letters, digits, special characters. In as many rows as he/she wants.
The user then can save the text he/she wrote, then later on load it to continue working on. Your program must have the following features:
... | https://www.transtutors.com/questions/write-a-program-similar-to-notepad-the-program-will-allow-the-user-to-type-anything--5379580.htm | CC-MAIN-2020-16 | refinedweb | 347 | 65.62 |
Pop out Kerning and Groups
As I understand the OS X hierarchy of windows versus panels, a panel modifies the object on the main window, and a window is its own, separate, data. This makes sense with Features, Font Info, Sort and Mark. Space Center is its own window because it displays the same data in a different manne... | https://forum.robofont.com/topic/363/pop-out-kerning-and-groups | CC-MAIN-2020-40 | refinedweb | 172 | 67.04 |
Using COM Interop in .NET Compact Framework 2.0
Maarten Struys
PTS Software bv
November 2005
Applies to:
Microsoft .NET Compact Framework version 2.0
Microsoft Windows CE
Microsoft Visual Studio 2005
Windows Mobile version 5.0
Summary: With the arrival of the .NET Compact Framework 2.0, interoperability between managed... | http://msdn.microsoft.com/en-us/library/aa446497.aspx | CC-MAIN-2014-15 | refinedweb | 8,030 | 55.84 |
What's the best way for me to access an API using a React app? The API is currently developed in Golang using kami & mgo for the POST/GET/DELETE requests.
I want to be able to make a GET request to the following URL:
on my React app and store the result in a state attribute:
this.state = {
data: //store the data here
}... | https://codedump.io/share/3xahzEZrVhNm/1/best-way-to-access-api-from-react-app | CC-MAIN-2017-17 | refinedweb | 190 | 54.18 |
python generation formula send of method of details
- 2020-05-30 20:33:52
- OfStack
Look for casually on the net, the feeling is to speak along while speak not clear, write 1 here.
def generator(): while True: receive=yield 1 print('extra'+str(receive)) g=generator() print(next(g)) print(g.send(111)) print(next(g))
Out... | https://ofstack.com/python/22070/python-generation-formula-send-of-method-of-details.html | CC-MAIN-2021-39 | refinedweb | 185 | 51.52 |
honest the recent period has been hard for my creativity for various reasons. In spite of the ongoing pandemy, which is hard to go through having kids under the roof, I’ve started working on something that might be interesting for you. But it’s a story to be released in 2 weeks 😉
Creating patterns
This example may se... | https://blacksheephacks.pl/hackpy-part-4-pcap-files-analysis-with-scapy/ | CC-MAIN-2022-40 | refinedweb | 583 | 56.86 |
Inset map showing a rectangular region
The
pygmt.Figure.inset method adds an inset figure inside a larger
figure. The function is called using a
with statement, and its
position,
box,
offset, and
margin can be customized. Plotting
methods called within the
with statement plot into the inset figure.
Out:
<IPython.core.d... | https://www.pygmt.org/dev/gallery/embellishments/inset_rectangle_region.html | CC-MAIN-2022-27 | refinedweb | 350 | 66.94 |
Saturday, August 25, 2012
Wow,
Posted On Saturday, August 25, 2012 4:24 PM | Comments (0) |
Filed Under [
.Net
Win8
]
Thursday, July 15, 2010
Hey.
Posted On Thursday, July 15, 2010 3:45 PM | Comments (1) |
Filed Under [
.Net
]
Monday, July 13, 2009
*taptaptap* Is this thing on?
I ran into an interesting bug recently, w... | http://geekswithblogs.net/jonasb/Default.aspx | CC-MAIN-2014-35 | refinedweb | 990 | 61.26 |
Jakarta Commons Online Bookshelf: XML parsing with Digester. Part 1
Jakarta Commons Online Bookshelf: XML parsing with Digester. Part 1
Written by Vikram Goyal and reproduced from "Jakarta Commons Online Bookshelf" by permission of Manning Publications Co. ISBN 1932394524, copyright 2005. All rights reserved. See for m... | http://www.webreference.com/programming/jakarta/index.html | CC-MAIN-2015-06 | refinedweb | 642 | 56.45 |
An encapsulated persistance layer for Python
A Python encapsulated persistence layer for supporting many data access layers.
Components
### DataManager
The DataManager is the central object of Polydatum. It is a top-level registry for Services, Resources, and Middleware. Typically an application has one DataManager per... | https://pypi.org/project/polydatum/ | CC-MAIN-2017-34 | refinedweb | 653 | 52.76 |
27 July 2009 17:54 [Source: ICIS news]
NEW DELHI (ICIS news)--India’s Gujarat Alkalies and Chemicals Ltd (GACL) posted a 30.4% year-on-year drop in first-quarter net profit to Indian rupees (Rs) 379.1m ($7.9m), down from Rs544.6m in the same period in 2008, due the global economic slowdown, the company said on Monday.
... | http://www.icis.com/Articles/2009/07/27/9235370/gujarat-alkalies-q1-net-profit-falls-30-to-rs379m.html | CC-MAIN-2015-06 | refinedweb | 239 | 58.48 |
Exercise 9 is a remake of exercise 6, a common theme in this chapter. Only a few things need to be swapped in order to meet the requirements. We initially declare a single structure candyBar, then we create a dynamic array candyBar[3]. *bar points to the first element of candyBar[3], and we can access candyBar by calli... | https://rundata.wordpress.com/2012/10/31/c-primer-chapter-4-exercise-9/ | CC-MAIN-2017-26 | refinedweb | 168 | 60.31 |
Beginning ASP.NET 2.0
E-Commerce in C# 2005
From Novice to Professional
■ ■ ■
Cristian Darie and Karli Watson
Darie-Watson_4681Front.fm Page i Thursday, September 22, 2005 5:26 AM
Beginning ASP.NET 2.0 E-Commerce in C# 2005: From Novice to Professional-468: Paul Sarknas Editor: Julie McNamee
Assistant Production Direct... | https://www.techylib.com/en/view/yelpframe/beginning_asp.net_2.0_e-commerce_in_c_2005 | CC-MAIN-2018-26 | refinedweb | 11,768 | 59.84 |
- Type:
Improvement
- Status: Open
- Priority:
Major
- Resolution: Unresolved
- Affects Version/s: None
- Fix Version/s: None
- Component/s: None
- Labels:None
I recently obtained a big (over 60GiB) heap dump from a customer and analyzed it using jxray (). One source of memory waste that the tool detected is arrays of ... | https://issues.apache.org/jira/browse/HDFS-12922 | CC-MAIN-2019-51 | refinedweb | 296 | 64.1 |
My goal for today was to populate a record with all of the Australian postcodes and their corresponding suburb and state descriptions. To do this I had to complete the following:
- 1: Download the postcode/location csv
- 2: Create new model to contain locations
- 3: Create a script to import a csv
- 4: Run the script i... | https://whatibroke.com/tag/csv/ | CC-MAIN-2022-40 | refinedweb | 430 | 67.04 |
A recent tweet by Fermat's Library noted that the Fundamental theorem of arithmetic provides a novel (if inefficient) way of determining whether two words are anagrams of one another.
The Fundamental theorem of arithmetic states that every integer greater than 1 is either a prime number itself or can be represented as ... | https://scipython.com/blog/using-prime-numbers-to-determine-if-two-words-are-anagrams/ | CC-MAIN-2019-51 | refinedweb | 278 | 59.84 |
Scheduling posts 2: the Rakening
Yesterday I covered how I’m handling scheduling with my Jekyll-based blog. The
at command I mentioned there could be used in tandem with any static blogging system. Today I’m dropping in the “publish” task from my Rakefile, so you can see how I apply it specifically with Jekyll. The con... | https://brettterpstra.com/2013/01/18/scheduling-posts-2-the-rakening/ | CC-MAIN-2022-33 | refinedweb | 935 | 58.99 |
Best way to structure a tkinter application
The following is the overall structure of my typical python tkinter program.
def funA(): def funA1(): def funA12(): # stuff def funA2(): # stuff def funB(): def funB1(): # stuff def funB2(): # stuff def funC(): def funC1(): # stuff def funC2(): # stuff root = tk.Tk() button1 ... | https://python-decompiler.com/article/2013-07/best-way-to-structure-a-tkinter-application | CC-MAIN-2019-47 | refinedweb | 622 | 58.18 |
Holds information about the inheritance path to a virtual base or function table pointer. More...
#include "clang/AST/VTableBuilder.h"
Holds information about the inheritance path to a virtual base or function table pointer.
A record may contain as many vfptrs or vbptrs as there are base subobjects.
Definition at line ... | https://clang.llvm.org/doxygen/structclang_1_1VPtrInfo.html | CC-MAIN-2022-21 | refinedweb | 393 | 68.77 |
Back in Seattle…
Wow, a whirlwind week in Vegas meeting with customers, colleagues, the community and of course conference-goers. If you didn’t catch the conference, last week was the SharePoint Conference 2012. It was a great week full of new areas for the SharePoint community to explore. For me, it was especially int... | https://blogs.msdn.microsoft.com/steve_fox/2012/11/17/sharepoint-and-windows-azures-interlude-in-vegas-building-apps-using-the-autohosted-app-model/ | CC-MAIN-2017-47 | refinedweb | 1,440 | 55.84 |
The default Window Title is “Panda”… is it possible to change to something else?
eg. “My First Panda” ?
The default Window Title is “Panda”… is it possible to change to something else?
eg. “My First Panda” ?
Here you go:
# get "WindowProperties" instance WinProps = base.win.getProperties() WinProps.setTitle("My First P... | https://discourse.panda3d.org/t/solved-changing-the-window-title/1630 | CC-MAIN-2022-27 | refinedweb | 762 | 59.19 |
Hello everyone,
I have completed my first small project using python3. It is the coin flip project. During this project we were also provided hints on what functions to use but I did not look at any of the hints. I did however have to sometimes search up how to use a certain prompt (such as random.choice) other than th... | https://discuss.codecademy.com/t/coin-flip-project/518905 | CC-MAIN-2020-34 | refinedweb | 595 | 68.5 |
templar 1.0.0.dev4.
Setup
-----
### Installation
To begin, clone this repo into your working directory (this README
assumes Templar will be installed in `<project>/lib/`):
cd path/to/project
git clone lib/templar
Alternatively, add this repo as a git submodule:
cd path/to/project
git submodule add lib/templar
### confi... | https://pypi.python.org/pypi/templar/1.0.0.dev4 | CC-MAIN-2016-40 | refinedweb | 2,693 | 56.15 |
Commits
Files changed (54)
- +0 -0.DS_Store
- +1230 -0Concurrency.rst
- +2 -2DataTypes.rst
- +2 -2DatabasesAndJython.rst
- +2 -2DefiningFunctionsandUsingBuilt-Ins.rst
- +820 -0DeploymentTargets.rst
- +2 -2ExceptionHandlingDebug.rst
- +441 -0GUIApplications.rst
- +2 -2InputOutput.rst
- +1083 -0IntroToPylons.rst
- +3 -3J... | https://bitbucket.org/javajuneau/jythonbook/commits/28b0486ae6c10c366f4da396f96f2ca91b228ba2 | CC-MAIN-2015-27 | refinedweb | 5,711 | 53.1 |
On Wed, 18 Jun 2008, Adam Spragg wrote:
Hi, On Tuesday 17 June 2008 14:57:01 Thomas Dickey wrote:The resolution was basically saying that the form library gets compiled to support wide-character mode, and that _it_ knows only about byte-at-a-time adds via addch, but that (with the limitation of not moving the cursor in... | http://lists.gnu.org/archive/html/bug-ncurses/2008-06/msg00021.html | CC-MAIN-2016-40 | refinedweb | 437 | 59.13 |
Alternative to using GoogleMapAPI to retrieve the geo codes (Latitude and Longitude) from zip codes. This website allows batch processing of the zip code which make it very convenient for automated batch processing.
Below illustrate the general steps in retrieving the data from the website which involve just enter the ... | https://simply-python.com/tag/scrape/ | CC-MAIN-2019-30 | refinedweb | 440 | 59.09 |
« Return to documentation listing
MPI_Get_count - Gets the number of top-level elements received.
#include <mpi.h>
int MPI_Get_count(MPI_Status *status, MPI_Datatype datatype,
int *count)
INCLUDE 'mpif.h'
MPI_GET_COUNT(STATUS, DATATYPE, COUNT, IERROR)
INTEGER STATUS(MPI_STATUS_SIZE), DATATYPE, COUNT, IERROR
#include <m... | http://icl.cs.utk.edu/open-mpi/doc/v1.2/man3/MPI_Get_count.3.php | CC-MAIN-2016-22 | refinedweb | 122 | 52.87 |
Ticket #2432 (closed defect: fixed)
call_on_startup functions do not successfully modify things in tg.config
Description
I have a library that does a few things for a TG2 app. To make things easy on the people who will be using my library in their apps I have a function to call on application startup to set a few thing... | http://trac.turbogears.org/ticket/2432 | CC-MAIN-2019-30 | refinedweb | 462 | 50.02 |
Tax
Have a Tax Question? Ask a Tax Expert
My work for the year was all performed in SC - Just my residency changed during the year from NC (first 5 months) to SC. On the W2 all tax was paid to SC (which I think is correct) and when I filed a yearly return (NC+SC) splitting the income between the states per residency I ... | http://www.justanswer.com/tax/3tzpn-2006-w2-states-income-sc-year-resident.html | CC-MAIN-2016-44 | refinedweb | 129 | 69.82 |
Using ASP.NET Code-Behind Without Visual Studio.NET
by John Peterson
Introduction
I'm sure you've probably heard (since I've done nothing but talk about it) that we recently went to San Jose to put on our very own ASP.NET Developer Conference & Expo. While we were there, we talked to a number of developers and got a go... | http://www.codeguru.com/csharp/.net/net_asp/tutorials/article.php/c19337/Using-ASPNET-CodeBehind-Without-Visual-StudioNET.htm | CC-MAIN-2017-09 | refinedweb | 1,508 | 76.62 |
table of contents
NAME¶ares_parse_a_reply - Parse a reply to a DNS query of type A
SYNOPSIS¶
#include <ares.h>
int ares_parse_a_reply(const unsigned char *abuf, int alen, struct hostent **host, struct ares_addrttl *addrttls, int *naddrttls);
DESCRIPTION¶The ares_parse_a_reply function parses the response to a query of ... | https://manpages.debian.org/testing/libc-ares-dev/ares_parse_a_reply.3.en.html | CC-MAIN-2020-10 | refinedweb | 177 | 50.57 |
Hi, is there any way “smart” way of checking if the current nengo
.py script is being run in the GUI or not?
I’ve looked through the GUI source code but don’t see an obvious way to do this.
Hi, is there any way “smart” way of checking if the current nengo
I’m not sure if there’s a supported way of doing this, but an un... | https://forum.nengo.ai/t/check-if-code-is-running-in-gui/1433 | CC-MAIN-2020-50 | refinedweb | 226 | 72.36 |
An initial prototype of the Rivet's FormBroker is now available from
trunk/rivet/packages/formbroker.tclThe code is inspired by Karl's original code but it goes further ahead trying to become a form definition repository. The overall style of the package has an OOP flavor even though no one of the OOP environments avai... | https://www.mail-archive.com/rivet-dev@tcl.apache.org/msg02405.html | CC-MAIN-2017-51 | refinedweb | 544 | 50.77 |
I have seen many tutorials on ASP.NET but most of them starts with coding and writing your first ASP.NET Program. But here I has written this tutorial for explaining why there is a need for ASP.NET when classy ASP is working fine and what are the underlying technology behind ASP.NET, What programming model ASP.NET Prov... | https://www.codeproject.com/Articles/4468/Beginners-Introduction-to-ASP-NET?fid=16098&df=90&mpp=10&sort=Position&spc=None&select=4139973&noise=1&prof=True&view=None | CC-MAIN-2017-30 | refinedweb | 2,226 | 59.8 |
These are chat archives for ProtoDef-io/node-protodef
rak_net_worker?
def start_link(opts \\ []) do
@magic
invalid write attribute syntax, you probably meant to use: @response expression
=
(MatchError) no match of right hand side value: <<1, 0, 0, 0, 0, 0 ...
<< @id_unconnected_pong, 1 :: size(64), 1 :: size(64), @magi... | https://gitter.im/ProtoDef-io/node-protodef/archives/2017/03/20 | CC-MAIN-2018-51 | refinedweb | 176 | 69.82 |
I am trying to port some code written against go1.3 to current versions and ran into a case where the json parsing behavior is different between versions. We are using a custom unmarshaller for parsing some specific date format. It looks like recent versions pass in the string with additional quotes which 1.3 did not.
... | https://codedump.io/share/kFwxuvdhfvpF/1/differences-in-parsing-json-with-a-custom-unmarshaller-between-golang-versions | CC-MAIN-2018-05 | refinedweb | 267 | 69.07 |
got a couple of comments in response to my previous post about “what kind of PCLs are these?” and “what’s a ‘Universal PCL’?” and so I thought I’d dig into that a little bit here as there are a number of ways of re-using .NET code in Windows/Phone 8.1 that weren’t all available to a Windows Phone 8.0 developer.
I’ll s... | https://mtaulty.com/2014/04/04/m_15165/ | CC-MAIN-2021-25 | refinedweb | 1,391 | 65.32 |
Summary: In this article, Microsoft Scripting Guy Ed Wilson begins part 1 of a multipart WMI helper function module for Windows PowerShell.
Microsoft Scripting Guy Ed Wilson here. While I was teaching my Windows PowerShell Best Practices class in Montreal, we spent an entire day talking about Windows Management Instrum... | https://blogs.technet.microsoft.com/heyscriptingguy/2011/10/24/a-powershell-wmi-helper-module-described/ | CC-MAIN-2017-09 | refinedweb | 957 | 54.32 |
Dear friends,
I don't know, I cannot seem to figure this out, should i use arrays,,,or
what? Here is my problem, the user is allowed to press the button as many
times as they want, and I have to tally up the amounts.
My code is wild I know,, learning, and probablly going about it the wrong
way.
But it is the only way I... | http://forums.devx.com/showthread.php?29138-Using-Buttons-to-count-(functions) | CC-MAIN-2017-39 | refinedweb | 285 | 54.79 |
Given Binary Tree [3,9,20,null,null,15,7]
/ \
9 20
/ \
15 7
return its zigzag level order traversal as :
[3],
[20,9],
[15,7]
]
Java Solution :
class TreeNode { int val; TreeNode left; TreeNode right; TreeNode(int x) { val = x; } } public class Solution { public List<List<Integer>> zigzagLevelOrder(TreeNode root) { List... | http://javahungry.blogspot.com/2016/09/zigzag-level-order-traversal-java-leetcode.html | CC-MAIN-2017-04 | refinedweb | 329 | 56.96 |
On 03/24/2011 08:23 AM, Hannes Reinecke wrote: > That is the approach I've been following for SUSE. > The UUID is assumed to be of this syntax: > > <type>-<identifier> There were several discussions, I think even unofficial definition tries but nobody documented that properly. So thanks for opening this here, it should... | https://www.redhat.com/archives/dm-devel/2011-March/msg00128.html | CC-MAIN-2014-15 | refinedweb | 245 | 52.02 |
December 2018 (version 1.20.0)
1.20.0 Update
Hi!
This was quite a year. We like to appreciate everyone who has visited and used us these far.
Wishing you a happy and exciting new year! Thank you.
We will keep up the hard work as to provide top notch services for JavaScript.
Please kindly go ahead with the highlights fo... | https://deepscan.io/docs/updates/2018-12/ | CC-MAIN-2019-13 | refinedweb | 295 | 50.77 |
>
I know that it's possible to open/change a scene using scripts,like Click on buttons or pressing a keyboard key, or even using the mouse buttons.
But, is it possible to open/change a scene in game by tipping a word? For example "TEST". When player types "TEST" in the keyboard, he is automatically moved to a new scene... | https://answers.unity.com/questions/1213127/open-scene-by-typing-a-word.html | CC-MAIN-2019-13 | refinedweb | 401 | 73.58 |
Because I'm a geek, I enjoy learning about the sometimes-subtle differences between easily-confused things. For example:
- I'm still not super-clear in my head on the differences between a hub, router and switch and how it relates to the gnomes that live inside of each.
- Hunks of minerals found in nature are rocks; as... | https://blogs.msdn.microsoft.com/ericlippert/2009/07/30/whats-the-difference-part-one-generics-are-not-templates/?replytocom=7326 | CC-MAIN-2018-30 | refinedweb | 4,660 | 60.95 |
(Time=0212 ET) no AOB items.
[] (11.10 + 5) postponed.
[] (11.15 + 10) (Time=0217) Misc. notes on action items. 2002/09/04: DavidF (done) Contact implementers regarding updates to their implementation of table 2 of the implementation table DavidF has posted all received, made corrections. Some reports still expected. B... | http://www.w3.org/2000/xp/Group/2/10/23-minutes.html | CC-MAIN-2015-32 | refinedweb | 2,416 | 66.13 |
#include <line_int.h>
Inheritance diagram for line_int::
The linear interpolation wavelet uses a predict phase that "predicts" that an odd element in the data set will line on a line between its two even neighbors.
This is an integer version of the linear interpolation wavelet. It is interesting to note that unlike the... | http://www.bearcave.com/misl/misl_tech/wavelets/packet/doc/classline__int.html | CC-MAIN-2017-47 | refinedweb | 109 | 50.16 |
Write wide-character formatted output to a buffer (varargs)
#include <wchar.h> #include <stdarg.h> int vswprintf( wchar_t * buf, size_t n, const wchar_t * format, va_list arg );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The vswprintf() function formats... | http://www.qnx.com/developers/docs/7.0.0/com.qnx.doc.neutrino.lib_ref/topic/v/vswprintf.html | CC-MAIN-2018-22 | refinedweb | 118 | 65.73 |
What's the best way of checking if an object property in JavaScript is undefined?
Detecting an undefined object property
Use:
if (typeof something === "undefined") { alert("something is undefined"); }
If an object variable which have some properties you can use same thing like this:
if (typeof my_obj.someproperties ===... | https://xjavascript.com/view/5158/detecting-an-undefined-object-property | CC-MAIN-2021-10 | refinedweb | 2,725 | 55.34 |
Here are introduced mainly for Ophone, of course, a combination of android's source code (there are android2.2 the following source code.) Ophone is also first in class by android.hardware.Camera to control the camera equipment, to use only by androi
Posted: September 10, 2010 – 10:59 am | Author: benn | Filed under: M... | http://www.codeweblog.com/stag/android-adb-source-code/ | CC-MAIN-2016-44 | refinedweb | 1,762 | 51.38 |
$ cnpm install @jbboehr/acorn-jsx
This is plugin for Acorn - a tiny, fast JavaScript parser, written completely in JavaScript.
It was created as an experimental alternative, faster React.js JSX parser.
According to benchmarks, Acorn-JSX is 2x faster than official Esprima-based parser when location tracking is turned on... | https://npm.taobao.org/package/@jbboehr/acorn-jsx | CC-MAIN-2019-47 | refinedweb | 323 | 54.32 |
On Wed, Jul 25, 2001 at 06:38:58PM -0400, Stephen Frost wrote: > * Ben Collins (bcollins@debian.org) wrote: > > On Wed, Jul 25, 2001 at 09:38:13PM +0200, Guido Guenther wrote: > > > Hi, > > > the attached patch removes some previous workarounds by adding proper > > > functions to compiler.h for mips(el). This obsoletes... | https://lists.debian.org/debian-x/2001/07/msg00107.html | CC-MAIN-2016-30 | refinedweb | 161 | 76.52 |
reggae 0.5.0
A build system in D
To use this package, put the following dependency into your project's dependencies section:
Reggae
A build system written in the D programming language. This is alpha software, only tested on Linux and likely to have breaking changes made.
Features
- Write readable build descriptions in... | http://code.dlang.org/packages/reggae/0.5.0 | CC-MAIN-2019-22 | refinedweb | 511 | 54.12 |
I was writing a little .NET app in C# and was looking for a small library that would let me read and write zip files. That's when my first Google search gave me a link to Using the Zip Classes in the J# Class Libraries to Compress Files and Data with C#. Great! - that was my first reaction, but it didn't last too long.... | https://www.codeproject.com/Articles/6989/Bug-when-using-the-java-util-zip-classes-to-write?fid=44526&df=10000&mpp=50&sort=Position&spc=Relaxed&select=817619&tid=817596 | CC-MAIN-2017-30 | refinedweb | 547 | 75.1 |
Compatible with Windows7 & Mac OS X Snow Leopard
A well hidden typo:
xslns:xsl=""
^^^^^
Your fingers have obviously learned to type "xsl" without engaging brain...
Michael Kay
> -----Original Message-----
> From: Dan Chandler [mailto:daniel.chandler@xxxxxxxxx]
> Sent: 22 March 2005 19:53
> To: xsl-list@xxxxxxxxxxxxxxxx... | http://www.oxygenxml.com/archives/xsl-list/200503/msg01000.html | CC-MAIN-2013-20 | refinedweb | 186 | 69.72 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.