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
The handy method String.valueOf(Object) has been around since JDK 1.0 and is one of the JDK-provided methods that I use on a frequent basis. I have blogged on its value before. The Objects class was introduced with JDK 1.7 and included the Objects.toString(Object) method. This post compares these two similar-sounding m...
https://www.javacodegeeks.com/2018/08/valueofobject-tostringobject.html
CC-MAIN-2020-16
refinedweb
564
61.33
Scraping, analyzing and generating companies, founders and job postings from YC's Work at a Startup 更新日期 2021年1月16日 I always enjoy reading about new batches of YC companies. I came across YC's Work at a Startup (WaaS) recently while browsing HN and got pretty curious about all of the available data points on companies,...
https://briancaffey.github.io/zh/2021/01/16/i-scraped-analyzed-and-generated-yc-companies-founders-and-work-at-a-startup-job-postings/
CC-MAIN-2021-49
refinedweb
5,956
51.28
Many of you who have upgraded to the new Beta version of sendmail have had or are still having problems getting mailman to run. The problem lies with smrsh itself. I had asked for help on the sendmail news group and had received an answer quite promptly on how to fix the problem and get Sendmail to play nice with Mailm...
https://mail.python.org/pipermail/mailman-users/2000-February/003751.html
CC-MAIN-2016-36
refinedweb
256
76.01
18 March 2008 15:39 [Source: ICIS news] LONDON (ICIS news)--Major producer Dow Chemical will switch to producing just ethylene oxide (EO) at its Terneuzen, Netherlands unit, halting monoethylene glycol (MEG) output by the end of 2008, according to a company press release on Tuesday. In 2009, the company plans to boost ...
http://www.icis.com/Articles/2008/03/18/9109441/dow-plans-to-halt-terneuzen-meg-to-focus-on-eo.html
CC-MAIN-2015-06
refinedweb
194
51.18
After getting a lot of requests to get latitude and longitude coordinates for features, I created a generic script that creates two new fields in the existing feature feature class and and calcs the latitude and longitude of the feature's "true centroid." The only problem is that you would have to run this script any t...
https://community.esri.com/thread/160266
CC-MAIN-2019-30
refinedweb
283
51.14
import "github.com/tiloso/googlefinance/csvdecoding" Package csvdecoding implements decoding of CSV streams (from googlefinance) into slices of Go structs. It is build on top of Go's standard library package encoding/csv and takes some inspiration from Unmarshal of encoding/json. The package has only been tested with C...
https://godoc.org/github.com/tiloso/googlefinance/csvdecoding
CC-MAIN-2019-51
refinedweb
354
65.93
Dear active ur account through mail - Java Beginners activation account through email Hi, good morning i am suresh i want some help from u my question is how to create a activation account through email and access the login permission? plz send the code this mail id Hi Waiting for ur quick response Waiting for ur quick...
http://www.roseindia.net/tutorialhelp/comment/11040
CC-MAIN-2014-15
refinedweb
2,093
72.76
What we're going to make Usually the simplest example of anything programming related is an implementation of “Hello World” which, for those who are unfamiliar, is meant to be a greeting to all people on earth. Lets not do that. Instead, lets take a cue from the brilliant mind of Sun Tzu (“Keep your friends close but e...
https://thinkster.io/tutorials/create-a-react-component
CC-MAIN-2019-13
refinedweb
871
59.03
FxCop to the Rescue(reship) When you've got bad code, there's only one thing you can do when they come for you: call FxCop. Some of you may have already used this excellent free tool from Microsoft, but many developers haven't because, for some unexplained reason, it's hidden deep down in the bowels of the GotDotNet We...
https://www.cnblogs.com/BpLoveGcy/archive/2005/06/04/167730.html
CC-MAIN-2021-49
refinedweb
5,248
60.04
RationalWiki:Saloon bar/Archive180 Contents - 1 Pharyngulated again - 2 Thoughts on an idea I have for a peer reviewed history wiki - 3 Into the belly of the beast - 4 Mitt - 5 New articles - 6 Link to forumspace at the top of the page - 7 And you thought PIPA was bad... - 8 Right wing reading comprehension fail - 9 Ca...
https://rationalwiki.org/wiki/RationalWiki:Saloon_bar/Archive180
CC-MAIN-2022-21
refinedweb
22,266
68.4
10744/contiki-udp-packet-transmission-duration-with-cc2538 Could someone explain me what is going on within the Contiki-OS when it transmits an UDP packet? Here is the current consumption of my device in details running with the CC2538 chip: My question is: why it takes so long to transmit an UDP broadcast packet (abou...
https://www.edureka.co/community/10744/contiki-udp-packet-transmission-duration-with-cc2538
CC-MAIN-2021-10
refinedweb
473
66.13
Office development, VSTO, Sharepoint Let’s say you have a class and you want to store a collection of strings in that class. How would your method look like which would let you add a string to the class? 1: public class SampleClass 2: { 3: private List<string> myList = null; 4: 5: public SampleClass() 6: { 7: myList = ...
http://blogs.msdn.com/peterj/
crawl-002
refinedweb
2,210
70.13
Program a mBot With Scratch And Arduino Make. You can also program it using Arduino IDE since it makes it easy to write code, upload it to the I/O board, and interact with mBot. Line following is one simple code for controlling the mBot by Infrared Controller. #include "mBot.h" #include "MePort.h" #include "MeIR.h" #in...
http://www.electronics-lab.com/blog/page/7/?cat=291
CC-MAIN-2016-50
refinedweb
259
70.8
Create your first function using Visual Studio Azure Functions lets you execute your code in a serverless environment without having to first create a VM or publish a web application. In this article, you learn how to use Visual Studio 2019 to locally create and test a "hello world" function and then publish it to Azur...
https://docs.microsoft.com/en-us/azure/azure-functions/functions-create-your-first-function-visual-studio
CC-MAIN-2019-43
refinedweb
860
63.29
%matplotlib inline import pandas as pd import matplotlib.pyplot as plt import numpy as np pd.set_option('display.mpl_style', 'default') plt.rcParams['figure.figsize'] = (15, 3) plt.rcParams['font.family'] = 'sans-serif' By the end of this chapter, we're going to have downloaded all of Canada's weather data for 2012, an...
http://nbviewer.jupyter.org/github/jvns/pandas-cookbook/blob/master/cookbook/Chapter%205%20-%20Combining%20dataframes%20and%20scraping%20Canadian%20weather%20data.ipynb
CC-MAIN-2017-26
refinedweb
1,385
72.22
We just started using Linked Lists and quite frankly im lost. I understand the idea behind them and the purpose but im not sure exactly how to go about code-wise doing this. Any assistance to get me going would be greatly appreciated here are the instructions Here is my main programHere is my main programCode:0. define...
https://cboard.cprogramming.com/cplusplus-programming/125288-linked-lists.html
CC-MAIN-2017-26
refinedweb
577
79.09
All of us want notifications, but we’re also faced with the daily onslaught of emails in our inbox. So adding another daily email from a script just was not something I wanted to do. Recently I wrote about a backup script for MEGA Cloud. I wanted to enhance the script further and notify me every time it ran or if there...
https://wireandfrost.com/scripting-with-slack/
CC-MAIN-2019-39
refinedweb
1,046
62.98
Visual Studio 2013 and Qt3D module Hello everyone, i'm not able to use the checkBox to add Qt3D module support to my visual studio Qt Projets (it's grayed, there is no tooltip), and i failed to find informations about this. Anyone can explain me why ? I use Qt 5.5 msvc 2013 64 bits, with visual studio 2013 and visual s...
https://forum.qt.io/topic/80126/visual-studio-2013-and-qt3d-module
CC-MAIN-2018-30
refinedweb
712
51.04
Update: Looking for how to download files using Python3 and urllib? Check out my post here . While??? 18 thoughts on “Python File Read Write with Urllib2” It works! I found your site googling for a “urllib2 loop read”. Thanks fro the script won't it have problems with large files? Hey daonb, the only reason I could see...
http://www.techniqal.com/blog/2008/07/31/python-file-read-write-with-urllib2/
CC-MAIN-2015-22
refinedweb
457
76.52
dart-shlex dart-shlex is a Dart module for quoting and parsing shell commands. This library is a port of the node-shelex traying to keep as close to the original as possible. The following is verbatim quote from the original documentation. The API was inspired by the shlexmodule from the Python Standard Library. Howeve...
https://pub.dev/documentation/shlex/latest/
CC-MAIN-2022-33
refinedweb
199
62.64
/* * Copyright 1993, 1995 Christopher Seiwald. * * This file is part of Jam - see jam.c for Copyright information. */ # include "jam.h" # include "execcmd.h" # include "lists.h" # include <errno.h> # ifdef macintosh /* * execunix.c - execute a shell script on UNIX * * If $(JAMSHELL) is defined, uses that to formulate e...
http://opensource.apple.com/source/jam/jam-1160/execmac.c
CC-MAIN-2014-15
refinedweb
200
59.19
Android: how to create a loading screen – Part 2 Posted by Dimitri | Jan 21st, 2012 | Filed under Programming . So, here’s the code: package fortyonepost.com.lsth; import android.app.Activity; import android.app.ProgressDialog; import android.os.Bundle; import android.os.Handler; public class LoadingScreenActivity exte...
http://www.41post.com/4619/programming/android-coding-a-loading-screen-part-2
CC-MAIN-2020-10
refinedweb
1,063
56.35
There are two "long ways". I don't think any help can help, if you also look at all previous questions. --SA 6 solutions Top Rated Most Recent Rate this: Please Sign up or sign in This documentation is archived and is not being maintained. share|improve this answer answered Jun 13 '11 at 18:14 Hans Passant 658k81969162...
http://hiflytech.com/to-string/cannot-convert-long-to-string-c.html
CC-MAIN-2018-13
refinedweb
1,103
64.91
Parent Directory | Revision Log The system() stuff in *depends.awk should be dosystem(). Add use tempory file for deptree, bug #48303, thanks to patch from Stefan Hoefer <stefan@hoefer.ch>. stop using /etc/conf.d/basic fix copyright lines update copyright years rc-scripts-1.4.9 -- Fix bug 47111 (severe depcache problem...
https://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-src/rc-scripts/src/awk/cachedepends.awk?view=log&r1=1.17
CC-MAIN-2020-29
refinedweb
179
62.34
You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.View group Join the community to find out what other Atlassian users are discussing, debating and creating. Hello everyone, I need to make a call to a php form located in an external system, i...
https://community.atlassian.com/t5/Jira-Software-questions/Call-to-php-form-from-script/qaq-p/1615353
CC-MAIN-2021-10
refinedweb
385
56.15
1234567891011121314151617181920212223242526272829303132333435363738394041 #include <iostream> using namespace std; int main() { string name; int age; string country; int answerOneNoYes; std::cout << "Please enter your name: \n"; // asks user for their name std::cin >> name; // stores their name std::cout << "Hello " <<...
http://www.cplusplus.com/forum/beginner/253695/
CC-MAIN-2019-22
refinedweb
195
66.07
BufferedReader in Java is used to to read characters, arrays, lines and File Line by line. It also reads text from a character-input stream. A programmer can change the buffer size or can use default size. BufferedReader class in Java is also used to read the data in buffer. Here we will show how to read line by line d...
http://roseindia.net/java/example/java/io/bufferedreader-in-java.shtml
CC-MAIN-2014-15
refinedweb
159
58.99
- Product - Customers - Solutions Containers are supported in Pro and Enterprise plans. Depending on your plan, you can monitor 10 or 20 containers free for each host license. The container count is averaged across your entire infrastructure. Additional containers are billed at an additional cost per container per hour...
https://docs.datadoghq.com/account_management/billing/containers/?lang_pref=en
CC-MAIN-2021-25
refinedweb
156
60.41
Random walks mix faster on some graphs than on others. Rapid mixing is one of the ways to characterize expander graphs. By rapid mixing we mean that a random walk approaches its limiting (stationary) probability distribution quickly relative to random walks on other graphs. Here’s a graph that supports rapid mixing. Pi...
https://www.johndcook.com/blog/2016/12/24/rapidly-mixing-random-walks-on-graphs/
CC-MAIN-2018-26
refinedweb
496
72.26
error message could be stored in a php variable, just like here (exactly like in the guide you linked here): in the lang.en.php define('LANG_JS_ERROR1', 'Please fill all fields!'); in the lang.es.php define('LANG_JS_ERROR1', 'Please fillos allos fieldos!'); And in the javascript form validation just simply call the ph...
https://www.experts-exchange.com/questions/25890632/Multilanguage-JavaScript-Alert-Any-Solutions.html
CC-MAIN-2018-26
refinedweb
145
69.99
Teaching Programming with Python and PyGame Dr. Vern Ceder (vceder@canterburyschool.org) Mr. Nathan Yergler (nyergler@canterburyschool.org) Canterbury School Fort Wayne, IN Canterbury School Canterbury School, in Fort Wayne, IN, is a coed independent college preparatory school with a high school (9-12) enrollment of ar...
https://www.techylib.com/el/view/adventurescold/teaching_programming_with_python_and_pygame
CC-MAIN-2017-30
refinedweb
4,582
51.18
A tkinter checkbox can be created using the tkinter checkbutton widget. It allow users to select multiple options or choices from a number of different options. They are different from a radio button because in a radio button users can make only one choice, but checkbox allows multiple choices. They are seen as square ...
https://www.askpython.com/python-modules/tkinter/tkinter-checkbox-and-checkbutton
CC-MAIN-2021-10
refinedweb
511
59.9
0 Hello, I'm embarrassed for asking this question but for the life of me I cannot find an answer. This ultra simple code is giving this error as well as any other function that I'm trying to write. a function-definition is not allowed here before '{' token expected `,' or `;' before '{' token I'm using the latest versi...
https://www.daniweb.com/programming/software-development/threads/132987/ultra-simple-function-question
CC-MAIN-2017-47
refinedweb
103
64.54
I have never been good at thinking recursively - when studying JAVA, C and now again studying C++. Not that I am good at anything right now as a student but, I have tripped over it every time. It is assigned again, and I have to do it. There were three assignments. The first was drawing a picture of stars. I got throug...
http://cboard.cprogramming.com/cplusplus-programming/96161-recursion-ugh.html
CC-MAIN-2015-18
refinedweb
468
71.24
Lucene Score Every indexed RavenDB document has an associated score value that has been calculated by Lucene. This value is really important part of the Lucene engine because it has the influence on the search results relevancy. The basic idea is that the greater score value is the more relevant document is to a query....
https://ravendb.net/docs/article-page/2.5/nodejs/appendixes/lucene-score
CC-MAIN-2022-21
refinedweb
353
51.14
Enhance Python memcached client with a dictionary class Project description # mcdict Python class to access a memcache as if it was a dict. This implementation includes the keys() method. All the memcache limitations are preserved, e.g. keys must be strings no longer than 250 bytes. ## Usage Basic usage: import mcdict ...
https://pypi.org/project/mcdict/
CC-MAIN-2018-47
refinedweb
190
60.21
Andy Levy wrote: > > On Mon, Nov 23, 2009 at 00:36, SVram <malsam.v2_at_gmail.com> wrote: >> As said installed VS2008 and now everything is in good position. Ran the >> nant >> setup and it went on for nearly 8 hours in my system (p4 1gigs ram) >> Finally >> it threw an error in the final part of the script like as fol...
https://svn.haxx.se/tsvnusers/archive-2009-11/0340.shtml
CC-MAIN-2021-43
refinedweb
257
59.7
QWidget crash on Qt5-alpha Hi, I've successfully build Qt5 on my ubuntu 11.10 machine by clone Qt5 from the repos and follow the build instruction on the wiki. But when I tried to run my hello world widget application it crashed with this message: No platform plugin argument was specified, defaulting to "xcb". QWidget:...
https://forum.qt.io/topic/15706/qwidget-crash-on-qt5-alpha
CC-MAIN-2022-27
refinedweb
162
64.51
Error 'module' object has no attribute 'TrackerMIL_create' OpenCV 3.4 Python 2.7 My code: import cv2 import numpy as np from datetime import datetime import time now = datetime.now() i=0 cap= cv2.VideoCapture(0); fourcc = cv2.VideoWriter_fourcc(*'XVID') out= cv2.VideoWriter('videos/'+str(now)+'.avi', fourcc,20.0,(480,6...
https://answers.opencv.org/question/200604/error-module-object-has-no-attribute-trackermil_create/
CC-MAIN-2019-35
refinedweb
237
69.38
Summary The WorkflowPath object provides access to the attributes of a path contained within a job Workflow. Discussion The WorkflowPath object supports describing a path and navigating through the workflow. Properties Code sample The following script obtains a workflow path's description and the step IDs of the steps ...
https://pro.arcgis.com/en/pro-app/arcpy/workflow-manager/workflowpath-class.htm
CC-MAIN-2019-18
refinedweb
146
65.52
Re: converting float to double - From: dcorbit@xxxxxxxxx - Date: 20 Dec 2006 17:52:36 -0800 dcor...@xxxxxxxxx wrote: dcorbit@xxxxxxxxx wrote: William Hughes wrote: Dik T. Winter wrote: In article <1166646566.617718.113730@xxxxxxxxxxxxxxxxxxxxxxxxxxxx> "William Hughes" <wpihughes@xxxxxxxxxxx> writes: > Dilip wrote: ... ...
http://coding.derkeiler.com/Archive/C_CPP/comp.lang.c/2006-12/msg03510.html
CC-MAIN-2013-20
refinedweb
850
74.39
phylink¶ Overview¶ phylink is a mechanism to support hot-pluggable networking modules directly connected to a MAC without needing to re-initialise the adapter on hot-plug events. phylink supports conventional phylib-based setups, fixed link setups and SFP (Small Formfactor Pluggable) modules at present. Modes of operat...
http://martchus.no-ip.biz/doc/linux/networking/sfp-phylink.html
CC-MAIN-2021-04
refinedweb
1,221
51.78
SortedList::Add Method (Object^, Object^) Adds an element with the specified key and value to a SortedList object. Assembly: mscorlib (in mscorlib.dll) Parameters - key - Type: System::Object^ The key of the element to add. - value - Type: System::Object^ The value of the element to add. The value can be null. null,. #...
https://msdn.microsoft.com/en-us/library/system.collections.sortedlist.add(v=vs.110)?cs-save-lang=1&cs-lang=cpp
CC-MAIN-2017-13
refinedweb
121
50.73
#include <paradox.h> int PX_get_data_bcd(pxdoc_t *pxdoc, char *data, int len, char **value) Converts a data field as it stored in the database file into a bcd string. The string will not be longer than 20 chars including the final 0. It contains only the characters `+', `-', `0-9', and `.'.. len is the number of digits...
http://www.makelinux.net/man/3/P/PX_get_data_bcd
CC-MAIN-2015-22
refinedweb
126
58.48
import "github.com/bufbuild/buf/internal/pkg/storage" Package storage implements a simple storage abstraction. This is meant to abstract filesystem calls, as well as be a wrapper for in-memory or remote storage. It also provides a smaller attack vector as implementations can do verifications as to what is accessed and ...
https://godoc.org/github.com/bufbuild/buf/internal/pkg/storage
CC-MAIN-2020-05
refinedweb
447
61.33
Hey. I have a problem with the following program. When the loop ends and asks if I want to repeat the whole loop, if I answer Yes, the program does not continue and it ends at that point. import java.util.Scanner; import java.util.*; public class MyTest { public static void main(String[] args) { Scanner in = new Scanne...
https://www.javaprogrammingforums.com/whats-wrong-my-code/42595-problem-java-program.html
CC-MAIN-2020-16
refinedweb
130
61.63
File /usr/share/icinga2/include/plugins-contrib.d/hardware.conf contains a CheckCommand "lmsensors" which points to check_lmsensors. The ebuild/ package itself does not list such a file. Neither does it exist in /usr/lib64/nagios/plugins/ which seems to be PluginContribDir. When using this check command for example in ...
https://bugs.gentoo.org/show_bug.cgi?id=759595
CC-MAIN-2021-49
refinedweb
347
51.65
NAME scalbn, scalbnf, scalbnl, scalbln, scalblnf, scalblnl - multiply floating-point number by integral power of radix SYNOPSIS #include <math.h> double scalbln(double x, long exp); float scalblnf(float x, long exp); long double scalblnl(long double x, long exp); double scalbn(double x, int exp); float scalbnf(float x,...
https://man.archlinux.org/man/scalbln.3.en
CC-MAIN-2022-40
refinedweb
270
58.38
Every Windows program must have an icon. When you browse into the directory where the executable is stored, Windows browser will display this program's icon. When the program is running, this icon shows up in the taskbar and in the upper-left corner of the program's window. If you don't provide your program with an ico...
http://www.relisoft.com/book/win/3paint.html
crawl-001
refinedweb
7,106
62.58
Red Hat Bugzilla – Bug 3308 floor() function in libm (glibc-2.1) is broken on Alpha. Last modified: 2008-05-01 11:37:50 EDT I wish I could be more specific, but then I would be able to fix it. Here's the simplest FORTRAN program that demos the problem: WRITE(*,*) DNINT(0.0D0) END Reports 3.6028797E+16 instead of 0. Now...
https://bugzilla.redhat.com/show_bug.cgi?id=3308
CC-MAIN-2018-09
refinedweb
285
85.99
This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project. On 2 July 2012 18:24, Richard Guenther wrote: > On Mon, Jul 2, 2012 at 7:00 PM, Jonathan Wakely wrote: >> I'd like to see inline namespaces used so that in C++11 mode std::list >> refers to (for example) std::__2011::list, whi...
http://gcc.gnu.org/ml/libstdc++/2012-07/msg00002.html
CC-MAIN-2019-30
refinedweb
180
77.77
Prefixes and Mappings for Silverlight Libraries This topic describes the concepts of the default Silverlight XAML namespace and the reason why you might need to create mappings for additional XAML namespaces when you define parts of a Silverlight-based application in XAML. This topic contains the following sections. - ...
https://msdn.microsoft.com/en-us/library/dd728664(v=vs.95).aspx
CC-MAIN-2015-27
refinedweb
1,925
50.36
If you skim through the remaining rules to error handling, you often read the word noexcept. Before I write about the rules to error handling, I write first about the noexcept specifier and the noexcept operator in this post. noexcept exists in two forms since C++11: as a specifier and as an operator. The C++ core guid...
http://www.modernescpp.com/index.php/c-core-guidelines-the-noexcept-specifier-and-operator
CC-MAIN-2019-09
refinedweb
1,022
54.73
* Stefan Hajnoczi (address@hidden) wrote: > 2011/9/20 Mathieu Desnoyers <address@hidden>: > > * Lluís Vilanova (address@hidden) wrote: > >> Stefan Hajnoczi writes: > >> > >> > On Fri, Sep 16, 2011 at 06:59:38PM +0200, Lluís Vilanova wrote: > >> >> Signed-off-by: Lluís Vilanova <address@hidden> > >> >> --- > >> >> trace...
https://lists.gnu.org/archive/html/qemu-devel/2011-09/msg02664.html
CC-MAIN-2020-34
refinedweb
697
51.55
,) famous brand factory concrete batching plant 25 180 m3/h concrete batching plant,concrete mixing plant in import export trade forum yhzs40 mobile concrete mixing plant mobile concrete batch plant Get a Free Quote .jpg) small 25m3 mobile concrete batching plant export to to veracruz. 25m3/h mini mobile concrete batch...
http://gildan.in/concrete-product/concrete-batch-batching-plant-import-traders-in-nepal_concrete-batching-plant.html
CC-MAIN-2019-04
refinedweb
2,739
53.31
>> Can Selenium be used for .NET applications? The Complete Selenium WebDriver with Java Course 192 Lectures 20 hours Mastering XPath and CSS Selector for Selenium 47 Lectures 3 hours We can use Selenium for .NET applications. We should have Visual Studio 2019 installed in the system along with Selenium webdriver and a...
https://www.tutorialspoint.com/can-selenium-be-used-for-net-applications
CC-MAIN-2022-40
refinedweb
518
51.55
acct - switch process accounting on or off #include <unistd.h> int acct(const char *filename); Feature Test Macro Requirements for glibc (see feature_test_macros(7)): acct(): _BSD_SOURCE || (_XOPEN_SOURCE && _XOPEN_SOURCE < 500) The. On success, zero is returned. On error, -1 is returned, and errno is set appropriately...
http://huge-man-linux.net/man2/acct.html
CC-MAIN-2020-10
refinedweb
145
51.55
From: Borislav Petkov Hi, here's another round of the RAS daemon patchset. This time I'd like to get some ACKs/NACKs on the perf bits and whether this is agreeable to do. To some of the patches: * 0001-perf-Start-the-massive-restructuring.patch: This renames perf_event.c into events/core.c, as talked about earlier. Thi...
http://article.gmane.org/gmane.linux.kernel/1090275
CC-MAIN-2016-40
refinedweb
342
58.99
Hi, With my another addition to the series of blog’s, this time I am trying to leverage the .NET potential with Jedox. In this post I will be writing a custom .NET dll, and utilizing it in the Jedox Macro. Solution: Step 1: Create a “Class Library” C# project in your Visual Studio, remember to switch to the .NET versio...
https://amolpandey.com/2014/10/22/dot-net-functions-for-jedox/
CC-MAIN-2022-40
refinedweb
442
56.05
Introduction Comment is very important for a blog, because it provides a way for site owner to communicate with the readers. They can ask question, feedback in the comments. So in this chapter, I will talk about how to add comment support to our Wagtail Blog. Should I build new comment system or integrate 3 party comme...
https://www.accordbox.com/blog/wagtail-tutorials-10-add-comment-support-wagtail-blog/
CC-MAIN-2021-31
refinedweb
841
64.1
ScrollView.verticalScrollBarPolicy not working on Qt 5.4? Hi, I am trying to keep the vertical scrollbar always on the screen in my ScrollView for clarity. I was hoping that the property verticalScrollBarPolicy with the value Qt.ScrollBarAlwaysOn could accomplish this. I'm afraid the result is the same as with Qt.Scrol...
https://forum.qt.io/topic/67405/scrollview-verticalscrollbarpolicy-not-working-on-qt-5-4
CC-MAIN-2018-13
refinedweb
142
63.86
sphinx-paramlinks 0.1.0 Allows param links in Sphinx function/method descriptions to be linkable A Sphinx extension which allows :param: directives within Python documentation to be linkable. This is an experimental, possibly-not-useful extension that's used by the SQLAlchemy project and related projects. Configuration...
https://pypi.python.org/pypi/sphinx-paramlinks/0.1.0
CC-MAIN-2014-10
refinedweb
637
61.36
Steve, On Wed, 2009-09-30 at 08:36 -0400, Steve Dickson wrote: > On 09/30/2009 07:22 AM, Howard Wilkinson wrote: > > Steve, > > > > just for clarity what you are actually saying is that. > > On Tue, 2009-09-29 at 22:45 -0400, Steve Dickson wrote: > >> On 09/29/2009 09:42 PM, Chris Adams wrote: > >>> Once upon a time, S...
http://www.redhat.com/archives/fedora-devel-list/2009-September/msg01266.html
CC-MAIN-2016-30
refinedweb
779
66.47
This document is part of the Operations Manager Management Pack Authoring Guide . See What’s New in Visual Studio Authoring Extensions 2013 for a list of the enhancements and fixes provided in version 1.1.0.0 of System Center 2012 Visual Studio Authoring Extensions which was released on 10/18/2013. The Visual Studio Au...
http://social.technet.microsoft.com/wiki/contents/articles/5236.visual-studio-authoring-extensions-for-system-center-2012-operations-manager.aspx
CC-MAIN-2016-22
refinedweb
2,309
62.48
Having trouble to get the array to print to the screen and correctly at that. It is supposed to spit out 10 rows and 10 columns of random numbers between 1-1000. The way it is set up it should spit out 10 rows/columns of 0's. But cannot figure out how to get it to show that. Here is what the program is supposed to do. ...
http://forums.devshed.com/java-help-9/java-2d-array-help-949351.html
CC-MAIN-2014-23
refinedweb
313
64.61
A Gentle Introduction to Haskell, Version 98A Gentle Introduction to Haskell, Version 98]. A monad is constructed on top of a polymorphic type such as IO. The monad itself is defined. Mathematically, monads are governed by set of laws that should hold for the monadic operations. This idea of laws is not unique to monad...
http://www.haskell.org/tutorial/monads.html
CC-MAIN-2014-35
refinedweb
1,613
55.68
Extending the Visit Framework (Turbogears v0.9prerelease) A thread on the Turbogears group mentioned adding the ability to track IP addresses to the visit framework. This feature is pretty easy to implement as a plugin to the visit framework as it exists right now. Steps to doing so are as follows (assuming you already...
http://trac.turbogears.org/wiki/ExtendingVisitFramework?version=2
CC-MAIN-2019-18
refinedweb
488
57.67
Using Feature Flags in a Remix Application 7 min read Remix, the React-based full-stack framework for building server-rendered applications, has been generating a lot of buzz lately, especially since it was open-sourced. Remix is a dedicated Server-Side Rendering (SSR) framework for building web applications that are r...
https://daveyhert.hashnode.dev/using-feature-flags-in-a-remix-application
CC-MAIN-2022-21
refinedweb
1,304
59.94
Problem with Map and MapPolygon Hi, I have some problems with the QML Map. I want to display specific areas like airspaces. I figured out, that the MapPolygon, which was created for testing, is doing strange things (vertical cuts, disappearing), if I zoom in until its borders are no more part of the visible area of the...
https://forum.qt.io/topic/66486/problem-with-map-and-mappolygon
CC-MAIN-2019-30
refinedweb
263
73.03
Posted 03 Dec 2010 Link to this post I've just updated to the new version of ORM 2010.3 1125 (VS2010 VB) When i add a model using the wizard, on a new classes project (dll), on the last page of the wiard i get "the item you have selected is invalid. Would you like to choose another?" after i choose "brose" button to se...
https://www.telerik.com/forums/error-in-wizard
CC-MAIN-2017-47
refinedweb
327
78.48
An animated and smart Progress Bar for python alive-progress Ever found yourself in a remote ssh session, doing some lengthy operations, and every now and then you feel the need to hit [enter] just to ensure you didn't lose the connection? Ever wondered where your processing is in, and when will it finish? Ever needed ...
http://pythonawesome.com/an-animated-and-smart-progress-bar-for-python/
CC-MAIN-2020-05
refinedweb
1,640
54.97
Use scene and ui in the same program. @pythonista21 very short example (if I correctly understood your question): import ui d = ui.DatePicker() d.name = 'Select a date' d.mode = ui.DATE_PICKER_MODE_DATE def date_action(sender): print(sender.date) d.action = date_action d.present('sheet') put this line after the d.prese...
https://forum.omz-software.com/topic/4872/use-scene-and-ui-in-the-same-program/10
CC-MAIN-2020-34
refinedweb
358
56.72
Use a .pyui file in another .pyui file If I have a bunch of views defined in .pyui files is it possible for me to reuse these to build more complex views? I see that in the interface designer I can add a custom view and set a custom subclass, but that doesn't pull in the associated .pyui file. You have to create custom...
https://forum.omz-software.com/topic/3176/use-a-pyui-file-in-another-pyui-file/1
CC-MAIN-2020-45
refinedweb
1,044
68.57
I have a folder in my computer with many .txt file_one.txt --> location = r'C:\Users\User\data\file_one.txt' file_two.txt --> location = r'C:\Users\User\data\file_two.txt' file_forty.txt --> location = r'C:\Users\User\data\file_forty.txt' .txt list_from_files = ['file_one', 'file_two', 'file_forty'] You could use pathl...
https://codedump.io/share/wBSgSwgVHmFO/1/pythonic-way-to-create-a-list-of-strings-from-file-names-without-file-extension-in-folder
CC-MAIN-2017-47
refinedweb
116
54.08
From: Vladimir Ciobanu (psycho_at_[hidden]) Date: 2001-11-20 05:05:10 They may be, but even if they are, I'd still rather keep separate things in separate parts of library. Your Loki library is quite popular and most of it is very useful. It'd be nice if your library would take as few changes as possible ( adding it in...
https://lists.boost.org/Archives/boost/2001/11/20164.php
CC-MAIN-2022-21
refinedweb
186
75.5
GameFromScratch.com Now that we have covered getting your development environment up and running, we are going to jump into our first HaxeFlixel application. Let’s start from the very beginning and create a new application. As mentioned in the Getting Started tutorial, we can create an application using the simple comm...
http://www.gamefromscratch.com/post/2017/03/17/HaxeFlixel-Tutorial-Hello-World.aspx
CC-MAIN-2017-43
refinedweb
1,259
63.9
My Spring controller method looks something like this: @RequestMapping(method=RequestMethod.PUT, value="/items/{itemname}") public ResponseEntity<?> updateItem(@PathVariable String itemname, @RequestBody byte[] data) { // code that saves i I have created a spring mvc server. When I try sending JSON (using PUT method an...
http://www.dskims.com/tag/spring-mvc/
CC-MAIN-2018-22
refinedweb
717
54.12
User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.220 Safari/535.1 Steps to reproduce: Have been tested local storage performance in different browsers under Windows. Used IE8, IE9, Firefox 5.0, Chrome 13.XX Actual results: My application loads 1500 customer records f...
https://bugzilla.mozilla.org/show_bug.cgi?id=686049
CC-MAIN-2016-36
refinedweb
1,929
67.15
I enjoy reading and writing. I hope you enjoy at least the former. I have moved my blog to Brendan.Enrick.com. I think it is a great idea to always be reading code. You may learn more than you intend to sometimes. Read an article to learn one trick and you may learn a completely different one. Earlier today I was readi...
http://aspadvice.com/blogs/name/default.aspx?p=2
CC-MAIN-2014-42
refinedweb
2,137
65.52
Step-by-Step Guide to Understanding the Group Policy Feature Set Group Policy is the central component of the Change and Configuration Management features of the Microsoft® Windows® 2000 operating system. Group Policy specifies settings for groups of users and of computers, including registry-based policy settings, sec...
https://technet.microsoft.com/it-it/library/Bb742376.aspx
CC-MAIN-2015-14
refinedweb
8,457
54.02
L A W R E NC E JOURNAL-WORLD Ž 75 CENTS Politics concern advocates for increased school funding Celebrating Jim Sunny, pleasant High: 81 LJWorld.com -/.$!9 s 3%04%-"%2 s Low: 55 Today’s forecast, page 12A INSIDE ——— Judge-selection process may affect finance ruling SPORTS By Scott Rothschild Chiefs roll to eas...
https://issuu.com/lawrencejournal-world/docs/ljw_093013_02
CC-MAIN-2018-09
refinedweb
39,225
73.58
You can subscribe to this list here. Showing 5 results of 5 A new article about using Mimer Provider Manager in web development with=20 Asp.NET have been published on=20 Regards, Fredrik --=20 ******************************************** Fredrik =C5lund Mimer Information Technology AB +46 (0)18 780 92 00 Fredrik.Al ___...
http://sourceforge.net/p/mimerpm/mailman/mimerpm-user/
CC-MAIN-2015-06
refinedweb
208
59.5
The volatile modifier adds instructions to expand the variable to a 32-bit value (UXTB, UXTH, SXTB, SXTH).It doesn't make sense. checking code online #include "stdint.h" struct _st { uint8_t a; volatile uint8_t b; }st; uint32_t test(uint8_t c) { uint8_t out; if(st.a > c) out = st.a; else out = st.b; return out; }; test...
https://community.arm.com/support-forums/f/compilers-and-libraries-forum/52047/the-volatile-modifier-adds-instructions/175437
CC-MAIN-2022-21
refinedweb
237
79.97
When I start using a new platform, I like to do one specific thing: write a version of Asteroids for it. I find that Asteroids is both simple enough to write quickly, but it is a good enough test of the 2D rendering features available. Also, I like Asteroids. Pew, pew, pew.. *crunch*. Unfortunately, the last time I wro...
https://blogs.msdn.microsoft.com/johnkenn/2013/09/19/writing-a-retro-2d-arcade-game-for-windows-8-using-monogame/
CC-MAIN-2018-17
refinedweb
3,154
73.07
This document shows the basic usage of the javaflow API. First, consider the following program: class MyRunnable implements Runnable { public void run() { System.out.println("started!"); for( int i=0; i<10; i++ ) echo(i); } private void echo(int x) { System.out.println(x); Continuation.suspend(); } } Continuation c = C...
https://commons.apache.org/sandbox/commons-javaflow/tutorial.html
CC-MAIN-2015-22
refinedweb
839
58.79
Inventive Labs: Weblog /weblog 2009-02-06T00:00:00Z inventivelabs.com.au Harry, we are here to help* /weblog/post/harry-we-are-here-to-help/ 2009-02-06T12:17:13Z Virginia Murdoch <p>Last week, our colleagues at <a href="">Collier and Associates</a>.</p> <p>Collier contributed the design and we put the site together in ...
http://feeds.feedburner.com/inventivelabs-weblog
crawl-002
refinedweb
5,422
53
Kubernetes in the leading Container Orchestration platform that allows you to apply fast and streamlined infrastructure workloads using a declarative API. In this tutorial, we are going to follow a step-by-step guide for signing in with Platform9 Managed Kubernetes Platform, creating a new cluster and deploying an exam...
https://sweetcode.io/get-your-first-container-running-on-kubernetes/
CC-MAIN-2021-04
refinedweb
1,499
59.43
Storing and manipulating text The most common type of data for variables is text. The most common types in .NET for working with text are show in the following table: Getting the length of a string Add a new console application project named Ch04_ManipulatingText. In Visual Studio 2017, set the solution's startup proje...
https://www.oreilly.com/library/view/c-7-and/9781787129559/ch04s02.html
CC-MAIN-2020-50
refinedweb
130
58.89
I've posted this on the forum quite a while ago and forgot about it - but as the posting got bumped I thought it's worth a quick q/a over here: When importing objects, there's materials created automatically which sometimes (e.g. in the case of having lo-poly/hi-poly models) isn't that useful, in particular when you wo...
https://answers.unity.com/questions/8390/can-i-disable-automatic-creation-of-materials-on-m.html
CC-MAIN-2020-05
refinedweb
478
52.39
Hi! I'm trying to combine some frames in a GUI as a toolbar and content area. Currently I'm on windows and using python 3, and I want preferrably my app to work on *nix and mac as well. The problem is that in the following app, when I resize it the toolbar area is increasing/decreasing, and the content area is staying ...
https://www.daniweb.com/programming/software-development/threads/245830/python-tkinter-resize-problem
CC-MAIN-2018-51
refinedweb
232
70.29
The ultra secure messaging app, Signal, requires a mobile phone number in order to sign up to it. This, as my friend Tom Morris, points out, is madness. People don't own mobile phone numbers. They are rented from mobile operators. Yes, you may be able to move "your" number between a limited set of providers - but it ul...
https://shkspr.mobi/blog/2017/02/can-i-own-my-identity-on-the-internet/
CC-MAIN-2017-51
refinedweb
1,652
63.8
. Now to see if we can use the plots as a click track detector. I started with a track where I knew the drummer didn’t use a click track. I’m pretty sure that Ringo never used one – so I started with the old Beatle’s track – Dizzy Miss Lizzie. Here’s the resulting plot: This plot shows the beat duration variation (in s...
http://musicmachinery.com/2009/03/02/in-search-of-the-click-track/?like=1&source=post_flair&_wpnonce=ad7ead3064
CC-MAIN-2015-11
refinedweb
20,133
68.2
A bit of a mouthful of a post title, but I can assure my future self this post will be worthy of publishing because it'll save future self many angry hours shouting at build tools. The goal: no build tools, which leads to no config, which leads to no waiting around. SPONSORBuddy: The DevOps Automation Platform Get the ...
https://remysharp.com/2019/08/16/build-free-code-and-testing-es-module-imports
CC-MAIN-2019-51
refinedweb
781
72.36
Configure Hardware Load Balancing for Hub Transport Servers Applies to: Exchange Server 2010 SP3, Exchange Server 2010 SP2 Topic Last Modified: 2012-07-23 You can configure a hardware load balancing solution to distribute non-Exchange messages among your Hub Transport or Edge Transport servers. To learn more about load...
http://technet.microsoft.com/en-us/library/gg476049(d=printer,v=exchg.141).aspx
CC-MAIN-2014-35
refinedweb
716
54.93
I have a little code to do a Google search that someone made me. It works in dos but I'd like to also use it in the Python program. I am not sure how to define the --url parameter though so that it executes properly. I was wondering what I should do to define it. I've tried url = and that didn't quite work. Here is par...
http://www.python-forum.org/viewtopic.php?f=6&t=11047&p=14675
CC-MAIN-2015-35
refinedweb
152
78.65
OK, with that out of the way: I'm writing an animation class for my 2D platform game. Basically, all non-static objects will contain an animation object. The animation object has an ArrayList of Images that will be initialized at the creation of the object (parameters will specify file paths/extensions). What I want to...
http://www.gamedev.net/topic/624157-animation-class/
CC-MAIN-2016-07
refinedweb
234
55.84
Java2 SDK v. 1.4 Released 362 pangloss writes: "Yay: XML, built-in Perl-ish regex, jdbc 3.0, asserts, IPv6, lots of other goodies. Release notes and incompatibilities. And I think this means I can use my wheel-mouse in NetBeans without that extra module ;) Download it here." WilsonSD adds: "There are many cool new feat...
https://developers.slashdot.org/story/02/02/14/0317249/java2-sdk-v-14-released?sdsrc=next
CC-MAIN-2016-30
refinedweb
8,211
64
I've been just playing around with the v9fs work and privatenamespaces from yesterday's [October 1, 2005] top of tree from Linus'git archive and I was looking at /etc/mtab's reaction to havingmultiple namespaces with bind mounts.I have a directory ("slash") and bind it to "/" in a new namespacecreated with a clone call...
https://lkml.org/lkml/2005/10/2/103
CC-MAIN-2015-18
refinedweb
329
62.27
Docs | Forums | Lists | Bugs | Planet | Store | GMN | Get Gentoo! Not eligible to see or edit group visibility for this bug. View Bug Activity | Format For Printing | XML | Clone This Bug After emerging kiki I could not play, starting a new game did a segfault with this error: File "/usr/share/games/kiki//py/world.py",...
http://bugs.gentoo.org/60091
crawl-002
refinedweb
396
77.74
If you’ve been reading this column for the past few months, you’ve learned about the zsh shell’s () fabulous tab completion system. By adding the following two lines to your $HOME/.zshrc file, you can use the tab key to not only expand file names, but also get lists of command-line options. autoload -U compinit compini...
http://www.linux-mag.com/id/1106/
CC-MAIN-2018-09
refinedweb
2,151
61.26