text stringlengths 20 1.01M | url stringlengths 14 1.25k | dump stringlengths 9 15 ⌀ | lang stringclasses 4
values | source stringclasses 4
values |
|---|---|---|---|---|
Hi everyone,
Currently I am working on java project which uses methods and classes present inside a DLL. Suppose I have such a method inside the DLL(named MyDLL.dll):
Method inside my DLL code
extern "C" __declspec(dllexport) int myMethod();
corresponding JNA implementation
import
extern "C" __declspec(dllexport) Class... | http://forums.codeguru.com/showthread.php?507347-XML-Binding.-JAXB-in-Eclipse-Helios&goto=nextnewest | CC-MAIN-2017-13 | en | refinedweb |
.
TypeScript brings lots of advantages to the JavaScript world with almost mandatory typings. But TypeScript code is transpiled, and to play well with other libraries that aren’t originally written in TypeScript needs manually written type definition and some hacks to play well with other external tools, like code cove... | http://source.coveo.com/2016/05/11/isomorphic-typescript-ava-w-coverage/ | CC-MAIN-2017-13 | en | refinedweb |
#include <<iostream.h>> #include<<conio.h>> #include<<stdio.h>>
All three of these include files have too many << and >> . They should be:
#include <iostream>If you are writing a C++ program you should not need the second and third include file.
Also what is your compiler and compiler version?
Next lets look at the fir... | http://www.dreamincode.net/forums/topic/224050-check-my-code-in-do-while-loop/page__st__15 | CC-MAIN-2017-13 | en | refinedweb |
I'm trying to append tuples to my array in groups. The number of groups or the number of tuples in each group is unknown.
I'm aware there should be a very simple answer for this, but my mind is grasped on swift, which takes care of this issue for me.
This is my issue, I need to be able to do this:
array = []
array[0].a... | https://codedump.io/share/GodfmkCLm3Pm/1/append-tuples-to-array-in-groups-python | CC-MAIN-2017-13 | en | refinedweb |
CodePlexProject Hosting for Open Source Software
I've made a custom channel to authenticate a custom header that is passed with requests. The code is based on this:.
Code works perfectly.
The custom header is a Shopify store ID (a making a web hook for my store). At the moment, I'm storing the ID in the web.config file... | https://wcf.codeplex.com/discussions/257844 | CC-MAIN-2017-13 | en | refinedweb |
1. Unit Testing
Now that you've had a little experience writing tests,
we'll introduce you to a test harness called
unittest that make tests more convenient.
To use
unittest,
you write a separate Python file that defines a series of classes,
where each class is derived from the
unittest.TestCase class,
and has a
test()... | http://zesty.ca/bc/explore-08.html | CC-MAIN-2017-13 | en | refinedweb |
I've got a lot of code that looks like the following:
import {Meteor} from 'meteor/meteor'; import {createContainer} from 'meteor/react-meteor-data';
import FoodItemList from '../components/FoodItemList.jsx';
import {FoodItems} from '../../api/FoodItems/FoodItems.js';
const FoodItemListContainer = createContainer(({ima... | https://codedump.io/share/KoiO13svJh7x/1/dynamic-imports-for-javascript-react-meteor | CC-MAIN-2017-13 | en | refinedweb |
You can click on the Google or Yahoo buttons to sign-in with these identity providers,
or you just type your identity uri and click on the little login button.
Specifying an etype as container starts from schema.py:
def post_build_callback(schema):
from cubes.container.utils import define_container
from cubes.pagode.en... | https://www.logilab.org/ticket/100723 | CC-MAIN-2017-13 | en | refinedweb |
Java from the system admin’s point of view the natural ordering could be the speed of the transaction. In most cases, there is no clear natural ordering for business domain objects.
Let’s assume that we have found a good natural ordering for a class like Company. We will use the company’s official name as the primary o... | https://www.javacodegeeks.com/2013/08/pitfalls-of-java-comparable-interface.html | CC-MAIN-2017-13 | en | refinedweb |
by Michael S. Kaplan, published on 2013/02/19 07:01 -05:00, original URI:
A timely follow-up to PowerShell ISE (or legacy) will do *everything* (and it's really easy to start!) and PowerShell ISE will do *everything* (IF YOU LET IT!)....
After all, in that first blog I talked about Internationalization.
And World-Readi... | http://archives.miloush.net/michkap/archive/2013/02/19/10395086.html | CC-MAIN-2017-13 | en | refinedweb |
On Sat, Mar 20, 2010 at 12:06 PM, Tejun Heo <tj@kernel.org> wrote:> Hello,>> On 03/19/2010 06:02 PM, graff.yang@gmail.com wrote:>>>> From: Graff Yang<graff.yang@gmail.com>>>>> This patch supports dynamic alloc/free percpu area for nommu arch like>> blackfin.>> It allocates contiguous pages in funtion pcpu_get_vm_areas(... | http://lkml.org/lkml/2010/3/21/264 | CC-MAIN-2017-13 | en | refinedweb |
Is it possible to scan a character, pass it to a char array and then if a is defined as string to print that string? Below is the code, (which gets the warning "cast to pointer from integer of different size")
Thanks in advance
char *a = "alpha";
int main()
{
char *A[80];
char ch;
printf("enter message");
scanf(" %c", ... | https://codedump.io/share/svYs0zKjWYH7/1/can-printf-print-defined-strings | CC-MAIN-2017-13 | en | refinedweb |
What is Selenium?
Selenium is an automate testing framework for web applications. Selenium is composed of multiple software tools. Each has a specific role. Here let’s see about selenium web driver.
Selenium Web Driver
Selenium Web Driver accepts commands and sends them to a browser. This is implemented through a brows... | https://techmaheshkumar.wordpress.com/2014/01/06/selenium-web-driver-java-introduction/ | CC-MAIN-2017-13 | en | refinedweb |
0
I need some help with a program I'm working on, I have to calculate the cost of a long distance phone call based on the day, time and length of the call. This is what I have so far. I need to figure out how to test what day they are entering and the day is written like this - Mo, Tu, We, Th etc.
#include <iostream.h>... | https://www.daniweb.com/programming/software-development/threads/197502/help-with-checking-char-value | CC-MAIN-2017-13 | en | refinedweb |
.
Yesterday, I explained how Python allows a class declaration to take keyword arguments alongside the usual base class. For Biwako, I planned to use that to use that feature as a way to keep things DRY. Some field types have options that are the same for all such fields within the same file format. It doesn’t make sen... | https://www.martyalchin.com/2011/jan/21/design-decision/ | CC-MAIN-2017-13 | en | refinedweb |
I have a Python script that reads a file (typically from optical media) marking the unreadable sectors, to allow a re-attempt to read said unreadable sectors on a different optical reader.
I discovered that my script does not work with block devices (e.g. /dev/sr0), in order to create a copy of the contained ISO9660/UD... | http://media4u.ir/?t=1344&e=1586501488&ref=back40news&z=Query+size+of+block+device+file+in+Python | CC-MAIN-2017-13 | en | refinedweb |
We give functions
You may skip the following subsections and restrict on reading the function signatures and the corresponding comments in order to use these functions. If you are interested in technical details, or if you would like to ensure that the input data is well chosen, or if you would like to know the exact m... | http://www.algorithmic-solutions.info/leda_manual/mw_matching.html | CC-MAIN-2017-13 | en | refinedweb |
hi all, i'm a c#.net beginner, my original codes work fine until i added a new set of code inside page_load to rebind the grid, the reason is i wanted to refresh the grid (by session arraylist) after i close the popup window (by showModalDialog).
i'm thinking it is possible to identity which control trigger the postbac... | http://www.dotnetspark.com/links/35433-rowdeleting-not-responding.aspx | CC-MAIN-2017-13 | en | refinedweb |
Asked by:
Joint Orientation Smoothing [Unity C#]
Hi there!
We all know that Kinect's raw orientation data has a lot of noise, but with a Smooth Filter you can erase that noise just adding a bit of lag. I have made a simple script which is providing good results (Attach it to a cube):
using UnityEngine; using System.Col... | https://social.msdn.microsoft.com/Forums/en-US/eb647eeb-26ef-45d6-ba73-ac26b8b46925/joint-orientation-smoothing-unity-c?forum=kinectv2sdk | CC-MAIN-2017-39 | en | refinedweb |
Achievements
332 Karma
9,097 Total ProTip Views
Komodo Dragon
Have at least one original repo where Java is the dominant language
24PullRequests Participant
Sent at least one pull request during the first 24 days of December 2013
Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout... | https://coderwall.com/wyuenho/comments | CC-MAIN-2017-39 | en | refinedweb |
Electric Imp Developer
Sublime Text 3 plug-in for Electric Imp applications development
Details
Installs
- Total 35
- Win 18
- OS X 13
- Linux 4
Readme
- Source
- raw.githubusercontent.com
Electric Imp Sublime Plug-in (Beta)
Sublime Text 3 plug-in for Electric Imp applications development.
- Overview
- Installation Ste... | https://packagecontrol.io/packages/Electric%20Imp%20Developer | CC-MAIN-2017-39 | en | refinedweb |
Silverlight Sample: Rotating Video Panel
Edit 2011-07-07: A wet floor effect has been added to the app. This includes a two-color background and an upside down reflection of the rotating video. You can check it out at the App Shop .
As an exercise in media handling and animation, I built a rotating video panel. This is... | https://thebytekitchen.com/2011/02/ | CC-MAIN-2017-39 | en | refinedweb |
PinCodeKeeper WP7 app – Using Isolated Storage to save, load and delete Pin Codes
The add new pin code functionality (completed in previous article) was the last main functionality for the PinCodeKeeper and the time has come to start using real data instead of mock up data. I will now implement Isolated Storage so that... | http://breathingtech.com/2011/pincodekeeper-wp7-app-using-isolated-storage-to-save-load-and-delete-pin-codes/comment-page-0/ | CC-MAIN-2017-39 | en | refinedweb |
(7)
Vijay Prativadi(3)
Abhimanyu K Vatsa(2)
Ashish Shukla(2)
Mahesh Chand(2)
Puran Mehra(2)
Sateesh Arveti(2)
Shridhar Sharma(2)
Debasis Saha(2)
Amit Mishra(2)
Ankur Mistry(2)
Mukesh Kumar(2)
Ethan Millar(1)
Vijayaragavan S(1)
Raj Kumar(1)
Akshay Patel(1)
Rion Williams(1)
Kamlesh Bhor(1)
Anubhav Chaudhary(1)
Ankur Mish... | http://www.c-sharpcorner.com/tags/Attributes | CC-MAIN-2017-39 | en | refinedweb |
Utilities¶
The module
jug.utils has a few functions which are meant to be used in
writing jugfiles.
Identity¶
This is simply implemented as:
@TaskGenerator def identity(x): return x
This might seem like the most pointless function, but it can be helpful in speeding things up. Consider the following case:
from glob impo... | http://jug.readthedocs.io/en/latest/utilities.html | CC-MAIN-2017-39 | en | refinedweb |
Creating a simple dialog application Windows of type Dialog Based Application by using MFC (Microsoft Foundation Classes) library
Progress
1. Run MS Visual Studio.
2. Calling a project in C++
After loading MS Visual Studio you need to call command
File -> New -> Project
In window, which will be opened (Fig. 1) you need... | http://www.bestprog.net/en/2016/01/31/001-creating-a-simple-dialog-application-windows-of-type-dialog-based-application/ | CC-MAIN-2017-39 | en | refinedweb |
How do I call a batch file in jython?
thanks!!
Here test, subprocess module functions OK in Jython, as it should:
Test batch file batch.bat
@echo off
echo Hello, from batch file
Test in Jython prompt:
>>> import subprocess
>>> subprocess.call("batch.bat")
Hello, from batch file
0
>>>
Edited 6 Years Ago
by pyTony: n/a
H... | https://www.daniweb.com/programming/software-development/threads/365126/calling-batch-files-in-jython | CC-MAIN-2017-39 | en | refinedweb |
View the Project on GitHub fynnfeldpausch/ace
The play! framework includes a simple data access layer called Anorm. It uses plain SQL to interact with the database and provides an API to parse and transform the resulting datasets. Some libraries exist to transfer this concept to the world of Neo4j. The Neo4j Scala wrap... | http://feldpausch.net/ace/ | CC-MAIN-2017-39 | en | refinedweb |
Note : Hi guys for more detail related with this article click here.visit new website for future posts. Thanks for support
Validation in MVC4 Razor with the Data Annotation Validators in “MODEL”
ASP.NET MVC uses jquery unobtrusive validation is used to perform client side validation.
Data Annotation
It common validatio... | https://dotnethelpers.wordpress.com/2013/03/26/validation-in-mvc4-razor-with-the-data-annotation-validators-in-model/ | CC-MAIN-2017-39 | en | refinedweb |
Google Code Jam 2014 Solution - Magic Trick
This is the first in a series of posts where I'm going to go in depth on how to solve the Google Code Jam questions. In most cases I'll use the raw code I submitted but I may make some editorial edits if I feel the code is particularly hacky (CodeJam favours speed mostly over... | https://blog.snapdragonit.com/google-code-jam-2014-solution-magician/ | CC-MAIN-2017-39 | en | refinedweb |
#include <hallo.h> * Josselin Mouette [Wed, Jul 23 2003, 06:06:18PM]: > Le mer 23/07/2003 ? 17:57, Martin Pitt a ?crit : > > Besides, what's so bad with the current boot-floppies that they could > > not be used for another release? Most people will do a mere > > dist-upgrade anyway, and b-f are thoroughly tested. But t... | https://lists.debian.org/debian-devel/2003/07/msg01828.html | CC-MAIN-2017-39 | en | refinedweb |
This tutorial will help guide you through the steps needed to create a simple self-hosted Ktor server application that responds to HTTP requests with
Hello, World!.
Ktor applications can be built using common build systems such as Maven or Gradle.
Table of contents:
Ktor is split up into several groups of modules, allo... | http://ktor.io/quickstart/application.html | CC-MAIN-2018-39 | en | refinedweb |
Talk:Tag:man made=spoil heap
Why a New Tag?
This duplicates the landuse=landfill tag which also applies to "mining waste" (see sample image there). Instead of man_made=spoil_heap, better use a subtag: landuse=landfill + landfill=slag_heap / spoil_heap / whatever (see taginfo). --Fkv (talk) 08:49, 19 April 2016 (UTC)
- ... | https://wiki.openstreetmap.org/wiki/Talk:Tag:man_made%3Dspoil_heap | CC-MAIN-2018-39 | en | refinedweb |
0
Hi
I am trying to write something that compiles and runs
correctly on both Linux and Windows. I am running bash
in Ubuntu on Linux, and I try to set environment variables
in the makefile just before the compile lines. I then write
something in the code like
int main() { #ifdef UBUNTU std::cout << "Ubuntu = true\n"; #... | https://www.daniweb.com/programming/software-development/threads/375872/preprocessor-doesn-t-see-my-environment-variables | CC-MAIN-2018-39 | en | refinedweb |
Board index » VC Debugger
All times are UTC
I'm using Visual C++ 5.0 and Developer Studio 97 under NT 4.0. I've got some source files with embedded SQL in them. These files have an extension of .SQC. I set up a custom build in the GUI to run the preprocessor that converts the .SQC files into .C files. However, I can't ... | http://computer-programming-forum.com/79-vc-debugger/7cc39f52957701fc.htm | CC-MAIN-2018-39 | en | refinedweb |
I just announced the new Spring Boot 2 material, coming in REST With Spring:
1. Overview
In this article, we’ll discuss a new Java-based testing framework called Lambda Behave.
As the name suggests, this testing framework is designed to work with Java 8 Lambdas. Further, in this article, we’ll look into the specificati... | https://www.baeldung.com/lambda-behave | CC-MAIN-2018-39 | en | refinedweb |
Only a few years ago, computers with multiple CPUs were considered exotic. Today, multi-core systems are routine. The challenge faced by programmers has been to take advantage of these systems. Apple’s ground-breaking Grand Central Dispatch offers a new approach to programming for modern computer architectures.
The obv... | https://apple.github.io/swift-corelibs-libdispatch/tutorial/ | CC-MAIN-2018-39 | en | refinedweb |
0
I need help with my output. I have pretty much everything done. I'm just getting an output like:
"The class average is 5.8%" "The class average is 12.4%" "The class average is 13.6%" "The class average is 18.4%" etc. "Highest grade is 58%" "Highest grade is 66%" "Highest grade is 85%" "Highest grade is 96%" etc. "0 o... | https://www.daniweb.com/programming/software-development/threads/145515/grades-with-arrays-and-functions | CC-MAIN-2018-39 | en | refinedweb |
Met many issues along the road to make my game run on Xbox. So I thought I could start documenting it.
License-Applied to the ID@XBOX program (easy to google).-I emailed them about games I wanted to release. In the beginning they thought my game weren't showing of the power of the xbox. But they must have lowered their... | http://community.monogame.net/t/fabians-road-to-xbox-one-release/10922 | CC-MAIN-2018-39 | en | refinedweb |
In a previous post – I demonstrated using MPAuthor to create a VERY simple Powershell script based perf collection rule:
Now I am going to demonstrate a more advanced script with multiple propertybags, script parameters, and adding references for custom target classes.
I’ll be using the base script from:
First we need ... | https://blogs.technet.microsoft.com/kevinholman/2015/06/20/mpauthor-a-more-advanced-powershell-performance-collection-rule/ | CC-MAIN-2018-39 | en | refinedweb |
This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.
Mark Mitchell <mark@codesourcery.com> writes: | With the new symbol visibility patches, we have to be careful not to | get incorrect linkage in the libraries; if the default visibility is | not "default" when we include the he... | https://gcc.gnu.org/legacy-ml/libstdc++/2004-08/msg00036.html | CC-MAIN-2020-24 | en | refinedweb |
Conclusion
Disk I/O is not and never has been a simple area. The scope for problems is very wide. If your C# I/O code doesn't handle exceptions properly, you'll get to see some very difficult problemsgenerally at inconvenient moments! Before tackling any I/O, it's a good idea to devise an effective exception-management... | https://www.informit.com/articles/article.aspx?p=1347504&seqNum=6 | CC-MAIN-2020-24 | en | refinedweb |
Join the community to find out what other Atlassian users are discussing, debating and creating.
I'm trying to find out how to write a validation with scriptrunner that checks if there are any existing issues with the same date as I've put in to a custom date field.
I have a custom date field: "Change Scheduled Date"
W... | https://community.atlassian.com/t5/Jira-questions/Scriptrunner-validator-to-search-for-a-JQL-and-compare/qaq-p/1190547 | CC-MAIN-2020-24 | en | refinedweb |
high-level C++ interface
You can build the code via the following:
fx set core.x64 --with //garnet/packages/examples:fidl fx build
Generated files
Building runs the FIDL compiler automatically. It writes the glue code that allows the protocols to be used from different languages. Below are the implementation files cre... | https://fuchsia.dev/fuchsia-src/development/languages/fidl/tutorials/tutorial-hlcpp | CC-MAIN-2020-24 | en | refinedweb |
Working with Dates and Times
This document is meant to provide on overview of the assumptions and limitations of the driver time handling, the reasoning behind it, and describe approaches to working with these types.
timestamps (Cassandra DateType)
Timestamps in Cassandra are timezone-naive timestamps encoded as millse... | https://docs.datastax.com/en/developer/python-driver/3.11/dates_and_times/ | CC-MAIN-2020-24 | en | refinedweb |
This topic provides steps for configuring your mobile app to handle In-App Messaging and Rich Push. When completed, In-App campaigns and Push campaigns with Rich Message content can be managed from within Responsys without requiring further app updates, and these messages will display properly in your mobile app.
In-Ap... | https://docs.oracle.com/en/cloud/saas/marketing/responsys-develop-mobile/ios/in-app-msg/ | CC-MAIN-2020-24 | en | refinedweb |
MCP3204/3208 Module¶
This module contains the driver for Microchip MCP3204/3208 analog to digital converter with SPI serial interface (datasheet).
Example:
from microchip.mcp3208 import MCP3208 ... mcp = mcp3208.MCP3208(SPI0, D17) value_0 = mcp.get_raw_data(True, 0) value_1 = mcp.get_raw_data(False, 2)
MCP3208 class¶
-... | https://docs.zerynth.com/latest/official/lib.microchip.mcp3208/docs/official_lib.microchip.mcp3208_mcp3208.html | CC-MAIN-2020-24 | en | refinedweb |
Hi,
I often use enumerations in code that I want to display as text on the screen. For example the state of an object recorded in an enum like
public enum StageType { PreRelease = 0, Proposed = 1, Open = 2, Closed = 3 }
So if I get the matching value out of the database and I want to render a textual representation of ... | https://ntsblog.homedev.com.au/index.php/2010/09/17/stringutil-class-space-before-a-capital-letter/ | CC-MAIN-2020-24 | en | refinedweb |
documented the following changes in v20.1.3:
Unfortunately, we failed to anticipate the scope of query parameter inconsistencies within customer apps (EAP/Beta feedback did not uncover this issue). Despite benefits associated with our changes, we do not want to force XPO users to modify their code immediately or rever... | https://community.devexpress.com/blogs/xpo/archive/2020/05/21/xpo-important-changes-to-default-query-parameter-validation-in-v20-1.aspx | CC-MAIN-2020-24 | en | refinedweb |
(07-17-2019 03:15 AM)figsonwheels Wrote: Ok, I've uninstalled, reinstalled, made all the suggestions on the "Checking things" post:.
I'm getting this message:
Traceback (most recent call last):
File "eggbot.py", line 30, in <module>
import serial
ImportError: No module named serial
I tried item #8 and nothing happened.... | http://forums.jjrobots.com/showthread.php?tid=2133&pid=4619 | CC-MAIN-2020-24 | en | refinedweb |
On behalf of the global SAP Screen Personas product team, I am delighted to announce that SAP Screen Personas 3.0 has entered ramp-up. This is the long-awaited all-HTML version of SAP Screen Personas. SAP Screen Personas 3.0 is the most advanced SAP Screen Personas solution developed to date. It solidifies SAP Screen P... | https://blogs.sap.com/2014/08/13/announcing-sap-screen-personas-30/ | CC-MAIN-2020-24 | en | refinedweb |
Custom Authentication Script Tutorial#
Overview#
Interception scripts enable you to customize many aspects of your Gluu Server identity and access management service.
This tutorial explains how to write an interception script to implement a two-step out-of-band authentication using username / password for step 1, and a... | https://gluu.org/docs/gluu-server/authn-guide/customauthn/ | CC-MAIN-2020-24 | en | refinedweb |
Introduction
IoT devices for industrial use are often deployed in places without an ethernet or WiFi connection and have to use a mobile broadband connection. To reduce traffic costs, it is required to keep the amount of data that has to be transmitted as low as possible.
Cloud providers also calculate in data blocks o... | https://blog.basyskom.com/2020/protobuf-for-iot/ | CC-MAIN-2020-24 | en | refinedweb |
Another example:
include Java
filter = Object.new
def filter.accept(file, str)
!!(str =~ /jar/)
end
file = java.io.File.new("lib")
file.list(filter).each {|f| puts f}
I still think this approach has a place alongside the rest of the recently revamped java integration. It's somewhat of an edge case in that the code will... | http://jira.codehaus.org/browse/JRUBY-991 | crawl-002 | en | refinedweb |
A pop-up window is a separate window that can be "popped-up" from the main
display window. Experiment with the applet below to see what it does. Then
proceed to understand the code that generates the applet.
An applet would appear here if your browser supported Java.
The applet implements the "KeyListener" to be able t... | http://www.cs.montana.edu/~paxton/tutorial/popup.htm | crawl-002 | en | refinedweb |
The fonts in a visual style are just as
important as any other graphical image you create. Text in the title
bars, start menu, taskbar, etc. are all things you see on a constant basis.
You have gone through the process of creating all these graphics, so why stop
when it comes to the fonts? Well you don't have to as Ski... | http://www.stardock.com/products/skinstudio/help/fonts_and_coloring.htm | crawl-002 | en | refinedweb |
In Mac OS X 10.4, GCC 4.0 is the default compiler for all new projects. If you are creating new projects on the platform, you should naturally be using GCC 4.0 to compile those projects. However, if you are building existing projects using the GCC 3.3 compiler (the default compiler in Mac OS X 10.3), there are also man... | http://developer.apple.com/releasenotes/DeveloperTools/GCC40PortingReleaseNotes/Articles/PortingToGCC.html | crawl-002 | en | refinedweb |
> [David Goodger] > >> Could be. I don't see HTML+PythonDoc as a significant improvement > >> over LaTeX. > > [Fredrik Lundh] > > Really? > > Yes, really. Your reply makes it obvious that you don't understand the issues involved here, nor how the goals address them. (Snipping heavily below due to lack of time; if you w... | http://mail.python.org/pipermail/python-dev/2005-December/059311.html | crawl-002 | en | refinedweb |
PRECISE
PRECAUTION VERSUS SLOPPY SCIENCE
by Hartmut
Meyer
DATE:
April 1999
ABSTRACT
THE
Convention on Biological Diversity opens the possibility to negotiate
a legally binding Biosafety Protocol to assess and minimize risks in the
field of transboundary transfer, handling, and use of organisms modified
by genetic engin... | http://www.twnside.org.sg/title/3food-cn.htm | crawl-002 | en | refinedweb |
Namespace Troubleby Leigh Dodds
May 17, 2000
This week XML Deviant reports on a Namespace-related debate holding up XML work at the W3C, and the final release of SAX2/Java.
The Symptoms
Simon St. Laurent, pointing out that the latest DOM Level 2 specification gives no end date for its Candidate Recommendation phase, pr... | http://www.xml.com/pub/a/2000/05/17/deviant.html | crawl-002 | en | refinedweb |
Tech Tips archive
December 22, 2000
WELCOME to the Java Developer ConnectionSM
(JDC) Tech Tips, December 22, 2000. This issue covers techniques for tracking and controlling memory allocation in the Java HotSpotTM Virtual
Machine*. The topics covered are:
These tips were developed using Java 2 SDK,
Standard Edition, v 1... | http://java.sun.com/developer/TechTips/2000/tt1222.html | crawl-002 | en | refinedweb |
* UMR-866 Différenciation Cellulaire et Croissance (INRA-UMII-ENSAM), Unité dEndocrinologie Cellulaire, Institut National de la Recherche Agronomique (INRA), 34060 Montpellier Cedex 1, France; and
EMI INSERM 0014, Laboratoire de Microscopie Electronique, Faculté de Médecine, BP 184, 54505 Vandoeuvre-lès-Nancy Cedex, Fr... | http://www.fasebj.org/cgi/content/full/17/3/426 | crawl-002 | en | refinedweb |
Getting started with XSLT and XPath (III)by G. Ken Holman
August 23, 2000
2.2 Syntax basics: Stylesheets, Templates, Instructions
Next we'll look at some basic terminology both helpful in understanding the principles of writing an XSLT stylesheet and recognizing the constructs used therein. This section is not meant as... | http://www.xml.com/pub/a/2000/08/holman/s2_2.html | crawl-002 | en | refinedweb |
Trickledown Namespaces?by John E. Simpson_1<<_3<<.
Share your experience in our forum.
(* You must be a member of XML.com to use this feature.)
Comment on this Article
- #1 Santa Monica Locksmith Los Angeles 1-310-925-1720
2009-06-11 15:16:35 whats [Reply]
#1 Santa Monica Locksmith Los Angeles 1-310-925-1720
#1 24 Hour... | http://www.xml.com/pub/a/2004/06/30/qa.html | crawl-002 | en | refinedweb |
Explore Vox
Culture
Entertainment
Life
Music
News & Politics
Technology
Join Vox
Take a Tour
Already a Member? Sign in
Loli’s blog
Loli’s Blog
Profile
Neighbors
Photos
More
Audio
Videos
Books
Links
Collections
»
My Pretty Dogs
Jul 28, 2008 at 4:13 AM
korea buddhist stamps
mp 3 muzika
short friendship song quotes
anonym... | http://li1.vox.com/library/post/vox-tips-tricks.html | crawl-002 | en | refinedweb |
).
javadoc(1) javadoc(1)
NAME
javadoc - Java API documentation generator
SYNOPSIS
javadoc [ options ] [ packagenames ] [ sourcefilenames ] [ -subpackages pkg1:pkg2:... ] [ @argfiles
]
PARAMETERS
Arguments can be in any doc-ument. document.
ument. The Javadoc tool uses -sourcepath to look for these package names. The
Ja... | http://developer.apple.com/documentation/Darwin/Reference/ManPages/man1/javadoc.1.html | crawl-002 | en | refinedweb |
[vim] Syntax Highlighting Takes a Holiday
- From: Michael Soyka <msoyka_nospam@xxxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Thu, 01 Dec 2005 19:46:55 -0500
Hi y'all,
On the job I use RCS for version control under Windows. Quite often I begin to modify a file only to be warned it is read only. So, to avoid having to go to a DOS ... | http://newsgroups.derkeiler.com/Archive/Comp/comp.editors/2005-12/msg00017.html | crawl-002 | en | refinedweb |
This is the 30th installment of the Thinking XML column. It is almost exactly four years since the first article, and in retrospect I'm amazed by the flight of time and the march of events since then. The activity associated with XML has been tremendous, and I hope some of it has been apparent in the range of topics co... | http://www.ibm.com/developerworks/xml/library/x-think30.html | crawl-002 | en | refinedweb |
This column is currently focused on modeling, UML, and XML. More specifically, I am exploring the use of UML modeling for XML development and in particular how XSLT stylesheets can help through automatic derivation.
As XML has become a common feature in development projects, many developers have grown interested in int... | http://www.ibm.com/developerworks/xml/library/x-wxxm24/ | crawl-002 | en | refinedweb |
Another comment from Fumiaki Yoshimatsu, noting that I seemed to have ended up in more or less the same place, asked what I think of the XSD guidelines that Kohsuke Kawaguchi posted several years ago. I remember reading and dismissing his guidance at the time because of his assertion that you shouldn't seek to understa... | http://www.pluralsight.com/community/blogs/tewald/archive/2004/08/25/2030.aspx | crawl-002 | en | refinedweb |
Over:
- How to manage this impact
- How to minimize this impact where possible
We use some very simplistic examples containing cars, tires, and windscreens and their related companies or resellers. Although not completely realistic, this is sufficient to describe suggestions to improve the maintainability of XML format... | http://www.ibm.com/developerworks/xml/library/x-extensxml.html | crawl-002 | en | refinedweb |
).
QSORT(3) BSD Library Functions Manual QSORT(3)
NAME
heapsort, mergesort, qsort, qsort_r -- sort functions
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
#include <stdlib.h>
int
heapsort(void *base, size_t nel, size_t width, int (*compar)(const void *, const void *));
int
mergesort(void *base, size_t nel, size_t wid... | http://developer.apple.com/documentation/Darwin/Reference/ManPages/man3/heapsort.3.html | crawl-002 | en | refinedweb |
From: phil scott
Newsgroups: misc.taxes alt.politics.economics sci.econ uk.legal uk.finance
Subject: Re: Dollar crash: Calculated Chaos....Calculated Collapse
Date: Thu, 15 Nov 2007 10:23:21 -0800 (PST)
<38684e75-643a-41aa-95c0-72e05454500d@s19g2000prg.googlegroups.com>
<87zlxf785j.fsf@newton.gmurray.org.uk>
posting-ac... | http://www.info-mortgage-loans.com/usenet/posts/68298-84567.uk.finance.shtml | crawl-002 | en | refinedweb |
Agenda
See also: IRC log
uri: uri property confirmed
JK: bodyContentBase64 or bodyBase64 or bodyContent with definition: always base64
SAZ: bodyContent
CV: +1
JK: +1
resolution: bodyContent in 2.4
SAZ: more detailed description of bodyContent in 2.4
JK: bodyContent replaces body property
SAZ: add pointer to RFC2616 in ... | http://www.w3.org/2006/08/09-er-minutes | CC-MAIN-2016-36 | en | refinedweb |
4.3.0
This section describes changes made in different releases of version 4.3.0. It helps you to migrate from version 4.2.0.Final to 4.3.0.Final (yet to be released) or between releases of version 4.3.0.
4.3.0.Beta1
HV-561 introduced several deprecations (see the JavaDoc for a complete deprecation list):
- org.hiberna... | https://developer.jboss.org/wiki/HibernateValidatorMigrationGuide/version/12 | CC-MAIN-2016-36 | en | refinedweb |
Update of /cvsroot/python/python/dist/src/Python In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24384/Python Modified Files: pystate.c Log Message: Revert rev 2.35. It was based on erroneous reasoning -- the current thread's id can't get duplicated, because (of course!) the current thread is still running. The c... | https://mail.python.org/pipermail/python-checkins/2004-October/043608.html | CC-MAIN-2016-36 | en | refinedweb |
By Bill Sempf
Downloads
Coding for Custom Devices in Windows* 8.1 and Windows* RT 8.1 [PDF 803KB]
The Windows 8.1 operating system (as well as Windows RT 8.1) has a lot of interesting new features, not the least of which is the return of the vaunted Start button. New device support for Windows* Store apps, however, giv... | https://software.intel.com/en-us/articles/coding-for-custom-devices-in-windows-81-and-windows-rt-81 | CC-MAIN-2016-36 | en | refinedweb |
The.
Tom Miller finally states the last word on the subject of game loops in Managed DirectX code. Now…
So Tom how does this way of looping compare (fps and memory wise) to the way Rick Hoskinson recently started discussing on his blog.
-Richard
Richard.Parsons (at) gmail.com
Why on earth is this page using SSL?
... | https://blogs.msdn.microsoft.com/tmiller/2005/05/05/my-last-post-on-render-loops-hopefully/ | CC-MAIN-2016-36 | en | refinedweb |
We
build.xml
<.
Last..
Icon fonts are a growing trend among web developers, they make it quite simple to add icons to your web site and resize them for better responsive design.).
The basic steps:
Here is a demo showing how it is set up and how it works:
The skin1.css in the video is this:
@charset "UTF-8";
/**ADFFaces... | http://www.orafaq.com/aggregator/sources/172 | CC-MAIN-2016-36 | en | refinedweb |
Python Programming, news on the Voidspace Python Projects and all things techie.
Total Ordering: Class Decorator for Filling in Rich Comparison Methods When Only One is Implemented
Raymond Hettinger managed to provide several of the highlights at PyCon UK. During a couple of his talks he extolled the virtues of class d... | http://www.voidspace.org.uk/python/weblog/arch_d7_2008_10_04.shtml | CC-MAIN-2016-36 | en | refinedweb |
If your asynchronous action method calls a service which exposes methods using the
BeginMethod() / EndMethod() pattern , your callback will be executed on a thread which is not under the
control of ASP.NET. Some consequences of this are that HttpContext.Current will be null, and
there will be race conditions accessing ... | https://blogs.msdn.microsoft.com/rickandy/2009/12/02/using-the-beginmethodendmethod-pattern-with-mvc/ | CC-MAIN-2016-36 | en | refinedweb |
Timeline
02/05/12:
- 18:21 Changeset [76906] by
- Unordered: Remove unnecessary typename.
- 13:48 Changeset [76905] by
- Merged libs/geometry fixes since 2011-01-15
- 13:47 Changeset [76904] by
- Merged geometry fixes since 2011-01-15
- 12:35 Changeset [76903] by
- Doc update
- 12:33 Changeset [76902] by
- Added robust... | https://svn.boost.org/trac/boost/timeline?from=2012-02-05T03%3A26%3A58-05%3A00&precision=second | CC-MAIN-2016-36 | en | refinedweb |
Some background:
I am trying to learn Java because it is fun. I have grasp the basic and are now trying to make a simple UI.
The problem:
I have created a simple adding program that adds value 1 and value 2 into a sum when you push the button "add". Though, it do not do that. Upon pressing "Add" nothing happens.
I have... | http://www.dreamincode.net/forums/topic/262201-what-is-it-that-i-am-missing/ | CC-MAIN-2016-36 | en | refinedweb |
A core foundation for rich Web applications.
A core foundation for rich Web applications.
When creating a Web app, you need a foundation on which to build. There are a lot of disparate technologies out there that can be brought together into a cohesive whole to make this happen. The trouble is in finding, vetting, test... | https://www.npmjs.com/package/bedrock | CC-MAIN-2016-36 | en | refinedweb |
Frameworker's Basics
of Setting up and Using Error Loggers
More esoteric details may be found in Further Options for the Frameworker
The framework, outside the context of any ordinary module, should get an instance by invoking the ELadministrator::instance() method. It will then use methods of this to establish how to ... | http://www.fnal.gov/docs/working-groups/fpcltf/Pkg/ErrorLogger/doc/html/framework.html | CC-MAIN-2016-36 | en | refinedweb |
C program to convert decimal to binary: c language code to convert an integer from decimal number system(base-10) to binary number system(base-2). Size of integer is assumed to be 32 bits. We use bitwise operators to perform the desired task. We right shift the original number by 31, 30, 29, ..., 1, 0 bits using a loop... | http://www.programmingsimplified.com/c/source-code/c-program-convert-decimal-to-binary | CC-MAIN-2016-36 | en | refinedweb |
{-| Use `View`s and `Controller`s` that interleaves lines from standard input with periodic ticks * A `View` that. -} {-# LANGUAGE RankNTypes #-} module MVC ( -- * Controllers -- $controller Controller , asInput , keeps -- * Views -- $view , View , asSink , handles -- * Models -- $model , Model , asPipe -- * MVC -- $mv... | http://hackage.haskell.org/package/mvc-1.0.0/docs/src/MVC.html | CC-MAIN-2016-36 | en | refinedweb |
Introduction
In this article we are going to describe one of the important classes of the util package in Java. So we explain the use of the BitSet class test; also what is the need of the bit class. A BitSet class creates a special type of array that holds bit values. This array can increase in size as needed. This ma... | http://www.c-sharpcorner.com/UploadFile/433c33/working-with-bitset-class-in-java/ | CC-MAIN-2016-36 | en | refinedweb |
Tax
Have a Tax Question? Ask a Tax Expert
Welcome to Just Answer. I am here to help you resolve your tax and finance concerns. Please feel free to ask anytime you need extra help.
Losses can only be claimed if they were attributed to previously taxed income. Accordingly, there is no loss here since you were never taxed... | http://www.justanswer.com/tax/4ew08-husbands-aunts-sold-fathers-house-when-assumed.html | CC-MAIN-2016-36 | en | refinedweb |
No software is an island. Every piece of code, dating right back to K&R’s “Hello,
world!” C program relies on another program (in the K&R case, the standard I/O
library). Over the last thirty years we’ve moved through the genesis of the “object
ecosystem” to the point where we couldn’t imagine doing things any other wa... | https://blogs.msdn.microsoft.com/tims/2003/10/27/wsv201-indigo-overview/ | CC-MAIN-2016-36 | en | refinedweb |
These were landed recently and block bug 650411 which wants to assert that all access to a JSRuntime comes from a single owning thread.
Fear not, bent has a plan!
Created attachment 551272 [details] [diff] [review]
Patch, v1
Here's the best option I think. I went with this approach because we're about to split workers ... | https://bugzilla.mozilla.org/show_bug.cgi?id=676376 | CC-MAIN-2016-36 | en | refinedweb |
Finding list item, table cell, tree node, or control by location973901 Nov 18, 2012 10:46 PM
One of my favorite features about swing was the ability to get a UI component reference via Container.getComponentAt(int x, int y), or a particular list item via JList.locationToIndex(Point p) (or other similar methods). I have... | https://community.oracle.com/thread/2467427?tstart=165 | CC-MAIN-2016-36 | en | refinedweb |
* Ralf W. Grosse-Kunstleve (rwgk at yahoo.com) [20051201 18:42]: > > Thanks for pointing out the aliasing problems! Could you help us understanding > how the problem could be fixed? E.g., this is the code in str.cpp: > > return (detail::new_reference)PyObject_CallFunction( > (PyObject*)&PyString_Type, "(O)", > arg_.ptr... | https://mail.python.org/pipermail/cplusplus-sig/2005-December/009570.html | CC-MAIN-2016-36 | en | refinedweb |
WSPConnect function
The WSPConnect function establishes a connection to a peer, exchanges connect data, and specifies needed quality of service based on the supplied flow specification.
Syntax
Parameters
- s [in]
Descriptor identifying an unconnected socket.
- name [in]
Name of the peer to which the socket in the socka... | https://msdn.microsoft.com/en-us/library/windows/desktop/ms742272(v=vs.85).aspx | CC-MAIN-2016-36 | en | refinedweb |
You.
I will not go into much details about "Oslo" Modeling Platform, as I cannot define it better than "Oslo" SDK
I will quote one more definition from MS Developer Center, "Oslo" modeling platform contains the following parts:
A visual design tool (Microsoft code name “Quadrant”) that enables people to design business... | http://blog.devarchive.net/2008_11_01_archive.html | CC-MAIN-2016-36 | en | refinedweb |
Groovy 1.8 provides AST Transformations for annotation-based logged injection for four of the most popular Java logging frameworks: the standard java.util.logging, Log4j, Apache Commons Logging, and Simple Logging Facade for Java (SLF4J). The annotation is different for each of these logging frameworks, but the effect ... | http://marxsoftware.blogspot.com/2011/05/easy-groovy-logger-injection-and-log.html | CC-MAIN-2016-36 | en | refinedweb |
Imagine you have a dialog, where you can enter text and other data related to the text. While the text should be formatted, the normal data entries should not. So you place a toolbar into your dialog, that has all the formatting buttons you need and find out, that it will dock only at the edges of your dialog. But I (t... | http://www.codeproject.com/Articles/3820/A-Toolbar-in-the-middle-of-elsewhere?fid=14929&df=90&mpp=25&sort=Position&spc=Relaxed&tid=523330 | CC-MAIN-2016-36 | en | refinedweb |
Whenever you have an efficient government you have a dictatorship.
HTS costs up to $300 a month to operate. We need your help!
10/10
pretty good article, however i think there were some spots a comma or period might have done well, because i would be reading and get hung up thinking "this doesn't make sense" until i re... | http://www.hackthissite.org/articles/read/999 | CC-MAIN-2016-36 | en | refinedweb |
Scrap.
The telnet console is like a regular Python shell running inside the Scrapy process, so you can do anything from it including importing new modules, etc.
However, the telnet console comes with some default variables defined for convenience:
Here are some example tasks you can do with the telnet console:
You can ... | http://readthedocs.org/docs/scrapy/en/latest/topics/telnetconsole.html | crawl-003 | en | refinedweb |
AJAX & ReportViewer
- Friday, March 09, 2007 2:11 PM
Hi,
My problem is:
I want use AJAX components (AJAXControlToolkit) and it works fine. But when I put ReportViewer on my page strange things happens. ReportViewer or AjaxControls don't work properly, or even don't work at all.
I don't know what to do... Help me plz...... | http://social.msdn.microsoft.com/Forums/en-US/vsreportcontrols/thread/3c555eb9-6bc2-4155-8233-67462d45fdd1 | crawl-003 | en | refinedweb |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.