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 |
|---|---|---|---|---|---|
BondWorks
The past week was a terrible example in the emotional swings a city, a country, and most of the world could go through in very short time span. The G-8 Chieftains meeting was rudely overshadowed by the terrorist bombing of the London transit system. Just one day after the IOC announced that London has won the... | http://www.safehaven.com/article/3434/bondworks | CC-MAIN-2016-44 | refinedweb | 876 | 62.98 |
Reverseme Windows Keygen
June 22, 2010 Leave a comment
This one was challenging for me, and took me several hours, but was fun. I got caught up on certain parts that may not have been too difficult, but, yeah…
You can download the executable here Ice9.zip.
The first thing I noticed is probably the ‘trick’ which was sim... | https://webstersprodigy.net/tag/crackmes/ | CC-MAIN-2019-43 | refinedweb | 369 | 68.3 |
It would seem to be less obvious to find since it goes against the expectations of current developers and lead to more follow-up efforts. On 04.08.2010, at 14:30, Stefan Monnier <address@hidden> wrote: >> The CL manual documents mapc accepting multiple sequences, but I always >> get the built-in version. I was told abo... | http://lists.gnu.org/archive/html/bug-gnu-emacs/2010-08/msg00166.html | CC-MAIN-2014-52 | refinedweb | 121 | 61.46 |
Learn how easy it is to sync an existing GitHub or Google Code repo to a SourceForge project! See Demo
I'm using a form with form validator.
When validation error occurs on a page I'd like to log this event along
with ip-address from which a request was made. The problem with this is
that validator knows nothing about ... | http://sourceforge.net/p/webware/mailman/webware-discuss/thread/20030210075557.GA30902@malva.ua/ | CC-MAIN-2015-18 | refinedweb | 140 | 60.92 |
How to enumerate controls for Dropbox
By
VeeDub, in AutoIt GUI Help and Support
Recommended Posts
Recently Browsing 0 members
No registered users viewing this page.
- By rudi
Hello,
the following script is running quite nicely for a friend of mine doing a year of work and travel to have a backup at home for all the pic... | https://www.autoitscript.com/forum/topic/201902-how-to-enumerate-controls-for-dropbox/page/2/?tab=comments | CC-MAIN-2020-40 | refinedweb | 786 | 55.07 |
Help:Files
File on Wikipedia means a data file for an image, a video clip, or an audio clip, including document length clips; or a midi file (a small, computer-instructions file). A page for the file will contains a comprehensive description.
Search for files, or upload your own file. (See Uploading files below.) A sea... | https://infogalactic.com/info/Help:Files | CC-MAIN-2017-39 | refinedweb | 1,296 | 62.17 |
Technical Articles
Importing @sap/cds common.cds to your CAP project using the CDS Graphical Modeler
SAP CDS ships a common.cds file that includes various aspects that can be used in your CDS model. In this blog post, we’ll demonstrate how to import the @sap/cds common.cds into your CDS model and how to use the aspects... | https://blogs.sap.com/2021/05/06/importing-cds-common-aspects-to-your-cds-model/ | CC-MAIN-2022-27 | refinedweb | 265 | 54.36 |
def home_page(request): return render(request, 'home.html', {'form': ItemForm()})
This blog post is a first rough draft of a planned appendix to my book. It follows on from Chapter 9, which is all about forms and validation. You can take a look at it here
If you want to check out the code to have a play with the exampl... | http://www.obeythetestinggoat.com/testing-django-class-based-generic-views.html | CC-MAIN-2021-17 | refinedweb | 1,818 | 67.25 |
Printing variable name
How would I return a variable name in a function. E.g. If I have the function:
def mul(a,b): return a*b a = mul(1,2); a b = mul(1,3); b c = mul(1,4); c
This would return:
2 3 4
I would like it to return:
a = 2 b = 3 c = 4
How would I do this?
One answer could be:
(Sorry, but this is strictly spea... | https://ask.sagemath.org/question/40862/printing-variable-name/?sort=oldest | CC-MAIN-2019-43 | refinedweb | 172 | 78.59 |
Just want the component? Find it at GitHub
Possibly the most frequently re-implemented code across any React component is that used to pass properties through to child components. This stems from the fact that you generally need some sort of input to make the component useful, while you don’t want these component-speci... | http://jamesknelson.com/building-a-property-passthrough-higher-order-component-for-react/ | CC-MAIN-2017-34 | refinedweb | 1,435 | 54.42 |
TTY_IOCTLSection: Linux Programmer's Manual (4)
Updated: 2002-12-29
Index Return to Main Contents
NAMEtty ioctl - ioctls for terminals and serial lines
SYNOPSIS
int ioctl(int fd, int cmd, ...);
DESCRIPTIONThe ioctl() call for terminals and serial ports accepts many possible command arguments. Most require a third argum... | http://www.thelinuxblog.com/linux-man-pages/4/tty_ioctl | CC-MAIN-2014-15 | refinedweb | 417 | 54.93 |
A service for placing prioritised packages with expiry times on a queue and having a consumer notified of the packages
Project Description
A service for placing prioritised packages with expiry times on a queue and having a consumer notified of the packages
How it works
This service monitors a Redis sorted set and call... | https://pypi.org/project/kamikaze/ | CC-MAIN-2018-13 | refinedweb | 356 | 52.94 |
ContentsWhat is log4net? Advantages of log4net.To do logging using log4net.dll in CF 2.0 we need to do a couple of things. Use a new Device Application project from Smart device project in Visual Studio 2008. Convert Log4net.dll into a .Net Compact Framework 2.0 Class Library (*.dll).Add the new log4netCF.dll to the pr... | http://www.c-sharpcorner.com/UploadFile/cb88b2/logging-using-log4net-in-compact-framework-2-0-in-visual-stu/ | CC-MAIN-2013-48 | refinedweb | 933 | 76.93 |
unless I've messed something, this is the usual python behavior for
loading modules. The problem is that your Root is not in your sys
path. You could add it to your path, it in your index.psp you could do
something like
<%
import sys
if [ull path to root] not in sys.path:
sys.path.append([full path to root])
%>
That sh... | http://sourceforge.net/p/webware/mailman/webware-discuss/thread/20041031185414.23040.qmail@webmail03.mesa1.secureserver.net/ | CC-MAIN-2015-32 | refinedweb | 385 | 52.26 |
Bugtraq
mailing list archives
| There seemed to be no patch for Linux kernel to remove execute permission
| from the stack (to prevent most buffer overflow exploits), so I decided to
| make one, I include it at the end of this message. I heard some rumours that
| GCC assumes stack frame to be executable when dealing wi... | http://seclists.org/bugtraq/1997/Apr/32 | CC-MAIN-2014-42 | refinedweb | 362 | 63.22 |
Matthew Schmidt replied on Fri, 2008/02/01 - 7:51am
Daniele Gariboldi replied on Fri, 2008/02/01 - 9:39am
I use seam (+JSF 1.2 + facelets + richfaces) + hibernate + tomcat + spring.
I started with jsf 1.1 and had to add a lot of 3rd party libs to solve common problems with JSF and web development.
Spring was a must fr... | http://java.dzone.com/news/seam-201-released | CC-MAIN-2014-41 | refinedweb | 4,419 | 71.95 |
On 9/19/2010 1:37 PM, mafeusek at gmail.com wrote: > > Hallo Group Members. From time to time I see in python code following > notation that (as I believe) extends namespace of MyClass. No, it does not affect MyClass, just the instance dict. > class MyClass: > def __init__(self): > self.__dict__["maci"]=45 Have you see... | https://mail.python.org/pipermail/python-list/2010-September/587628.html | CC-MAIN-2016-44 | refinedweb | 101 | 72.12 |
Depth First Search (DFS)
Authors: Siyong Huang, Benjamin Qi
Contributors: Andrew Wang, Jason Chen
Recursively traversing a graph.
From the second resource:
Depth-first search (DFS) is a straightforward graph traversal technique. The algorithm begins at a starting node, and proceeds to all other nodes that are reachable... | https://usaco.guide/silver/dfs?lang=cpp | CC-MAIN-2022-40 | refinedweb | 519 | 53.31 |
Recently, tests.” Tad is a practitioner and proponent of Test-After Development. When you practice Test-After Development, you write application code first and then you write a unit test that tests the application code.
From the perspective of someone who practices Test-Driven Development, this gets things backwards. I... | https://stephenwalther.com/archive/2009/04/08/test-after-development-is-not-test-driven-development | CC-MAIN-2021-31 | refinedweb | 9,354 | 63.09 |
I've been trying to push for PHPTAL use in several projects in the last years but I haven't been very successful. I ended up writing my own version from scratch a couple of months ago, leveraging new PHP 5.3 features and the bundled XML parsers + Tidy for legacy templates.
The main point in implementing my own version ... | https://www.mail-archive.com/phptal@lists.motion-twin.com/msg00244.html | CC-MAIN-2018-39 | refinedweb | 566 | 58.42 |
Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
A useful feature of Seam DAO components is that they can be declaratively instantiated in the Seam components.xml file, so you do not even need to write any data access code. Let’s look at an example for... | http://my.safaribooksonline.com/book/programming/java/9780137151660/the-seam-crud-application-framework/ch16lev1sec3 | CC-MAIN-2013-48 | refinedweb | 108 | 53.71 |
Google Groups
First steps with Julia, performance tips
Wes McKinney
May 1, 2012 12:36 PM
Posted in group:
julia-dev
hey guys,
I plan to have a tinker with Julia now and then, being mainly a
Python/Cython hacker. Compiled Julia from git master today in advance
of Stefan's talk tonight.
I was curious if Julia does any op... | https://groups.google.com/forum/?_escaped_fragment_=msg/julia-dev/KDNaN1ZCcck/bLbeqS_ZlBEJ | CC-MAIN-2018-13 | refinedweb | 461 | 67.28 |
How is data deleted? Aerospike separates the data into two parts: index and value. The index is always stored in DRAM, the value can be stored in either SSD or DRAM (with or without disk for persistence). When a record is deleted, the reference to it is removed from the index. The actual data is not removed from the di... | https://discuss.aerospike.com/t/how-is-data-deleted/183 | CC-MAIN-2018-30 | refinedweb | 254 | 83.66 |
in reply to Speeding up/parallelizing hundreds of HEAD requests
I'm taking another approach to this problem... based on the comments from theorbtwo. The current code looks like this:
sub gimme_guten_tables {
my ($decoded, $maximum) = @_;
$decoded =~ s,<li>\n(.*?)\n</li>,$1,g;
$decoded =~ s,(.*?)<br><description>.*?</de... | http://www.perlmonks.org/index.pl/jacques?node_id=639482 | CC-MAIN-2018-17 | refinedweb | 732 | 56.45 |
Web 2.0, Meet JavaScript 2.0
Well I suppose it's an undeniable fact about us programmer-types - every now and then we just can't help but get excited about something really nerdy. For me right now, that is definitely JavaScript 2.0. I was just taking a look at the proposed specifications and I am really, truly excited ... | http://css.dzone.com/news/web-20-meet-javascript-20 | crawl-002 | refinedweb | 615 | 59.64 |
ATTR, VOP_SETATTR — get and set attributes on a file or directory
#include <sys/param.h>
#include <sys/vnode.h>
int
VOP_GETATTR(struct vnode *vp, struct vattr *vap, struct ucred *cred);
int
VOP_SETATTR(struct vnode *vp, struct vattr *vap, struct ucred *cred);.
VOP_GETATTR() returns 0 if it was able to retrieve the attr... | http://gnu.wiki/man9/VOP_GETATTR.9freebsd.php | CC-MAIN-2018-22 | refinedweb | 107 | 51.95 |
Commit e8f3010f authored byBrowse files
Committed by
Catalin Marinas
arm64/efi: isolate EFI stub from the kernel proper
Since arm64 does not use a builtin decompressor, the EFI stub is built into the kernel proper. So far, this has been working fine, but actually, since the stub is in fact a PE/COFF relocatable binary ... | https://gitlab.flux.utah.edu/xcap/xcap-capability-linux/-/commit/e8f3010f7326c00368dbc057bd052bec80dfc072 | CC-MAIN-2021-25 | refinedweb | 143 | 51.52 |
Advanced Namespace Tools blog 26 February 2017
Implementing /srv Namespaces Part Three
Even though the patch for private /srv namespaces was working right, there were a couple details that I felt weren't quite right. One was the calls to srvclose that happened during process exit after the sgrp data structure was nille... | http://doc.9gridchan.org/blog/170226.srv.implement.pt3 | CC-MAIN-2017-22 | refinedweb | 848 | 59.03 |
Hi,
I would like to initialize a zero loss tensor which will be used to accumulate losses dynamically based on some condition. Sometimes, there will not be any loss accumulation and in this case, when I backpropagate, it throws the following run time error
RuntimeError: element 0 of tensors does not require grad and do... | https://discuss.pytorch.org/t/how-to-initialize-zero-loss-tensor/86888 | CC-MAIN-2022-21 | refinedweb | 132 | 58.89 |
[~Solved]How to ignore the system's DPI setting?
- Asperamanca
I had a puzzling effect in a GraphicsScene, where I use QGraphicsTextItem. There are two items which show the same data. One of them shows a bigger font that the other.
!(Two texts)!
(The plain texts are different in the screenshot to make the items more ea... | https://forum.qt.io/topic/24674/solved-how-to-ignore-the-system-s-dpi-setting | CC-MAIN-2018-26 | refinedweb | 295 | 63.9 |
Fraction Simplifier [TUT] [C++] [Python!!]
INTRADUCKTION
Hello Hello, it is I, the famous Whippingdot!! Thank you for the roses, thank you. Anyway, this is a tutorial on creating a fraction simplifier. This is going to be a
three four(maybe) part series of creating calculators. It gets harder and longer as time goes bu... | https://replit.com/talk/learn/Fraction-Simplifier-TUT-C-Python/117946 | CC-MAIN-2022-21 | refinedweb | 2,446 | 66.88 |
This is your resource to discuss support topics with your peers, and learn from each other.
04-27-2010 02:48 AM - edited 04-27-2010 03:21 AM
Hello,
I have the following classes:
public class QueueScreen extends MainScreen{}
public class GetQueue {
QueueScreen screen;
public GetQueue(QueueScreen screen){
this.screen = s... | https://supportforums.blackberry.com/t5/Java-Development/Trouble-invoking-makeMenu-from-a-separate-non-Screen-class/m-p/494211 | CC-MAIN-2016-36 | refinedweb | 329 | 72.76 |
import "go.uber.org/multierr"
Package multierr allows combining one or more errors together.
Errors can be combined with the use of the Combine function.
multierr.Combine( reader.Close(), writer.Close(), conn.Close(), )
If only two errors are being combined, the Append function may be used instead.
err = multierr.Appen... | https://godoc.org/go.uber.org/multierr | CC-MAIN-2018-51 | refinedweb | 588 | 50.53 |
by Oliver Choy
Created
November 21, 2012
There are times when custom namespace is needed in a system for organization and management purposes. Without registering the namespace with CRX, properties with custom namespace would not be accepted. In this blog post I will talk about two ways of registering a namespace in CR... | http://blogs.adobe.com/contentmanagement/2012/11/21/how-to-add-custom-namespace-in-crx/ | CC-MAIN-2017-34 | refinedweb | 255 | 64.2 |
I could not see a gaussian filter in the python imaging library, but its simple enough to write one…
import ImageFilter
from PIL import Image
from numpy import *
def gaussian_grid(size = 5):
"""
Create a square grid of integers of gaussian shape
e.g. gaussian_grid() returns
array([[ 1, 4, 7, 4, 1],
[ 4, 20, 33, 20, 4],... | https://rcjp.wordpress.com/2008/04/02/gaussian-pil-image-filter/ | CC-MAIN-2017-26 | refinedweb | 255 | 65.22 |
Prevent Indexing Duplicates¶
When indexing documents, it is common to have duplicate documents received by the search system. One can either remove the duplicates before sending the duplicates to Jina or leave it to Jina for handling the duplicates.
To prevent indexing duplicates, one needs to add
_unique for the
uses_... | https://docs.jina.ai/master/chapters/prevent_duplicate_indexing/index.html | CC-MAIN-2021-04 | refinedweb | 333 | 50.84 |
I am trying to create a loop in Python with numpy that will give me a variable "times" with 5 numbers generated randomly between 0 and 20. However, I want there to be one condition: that none of the differences between two adjacent elements in that list are less than 1. What is the best way to achieve this? I tried wit... | https://codedump.io/share/F77wAOnULgT3/1/constraining-random-number-generation-in-python | CC-MAIN-2017-17 | refinedweb | 172 | 76.72 |
Submission + - BBC iPlayer to stream for Linux & Mac users->
Link to Original Source
.
*sigh* Charon (my server box) was up and down last night. What I initially put down to hardware failure actually appears to be driver/kernel related. Under heavy load the wifi driver managed to hang the networking stack requiring (si... | http://slashdot.org/~rjw57/tags/dupe | CC-MAIN-2015-35 | refinedweb | 233 | 64.51 |
This article is the next step in Catharsis documented tutorial. Catharsis is a web-application framework gathering best-practices, using ASP.NET MVC (preview 5), NHibernate 2.0. All needed source code you can find here.
At this chapter you can find summary of the Entity layer. From my experience, what I always wanted a... | http://www.codeproject.com/Articles/29616/Web-Application-Framework-Catharsis-Part-VII-Entit?msg=2756898 | CC-MAIN-2015-22 | refinedweb | 1,832 | 55.54 |
Sailfin in detail : Part 2 annotated servlets
By prasads on Feb 11, 2009
There are two ways in which we can define a SIP Servlet to be specific in a SIP Application. One of them is the traditional way of defining it in the sip.xml using the
> servlet <element and the other one is to use the @SipServlet annotation..
Thi... | https://blogs.oracle.com/prsad/entry/sailfin_in_detail_part_2 | CC-MAIN-2015-27 | refinedweb | 557 | 56.25 |
I have found this Python function for testing whether or not a number is prime; however, I cannot figure out how the algorithm works.
def isprime(n):
"""Returns True if n is prime"""
if n == 2: return True
if n == 3: return True
if n % 2 == 0: return False
if n % 3 == 0: return False
i = 5
w = 2
while i * i <= n:
if n ... | https://codedump.io/share/3M8Ex0Irqg2F/1/why-does-this-prime-test-work | CC-MAIN-2017-30 | refinedweb | 480 | 76.05 |
New iOS App for the OW – Beta testers wanted
- SeeTheInvisible last edited by
Hey OW riders,
I have some good news for you: A new app for the Onewheel with very useful alarming features is about to be released to the Apple app store.
As this app provides features which are critical when it comes to riders safety, I dec... | https://community.onewheel.com/topic/3834/new-ios-app-for-the-ow-beta-testers-wanted | CC-MAIN-2021-04 | refinedweb | 2,006 | 72.29 |
Is it normal? Time Scale is set to 4, Fixed Timestep to 0.1 and Maximum Allowed Time to 5. I've tried to also change these values, didn't work. The ball itself is moving only because of the platform. Update isn't overused.
This is my script of rotation with mouse:
public class MouseRotate : MonoBehaviour {
public float... | https://answers.unity.com/questions/826472/object-dissapears-when-moving-fast.html | CC-MAIN-2019-35 | refinedweb | 374 | 68.47 |
laserlight: i will post the info when i go home, the MinGW is in my home computer.
although outdated (per se Elysia) in office i use MSVS 2003 .Net.
Printable View
laserlight: i will post the info when i go home, the MinGW is in my home computer.
although outdated (per se Elysia) in office i use MSVS 2003 .Net.
Yeah. Y... | http://cboard.cprogramming.com/tech-board/101057-gplusplus-very-slow-when-compared-cl-2-print.html | CC-MAIN-2013-48 | refinedweb | 641 | 77.53 |
This page contains an archived post to the Java Answers Forum made prior to February 25, 2002.
If you wish to participate in discussions, please visit the new
Artima Forums.
why do women always say UPS guys are sexy?
Posted by Chin Loong on November 20, 2001 at 6:11 AM
1) What classpath i should set?
both. set your cla... | https://www.artima.com/legacy/answers/Nov2001/messages/182.html | CC-MAIN-2017-51 | refinedweb | 121 | 66.94 |
I posted about Giving a character a new identity (by giving it some secondary weight).
Now that post, while true, only tells part of the story.
Now I am going to tell the other part....
Take the following code and you may be able to see where I am going before you even look at the results:'));
The results? They will b... | http://blogs.msdn.com/michkap/archive/2007/02/17/1701561.aspx | crawl-002 | refinedweb | 1,389 | 66.23 |
Hello, I am trying to create a program that plays a game that has four different coloured blocks (red, green, blue, and yellow). The computer hides three of these coloured blocks from the user and then the user will try to guess the colours and order of the blocks. After display the colour of the three hidden blocks, t... | http://www.javaprogrammingforums.com/object-oriented-programming/15992-guessing-game.html | CC-MAIN-2016-18 | refinedweb | 371 | 51.95 |
url_audio_stream 1.0.0+3
url_audio_stream #
Dart plugin to live stream audio URLs. The package will accept both HTTP and HTTPs URLs for streaming. Specifics will be discussed below for native designs, limitations, and implementations. Any help would be greatly appreciated if possible!
Usage #
Add the dependency
dev_dep... | https://pub.dev/packages/url_audio_stream | CC-MAIN-2019-51 | refinedweb | 364 | 58.89 |
This is the second module in our series to help you learn about Python and its use in machine learning (ML) and artificial intelligence (AI).
Now that you know some of the basics of Python, which were discussed in the first module, we can go a bit deeper, with the lists and tuples data structures and see how to work wi... | https://codeproject.freetls.fastly.net/Articles/5270746/Python-Tuples-Lists-Destructuring-and-Loops?pageflow=FixedWidth | CC-MAIN-2021-49 | refinedweb | 1,200 | 68.3 |
While relational (comparison) of the multiple numbers we picked match the winning numbers. In a lottery with 6 numbers, this would involve 6 comparisons, all of which have to be true. Other times, we need to know whether any one of multiple conditions is true. For example, we may decide to skip work today if we’re sick... | http://www.learncpp.com/cpp-tutorial/36-logical-operators/ | CC-MAIN-2017-22 | refinedweb | 3,487 | 73.88 |
How to Check if a Variable Exists in Python
In this article, we will learn to check the existence of variables in Python. We will use some built-in functions in Python and some custom codes including exceptions of the functions as well. Let's first have a quick look over what are variables and then how many types of va... | https://www.studytonight.com/python-howtos/how-to-check-if-a-variable-exists-in-python | CC-MAIN-2022-21 | refinedweb | 685 | 61.56 |
table of contents
NAME¶
alarm - set an alarm clock for delivery of a signal
SYNOPSIS¶
#include <unistd.h>
unsigned int alarm(unsigned int seconds);
DESCRIPTION¶
alarm() arranges for a SIGALRM signal to be delivered to the calling process in seconds seconds.
If seconds is zero, any pending alarm is canceled.
In any even... | https://dyn.manpages.debian.org/testing/manpages-dev/alarm.2.en.html | CC-MAIN-2022-21 | refinedweb | 154 | 66.23 |
fix
I previously reported:
I still have this issue. As I can't find the way add new comment I open new bug.
Look for history of 'maaP.h':
revision 1.22
date: 2003/10/26 13:03:24; author: cheusov; state: Exp; lines: +10 -2
checking for presence of getopt(3) and SIZEOF_VOID_P define
@@ -103,9 +109,11 @@
# include <getopt... | https://sourceforge.net/p/dict/bugs/23/ | CC-MAIN-2017-17 | refinedweb | 139 | 77.94 |
Physics::Unit - Manipulate physics units and dimensions..
This page.
Describes the Scalar class and all of the type-specific classes that derive from Scalar.
Describes the command-line utility that is included with this module.
Table of all of the units predefined in the unit library, alphabetically by name.
Tables lis... | http://search.cpan.org/~klortho/Physics-Unit-0.53/lib/Physics/Unit.pm | CC-MAIN-2017-04 | refinedweb | 674 | 66.13 |
(For more resources on Python, see here.)
So let's get on with it!
Installation prerequisites
Before we jump in to the main topic, it is necessary to install the following packages.
Python
In this article, we will use Python Version 2.6, or to be more specific, Version 2.6.4. It can be downloaded from the following loc... | https://www.packtpub.com/books/content/python-image-manipulation | CC-MAIN-2015-14 | refinedweb | 5,132 | 59.9 |
Hello all. I am new to C programming and was wondering if it is possible to convert an integer value to char or string. I checked a book, but only found documentation to convert from string to integer. Thanks in advance..
A char is an integer type already.sprintf
--!
int to char is done by simply casting:
int i = 10;
c... | https://www.allegro.cc/forums/thread/588784/631054 | CC-MAIN-2016-36 | refinedweb | 475 | 76.62 |
15 August 2008 14:16 [Source: ICIS news]
LONDON (ICIS news)--Black Sea prilled urea prices have weakened $20-25/tonne (€13-17/tonne) on the back of limited buying activity, traders said on Friday.
With Indian buyers yet to re-emerge and the holiday/harvest season evident in the northern hemisphere, urea trade has been ... | http://www.icis.com/Articles/2008/08/15/9149427/black-sea-urea-weakens-20-25t-in-quiet-market.html | CC-MAIN-2014-15 | refinedweb | 186 | 50.06 |
bos@grastorpsik.se changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|FIXED |
--- Comment #7 from bos@grastorpsik.se 2010-08-09 22:41:40 EDT ---
This bug (namespace polluting) still exists in 2.3.6 (out-of-the-box
configuratio... | http://mail-archives.apache.org/mod_mbox/httpd-bugs/201008.mbox/%3C201008100241.o7A2fj2s019999@thor.apache.org%3E | CC-MAIN-2017-13 | refinedweb | 297 | 53.68 |
XUL::Gui - render cross platform gui applications with firefox from perl
version 0.63
this module is under active development, interfaces may change.
this code is currently in beta, use in production environments at your own risk
use XUL::Gui; display Label 'hello, world!'; # short enough? remove "Label" for bonus poin... | http://search.cpan.org/~asg/XUL-Gui-0.63/lib/XUL/Gui.pm | CC-MAIN-2018-09 | refinedweb | 3,752 | 52.43 |
The QtXtWidget class allows mixing of Xt/Motif and Qt widgets. More...
#include <QtXtWidget>
This class is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.
Inherits QWidget.
The QtXtWidget class allows mixing of Xt/Motif and Qt widgets.
QtXtWidget acts as a brid... | http://doc.qt.nokia.com/solutions/4/qtmotifextension/qtxtwidget.html | crawl-003 | refinedweb | 392 | 67.65 |
run java program
how to run java program i have jar file.
in jar i have so many classes.in one of file i want modify .after modifying file i want replce in jar.
please help me to how to generate class and how to replace to execute or run the program. For ex, If you have the following java program
java not run on my pc... | http://roseindia.net/tutorialhelp/comment/42691 | CC-MAIN-2014-15 | refinedweb | 1,519 | 64 |
statement
- Q: Does importing all classes in a package make my object file (.class or .jar) larger?
A: No, import only tells the compiler where to look for symbols.
- Q: Is it less efficient to import all classes than only the classes I need?
A: No. The search for names is very efficient so there is no effective diff... | http://www.fredosaurus.com/notes-java/language/10basics/import.html | CC-MAIN-2021-49 | refinedweb | 143 | 65.83 |
On Fri, Jan 04, 2013 at 08:01:02PM -0200, Eduardo Habkost wrote: > This is a cleanup that tries to solve two small issues: > > - We don't need a separate kvm_pv_eoi_features variable just to keep a > constant calculated at compile-time, and this style would require > adding a separate variable (that's declared twice be... | https://www.redhat.com/archives/libvir-list/2013-January/msg00261.html | CC-MAIN-2014-15 | refinedweb | 270 | 50.06 |
AWS Adventures: Infrastructure as Code and Microservices (Part 3)
AWS Adventures: Infrastructure as Code and Microservices (Part 3)
It's testing time! Now that the basics are set up in AWS, it's time to make sure the pieces work. We'll run through unit tests, integration tests, and plenty more.
Join the DZone community... | https://dzone.com/articles/aws-adventures-infrastructure-as-code-and-microservices-part-3 | CC-MAIN-2020-16 | refinedweb | 3,135 | 58.18 |
Introduction
Seaborn is one of the most widely used data visualization libraries in Python, as an extension to Matplotlib. It offers a simple, intuitive, yet highly customizable API for data visualization.
In this tutorial, we'll take a look at how to plot a Bar Plot in Seaborn. Seaborn
Plotting a Bar Plot in Seaborn i... | https://stackabuse.com/seaborn-bar-plot-tutorial-and-examples/ | CC-MAIN-2021-17 | refinedweb | 1,156 | 65.73 |
Hi I need to send data from a CSV file, one line at a time via RS232 when requested from robot controller. I was thinking the easiest way would be to use SD card with the CSV file and use RS232 shield. Not sure how to write the sketch to just send one line at a time each time a message is recieved from robot. Can anyon... | https://forum.arduino.cc/t/how-to-send-position-data-to-industrial-robot/69537 | CC-MAIN-2022-21 | refinedweb | 602 | 75.91 |
In this notebook, we'll describe, implement, and test some simple and efficient strategies for sampling without replacement from a categorical distribution.
Given a set of items indexed by $1, \ldots, n$ and weights $w_1, \ldots, w_n$, we want to sample $0 < k \le n$ elements without replacement from the set.
Theory¶
T... | https://timvieira.github.io/blog/post/2019/09/16/algorithms-for-sampling-without-replacement/ | CC-MAIN-2021-10 | refinedweb | 1,048 | 70.6 |
I thought the suspend scene actuator is supposed to pause a scene, including all logic operations within that scene. Is this wrong? I have a script that keeps running after I pause the scene, which is causing an undesirable effect. Can anyone confirm what is actually paused with the suspend scene actuator?
Sounds your ... | https://blenderartists.org/t/blender-2-72-scene-and-mouse-actuator/621481 | CC-MAIN-2020-40 | refinedweb | 431 | 73.27 |
ConfigFile
Overview¶
Some applications need variable configurations.
For example, The configuration of account information for Twitter...
It's not good for publish if I implemented a program with a account information for Twitter, and it's not secure.
So, in this document we will show you a configuration file helper cl... | http://mbed.org/cookbook/ConfigFile | CC-MAIN-2013-20 | refinedweb | 484 | 62.14 |
0
I am in beginning Java and using Dr. Java to write my programs. I am trying to write an array that user input sets up the length of the array(#of students) that character grades are stored in. It is suppose to ask if you want a full print out, to update a students grade, or to exit. please let me exactly what is that... | https://www.daniweb.com/programming/software-development/threads/429107/basic-array | CC-MAIN-2017-43 | refinedweb | 439 | 61.02 |
oath_base32_decode man page
oath_base32_decode — API function
Synopsis
#include <oath.h>
int oath_base32_decode(const char * in, size_t inlen, char ** out, size_t * outlen);
Arguments
- const char * in
input string with base32 encoded data of length inlen
- size_t inlen
length of input base32 string in
- char ** out
po... | https://www.mankier.com/3/oath_base32_decode | CC-MAIN-2018-22 | refinedweb | 218 | 58.32 |
a .java file must be compiled into a .class file with the javac compiler. once you have the .class files, you can run those.
are you using the windows "run program" dialog box? if so, that's wrong - or at least, i've never heard of anyone doing it that way. Usually, once you have compiled the file.java into file.class,... | https://coderanch.com/t/405766/java/problems-running-programs-Textpad | CC-MAIN-2017-39 | refinedweb | 1,175 | 66.03 |
On Wed, Nov 15, 2000 at 12:30:53PM -0500, Adam C Powell IV wrote: > Hello, > > I have a package which depends on atlas-dev for non-PPC, and lapack-dev > for PPC, (atlas doesn't build on PPC because of a compiler bug). > > I noticed that freeamp has arches in Build-Depends, e.g. nasm [i386], > but putting this in Depend... | https://lists.debian.org/debian-mentors/2000/11/msg00078.html | CC-MAIN-2017-09 | refinedweb | 145 | 58.08 |
Re: IAR linker: too smart
- From: David Brown <david@xxxxxxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: 17 May 2006 17:54:11 +0200
Dirk Zabel wrote:
Hi,
I am using the IAR toolchain for our Renesas M16C based project. The device uses a lot of configuration data which are stored within an eeprom. In order to define the placement, I... | http://coding.derkeiler.com/Archive/General/comp.arch.embedded/2006-05/msg00933.html | CC-MAIN-2017-17 | refinedweb | 734 | 67.69 |
A widget that shows one of two icons depending on its state. More...
#include <Wt/WIconPair>
A widget that shows one of two icons depending on its state.
This is a utility class that simply manages two images, only one of which is shown at a single time, which reflects the current 'state'.
The widget may react to click... | http://www.webtoolkit.eu/wt/wt3/doc/reference/html/classWt_1_1WIconPair.html | CC-MAIN-2017-51 | refinedweb | 138 | 85.28 |
extern volatile unsigned long timer0_overflow_count;unsigned long hpticks (void){ return (timer0_overflow_count << 8) + TCNT0;}void loop() { int t1, t2; t1 = hpticks() * 4; t2 = hpticks() * 4; while (1) { if ((t2 - t1) >= pulse_interval) { process_pulse(); t1 = hpticks() * 4; } t2 = hpticks() * 4; }}
I'm pretty sure th... | http://forum.arduino.cc/index.php?topic=41125.msg299537 | CC-MAIN-2015-11 | refinedweb | 171 | 60.18 |
Red Hat Bugzilla – Bug 5310
Apache needs MULTIPLE_GROUPS option?
Last modified: 2008-05-01 11:37:51 EDT
I installed the Apache 1.3.6 package and modified the
configuration to run under a new user I created named
"httpd". httpd's primary group is also named "httpd", and
then it is a member of the "video" group as well.
... | https://bugzilla.redhat.com/show_bug.cgi?id=5310 | CC-MAIN-2018-34 | refinedweb | 324 | 67.86 |
Automated unit testing became very popular in the Java world and then marched victoriously into the .NET territory, thanks to an excellent tool called nUnit.
However, nUnit has one serious limitation: it works only with managed code. Good old C++ is not going anywhere, and we, C++ programmers, also want to enjoy the wo... | http://www.codeproject.com/Articles/16066/GenTestAsm-Run-Your-C-Tests-in-nUnit?msg=1813674 | CC-MAIN-2015-06 | refinedweb | 938 | 59.09 |
This class allows to include a set of layers in a database-side transaction, provided the layer data providers support transactions and are compatible with each other. More...
#include <qgstransaction.h>
This class allows to include a set of layers in a database-side transaction, provided the layer data providers suppo... | https://api.qgis.org/2.8/classQgsTransaction.html | CC-MAIN-2020-34 | refinedweb | 398 | 58.18 |
Zig is an open-source programming language designed for robustness, optimality, and clarity. Zig is aggressively pursuing its goal of overthrowing C as the de facto language for system programming. Zig intends to be so practical that people find themselves using it even if they dislike it.
This is a massive release, fe... | https://www.tefter.io/bookmarks/47072/readable | CC-MAIN-2020-05 | refinedweb | 11,502 | 56.66 |
Web server programs
CGI programs are executed by a web server program in response to a user request. Examples of web server programs include Apache ( ) which runs on all major operating systems and Internet Information Server (or IIS) which runs on Microsoft Windows only. Apache is the most popular web server by a very... | http://bcu.copsewood.net/python/notes8.html | CC-MAIN-2017-22 | refinedweb | 2,700 | 61.06 |
Use the following steps to prepare your system for the upgrade.
If you are upgrading Ambari as well as the stack, you must know the location of the Nagios servers for that process. Use the Services->Nagios-> Summary panel to locate the hosts on which they are running.
Use the Services view on the Ambari Web UI to stop ... | http://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.0.9.0/bk_using_Ambari_book/content/ambari-chap9-1_2x.html | CC-MAIN-2015-32 | refinedweb | 471 | 68.97 |
would like to merge this to core-8-5-branch. Any objections? Anyone who
>> would like to test it on Solaris 10 and/or OSX?
> Test passes on Solaris 10, threaded and not.
Sadly the news is not so good on OSX.
At least on Mac OS X 10.6.8 (Snow Leopard), the new test
unixforkevent-1.1 hangs on the trunk.
--
| Don Porter ... | https://sourceforge.net/p/tcl/mailman/tcl-core/?viewmonth=201308&viewday=2 | CC-MAIN-2018-22 | refinedweb | 601 | 62.38 |
import java.util.*; public class enrollment{ public static void main(String[]args){ int balance, payment; balance = 20000; String partial = "partial"; String full = "full"; System.out.print("\nEnter Name: "); Scanner st = new Scanner(System.in); String name = st.nextLine(); System.out.print("\nYour Remaining Balance is... | http://www.dreamincode.net/forums/topic/303110-simple-enrollment-java-program/page__pid__1762972__st__0 | CC-MAIN-2016-36 | refinedweb | 219 | 52.66 |
Scroll down to the script below, click on any sentence (including terminal blocks!) to jump to that spot in the video!
gstreamer0.10-ffmpeg
gstreamer0.10-plugins-goodpackages.
At this point... we have a directory with a PHP class inside. And, honestly, we could just move this into its own repository, put it on Packagis... | https://symfonycasts.com/screencast/symfony-bundle/bundle-services | CC-MAIN-2020-05 | refinedweb | 843 | 68.47 |
Below is a small and easy puzzle on multi-threading, ideal for beginners. And to be honest, title should have been “C Multithreading” since it uses pthreads, and not C++11 for threading.
#include <pthread.h> #include <unistd.h> #include <iostream> using namespace std; int i; void* f1(void*) { for (i = 0; i < 10; i+=2){... | http://vinayakgarg.wordpress.com/ | CC-MAIN-2014-15 | refinedweb | 156 | 74.29 |
In these days of Web 2.0, the line between outdated (and therefore obsolete) and retro (and therefore cool again) can get pretty blurred. Desktop Applications: outdated (unless they’re HTML-based or made by Google). Client/Server: retro (no green-screens please!). Tiered Design: retro (but only if at least two tiers ar... | http://thedailywtf.com/Articles/What,-Me-Layer.aspx | crawl-002 | refinedweb | 112 | 79.87 |
HASH(9) BSD Kernel Manual HASH(9)
hash - general kernel hashing functions
#include <sys/hash.h> uint32_t hash32_buf(void *buf, size_t len, uint32_t hash); uint32_t hash32_str(void *buf, uint32_t hash); uint32_t hash32_strn(void *buf, size_t len, uint32_t hash); uint32_t hash32_stre(void *buf, int end, char **ep, uint32... | http://mirbsd.mirsolutions.de/htman/i386/man9/hash.htm | crawl-003 | refinedweb | 175 | 70.43 |
Making Timeline Control for DataGrid In WPF Introduction
In this article we will see how we can make a Timeline control in WPF. Creating A WPF Project
Fire up Visual Studio 2010, create a WPF Application, and name it as
TimelineSample.
Here is the thing, we should build a user control that would display time or
times f... | http://www.c-sharpcorner.com/uploadfile/dpatra/making-timeline-control-for-datagrid-in-wpf/ | CC-MAIN-2015-18 | refinedweb | 654 | 72.26 |
frules 0.1.0
simple functional fuzzy rules implementation
Frules stands for **fuzzy/funtional rules**. It allows to work easily with
fuzzy rules and variables.
Installation:
pip install frules
## Linguistic variables and expressions
Expression is a core concept in frules. `Expression` class represents subrange
of [ling... | https://pypi.python.org/pypi/frules/0.1.0 | CC-MAIN-2015-32 | refinedweb | 713 | 57.77 |
Simple analysis in profiling tools of "new XML()" being passed a ~500k XML document show a few low-hanging fruit that drastically help reduce CPU time and memory usage. I'll attach patches for the simplest fixes I can see which actually make a big difference in real-world usage.
Created attachment 563931 [details] [dif... | https://bugzilla.mozilla.org/show_bug.cgi?id=691001 | CC-MAIN-2016-40 | refinedweb | 657 | 52.6 |
Calculate Area Circle Using Java Example
All programming language is designed to perform a mathematical operation. Java language is bundled with Math library for calculation in a simple and complex problem.
This tutorial will teach you on how your Java program Calculate the Area of a Circle based on user input value. T... | https://itsourcecode.com/free-projects/java-projects/calculate-area-circle-using-java/ | CC-MAIN-2021-49 | refinedweb | 309 | 50.84 |
import "go.mozilla.org/gopgagent"
Package gpgagent interacts with the local GPG Agent.
var ( ErrNoAgent = errors.New("GPG_AGENT_INFO not set in environment") ErrNoData = errors.New("GPG_ERR_NO_DATA cache miss") ErrCancel = errors.New("gpgagent: Cancel") )
Conn is a connection to the GPG agent.
NewConn connects to the G... | https://godoc.org/go.mozilla.org/gopgagent | CC-MAIN-2020-40 | refinedweb | 156 | 58.28 |
index - Java Beginners
in hand.
Write a Java GUI application called Index.java that inputs several... the number of occurrences of the character in the text.
Write a Java GUI... should be counted together. Store the totals for each letter in an array, and print
Array - Java Beginners
class ArrayExamples {
public static... | http://www.roseindia.net/tutorialhelp/comment/70792 | CC-MAIN-2014-52 | refinedweb | 2,809 | 58.28 |
JW is a badass mofo! Especially his FLIES mod.
Downloading
Nice script. Excellent watching some armour pinning us down getting wiped out
Had prob on dedi server though whilst using =BTC= revive, didnt work after player was revived, next time player had to avoid getting killed lol.. Anyways just thought I'd mention that... | http://www.armaholic.com/page.php?id=23139 | CC-MAIN-2017-26 | refinedweb | 110 | 59.9 |
Investors eyeing a purchase of Krispy Kreme Doughnuts Inc (Symbol: KKD) stock, but tentative about paying the going market price of $20.04/share, might benefit from considering selling puts among the alternative strategies at their disposal. One interesting put contract in particular, is the January 2016 put at the $18... | https://www.nasdaq.com/articles/commit-buy-krispy-kreme-doughnuts-18-earn-102-annualized-using-options-2015-04-02 | CC-MAIN-2020-50 | refinedweb | 394 | 61.87 |
CodeRush 13.1 includes a number of new features to make working with XAML easier.
The Declaration navigation provider is available in XAML code now. You can use it to navigate to:
With CodeRush 13.1 installed, Visual Studio’s XAML Intellisense is smarter and more capable. CodeRush suggestions are integrated with the In... | https://community.devexpress.com/blogs/markmiller/archive/2013/06/07/new-xaml-features-in-coderush-13-1-for-visual-studio.aspx | CC-MAIN-2017-26 | refinedweb | 1,157 | 63.7 |
Detect board type or availble services?
- misterlisty last edited by misterlisty
Is it possible to detect what radios are avaible on the board? I have some code that i wish to auto-enable/disable code based on whether the board has sigfox,lora,lte- me? Is their a inbuilt variable that will indicate this"?
File "boot.py... | https://forum.pycom.io/topic/2252/detect-board-type-or-availble-services/ | CC-MAIN-2019-35 | refinedweb | 326 | 68.06 |
Attack of the PHP clones: Drupal, HHVM, and Vagrant
For those wanting to give it a spin, Metal Toad has added HHVM support to our Vagrant box: github.com/metaltoad/trevor.!
For those wanting to give it a spin, Metal Toad has added HHVM support to our Vagrant box: github.com/metaltoad/trevor.?
The following is a rapid i... | https://www.metaltoad.com/taxonomy/term/114 | CC-MAIN-2020-16 | refinedweb | 173 | 65.22 |
At last some good news. Streaming subset of XInclude I was talking about gets blessing from the W3C XML Core WG. Here is what Jonathan Marsh (MSFT, editor of XInclude) writes:
It appears to be impossible to improve streamability without removing
functionality from XInclude. The WG decided instead to bless a kind of
"st... | http://www.tkachenko.com/blog/archives/2004/02/ | CC-MAIN-2014-15 | refinedweb | 1,901 | 57.37 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.