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 |
|---|---|---|---|---|---|
Yesterday Brian Hayes wrote a post about the distribution of primes. He showed how you could take the remainder when primes are divided by 7 and produce something that looks like rolls of six-sided dice. Here we apply the chi-square goodness of fit test to show that the rolls are too evenly distributed to mimic randomn... | http://www.johndcook.com/blog/2016/06/07/chi-square-goodness-of-fit-test-example-with-primes/ | CC-MAIN-2016-44 | refinedweb | 1,539 | 71.85 |
The QFrame class is the base class of widgets that can have a frame. More...
#include <qframe.h>
Inherits QWidget.
Inherited by QGrid, QGroupBox, QHBox, QLCDNumber, QLabel, QMenuBar, QPopupMenu, QProgressBar, QScrollView, QSpinBox, QSplitter, QTableView and QWidgetStack.):
Examples: popup/popup.cpp movies/main.cpp scro... | http://doc.trolltech.com/2.3/qframe.html | crawl-002 | refinedweb | 978 | 61.53 |
Linux Journal interviews Larry Wall 75
jbc writes "Linux Journal's cover story for May was an interview with Larry Wall, which is now online. Some good stuff on the future of Perl, whether or not Open Source is a passing fad, and why Activestate is not necessarily evil. "
Re:PERL vs PHP (Score:1)
It also smells great!
... | http://developers.slashdot.org/story/99/06/01/2122209/linux-journal-interviews-larry-wall | CC-MAIN-2015-14 | refinedweb | 4,796 | 73.27 |
Hi Eyji
Re CRX / Jackrabbit questions:
On Tue, Dec 16, 2008 at 2:21 PM, Eyji <eyji@thorarinssons.net> wrote:
> You were right, we hade remnants left of our previously used
> TarPersistanceManager, but we switched over to Derby, and our environment
> now works well.
> To add on to our problem, we are using JackRabbit 1.... | http://mail-archives.apache.org/mod_mbox/jackrabbit-users/200812.mbox/%3Cd8ffccc20812160658l2fad8000xe9771e9b80859d74@mail.gmail.com%3E | CC-MAIN-2015-32 | refinedweb | 484 | 52.15 |
Content-type: text/html
#include <sys/mman.h>
int shm_open (
const char *name,
int oflag,
mode_t mode);
The shm_open function establishes a connection between a shared memory object and a file descriptor. It creates an open file descriptor that refers to the shared memory object and a file descriptor that refers to tha... | http://backdrift.org/man/tru64/man3/shm_open.3.html | CC-MAIN-2017-04 | refinedweb | 258 | 54.93 |
WebServices : As the name implies, A WebService is an entity or a piece of code which is hosted on the Web, which serves a specefic purpose. This could be the most simple framed definition.
A more apt version may be: A WebService is a part fo a software application which is hosted on the Web and which does a particular... | https://www.codeproject.com/articles/524983/web-services-from-a-beginners-perspective | CC-MAIN-2017-09 | refinedweb | 1,937 | 67.35 |
Clojure has a good reputation for concurrency. People write Clojure programs that work on hundreds of threads, all safely reading and writing to the same memory. People know about the immutable data structures and the STM. But there's something going on at a much deeper level that is really hard to get right in Java. I... | https://purelyfunctional.tv/article/clojures-unsung-heroics-with-concurrency/ | CC-MAIN-2018-43 | refinedweb | 688 | 76.93 |
/* Display generation from window structure and buffer text.. */
/* New redisplay written by Gerd Moellmann <gerd@gnu.org>.
Redisplay.
Emacs separates the task of updating the display from code
modifying global state, e.g. buffer text. This way functions
operating on buffers don't also have to be concerned with updatin... | https://emba.gnu.org/emacs/emacs/-/blame/d5cc60b8f99957c6569cf7471f1fe3ec1570da85/src/xdisp.c | CC-MAIN-2021-49 | refinedweb | 2,896 | 55.54 |
Download CAD Import .NET demo:
CAD Import .NET site:
mid=124
Recently released by Soft Gold Ltd a CAD Import.NET library brought a wide set of opportunities to AutoCAD users and software developers programming in the .NET environment. This product basically consists of two parts: Viewer and Import libraries.
Screenshot... | http://aspadvice.com/blogs/pressreleases/archive/2006/06/01/18246.aspx | crawl-001 | refinedweb | 582 | 55.95 |
JustLinux Forums
>
Community Help: Check the Help Files, then come here to ask!
>
Programming/Scripts
> basic programming problem
PDA
Click to See Complete Forum and Search -->
:
basic programming problem
Jazzalex
05-26-2004, 12:35 PM
Hi ! I have a very simple code that throws me some linking errors when I try to run i... | http://justlinux.com/forum/archive/index.php/t-128209.html | crawl-003 | refinedweb | 630 | 62.38 |
I'm trying to follow through how the sort process is working though, here's the program :
#include <stdio.h> #define MAX 4 int a[MAX]; int rand_seed=170; /* from K&R - returns random number between 0 and 32767.*/ int rand() { rand_seed = rand_seed * 1103515245 +12345; return (unsigned int)(rand_seed / 65536) % 32768; }... | http://www.dreamincode.net/forums/topic/339859-bubble-sort-array-beginner/ | CC-MAIN-2016-22 | refinedweb | 537 | 81.67 |
Installing Python Packages from a Jupyter Notebook, that one, and this... etc.).
Fundamentally the problem is usually rooted in the fact that the Jupyter kernels are disconnected from Jupyter's shell;.
In the wake of several discussions on this topic with colleagues, some online (exhibit A, exhibit B) and some off, I d... | http://jakevdp.github.io/blog/2017/12/05/installing-python-packages-from-jupyter/index.html | CC-MAIN-2022-33 | refinedweb | 4,052 | 52.29 |
Created on 2012-04-01 15:28 by tshepang, last changed 2019-08-23 14:45 by scoder. This issue is now closed.
I often miss lxml's "pretty_print=True" functionality. Can you implement something similar.
Would you like to provide a patch?
Tshepang,
Frankly, there are a lot of issues to solve in ElementTree (it hasn't been ... | https://bugs.python.org/issue14465 | CC-MAIN-2021-43 | refinedweb | 534 | 65.93 |
truncate(), truncate64()
Truncate a file to a specified length
Synopsis:
#include <unistd.h> int truncate( const char* path, off_t length ); int truncate64( const char* path, off64. The truncate64() function is a large-file version of truncate().
The effect of truncate() on other types of files is unspecified. If the f... | https://developer.blackberry.com/playbook/native/reference/com.qnx.doc.neutrino.lib_ref/topic/t/truncate.html | CC-MAIN-2020-34 | refinedweb | 129 | 75.71 |
Kubernetes Ingress allows you to customize how external entities can interact with your Kubernetes applications via the network. This lab will allow you to exercise your knowledge of Kubernetes Ingress. You will use Ingress to open access from an existing service to an external server.
Learning Objectives
Successfully ... | https://acloudguru.com/hands-on-labs/using-kubernetes-ingress | CC-MAIN-2022-33 | refinedweb | 130 | 55.34 |
TOTD #137: Asynchronous EJB, a light-weight JMS solution - Feature-rich Java EE 6
By arungupta on May 18, 2010
One of the new features introduced in Enterprise Java Beans 3.1 (JSR 318) is asynchronous invocation of a business method. This allows the control to return to the client before the container dispatches the in... | https://blogs.oracle.com/arungupta/entry/totd_137_asynchronous_ejb_a | CC-MAIN-2014-15 | refinedweb | 634 | 57.77 |
Finish the Slouch Alert and Make Noise!
Introduction: Finish the Slouch Alert and Make Noise!
Congratulations! The slouch alert is done! In this lesson, we will continue to test and play with the slouch alert circuit and learn how to trigger sound with it. That's the beauty of working with a microcontroller, you can us... | https://mobile.instructables.com/lesson/Slouching-and-Triggering-Sound/ | CC-MAIN-2019-18 | refinedweb | 1,687 | 81.33 |
Opened 6 years ago
Closed 2 years ago
#17914 closed Bug (wontfix)
Add support for namespaced view references when passing a callable to reverse()
Description
It's not possible to reverse a URL by passing a function reference to reverse()
that's hooked into the URLconf under a namespace.
Consider the trivial Django proj... | https://code.djangoproject.com/ticket/17914 | CC-MAIN-2017-47 | refinedweb | 1,147 | 55.64 |
So why am I here? According to this wonderful wiki, which I just discovered, 15 years of using Tcl apparently make me a Tcl'er. And after a lot of reading, I feel that I might have something to say and maybe even do. So here I am, in my first ever endeavor of this kind, to see how it goes.
PYK 2016-03-30: Greetings, Ig... | http://wiki.tcl.tk/42676 | CC-MAIN-2016-44 | refinedweb | 940 | 59.43 |
0,3
Number of ways n competitors can rank in a competition, allowing for the possibility of ties.
Also number of asymmetric generalized weak orders on n points.
Also called the ordered Bell numbers.
A weak order is a relation that is transitive and complete.
Called Fubini numbers by Comtet: counts formulas, Feb 10 2003... | http://oeis.org/A000670 | CC-MAIN-2020-45 | refinedweb | 5,977 | 59.4 |
Hello nice people
I am pulling data from REST API in a jupyter notebook in DSS and do a lot of things on the pandas dataframe I am creating
I would like to save the dataframe as a dataset I can later explore whitin the project I am working in.
I am trying something like :
if not results.empty: output_data = dataiku.Dat... | https://community.dataiku.com/t5/Using-Dataiku-DSS/Creating-dataset-from-Pandas/m-p/17647/highlight/true | CC-MAIN-2021-39 | refinedweb | 382 | 66.13 |
The Builder pattern is an easy way to make your code more readable. The pattern is useful when dealing with a constructor that takes several arguments that aren’t easy to keep straight in your head. It is even more useful if the class has multiple constructors with different sets of arguments, or arguments in a differe... | http://pivotallabs.com/using-the-builder-pattern-to-improve-code-readability/ | CC-MAIN-2014-10 | refinedweb | 477 | 53 |
How thoroughly, whenever you need to.
Why break Python?
If you maintain applications, libraries or other code written in Python, and you ever intend to distribute any of that code to third parties, you need to make some decisions. You need to decide how to license your code, you need to decide how to distribute it (if ... | https://www.b-list.org/weblog/2016/nov/28/break-python/ | CC-MAIN-2018-09 | refinedweb | 2,644 | 66.64 |
3 Essential Google Colaboratory Tips & Tricks
Google Colaboratory is a promising machine learning research platform. Here are 3 tips to simplify its usage and facilitate using a GPU, installing libraries, and uploading data files.
Like many of you, I have been very excited by Google's Colaboratory project. While it isn... | https://www.kdnuggets.com/2018/02/essential-google-colaboratory-tips-tricks.html | CC-MAIN-2022-21 | refinedweb | 721 | 63.29 |
NAME
curl_getenv - return value for environment name
SYNOPSIS
#include <curl/curl.h>
char *curl_getenv(const char *name);
DESCRIPTION
curl_getenv() is a portable wrapper for the getenv() function, meant to emulate its behaviour and provide an identical interface for all operating systems libcurl builds on (including wi... | https://linux.fm4dd.com/en/man3/curl_getenv.htm | CC-MAIN-2022-05 | refinedweb | 116 | 52.39 |
Besides being serializable, Marten's only other requirement for a .Net type to be a document is the existence of an identifier field or property that Marten can use as the primary key for the document type. The
Id can be either a public field or property, and the name must be either
id or
Id or
ID. As of this time, Mar... | http://jasperfx.github.io/marten/documentation/documents/identity/ | CC-MAIN-2017-26 | refinedweb | 387 | 51.48 |
#include <fstab.h>
The first field, (fs_spec), describes the special device or remote file system to be mounted. The contents are decoded by the strunvis(3) function. This allows using spaces or tabs in the device name which would be interpreted as field separators otherwise.
The second field, (fs_file), describes the ... | https://nxmnpg.lemoda.net/5/fstab | CC-MAIN-2019-39 | refinedweb | 400 | 54.93 |
Would I be able to set it to "Desktop/GreatWall.JPG". Would that work if the image is there?
Type: Posts; User: Leonardo1143
Would I be able to set it to "Desktop/GreatWall.JPG". Would that work if the image is there?
import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;... | http://www.javaprogrammingforums.com/search.php?s=fc37a907315bd29feb8952ce58d69be3&searchid=685649 | CC-MAIN-2013-48 | refinedweb | 596 | 70.19 |
Object Oriented C# for ASP.NET DevelopersBy Kevin Yank
There was a time when any Web developer with a basic knowledge of JavaScript could pick up the essentials of ASP Web development in a couple of hours. With ASP.NET, Microsoft’s latest platform for Web application development, the bar has been raised. Though tidier ... | https://www.sitepoint.com/c-asp-net-developers/ | CC-MAIN-2016-44 | refinedweb | 7,743 | 63.19 |
1.1 Glossary
This document uses the following terms:
client: A computer on which the remote procedure call (RPC) client is executing.
connection: Firewall rules are specified to apply to connections. Every packet is associated with a connection based on TCP, UDP, or IP endpoint parameters; see [IANAPORT].
connection bl... | https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-srvs/1709f6a7-efb8-4ded-b7ae-5cee9ee36320 | CC-MAIN-2022-33 | refinedweb | 500 | 55.54 |
The Samba-Bugzilla – Bug 8463
Buffer-overflow in dirsort plugin when directory contents change at wrong time.
Last modified: 2017-01-03 07:14:25 UTC
Created attachment 6901 [details]
Prevent buffer overflow when directory contents change
The dirsort vfs plugin opens the directory and reads all entries to count
them and... | https://bugzilla.samba.org/show_bug.cgi?id=8463 | CC-MAIN-2017-04 | refinedweb | 255 | 54.76 |
Back from a nice long weekend, although I spent most of it sick with a cold. I find this increasingly the way with me: I fend off illness for months at a time (probably through stress, truth be told) but then I get a few days off and wham. A shame, as we had a huge dump of snow over the weekend... we get white Christma... | http://through-the-interface.typepad.com/through_the_interface/2008/03/initialization.html | CC-MAIN-2015-27 | refinedweb | 221 | 51.14 |
Mirror an Image to an External Registry
Requirements
In order to mirror an image built by CI to Quay, that image must be promoted.
If the image is promoted into a namespace for which no other image mirroring is set up yet, some RBAC needs to be configured:
- Create a folder in clusters/app.ci/registry-access with the n... | https://docs.ci.openshift.org/docs/how-tos/mirroring-to-quay/ | CC-MAIN-2021-43 | refinedweb | 440 | 52.09 |
char charAt (int index) : This method returns the character in the string buffer at the specified index position. The index of the first character is 0, the second character is 1 and that of the last character is one less than the string buffer length. The index argument specified must be greater than or equal to 0 and... | https://ecomputernotes.com/java/jarray/stringbuffer-charat | CC-MAIN-2022-05 | refinedweb | 111 | 65.62 |
import random print("\nRandom Food Generator") firstName = input("\nwhat is your first name: ") lastName = input("\nwhat is your last name: ") print("\nHello, ", firstName, lastName) hungerStatus = input("are you hungry?: Y/N ") print(hungerStatus) if hungerStatus == "y" or hungerStatus == "Y": print("\n",firstName, la... | https://discuss.codecademy.com/t/having-a-python-typeerror-issue-with-this-short-script-ive-wrote-on-line-11/606398 | CC-MAIN-2022-33 | refinedweb | 226 | 70.94 |
Question:-
Sam started a new business with an investment of Rs.1, 00,000. During the first year he got a profit of x%, whereas in the second year he lost a certain amount(say Rs. Y). Help him to find out the profit/loss (in terms of initial investment) in percentage at the end of the second year.
Sample input 1:
Enter ... | https://quizforexam.com/java-find-profit-or-loss/ | CC-MAIN-2021-21 | refinedweb | 294 | 55.13 |
--- a +++ b/src/dvdread/nav_read.h @@ -0,0 +1,53 @@ +/* + * Copyright (C) 2000, 2001, 2002 H책kan Hjort <d95hjort@dtek.chalmers.se>. + * + * This file is part of libdvdread. + * + * libdvdread is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by... | https://sourceforge.net/p/xbmc/libdvdread/ci/9c138e7c973b61a4ccef94e1576b480679d919fb/tree/src/dvdread/nav_read.h?diff=79a329e75d7733b75c72f9acfb3ced0e287e237a | CC-MAIN-2017-26 | refinedweb | 192 | 58.58 |
facebook ◦ twitter ◦
View blog authority
View blog top tags!
Try the following site.
It helped me a lot. It has a regular expression tester and you can debug your expression till it works just right.
Good luck!
__CookieMonster fails :)
use: name.TrimStart('_');
I don't understand why the removing of periods is differen... | http://weblogs.asp.net/bsimser/archive/2008/04/25/cleaning-invalid-characters-from-sharepoint.aspx | crawl-002 | refinedweb | 830 | 52.97 |
xdf_write man page
xdf_write — Write samples to a xDF file
Synopsis
#include <xdfio.h>
ssize_t xdf_write(struct xdf* xdf, size_t ns, ...);
Description
xdf_write() writes ns samples to the xDF file referenced by xdf. This file should have been opened with mode XDF_WRITE and xdf_prepare_arrays(3) should have been success... | https://www.mankier.com/3/xdf_write | CC-MAIN-2017-26 | refinedweb | 658 | 58.82 |
Introduction
After we wrote formulas for Excel, the values would be displayed in specified cells. It is possible that the formulas are wrongly used or lost because there are too many formulas. Therefore, sometimes, we need to read the formula for one cell to ensure if the formula is right. Well then, how to read Excel ... | http://www.e-iceblue.com/Knowledgebase/Spire.XLS/Program-Guide/How-to-Read-Excel-Formulas.html | CC-MAIN-2015-22 | refinedweb | 346 | 51.85 |
Chapter 11: Creating Dynamic Ribbon Customizations .
Previous Part: Chapter 11: Creating Dynamic Ribbon Customizations (Part 1 of 2)
Contents
In addition to standard types of controls, such as buttons, edit boxes, and drop-downs, the Ribbon provides several new types of controls that enable you to create rich experienc... | https://msdn.microsoft.com/en-us/library/dd548011(v=office.12) | CC-MAIN-2017-51 | refinedweb | 7,362 | 55.34 |
SAP TechEd 2018 is just around the corner! I’ve been getting everything ready for my session on SAP Cloud Platform, SAP HANA Service and wanted to share a sneak peek of it.
If you are lucky to come to TechEd, I have plenty of instances to share for you to configure and deploy yourself. We will be using the Cloud Applic... | https://blogs.sap.com/2018/09/12/sneak-peek-into-hana-as-a-service-database-artifacts-and-calculation-views/ | CC-MAIN-2019-13 | refinedweb | 956 | 69.31 |
From: Marc-Antoine Ruel (maruel_at_[hidden])
Date: 2003-12-17 12:11:35
What do you think of that? I'm not very up to date with design patterns but I found that use quite interessing. It is somewhat the inverse of RIIA (resource-initialization-is-acquisition).
#include <boost/lambda/lambda.hpp>
#include <boost/lambda/co... | https://lists.boost.org/Archives/boost/2003/12/57805.php | CC-MAIN-2019-43 | refinedweb | 271 | 59.9 |
Search: Search took 0.02 seconds.
- 12 Nov 2012 1:39 AM
- Replies
- 4
- Views
- 990
And the owners of the other components too.. since they are all relativly slow compared to the ones in other framework such as sencha touch or dijit. And with realtively slow I measured 25 times...
- 12 Nov 2012 1:26 AM
The problem is t... | https://www.sencha.com/forum/search.php?s=9a8b5f2ed6cb4da240ff8eb08850431f&searchid=13303860 | CC-MAIN-2015-48 | refinedweb | 786 | 82.65 |
One prob i have is how you make your own header in C?
This is a discussion on C Question within the C Programming forums, part of the General Programming Boards category; One prob i have is how you make your own header in C?...
One prob i have is how you make your own header in C?
Last edited by fastprogrammer; 11-14-2... | http://cboard.cprogramming.com/c-programming/72221-c-question.html | CC-MAIN-2014-10 | refinedweb | 215 | 75.4 |
Manpage of WCSNCMP
WCSNCMPSection: Linux Programmer's Manual (3)
Updated: 2015-08-08
Index
NAMEwcsncmp - compare two fixed-size wide-character strings
SYNOPSIS
#include <wchar.h>int wcsncmp(const wchar_t *s1, const wchar_t *s2, size_t n);
DESCRIPTIONThe wcsncmp() function is the wide-character equivalent of the strncmp... | https://www.linux.com/manpage/man3/wcsncmp.3.html | CC-MAIN-2016-44 | refinedweb | 155 | 52.29 |
Ever since NodeJS' inception, we've been able to execute JavaScript code outside of the browser. But NodeJS did a lot more than just that, it opened up a way to write server side code with JavaScript itself and along with it came the ability to manipulate host system's file system.
Photo by Maksym Kaharlytskyi on Unspl... | https://practicaldev-herokuapp-com.global.ssl.fastly.net/prvnbist/file-based-operations-using-nodejs-48a5 | CC-MAIN-2021-17 | refinedweb | 1,458 | 58.99 |
95170/find-occurrences-word-with-more-than-vowels-file-using-regex
I'm having trouble figuring out how to find all words that have 2 or more vowels in them. So far this is what I have but when i run it, it don't give me any output. I appreciate the help.
import re
def main():
in_f = open("jobs-061505.txt", "r")
read = ... | https://www.edureka.co/community/95170/find-occurrences-word-with-more-than-vowels-file-using-regex?show=95171 | CC-MAIN-2021-21 | refinedweb | 274 | 71.82 |
CodePlexProject Hosting for Open Source Software
Listed in the help files, not in the source or the namespace.
Does this exist or is it just a tease?
It was removed in Json.NET 4.0 and the help files on my website haven't been updated. If you want to use it then you could get the source code for an earlier version of J... | http://json.codeplex.com/discussions/241310 | CC-MAIN-2017-39 | refinedweb | 216 | 86.91 |
Functions
When you want to bundle up a reusable chunk of code in Magpie, you'll usually use a method. But sometimes you want a chunk of code that you can pass around like a value. For that, you'll use a function. Functions are first-class objects that encapsulate an executable expression.
Creating Functions
Functions a... | http://magpie.stuffwithstuff.com/functions.html | CC-MAIN-2017-30 | refinedweb | 878 | 72.46 |
$26.00
By Jared Diamond $36.00
$18
By.
Advertisement
The shift in results is encouraging, but state politicians are not yet rushing to Kopplin’s cause in sufficient numbers. The religious lobby, which is aligned with such national groups as Focus on the Family, has the power to elect and defeat political candidates. “... | http://www.truthdig.com/report/item/truthdigger_of_the_week_zack_kopplin_20121222?ln | CC-MAIN-2014-15 | refinedweb | 633 | 53.1 |
How to Display Images on 2.4inch TFT and Make It a Digital Photoframe
Introduction: How to Display Images on 2.4inch TFT and Make It a Digital Photoframe
I really had this desire to build a digital photoframe from last three ,Until This January when i got this tft lcd touch module .I was excited but when i looked on th... | http://www.instructables.com/id/How-to-Display-Images-on-24inch-TFT-and-Make-It-a-/ | CC-MAIN-2017-39 | refinedweb | 1,218 | 72.76 |
A data type classifies various types of data eg. String, integer, float, boolean, the types of accepted values for that data type, operations that can be performed on the data type, the meaning of the data, and the way that data of that type can be stored.
The table below shows the most commonly used data types used in... | https://www.codemahal.com/video/data-types-java/ | CC-MAIN-2020-24 | refinedweb | 232 | 56.96 |
How to declare natural ordering by implementing the generic IComparable interface in C# .NET
April 29, 2015 Leave a comment
Primitive types such as integers can be ordered naturally in some way. Numeric and alphabetical ordering comes in handy with numbers and strings. However, there’s no natural ordering for your own ... | https://dotnetcodr.com/2015/04/29/how-to-declare-natural-ordering-by-implementing-the-generic-icomparable-interface-in-c-net/ | CC-MAIN-2021-49 | refinedweb | 363 | 54.12 |
Getting started
In this article you will develop a data-centric web application using some of the latest server-side Java technologies and the Dojo toolkit for creating a rich user interface. These technologies significantly reduce the amount of code you have to write, on both the server and client sides. Familiarity w... | http://www.ibm.com/developerworks/web/library/wa-datawebapp/ | CC-MAIN-2013-48 | refinedweb | 4,883 | 57.77 |
3308Views182Replies
What will happen in the year 2012 Answered
Here is the best thing I found about what will happen in the year 2012.
This page explains what will or could happen on that date. read the rest for a full explanation.
Discussions
Greetings from 11 months later. Absolutely nothing has happen.
What will hap... | http://www.instructables.com/topics/What-will-happen-in-the-year-2012/ | CC-MAIN-2018-30 | refinedweb | 848 | 86.2 |
Code: Select all
$server = self::RECAPTCHA_API_SERVER; if ($app->isSSLConnection()) { $server = self::RECAPTCHA_API_SECURE_SERVER; }
In a case where a server is behind a proxy that masks the protocol and SSL, the above logic will cause mixed content which will prevent the captcha from displaying.
Code: Select all
publi... | https://forum.joomla.org/viewtopic.php?f=579&t=790107&p=2989258 | CC-MAIN-2019-35 | refinedweb | 101 | 52.6 |
-
me reason I am reminded of Triumph the Insult Comic Dog.
getPaula() ... FOR ME TO POOP ON!!!
Admin
Awesome... I got the first one in... now I can laugh at the idiots who proclaim proudly, "FIRST!" when they're the 3rd or 4th post. :)
Admin
Gah! Just when I though that "Brillant" (French for "brilliant", not that any... | http://thedailywtf.com/articles/comments/The_Brillant_Paula_Bean%2C_J2ME_Edition | CC-MAIN-2017-26 | refinedweb | 2,735 | 73.68 |
QuickTime for Java: A Developer's Notebook/Working with QuickDraw
From WikiContent
And now, on to the oldest, cruftiest, yet can't-live-without-it-iest part of QTJ: QuickDraw. QuickDraw is a graphics API that can be traced all the way back to that first Mac Steve Jobs pulled out of a bag and showed the press more than ... | http://commons.oreilly.com/wiki/index.php?title=QuickTime_for_Java:_A_Developer's_Notebook/Working_with_QuickDraw&oldid=4159 | CC-MAIN-2016-36 | refinedweb | 6,200 | 58.48 |
AIR REPAIR by Anita Sands Hernandez
In an increasingly polluted world, our homes are our first and last line of defense. The city beats against the windows but it can't come in. The home is fortress combined with temple. Home is where the heart is.
HOME is where our children take their first breath, and a trillion more... | http://home.earthlink.net/~astrology/air_repair.htm | crawl-002 | refinedweb | 1,827 | 70.63 |
I started using Sublime Text 2 very recently, awesome feedback so far. I have a project created in ST2 with a make file, which I'm able to build using a CMD+B combination. The build is blazingly fast, so I'm trying to figure ways to avoid that extra CMD+B combination and tie it to a save operation. Is there a way to tr... | https://forum.sublimetext.com/t/how-to-force-a-build-on-save/2608/6 | CC-MAIN-2017-09 | refinedweb | 348 | 62.58 |
DEBSOURCES
Skip Quicknav
sources / dnspython / 1.15.0-1%2Bdeb9u1 /
2016-09-29 Bob Halley <halley@dnspython.org>
* IDNA 2008 support is now available if the "idna" module has been
installed and IDNA 2008 is requested. The default IDNA behavior
is still IDNA 2003. The new IDNA codec mechanism is currently
only useful for... | https://sources.debian.org/src/dnspython/1.15.0-1+deb9u1/ChangeLog/ | CC-MAIN-2022-05 | refinedweb | 7,855 | 62.64 |
18 December 2008 23:40 [Source: ICIS news]
HOUSTON (ICIS news)--Most US ethylene contracts for December were settled at a 9.5-cent/lb ($209/tonne, €146/tonne) reduction from November, market sources said on Thursday.
The drop puts ethylene in December at 28.50 cents/lb, according to global chemical market intelligence ... | http://www.icis.com/Articles/2008/12/18/9180587/most-us-dec-ethylene-contracts-settle-down-9.5-centslb.html | CC-MAIN-2015-06 | refinedweb | 138 | 59.09 |
Back to index
This interface is a unicode encoder for use by scripts. More...
import "nsIScriptableUConv.idl";
This interface is a unicode encoder for use by scripts.
8/Jun/2000
Definition at line 55 of file nsIScriptableUConv.idl.
Converts an array of bytes to a unicode string.
Converts the data from Unicode to one Ch... | https://sourcecodebrowser.com/lightning-sunbird/0.9plus-pnobinonly/interfacens_i_scriptable_unicode_converter.html | CC-MAIN-2017-51 | refinedweb | 152 | 62.75 |
Sub-project management via sbt
As your project grows, the need of splitting it into multiple ones might rise. There are couple good examples around how to do multi-project management by sbt, like this one.
The use case this post cover is little different.
We would like to extrac some logic from our project into a child... | https://medium.com/@linda0511ny/sub-project-management-via-sbt-26e9f7bccbad | CC-MAIN-2019-13 | refinedweb | 750 | 66.54 |
Want to hear the Mix 09 presentations and see the new Star Trek film at one event? Know a student who wants to apply to Google' Summer of Code? Get details about these stories, as well as information about Java, PHP, Silverlight 3, and more.
Apparently, one of the standard ASP.NET WebControls (asp:menu) wasn't standard... | https://www.techrepublic.com/blog/software-engineer/programming-news-stir-trek-aspmenu-patch-php-53-rc1-ironpython-26-alpha-1/ | CC-MAIN-2019-43 | refinedweb | 1,064 | 71.34 |
From: Matias Capeletto (matias.capeletto_at_[hidden])
Date: 2007-05-23 04:20:21
Hello boost!
I have upload a new version of the Boost.Bimap library to the vault:
Documentation can be viewed online here:
Or can be downloaded from:
I have take into consideration most of the advices from the formal review.
In the next fol... | https://lists.boost.org/Archives/boost/2007/05/122126.php | CC-MAIN-2020-10 | refinedweb | 176 | 65.22 |
Hi,
I have one Data Contract class like this.
[DataContract()]
public class Contract
{
.......
.........
Some Properties with DataMembers Attribute.
............
..............
[DataMember(Name = "Messages")]
public string Messages
{
get;
set;
}
}
In the above class, i need change name of the Property Messages based on... | http://www.dotnetspark.com/links/45560-how-to-change-datamember-name-based-on-our.aspx | CC-MAIN-2017-43 | refinedweb | 328 | 73.37 |
Option handling lies at the heart of Trade Federation's modular approach. In particular, options
are the mechanism by which the Developer, Integrator, and Test Runner can work together without
having to duplicate each-other's work. Put simply, our implementation of option handling allows the
Developer to mark a Java cl... | https://source.android.com/devices/tech/test_infra/tradefed/fundamentals/options.html | CC-MAIN-2014-15 | refinedweb | 647 | 52.39 |
16 April 2012 04:21 [Source: ICIS news]
SINGAPORE (ICIS)--?xml:namespace>
The company’s 27,000 tonne/year low density polyethylene (LDPE) plant, its 29,000 tonne/year linear low density polyethylene (LLDPE) unit, its 43,000 tonne/year LDPE/EVA swing plant and its 120,000 tonne/year high density polyethylene (HDPE) unit... | http://www.icis.com/Articles/2012/04/16/9550487/japans-tosoh-to-restart-yokkaichi-pe-eva-units-on-20-april.html | CC-MAIN-2014-41 | refinedweb | 124 | 52.73 |
VSCode-ObjectScript release 0.7.11
Hi all, I have released the latest version of VSCode extension for ObjectScript already a month ago, and finally a time for the info about this new release.
So, what's new in the release:
What's new in this version
- added export setting "objectscript.export.addCategory" if enabled us... | https://community.intersystems.com/post/vscode-objectscript-release-0711 | CC-MAIN-2022-21 | refinedweb | 236 | 53.61 |
Hi, I would like to write a function untilM, which would be to until as mapM is to map. An example use would be if I had a function dice :: State Int Int which returns random dice throws within a state monad. Then I'd like to be able to do something like untilM (\(s,p)-> s>=100) f (0,1) where f (s,p) = do d <- dice ret... | http://www.haskell.org/pipermail/haskell-cafe/2007-March/023748.html | CC-MAIN-2014-15 | refinedweb | 216 | 70.57 |
This site uses strictly necessary cookies. More Information
Hello! I am making a game for the A Game by it's Cover contest, which requires you to make a game based off of a fake cover. I chose this one. I need to reproduce the old school wireframe arcade vector look on the box, but I'm not sure how to achieve this. I t... | https://answers.unity.com/questions/275629/how-to-make-vector-monitor-graphics-in-unity.html | CC-MAIN-2021-21 | refinedweb | 1,115 | 73.98 |
Qt grew to a quite mature framework over the past few years, and I dare to say that it probably can keep up with "mighty" frameworks like .NET or Java from a functional point of view. Of course, there is stuff like the Entity Framework for .NET, but with Qt 5.2, a developer gets a solid Framework base to build up great... | https://www.codeproject.com:443/Tips/750545/Having-a-Global-named-Mutex-in-Qt?fid=1856410&df=90&mpp=25&sort=Position&view=Normal&spc=Relaxed&prof=True&PageFlow=Fluid | CC-MAIN-2021-43 | refinedweb | 664 | 50.06 |
SO WHAT IS IT ? 🙄 🙄 🙄
Emotion is a library made for writing CSS styles with JavaScript. It allows you to style apps quickly with string or object styles. The most amazing thing about this library – other than it’s size and performance – is the flexibility of use. It supports strings, objects and functions and makes ... | https://tech.shaadi.com/2019/09/02/getting-emotional-with-react/ | CC-MAIN-2022-05 | refinedweb | 638 | 62.27 |
BBC micro:bit
The Speech Module
Introduction
In 1982, a program called SAM (Software Automated Mouth) was released for the Commodore 64 personal computer. This was a pretty early version of a 'text to speech' program and the quality is not amazing. It is, as the MicroPython team say, 'good enough' and a nice feature to... | http://multiwingspan.co.uk/micro.php?page=speech | CC-MAIN-2017-22 | refinedweb | 935 | 73.68 |
Seems like a good approach. Could that be made more flexible.Architectures today expose cache miss numbers, which through simple markovian chains approximation allow a much better estimationof the cache footprint then inferring from time. Any chance to incoporate something likethis into your cost function flexibly or i... | https://lkml.org/lkml/2001/10/19/56 | CC-MAIN-2021-43 | refinedweb | 762 | 61.56 |
Agenda
See also: IRC log
Wilhelm introduced himself
and explained his work at Opera
He does have some experience on Mobile device testing and hope to contribute to group
Wilhelm will working as a replacement for Till.
Till will be leaving the Group.
Any question from Wilhelm for the Group
None at this time. He been rea... | http://www.w3.org/2007/04/24-mwts-minutes.html | CC-MAIN-2016-40 | refinedweb | 660 | 51.65 |
import "github.com/ponzu-cms/ponzu/system/search"
Package search is a wrapper around the blevesearch/bleve search indexing and query package, and provides interfaces to extend Ponzu items with rich, full-text search capability.
var ( // Search tracks all search indices to use throughout system Search map[string]bleve.I... | https://godoc.org/github.com/ponzu-cms/ponzu/system/search | CC-MAIN-2019-13 | refinedweb | 208 | 50.57 |
Hello, I am a beginner and I am so stumped with these two problems. The first one is, how do I get the output to look like this?
Enter the number of pods followed by
the number of peas in a pod:
22 10
22 pods and 10 peas per pod.
The total number of peas = 220
I have attempted for hours and so far I could only get the ... | http://www.javaprogrammingforums.com/%20whats-wrong-my-code/13835-can-someone-help-me-please-printingthethread.html | CC-MAIN-2014-15 | refinedweb | 321 | 67.25 |
Java Persistence/Basic Attributes
Contents
- 1 Basics
- 1.1 Example of basic mapping annotations
- 1.2 Example of basic mapping XML
- 1.3 Common Problems
- 2 Advanced
- 2.1 Temporal, Dates, Times, Timestamps and Calendars
- 2.2 Enums
- 2.3 LOBs, BLOBs, CLOBs and Serialization
- 2.4 Lazy Fetching
- 2.5 Optional
- 2.6 Co... | https://en.wikibooks.org/wiki/Java_Persistence/Basic_Attributes | CC-MAIN-2019-26 | refinedweb | 3,674 | 55.13 |
Introduction:.
Before implement this first design one table UserInfo in your database like as shown below
Once table design complete enter some dummy for our example like as shown below
UserInfo
Now we are going to use our gmail account credentials to send mail for that first you need to enable POP enable option in you... | http://www.aspdotnet-suresh.com/2012/11/code-for-forgot-password-in-aspnet.html?showComment=1351946827207 | CC-MAIN-2015-18 | refinedweb | 747 | 66.74 |
Build a Peer-to-Peer File Sharing Component in React & PeerJS
This article was peer reviewed by Dan Prince and Bruno Mota. Thanks to all of SitePoint’s peer reviewers for making SitePoint content the best it can be!
In this tutorial we’re going to build a file sharing app with PeerJS and React. I’ll be assuming that yo... | https://www.sitepoint.com/file-sharing-component-react/ | CC-MAIN-2018-09 | refinedweb | 3,775 | 66.23 |
The QChildEvent class contains event parameters for child object events. More...
#include <QChildEvent>
Inherits QEvent.
The QChildEvent class contains event parameters for child object events.
Child events are sent immediately to objects when children are added or removed.
In both cases you can only rely on the child ... | http://doc.trolltech.com/4.5/qchildevent.html | crawl-002 | refinedweb | 101 | 67.65 |
The book is written for readers who have no previous experience with .NET, and in some cases, it will even be suitable for readers with not extensive programming knowledge. It starts off explaining what .NET is, the history of Mono and how it fits in all this. It also explains how to install Mono from scratch, but this... | http://www.osnews.com/story/13627/Book_Review_Practical_Mono | CC-MAIN-2015-32 | refinedweb | 460 | 62.68 |
Overview of Total Work Done
1. Brushing of C++
2. Compiled the MapServer code on Linux and Windows from source.
3. Explored the MapServer functionality and codebase through the documentation.
4. Read up about SVG syntax, parsing and rendering.
5. Researched on various non-intrusive open source graphics libraries that s... | http://trac.osgeo.org/mapserver/wiki/GSoC_SVG_Symbols_report_20090816 | crawl-003 | refinedweb | 630 | 56.86 |
Removing the History?
Discussion in 'Javascript' started by George Hester, Oct 17,,943
- Leon Mayne [MVP]
- Oct 26, 2005
removing a namespace prefix and removing all attributes not in that same prefixChris Chiasson, Nov 12, 2006, in forum: XML
- Replies:
- 6
- Views:
- 741
- Richard Tobin
- Nov 14, 2006
[ANN] irb-histo... | http://www.thecodingforums.com/threads/removing-the-history.880131/ | CC-MAIN-2015-40 | refinedweb | 132 | 58.92 |
What is Vendure?
Vendure is a headless ecommerce framework built with TypeScript and Node.js.
Vendure features
- Products and variants
- Stock management
- Payment provider integrations
- Shipping provider integrations
What does “headless” mean?
You might have heard the term “API first” or “headless”. To sum it up, it ... | https://blog.logrocket.com/getting-started-with-vendure/ | CC-MAIN-2020-40 | refinedweb | 2,346 | 53.31 |
BugTraq
Back to list
|
Post reply
[SE-2012-01] Issue 69 details and IBM Java vulnerabilities
Oct 16 2013 12:11PM
Security Explorations (contact security-explorations com)
Hello All,
The CPU released yesterday (Oct 15, 2013) by Oracle included information
about a fix for Java SE 7 vulnerability (Issue 69) that was repor... | http://www.securityfocus.com/archive/1/529245/30/360/threaded | CC-MAIN-2014-10 | refinedweb | 867 | 50.77 |
Happy.
As Team Inafune, we would like to proudly present Soul Sacrifice for all of the true gamers in the world to enjoy.
1
+ Silent_Gig on December 21st, 2012 at 7:04 am said:
Thank you Soul Sacrifice team, i tried the Japanese Demo this week and it was brilliant. Cant wait for the game to come to the west!
2
+ Xer0Si... | http://blog.us.playstation.com/2012/12/21/happy-holidays-from-keiji-inafune-and-the-soul-sacrifice-team/ | CC-MAIN-2015-06 | refinedweb | 1,444 | 73.68 |
Or how we can use ASP.NET in a real AJAX flavor and live happily.
The UpdatePanel represents Microsoft's main interpretation of AJAX techniques. The UpdatePanel's indubitable merit is that it brings the magic of AJAX in every day's programming work for any ASP.NET programmer. But now, three years after it was born, the... | http://www.codeproject.com/Articles/95525/ASP-NET-and-jQuery-to-the-Max?fid=1580126&df=90&mpp=10&sort=Position&spc=None&tid=4107598 | CC-MAIN-2017-17 | refinedweb | 4,664 | 57.06 |
An array is a series of elements of the same type placed in contiguous memory locations that can be individually referenced by adding an index to a unique identifier. To use an array in C++, you'll need to declare it first, for example,
int arr[10];
This declares an array of type int of size 10. This can store 10 integ... | https://www.tutorialspoint.com/How-do-I-use-arrays-in-Cplusplus | CC-MAIN-2021-10 | refinedweb | 213 | 62.61 |
06 July 2012 11:10 [Source: ICIS news]
LONDON (ICIS)--?xml:namespace>
A decision from the ministry on whether to sell its 50.67% ZAP stake to the Polish synthetic rubber producer would be issued prior to the 20 July expiry date of the first phase of Synthos' zlotych (Zl) 1.96bn ($576.4m, €464.5m) bid.
In the first phas... | http://www.icis.com/Articles/2012/07/06/9575884/zap-management-advises-polish-treasury-not-to-accept-synthos.html | CC-MAIN-2015-18 | refinedweb | 299 | 60.75 |
Is it possible to have a markov chain with an infinite number of transient states and an infinite number of positive recurrent states?
Printable View
Is it possible to have a markov chain with an infinite number of transient states and an infinite number of positive recurrent states?
Hello,
Let
(integers) be the space ... | http://mathhelpforum.com/advanced-statistics/137724-markov-chain-print.html | CC-MAIN-2016-50 | refinedweb | 320 | 63.09 |
In this article, I build on Part 1 of this series and introduce you to using modules and services to organize your application components. After viewing this article, you will have concise and important knowledge for starting your first Angular application using these advanced concepts.
Most applications have separate ... | http://www.informit.com/articles/article.aspx?p=2245730 | CC-MAIN-2017-39 | refinedweb | 975 | 56.45 |
A class for for indicating the status of slow-moving loops. More...
#include <l_heartbeat.h>
A class for for indicating the status of slow-moving loops.
This class is really only appropriate when you know in advance how many iterations will occur for your loop. Assuming you know that number, then you would use this cla... | http://kobus.ca/research/resources/doc/doxygen/classkjb_1_1Heartbeat.html | CC-MAIN-2022-21 | refinedweb | 365 | 67.08 |
Subject: Re: [boost] [build] Tests automatically create header links, but library builds do not
From: Peter Dimov (lists_at_[hidden])
Date: 2015-01-05 12:05:20
Andrey Semashev wrote:
> That doesn't match my definition of "right". :) Because it yields
> incorrect result with a valid C++ code. If it can't make a valid re... | https://lists.boost.org/Archives/boost/2015/01/218769.php | CC-MAIN-2020-45 | refinedweb | 143 | 59.5 |
Agenda
See also: IRC log
<scribe> Scribe: hugo
Sept 23 minutes at approved
Jonathan asks editors to review their list of action items at and let him know when one has been done
Chair goes throught his list (see agenda)
Hugo: regarding the format required for the publication of the Z notation document, the normative ver... | http://www.w3.org/2004/09/30-ws-desc-minutes.html | CC-MAIN-2016-30 | refinedweb | 1,997 | 59.98 |
New GOP Domain Name Violates RFC 2146 235
Macki writes "Citing the poor quality of republican websites, Republican Conference Chairman J.C. Watts has started a project called 'GOP.gov' to help improve their websites. This is all well and good, except GOP.gov isn't just their name, it's also their domain. This is a pret... | https://slashdot.org/story/99/10/17/0032222/new-gop-domain-name-violates-rfc-2146 | CC-MAIN-2017-39 | refinedweb | 6,838 | 65.01 |
A New, Simpler Way to Do Dependency Injection in Go
Dependency injection (DI) is a great thing. Even if you haven’t heard of the term, it’s likely that you have already used it.
This article assumes zero existing knowledge of DI. However, a basic understanding of Go. I will work from fundaments, challenges, solutions a... | https://medium.com/swlh/a-new-simpler-way-to-do-dependency-injection-in-go-9e191bef50d5?source=---------2------------------ | CC-MAIN-2019-26 | refinedweb | 1,641 | 51.24 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.