text stringlengths 20 1.01M | url stringlengths 14 1.25k | dump stringlengths 9 15 ⌀ | lang stringclasses 4
values | source stringclasses 4
values |
|---|---|---|---|---|
This action might not be possible to undo. Are you sure you want to continue?
IN
HI
11
1
524
.
.
.
WDEN . MAINZ . PENNSYLVANIA in association with UNIVERSAL EDITION LONDON .ANTON WEBERN THE PATH TO THE NEW MUSIC Edited by Willi Reich THEODORE PRESSER COMPANY BRYN MAWR. ZURICH .
All rights No part of this publication ma... | https://www.scribd.com/document/108769505/Anton-Webern-The-Path-to-the-New-Music | CC-MAIN-2017-30 | en | refinedweb |
OverReact
A library for building statically-typed React UI components using Dart.
Using it in your project * Running tests in your project
Anatomy of an OverReact component UiFactory UiProps UiState UiComponent
- Fluent-style component consumption
- DOM components and props
Building custom components Component Boilerpl... | https://www.dartdocs.org/documentation/over_react/1.0.2/index.html | CC-MAIN-2017-30 | en | refinedweb |
#include <openvrml/frustum.h>
A frustum is more or less a truncated pyramid. This class represents frustums with their wide end facing down the -z axis, and their (theoretical) tip at the origin. A frustum is a convenient representation of the volume of virtual space visible through the on-screen window when using a pe... | http://openvrml.org/doc/classopenvrml_1_1frustum.html | CC-MAIN-2017-30 | en | refinedweb |
In my last post I cracked open the Logging Application Block to extend the Text Formatter so it could log timestamps in either local or UTC time. Since I already had my hands dirty, I thought I'd have a go at another useful extension that we unfortunately didn't get time to include in Enterprise Library for .NET 2.0.
O... | https://blogs.msdn.microsoft.com/tomholl/2006/01/28/a-reflected-property-formatter-token-for-the-logging-application-block/ | CC-MAIN-2017-30 | en | refinedweb |
The search aspect of Ditto can be accessed via an HTTP API.
The concepts of the RQL expression, RQL sorting and
RQL paging are mapped to HTTP as query parameters which are added to
GET requests
to the search endpoint:<1|2>/search/things
If the
filter parameter is omitted, the result contains all
Things the authenticate... | https://www.eclipse.org/ditto/httpapi-search.html | CC-MAIN-2020-05 | en | refinedweb |
Parameters of web controllers that make up the application are what the developers of these applications want to validate. This is how external clients are able to get data into the application. Through the parameters of the controllers. It is thus important to ensure that this data is acceptable to the application.
Wi... | http://www.boduch.ca/2009/10/form-encode-errors.html | CC-MAIN-2020-05 | en | refinedweb |
Getting Started
This guide provides step-by-step instructions on how to create a functional web test with TestCafe and consists of the following sections.
- Installing TestCafe
- Creating a Test
- Running the Test
- Viewing the Test Results
- Writing Test Code
Installing TestCafe #
Ensure that Node.js and npm are insta... | https://devexpress.github.io/testcafe/documentation/getting-started/ | CC-MAIN-2020-05 | en | refinedweb |
NEW: Learning electronics? Ask your questions on the new Electronics Questions & Answers site hosted by CircuitLab.
Microcontroller Programming » AVR Programming without bootloader
I'm looking for a programmer for AVR chips which will allow me to program without the need for a bootloader.
Minimum requirements:-
Simplic... | http://www.nerdkits.com/forum/thread/2518/ | CC-MAIN-2020-05 | en | refinedweb |
Data Points
The Enterprise Library Data Access Application Block, Part 3
John Papa
Code download available at:DataPoints0510.exe(216 KB)
Contents
Saving Data via SQL
Stored Procedures and One-Liners
Wrap a Transaction
Save a Row via UpdateDataSet
Save Multiple Rows at Once
Test as You Go
Wrapping It Up. Fortunately, th... | https://docs.microsoft.com/en-us/archive/msdn-magazine/2005/october/the-enterprise-library-data-access-application-block-part-3 | CC-MAIN-2020-05 | en | refinedweb |
;
- Redux: official documentation;
- Ducks: Redux Reducer Bundles;
- Re-ducks: Building on the duck legacy;
- React & Redux TypeScript guide;
The proposed architecture is not meant to be enforced dogmatically and is a work in progress that might change over time.
File structure
Dan Abramov created a guide for organisin... | https://laniewski.me/javascript/react/redux/2019/02/28/enterprise-scale-react-redux-project-architecture.html | CC-MAIN-2020-05 | en | refinedweb |
This article is a practical overview of Object Oriented Programming (OOP) in Python. It explains why OOP is useful, aside from how it’s done. This should be useful to both people who don’t know what OOP is, and experienced developers transitioning from other languages.
I am not a professional Python developer, and I am... | https://gigi.nullneuron.net/gigilabs/tag/oop/ | CC-MAIN-2020-05 | en | refinedweb |
mono [options] file [arguments...]
mono-sgen [options] file [arguments...].
This functionality is enabled by setting the MONO_IOMAP environment variable to one of all, drive and case.
See the description for MONO_IOMAP in the environment variables section for more details.
extern void *mono_aot_module_hello_info; mono_... | https://www.commandlinux.com/man-page/man1/cli.1.html | CC-MAIN-2020-05 | en | refinedweb |
Gson (by Google) is a Java library that can be used to convert a Java object into JSON string. Also, it can used to convert the JSON string into equivalent java object.
There are some other java libraries also capable of doing this conversion, but Gson stands among very few which does not require any pre-annotated java... | https://howtodoinjava.com/gson/google-gson-tutorial/ | CC-MAIN-2020-05 | en | refinedweb |
isn't if there is a method in a subclass with the exact same signature, the subclass one is suppose to be called over the super?
Account
public class Account { //Declaring instance variables. private int accountNumber; private String ownersName; private double interestRate; protected double balance; public Account(int ... | http://www.dreamincode.net/forums/topic/137967-overriding-methods/ | CC-MAIN-2017-43 | en | refinedweb |
How to Make a Simple Game in Unity 3D
Introduction: How to Make a Simple Game in Unity 3D
games. You can do programming in C#, Java, or Boo, a language similar to Python. In this tutorial, I will walk you through the Unity environment and show you how to make a simple game in Unity.
You do not need any coding experienc... | http://www.instructables.com/id/How-to-make-a-simple-game-in-Unity-3D/ | CC-MAIN-2017-43 | en | refinedweb |
CodePlexProject Hosting for Open Source Software
I have what is probably the simplest and easiest question ever, but after two days of banging I'm ready to jump out a window. Note the source is mooched directly from the example.
public class Message
{
public string Address { get; set; }
[JsonProperty(TypeNameHandling =... | https://json.codeplex.com/discussions/240861 | CC-MAIN-2017-43 | en | refinedweb |
MAPPATH(3) Library Routines MAPPATH(3)
_mapPath, _mapPathGS, _setPathMapping - (mapPath) convert GS/OS paths to Unix-style paths.
#include <gno/gno.h> void _setPathMapping (int toggle); char *_mapPath (char *pathname); GSStringPtr _mapPathGS (GSStringPtr pathname);
These routines are intended for use by application pro... | http://www.gno.org/gno/man/man3/mapPath.3.html | CC-MAIN-2017-43 | en | refinedweb |
In my android application, I have two Fragments. Parent Fragment contains list of available Filter Types and when a particular Filter Type is clicked (in Parent Fragment - Yellow Background) corresponding Child Fragment (Pink Background) opens with list of available options for selected filter type. My requirement is o... | https://codedump.io/share/QHUU4qw22HI4/1/updating-parent-fragment-from-child-fragment | CC-MAIN-2017-43 | en | refinedweb |
LingerOption Class
Specifies whether a Socket will remain connected after a call to Close and the length of time it will remain connected, if data remains to be sent.
For a list of all members of this type, see LingerOption Members.
System.Object
System.Net.Sockets.LingerOption
[Visual Basic] Public Class LingerOption ... | https://msdn.microsoft.com/en-us/library/system.net.sockets.lingeroption(v=vs.71).aspx | CC-MAIN-2017-43 | en | refinedweb |
Submission + - Create uniform namespace using autofs with NFS 3
BlueVoodoo writes: "Do you have trouble accessing data exported from multiple file servers? If so, try using open source implementations of autofs and Lightweight Directory Access Protocol (LDAP), with Network File System (NFS) Version 3, to access data un... | https://slashdot.org/submission/615388/create-uniform-namespace-using-autofs-with-nfs-3 | CC-MAIN-2017-43 | en | refinedweb |
speed - ios check internet connection without reachability
How to check for an active Internet connection on iOS or macOS? (20)
I would like to check to see if I have an Internet connection on iOS using the Cocoa Touch libraries or on macOS using the Cocoa libraries.
I came up with a way to do this using an
NSURL. The ... | https://code.i-harness.com/en/q/108935 | CC-MAIN-2020-05 | en | refinedweb |
Introduction
You may find the title of this article somewhat misleading. Yes, I have written about this subject before, but as I have said many a time: There are many ways to skin a cat. What I will show you today will also make use of batch files to delete the program, but with one caveat. The program must first be cl... | https://mobile.codeguru.com/csharp/.net/net_general/tipstricks/creating-another-self-destruct-program.html | CC-MAIN-2020-05 | en | refinedweb |
How YOU can Learn Mock testing in .NET Core and C# with Moq
Chris Noring
Updated on
・11 min read
Follow me on Twitter, happy to take your suggestions on topics or improvements /Chris
When we test we just want to test one thing - the business logic of the method. Often our method needs the help of dependencies to be abl... | https://practicaldev-herokuapp-com.global.ssl.fastly.net/dotnet/how-you-can-learn-mock-testing-in-net-core-and-c-with-moq-4ikd | CC-MAIN-2020-05 | en | refinedweb |
Django debug extension
Project description
The Everbug is a lightweight Django middleware for Chrome extension with easy install. One of the advantages: the response body of target page remains clean and unchanged.
Special summary: * Database queries with explains (Multiple database support) * Context variables * Profi... | https://pypi.org/project/everbug/ | CC-MAIN-2020-05 | en | refinedweb |
Vanilla quick introduction
OVN is a distributed SDN controller implementing virtual networks with the help OVS. Even though it is positioned as a CMS-independent controller, the main use case is still OpenStack. OVN was designed to address the following limitations of vanilla OpenStack networking:
- Security groups cou... | https://networkop.co.uk/blog/2016/11/27/ovn-part1/ | CC-MAIN-2020-05 | en | refinedweb |
I'm working on building a python class structure that makes it easier to swap out strategies and risk models while using multi-timeFrames techniques. I've been off in my own code world for a few months, and I came back and went to run it and hit an Attribute error I'm unfamiliar with.During the algorithm initialization... | https://www.quantconnect.com/forum/discussion/6555/039-forexholding-039-object-has-no-attribute-039-totalmargin-039/ | CC-MAIN-2020-05 | en | refinedweb |
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v19.2.dll
public class ImageEditExtension : EditorExtension
Public Class ImageEditExtension Inherits EditorExtension
To declare the Image in a View, invoke the ExtensionsFactory.Image helper method. This method returns the Image extension that is implemented b... | https://docs.devexpress.com/AspNet/DevExpress.Web.Mvc.ImageEditExtension | CC-MAIN-2020-05 | en | refinedweb |
ComponentDesigner Class
Extends the design mode behavior of a component.
Assembly: System.Design (in System.Design.dll)
System.ComponentModel.Design.ComponentDesigner
System.Diagnostics.Design.ProcessDesigner
System.Diagnostics.Design.ProcessModuleDesigner
System.Diagnostics.Design.ProcessThreadDesigner
System.Messagin... | https://msdn.microsoft.com/en-us/library/system.componentmodel.design.componentdesigner.aspx | CC-MAIN-2017-39 | en | refinedweb |
Im open to switching the attributes back to camelCase. Thats the more
accepted case for JSON anyway. Remember, nothing is set in stone right now.
A few other points...
I am not too concerned what other projects or products do. DeviceAtlas,
CC/PP, etc. My biggest concern is getting things right for this project.
This me... | http://mail-archives.apache.org/mod_mbox/devicemap-dev/201507.mbox/%3CCAKuYhJvc8wdNZF6Mb6OgWJX=YX=YVb=MnGbcQ1c0TRY7b2DWxg@mail.gmail.com%3E | CC-MAIN-2017-39 | en | refinedweb |
Working with the Amazon Maps API on the Kindle Fire
<google>BUY_KINDLE_FIRE</google>
One can argue with a reasonable degree of certainty that Google has created one of the best and most accurate digital map services available on the market today. In the early versions of iOS, Apple made the wise decision to rely on Goo... | http://www.techotopia.com/index.php/Working_with_the_Amazon_Maps_API_on_the_Kindle_Fire | CC-MAIN-2017-39 | en | refinedweb |
Writing Tests for a Stored Proc Sure Feels Weird
Some times you are just stuck and have to write some weird test fixtures to get the level of confidence you need to move forward in a legacy system. You can’t simply throw the baby out with the bath water no matter how much you really, really want every one to agree that... | https://iamnotmyself.com/2010/04/02/writing-tests-for-a-stored-proc-sure-feels-weird/ | CC-MAIN-2017-39 | en | refinedweb |
FSTAT(3P) POSIX Programmer's Manual FSTAT(3P)
This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface may differ (consult the corresponding Linux manual page for details of Linux behavior), or the interface may not be implemented on Linux.
fstat — get file status
#include <... | http://man7.org/linux/man-pages/man3/fstat.3p.html | CC-MAIN-2017-39 | en | refinedweb |
Version 0.4.0.428 of DBTestUnit has been released and can be downloaded from SourceForge.
This release implements the name change from ‘Database testing framework’ to ‘DBTestUnit’.
So what has changed?
There has been no change in overall functionality.
Basically, a number of components and namespaces have been changed ... | https://dbtestunit.wordpress.com/2011/02/25/version-0-4-0-428-dbtestunit-released/ | CC-MAIN-2017-39 | en | refinedweb |
Screen scraping
Most of the interesting servers in the world are web servers. While the layout of the web pages is in HTML that a machine can handle (with some effort), the essential data in that file is meant for human to read and is rarely designed to be easily extracted by software. But there are ways.
I considered ... | http://dalkescientific.com/writings/diary/archive/2005/04/21/screen_scraping.html | crawl-002 | en | refinedweb |
Ariel is a research project to investigate the design of user interfaces that go beyond the standard mouse and keyboard input modalities. It aims to take advantage of natural means of communication such as speech, gestures, and facial expressions. The challenge is to understand the properties of these new modalities an... | http://www.python.org/workshops/1996-06/papers/hugunin.IPCIV.html | crawl-002 | en | refinedweb |
In Chapter 3, we explained the basics of Django view functions and URLconfs. This chapter goes into more detail about advanced functionality in those two pieces of the framework.
Consider this URLconf, which builds on the example in Chapter 3:
from django.conf.urls.defaults import * from mysite.views import current_dat... | http://www.djangobook.com/en/beta/chapter08/ | crawl-002 | en | refinedweb |
The internet can be a scary place.
In the past few years, internet horror stories have been in the news almost continuously. We’ve seen viruses spread with amazing speed, swarms of compromised computers wielded as weapons, a never-ending arms race against spammers, and many, many reports of identify theft from compromi... | http://www.djangobook.com/en/beta/chapter20/ | crawl-002 | en | refinedweb |
I've been playing around with the version of the WPµ source that's used on Blogsome's servers, trying to find the exact point where the bug is that escapes apostrophes and quotes.
Basically, the XMLRPC client contacts the server, and sends the data in. According to the console, the content of the post is actually in a ... | http://schinckel.net/2005/10/16/ | crawl-002 | en | refinedweb |
Web applications accessed from traditional HTML browsers running on desktops make assumptions about such client capabilities as screen size, bandwidth, support for color images, and so on. These assumptions break down when the same content is accessed from mobile devices, whose capabilities are more limited – and varie... | http://developers.sun.com/mobility/midp/articles/ccpp/ | crawl-002 | en | refinedweb |
Created on 2007-11-10 05:58 by gvanrossum, last changed 2007-11-10 22:13 by gvanrossum.
Here's an implementation of the idea I floated recently on python-dev
(Subject: Declaring setters with getters). This implements the kind of
syntax that I believe won over most folks in the end:
@property
def foo(self): ...
@foo.set... | http://bugs.python.org/issue1416 | crawl-002 | en | refinedweb |
#include <OP_GalleryManager.h>
Definition at line 32 of file OP_GalleryManager.h.
Adds an extra category even if no entry subscribes to it.
Gets the sort order of categories (when parent name is not a string). Optionally the parent category may be provided in the form of a string encoding subcategories separated with a... | http://www.sidefx.com/docs/hdk/class_o_p___gallery_manager.html | CC-MAIN-2018-51 | en | refinedweb |
Hi.
Video -
Video -
I request you to go through my previous page and do the exact same steps as per below recap -
- Download -
- Install Android Studio -click here
- Open android studio and create a new project - How to create android project?
5. Click on build.gradle in app you will see all the libs added like below. ... | http://www.qaautomated.com/2016/03/appium-setup-in-android-studio-with.html | CC-MAIN-2018-51 | en | refinedweb |
Patching and Upgrading Guide
For Use with Red Hat JBoss Enterprise Application Platform 7.1
Abstract
Chapter 1. Introduction
1.1. About Migrations and Upgrades
Major Upgrades
A major upgrade or migration is required when an application is moved from one major release to another, for example, from JBoss EAP 6.4 to JBoss... | https://access.redhat.com/documentation/en-us/red_hat_jboss_enterprise_application_platform/7.1/html-single/patching_and_upgrading_guide/ | CC-MAIN-2018-51 | en | refinedweb |
More on deconstruction in C# 7
February 9, 2018 Leave a comment
We looked at deconstruction using the new ValueTuple type in this post. This short post only shows a couple more bits and pieces related to object deconstruction in C# 7.
Consider the following Rectangle class:
public class Rectangle { public int Width { g... | https://dotnetcodr.com/tag/deconstruction/ | CC-MAIN-2018-51 | en | refinedweb |
This page uses content from Wikipedia and is licensed under CC BY-SA...
There are many reasons why you might wish to move a page:
Technical restrictions prevent the storage of titles beginning with a lowercase letter, containing certain characters, and using formatting such as italics. Templates which may be used as wo... | https://readtiger.com/wkp/en/Wikipedia:Moving_a_page | CC-MAIN-2018-51 | en | refinedweb |
I wrote a simple class in Python2.7 that should use the
@property functionality.
class c(): def __init__(self): __pro = 1 @property def pro(self): return __pro *10 def setpro(self, x): __pro = x
Now when I create an object from this class and try to access the
pro property, I get the following error:
>>> x = c() >>> x.... | http://www.howtobuildsoftware.com/index.php/how-do/eZG/python-python-27-oop-properties-encapsulation-python-27-property-usage-results-in-error-global-name-c-pro-is-not-defined | CC-MAIN-2018-51 | en | refinedweb |
Fl_Widget
|
+----Fl_Box, Fl_Browser_, Fl_Button, Fl_Chart, Fl_Clock_Output,
Fl_Free, Fl_Group, Fl_Input_, Fl_Menu_, Fl_Positioner,
Fl_Progress, Fl_Timer, Fl_Valuator
#include <FL/Fl_Widget.H>
All "property" accessing methods, such as color(),
parent(), or argument() are implemented as trivial inline
functions and thus ... | https://www.fltk.org/documentation.php/doc-1.1/Fl_Widget.html | CC-MAIN-2018-51 | en | refinedweb |
US9613076B2 - Storing state in a dynamic content routing network - Google PatentsStoring state in a dynamic content routing network Download PDF
Info
- Publication number
- US9613076B2US9613076B2 US13941131 US201313941131A US9613076B2 US 9613076 B2 US9613076 B2 US 9613076B2 US 13941131 US13941131 US 13941131 US 2013139... | https://patents.google.com/patent/US9613076B2/en | CC-MAIN-2018-51 | en | refinedweb |
This chapter discusses important programming, configurational, and runtime considerations, as well as special considerations for particular execution environments. The following topics are covered:
This section discusses issues you should consider when programming JSP pages that will run in the OracleJ.
To use an Enter... | https://docs.oracle.com/cd/A91202_01/901_doc/java.901/a90208/keydev.htm | CC-MAIN-2018-51 | en | refinedweb |
SQLAlchemy 1.3 Documentation
SQLAlchemy 1.3 Documentation
beta release (such as for test suites)(). (But note that if the return value is
used as a context manager, i.e. in a with-statement, then this rollback/commit
is issued by the context manager upon exiting the context, and so should not be
added explicitly.)
Sess... | https://docs.sqlalchemy.org/en/latest/orm/session_transaction.html | CC-MAIN-2018-51 | en | refinedweb |
This guy seems to be having problems with HD service on Time Warner digital cable.
But from reading his post, and having my own experiences with Time Warner and HD, I think his problems fall under the category of “user error.”
When I wanted an HD box from Time Warner, I took my digital cable box to their local walk-in ... | http://geekswithblogs.net/bpaddock/archive/2004/10/11/12501.aspx | crawl-002 | en | refinedweb |
Farhan Khan
Tuesday, December 18, 2007
#
MS has recently released a Business User training portal which can be installed on SPS and offers course-like environment where every user can track the completion of chapters/sections that focus upon various portal tasks. Im glad that MS has finally catered to something that sh... | http://geekswithblogs.net/cenvy/Default.aspx | crawl-002 | en | refinedweb |
Wednesday, May 27, 2009
There.
posted @ Wednesday, May 27, 2009 1:12 AM | Feedback (0) |
Filed Under [
ASP.NET
]
Tuesday, May 26, 2009
.NET's SqlDataReader class is based on an active connection to the database. This means that while the SqlDataReader is in use, the SqlConnection that is serving the SqlDataReader is op... | http://geekswithblogs.net/bullpit/Default.aspx | crawl-002 | en | refinedweb |
Building great s0ftware, 1 line at a time.
Friday, June 26, 2009
#
Yes, this is possibly the simplest app ever written and was cooked up as a lunch bet between myself (@sundriedcoder) and David Justice (@davidjustice) while waiting on our TFS server to be rebuilt. Goal, set a property one million times. Ah ha, here’s t... | http://geekswithblogs.net/SunnyCoder/Default.aspx | crawl-002 | en | refinedweb |
Article Source:
I've been asked the same question a few times recently by a couple of BizTalk projects about how to map their reference data. When this question comes up we often get involved in a discussion about the pros and cons of caching the reference data and increasing memory usage versus hitting the database ev... | http://geekswithblogs.net/michaelstephenson/archive/2008/09/21/125352.aspx | crawl-002 | en | refinedweb |
Intro
hiccup is an interpreter for a subset of tcl.
New Features
- vwait works
- format and interp have basic functionality (interp -safe mostly works)
- expr works as expected, is efficient, and is supported in conditionals. Also, ternary ifs now work.
- apply and lmap have been added
- Floating point is supported nat... | http://code.google.com/p/hiccup/ | crawl-002 | en | refinedweb |
XV is a Unix/X11-based image viewer/converter with some editing
capabilities. It has been distributed by John H. Bradley and the
University of Pennsylvania as (shared-source) shareware for the
last 15 years or so. Primary development appears to have ceased
as of early 1995, and all forms of maintenance seem to have end... | http://seclists.org/bugtraq/2005/Apr/0145.html | crawl-002 | en | refinedweb |
Be.
Note that although this document is intended to deal with techniques which can be used when using mod_wsgi, many of the techniques are also directly transferable or adaptable to other web hosting mechanisms for WSGI applications.
When using mod_wsgi, unless you take specific action to catch exceptions and present t... | http://code.google.com/p/modwsgi/wiki/DebuggingTechniques | crawl-002 | en | refinedweb |
)
Important: This is an old version of this page. For the latest version, use the links in the left-side navbar..
This document is intended for programmers who want to write client applications that can interact with contacts.
It's a reference document; it assumes that you understand the concepts presented in the devel... | http://code.google.com/apis/contacts/docs/2.0/reference.html | crawl-002 | en | refinedweb |
According to the Burton Group’s research, Prototype is the most used framework for Ajax development. In the survey of 488 Ajax developers conducted by Burton Group, the most popular libraries and frameworks ranked as follows:
Prototype 26.6%
script.aculo.us 19.5%
DWR 14.8%
Dojo 11.1%
Ruby on Rails 10.0%
Rico 6.8%
Ajax.... | http://www.oreillynet.com/xml/blog/2006/07/whats_the_best_ajax_toolkitfra.html | crawl-002 | en | refinedweb |
DRM and the Web
Rigo Wenning
ODRL Workshop
Vienna, 22-23 April 2004
Rigo Wenning
<rigo@w3.org>
W3C/ERCIM
Sophia Antipolis, France
Plan
Expectations
Integration and Interoperability
ID issues
Enhancements and constraints
DRM and Privacy
DRM and Web Services
DRM and P2P
Expectations
EC IST mentions lack of DRM as a roadb... | http://www.w3.org/Talks/2004/04-odrl/ | crawl-002 | en | refinedweb |
Last update: Jan-30-02
1. TMX
1.1. Purpose
1.2. Stage
1.3. Maintaining Organization
1.4. Relevance to the W3C
2. TBX
2.1. Purpose
2.2. Stage
2.3. Maintaining Organization
2.4. Relevance to the W3C
3. OLIF
3.1. Purpose
3.2. Stage
3.3. Maintaining Organization
3.4. Relevance to the W3C
4. XLIFF
4.1. Purpose
4.2. Stage
4.... | http://www.w3.org/2002/02/01-i18n-workshop/LocFormats | crawl-002 | en | refinedweb |
PyRRD
PyRRD is a pure-Python OO wrapper for the RRDTool (round-robin database tool). The idea is to make RRDTool insanely easy to use and to be aesthetically pleasing for Python programmers.
Visit the wiki for more information, usage examples, and graphs.
Latest Changes in Trunk
- Added an RRD.fetch method
- Added supp... | http://code.google.com/p/pyrrd/ | crawl-002 | en | refinedweb |
Up to Design Issues.
I face these problems day to day, and like many geeks, am driven by the urge to make the boring things in life happen automatically, with the computer helping more effectively. There are lots of things I can do with N3 rules -- but I'd like to have a nice user interface to it which hides as much te... | http://www.w3.org/DesignIssues/TagLabel | crawl-002 | en | refinedweb |
pragmatic agility
Interesting bit of detective work the other day I thought I'd share with everyone. A friend of a friend was having trouble with an ASP 2.0 project that was ported to ASP.NET. Turns out that on some web servers the different clients were getting their data overwritten by others. A little splunking unco... | http://weblogs.asp.net/wallen/archive/2003/10/21/32854.aspx | crawl-002 | en | refinedweb |
ITWorx Geek
I was trying to include my ASP.NET MVC project in a TFS team build today but the build failed so I've investigated this issue and thought it will be helpful to share it with the community.
To get the MVC project build successfully with the team build make sure of the following:
- Your build server has the W... | http://weblogs.asp.net/hosamkamel/archive/2008/11/20/asp-net-mvc-project-and-team-build-issue.aspx | crawl-002 | en | refinedweb |
Adventures in .NET
Assembly Cannot Be FoundThis causes the following error message:The assembly <assemblyname> could not be found at <path> or could not be loaded.You can still edit and save the document. Contact your administrator or the author of this document for further assistance.
I did some digging around on Micr... | http://weblogs.asp.net/taganov/archive/2004/09/24/233847.aspx | crawl-002 | en | refinedweb |
ASP.NET v2.0 has a couple new ways to reference connection strings stored in the web.config or machine.config file.
A typical web.config file in v2.0 could have the following section which is placed directly under the root <configuration> section.
<connectionStrings> <remove name="LocalSqlServer" /> <add name="LocalSql... | http://weblogs.asp.net/owscott/archive/2005/08/26/Using-connection-strings-from-web.config-in-ASP.NET-v2.0.aspx | crawl-002 | en | refinedweb |
.security.deploy;18 19 /**20 * @version $Rev: 476049 $ $Date: 2006-11-16 23:35:17 -0500 (Thu, 16 Nov 2006) $21 */22 public class DefaultRealmPrincipal extends DefaultDomainPrincipal {23 private String realm;24 25 public String getRealm() {26 return realm;27 }28 29 public void setRealm(String realm) {30 this.realm = rea... | http://kickjava.com/src/org/apache/geronimo/security/deploy/DefaultRealmPrincipal.java.htm | CC-MAIN-2017-30 | en | refinedweb |
Hi,
>>> classes may explain HOW they work, but it's unclear for me which one is
>>> the most appropriate one to use.
>>>
>
> See
>
>
Thanks Thomas. I saw this, too. But when browsing all the information on
the Wiki, I really get confused about which information is up-to-date,
if there is any. A problem a lot of open so... | http://mail-archives.apache.org/mod_mbox/jackrabbit-users/200912.mbox/%3C4B260256.5020509@rug.nl%3E | CC-MAIN-2017-30 | en | refinedweb |
iParticleEffector Struct Reference
[Mesh plugins]
Base interface for particle effector. More...
#include <imesh/particles.h>
Inheritance diagram for iParticleEffector:
Detailed Description
Base.4.1 by doxygen 1.7.1 | http://www.crystalspace3d.org/docs/online/api-1.4.1/structiParticleEffector.html | CC-MAIN-2017-30 | en | refinedweb |
On Tue, Mar 1, 2011 at 7:10 PM, Sean Carolan <scarolan at gmail.com> wrote: > On Tue, Mar 1, 2011 at 11:55 AM, Sean Carolan <scarolan at gmail.com> wrote: >> Maybe someone can help with this. I have a function that takes a >> single file as an argument and outputs a tuple with each line of the >> file as a string eleme... | https://mail.python.org/pipermail/tutor/2011-March/082297.html | CC-MAIN-2017-30 | en | refinedweb |
Hi Jodok > Cc: Christian Zagrodnick; zope3-dev@zope.org > Betreff: Re: [Zope3-dev] Re: skin support for xmlrpc
Advertising
[...] > for me xmlrpc is remote procedure call. a rpc has a signature > and always the same result. and as stephan said - traversers > should help here. Yes, but what does this mean? Where is the d... | https://www.mail-archive.com/zope3-dev@zope.org/msg09287.html | CC-MAIN-2017-30 | en | refinedweb |
This should not make a big difference in real world since libvirt-daemon, which is already required by libvirt-lock-sanlock, requires libvirt-client and thus libvirt-lock-sanlock gets this dependency transitively. However, since libvirt-lock-sanlock contains sanlock_helper binary linked to libvirt.so, we should start r... | https://www.redhat.com/archives/libvir-list/2012-October/msg00971.html | CC-MAIN-2017-30 | en | refinedweb |
CSS to style HTML.
The
reset.css file is used in the GWT module project configuration to create a common
CSS playing field for GXT across all supported browsers. So, when styling HTML you will
have to provide some of the default styles explicitly.
There is more than one option to providing style to widgets and element... | http://docs.sencha.com/gxt/3.x/guides/ui/style/HtmlStyle.html | CC-MAIN-2017-30 | en | refinedweb |
Sort::ArbBiLex - make sort functions for arbitrary sort orders" }
Writing systems for different languages usually have specific sort orders for the glyphs (characters, or clusters of characters) that each writing system uses. For well-known national languages, these different sort orders (or someone's (what's I'll e's)... | http://search.cpan.org/~sburke/Sort-ArbBiLex-4.01/ArbBiLex.pm | CC-MAIN-2017-30 | en | refinedweb |
We commonly come across a problem where we need to write a unit test case of an existing application and found that it has tons on dependency of static methods.
Here we would be directly jumping on how to refactor your code to get rid of static methods meanwhile you can go through the following blogs to understand why ... | http://dailydotnettips.com/2015/03/10/how-to-refactor-and-make-static-class-code-testable/ | CC-MAIN-2017-30 | en | refinedweb |
Posted at: 11:23 PM on 26 May 2010 by Nycklander
Hi, I’m Nicolas and today I will show how to merge multiple PDF files using a SharePoint Designer workflow using the PDF Converter for SharePoint and the Workflow Power Pack.
Update: Please note that as of version 5.0 of the PDF Converter it is also possible to merge PDF... | http://blog.muhimbi.com/2010/05/combining-multiple-pdf-files-using.html | CC-MAIN-2017-30 | en | refinedweb |
In the last installment in this series, we talked about code coverage, what they are, and how you should use them. I gave examples in both Haskell and F# to accomplish this goal. One thing we’ve touched briefly in this conversation is around refactoring and cleaning up our code, and it’s about time we come back to that... | http://codebetter.com/matthewpodwysocki/2009/01/02/functional-programming-unit-testing-part-5/ | CC-MAIN-2017-30 | en | refinedweb |
The HUB has served as a role model by
- Angela O’Connor’
- 1 years ago
- Views:
Transcription
1 Claytn State University s Help Desk, The HUB, is the technical supprt fr the campus, including satellite lcatins. The HUB is cmprised f 35 student wrkers, 6 full-time staff, and ne Directr under the divisin f the Office f In... | http://docplayer.net/1420114-The-hub-has-served-as-a-role-model-by.html | CC-MAIN-2017-30 | en | refinedweb |
#include <ida.h>
Inheritance diagram for InformationRecovery:
Definition at line 115 of file ida.h.
[inline, virtual, inherited]
Reimplemented from BufferedTransformation.
Definition at line 168 of file simple.h.
-1
true
Reimplemented from Multichannel< Filter >.
Definition at line 71 of file simple.h.
Reimplemented fr... | http://cryptopp.sourceforge.net/docs/ref521/class_information_recovery.html | CC-MAIN-2017-30 | en | refinedweb |
:
- Continues to support the [Queryable] attribute, but also allows you to drop down to an Abstract Syntax Tree (or AST) representing $filter & $orderby.
- Adds ways to infer a model by convention or explicitly customize a model that will be familiar to anyone who’s used Entity Framework Code First.
- Adds support for ... | https://blogs.msdn.microsoft.com/alexj/2012/08/15/odata-support-in-asp-net-web-api/ | CC-MAIN-2017-30 | en | refinedweb |
I receive a JSON with 30 fields, and my entity is built from this JSON.
The problem is: two fields shouldn't be updated (two dates).
If I use
entity.merge
This article explains in great details your question, but I'm going to summarize it here as well.
If you never want to update those two fields, you can mark them wit... | https://codedump.io/share/Zao3loOR6b91/1/how-to-update-only-a-part-of-all-entity-attributes-with-hibernate | CC-MAIN-2017-30 | en | refinedweb |
Sony Playstation 4 (PS4) - WebKit 'setAttributeNodeNS' User After Free Write-up
EDB-ID:
44230
CVE:
N/A
Become a Certified Penetration Tester
Enroll in Penetration Testing with Kali Linux and pass the exam to become an Offensive Security Certified Professional (OSCP). All new content for 2020.
GET CERTIFIED
**Note: Whil... | https://www.exploit-db.com/exploits/44230 | CC-MAIN-2020-34 | en | refinedweb |
Developing a Command Parser-Based ZenPack
Note: Thanks to David Petzel for writing this excellent tutorial!
Contents
- 1 Inspiration
- 2 Conventions and Assumptions
- 3 Let's Get To It
- 4 Pulling It All Together
Inspiration
I still consider myself a relative newb with Zenoss as well as Python development. A while back... | http://wiki.zenoss.org/Developing_a_Command_Parser-Based_ZenPack | CC-MAIN-2020-34 | en | refinedweb |
Knowledge of JavaScript / ES6+ is important if you want to build React applications. Indeed, ES6+ brings a lot of cool stuff to JavaScript that makes writing React components much easier and cleaner.
While ES6 and its following updates came with many new features, there are a couple of concepts that you really need to ... | https://alterclass.hashnode.dev/10-javascript-concepts-you-should-learn-to-master-react-ck7np7c5c000d64s1t9ac213k?guid=none | CC-MAIN-2020-34 | en | refinedweb |
Xml
Text Reader Class
Definition
public ref class XmlTextReader : System::Xml::XmlReader, System::Xml::IXmlLineInfo, System::Xml::IXmlNamespaceResolver
public ref class XmlTextReader : System::Xml::XmlReader, System::Xml::IXmlLineInfo
public class XmlTextReader : System.Xml.XmlReader, System.Xml.IXmlLineInfo, System.Xm... | https://docs.microsoft.com/en-au/dotnet/api/system.xml.xmltextreader?view=netframework-4.7.1 | CC-MAIN-2020-34 | en | refinedweb |
Apple’s App Store is the holy grail for mobile developers. With React Native you can develop native apps for Android and iOS using a single code-base but getting things ready for publishing can be tricky, especially if you are starting with an originally Android-only application.
Here you’ll be starting with the code f... | https://practicaldev-herokuapp-com.global.ssl.fastly.net/oktadev/build-an-ios-app-with-react-native-and-publish-it-to-the-app-store-340i | CC-MAIN-2020-34 | en | refinedweb |
flutter_grid_button
Flutter widget that arrange buttons in a grid. It is useful for making a number pad, calculator, and so on.
Getting Started
To use this plugin, add
flutter_grid_button as a dependency in your pubspec.yaml file.
dependencies: flutter_grid_button:
Import the library in your file.
import 'package:flutt... | https://pub.dev/documentation/flutter_grid_button/latest/ | CC-MAIN-2020-34 | en | refinedweb |
Set Intrinsics
Intel® Streaming SIMD Extensions 2 (Intel® SSE2) intrinsics for floating-point set operations are listed in this topic. The prototypes for Intel® SSE2 intrinsics are in the
emmintrin.hheader file.
To use these intrinsics, include the
immintrin.hfile as follows:
#include <immintrin.h>
The load and set ope... | https://software.intel.com/content/www/us/en/develop/documentation/cpp-compiler-developer-guide-and-reference/top/compiler-reference/intrinsics/intrinsics-for-intel-streaming-simd-extensions-2-intel-sse2/floating-point-intrinsics-1/set-intrinsics.html | CC-MAIN-2020-34 | en | refinedweb |
Overriding inherited virtual functions
One way C++ supports code reuse is through inheritance. One base class implements common functionality. Then other classes inherit from it, essentially copying functionality from it. These other classes can add their own new functionality, or, more powerfully, they can override th... | https://whereswalden.com/tag/override/ | CC-MAIN-2020-34 | en | refinedweb |
Try this notebook to reproduce the steps outlined below
Machine learning models can seem like magical savants. They can distinguish hot dogs from not-hot-dogs, but that’s long since an easy trick. My aunt’s parrot can do that too. But machine-learned models power voice-activated assistants that effortlessly understand ... | https://databricks.com/blog/2020/01/16/better-machine-learning-through-active-learning.html | CC-MAIN-2020-34 | en | refinedweb |
DEBSOURCES
Skip Quicknav
sources / aolserver4 / 4.0.10
2005-01-18 tag aolserver_v40_r10
2005-01-18 Dossy Shiobara <dossy@panoptic.com>
* include/ns.h (1.55.2.19): Added missing prototype for
Ns_CompressGzip.
BUMP: 4.0.10
2005-01-12 Dossy Shiobara <dossy@panoptic.com>
* nsd/nsd.h (1.77.2.8), nsd/adpcmds.c (1.14.2.1), ns... | https://sources.debian.org/src/aolserver4/4.0.10-3/ChangeLog/ | CC-MAIN-2020-34 | en | refinedweb |
import "k8s.io/apiserver/pkg/storage/storagebackend/factory"
func CreateHealthCheck(c storagebackend.Config) (func() error, error)
CreateHealthCheck creates a healthcheck function based on given config.
DestroyFunc is to destroy any resources used by the storage returned in Create() together.
func Create(c storagebacke... | https://godoc.org/k8s.io/apiserver/pkg/storage/storagebackend/factory | CC-MAIN-2019-51 | en | refinedweb |
Howdy all,
I have a very obscure (and minor) colormapping issue which I would like to discuss. I am writing a workaround and the question is whether or not this is worth changing the base matplotlib distribution. The issue applies to any code that uses colormapping such as matshow or imshow. I am going to write the cha... | https://discourse.matplotlib.org/t/obscure-colormapping-issue-related-to-quantization/3190 | CC-MAIN-2019-51 | en | refinedweb |
Get the highlights in your inbox every week.
How to write a security integration module for Ansible | Opensource.com
How to write a security integration module for Ansible
Ansible automation offers a lot of potential for the information security industry. Learn how to take advantage of it in this summary of an AnsibleF... | https://opensource.com/article/19/12/security-ansible-module | CC-MAIN-2019-51 | en | refinedweb |
Coding, people believed, was an activity hackers did alone. While that might have been true in the past, the world is changing. New programmers come online every day and they want to effortlessly work and interact with others while writing code. Yet collaborative coding environments have remained troublesome to setup.
... | https://repl.it/site/blog/collab | CC-MAIN-2019-51 | en | refinedweb |
questions/apache-spark
I am getting error "Exception in thread ...READ MORE
Source tags are different:
{ x : [
{ ...READ MORE
SPARK 1.6, SCALA, MAVEN
i have created a ...READ MORE
import org.apache.spark.SparkContext
import org.apache.spark.SparkConf
import org.apache.spark.SparkContext
import org.apache.spark.SparkCon... | https://www.edureka.co/community/apache-spark?sort=unanswered | CC-MAIN-2019-51 | en | refinedweb |
public class DocumentUndoManager extends Object implements IDocumentUndoManager
Based on the 3.1 implementation of DefaultUndoManager, it was implemented using the document-related manipulations defined in the original DefaultUndoManager, by separating the document manipulations from the viewer-specific processing.
The... | https://help.eclipse.org/mars/topic/org.eclipse.platform.doc.isv/reference/api/org/eclipse/text/undo/DocumentUndoManager.html | CC-MAIN-2019-51 | en | refinedweb |
IEEE/The Open Group
2013
PROLOG
This manual page is part of the POSIX Programmer’s Manual. The Linux implementation of this interface may differ (consult the corresponding Linux manual page for details of Linux behavior), or the interface may not be implemented on Linux.
NAME
syslog.h — definitions for system error log... | https://reposcope.com/man/en/0p/syslog.h | CC-MAIN-2019-51 | en | refinedweb |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.