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 |
|---|---|---|---|---|---|
2017-01-21 23:30:21 8 Comments
I am going to prepare some test data for a compression test. One of the them is the 'worst case test', which should make the compressor work worst. Use random number to generate such a file is an idea, but there still contain some kind of patterns in the data. Using 7zip to compress such ... | https://tutel.me/c/codereview/questions/153258/create+39worst+case+test39+data+for+compression+test | CC-MAIN-2019-18 | refinedweb | 1,074 | 70.53 |
Ah, then yes, iBATIS 3 might be more aggressive about using the nested
objects cache...(even without join mapping), I can't remember if iBATIS 2
would behave the same way. Might be worth a try... if it works in 2, then
I'll revisit the design to see if I can get 3 to only cache if it detects a
nested result map.
Clinto... | http://mail-archives.apache.org/mod_mbox/ibatis-user-java/200909.mbox/%3C16178eb10909151004p5a4b0251p304603782f714f89@mail.gmail.com%3E | CC-MAIN-2018-30 | refinedweb | 929 | 58.48 |
public abstract class Shape { protected String name; public String getName() { return name; } public void setName(String name) { this.name = name; } public abstract double getSurfaceArea(); protected double normalize(double entry) { if (entry < 0) return 0.0; else return entry; } public String toString() { return getNa... | http://www.dreamincode.net/forums/topic/267620-memory-address-printing-out/ | CC-MAIN-2013-20 | refinedweb | 134 | 61.77 |
Algorithms and OOD (CSC 207 2013F) : Readings)]
Summary: We consider the ways in which programmers and languages typically handle errors in programs. We then explore exceptions, Java's primary error-handling mechanism.
Important Classes
java.lang.Exception
java.lang.Integer
java.lang.NumberFormatException
java.io.IOExc... | http://www.math.grin.edu/~rebelsky/Courses/CSC207/2013F/readings/exceptions.html | CC-MAIN-2017-51 | refinedweb | 2,518 | 53.31 |
Point in region functions. More...
#include <grass/gis.h>
Go to the source code of this file.
Point in region functions.
This program is free software under the GNU General Public License (>=v2). Read the file COPYING that comes with GRASS for details.
Definition in file wind_in.c.
Returns TRUE if coordinate is within ... | http://grass.osgeo.org/programming6/wind__in_8c.html | crawl-003 | refinedweb | 133 | 71.51 |
.\" Copyright (c) 1994 .\" The Regents of the University of California._union.8 8.7 (Berkeley) 5/1/95 .\" .Dd May 1, 1995 .Dt MOUNT_UNION 8 .Os BSD 4.4 .Sh NAME .Nm mount_union .Nd mount union filesystems .Sh SYNOPSIS .Nm mount_union .Op Fl bfr .Op Fl o Ar options .Ar directory .Ar uniondir .Sh DESCRIPTION The .Nm moun... | http://opensource.apple.com//source/diskdev_cmds/diskdev_cmds-491.3.3/mount_union.tproj/mount_union.8 | CC-MAIN-2016-40 | refinedweb | 704 | 70.39 |
In a world where we hear and talk a lot about making code run concurrent or in parallel, there’s sometimes a little bit of confusion between the two. It happens that many times we use one term when referring to the other or even use them indistinguishably. Let’s shed some light on the matter.
When we say that we have c... | https://mccricardo.com/concurrent-vs-parallel/ | CC-MAIN-2022-33 | refinedweb | 372 | 63.39 |
The. This assignment operator takes its argument by value, making use of the existing copy and move constructor implementations.
To implement the assignment operator, we simply need to swap the contents of *this and the argument, other. When other goes out of scope at the end of the function, it will destroy any resour... | https://tfetimes.com/c-copy-and-swap/ | CC-MAIN-2020-29 | refinedweb | 277 | 50.06 |
This week’s article is all about classes in JScript .NET. I
introduced the class statement in article four of this series. This article
goes into more detail covering class access rules, inheritance,
and polymorphism. The article includes some sample code that
demonstrates how to use the features I discuss in this
arti... | https://www.codeguru.com/dotnet/object-oriented-features-of-jscript-net/ | CC-MAIN-2021-49 | refinedweb | 1,919 | 53 |
span8
span4
span8
span4
I'm removing duplicates from a File Geodatabase (FGDB) feature class using Sorter then DuplicateFilter, then writing the Unique features back to the same FGDB feature class.
I want to write the Duplicate features to a CSV log file with the date/time of the translation in the file name so I have ... | https://knowledge.safe.com/questions/35824/write-csv-file-where-filename-includes-datetimesta.html | CC-MAIN-2020-16 | refinedweb | 447 | 69.01 |
UN.
Both x86 and x64 binaries with float and double coordinate precision are supported: all C# Wrapper libraries are compatible with double precision builds if the UNIGINE_DOUBLE definition is used.
Requirements
- The minimum supported C# version is 4.0.
- The supported platforms are Windows and Linux.
- Under Windows,... | https://developer.unigine.com/devlog/20141120-unigine-2.0-alpha2 | CC-MAIN-2020-05 | refinedweb | 2,293 | 51.44 |
A form field for conveniently editing a date using a calendar popup. More...
#include <Wt/Ext/DateField>
A form field for conveniently editing a date using a calendar popup.
You can set a WDateValidator to specify in more detail the valid range, and the client-side validation messages. When using a WDateValidator, howe... | https://www.webtoolkit.eu/wt/doc/reference/html/classWt_1_1Ext_1_1DateField.html | CC-MAIN-2018-09 | refinedweb | 115 | 66.33 |
Hi all,
I have a question I'd like to ask regarding JFrames and JMenuBars. My question is I have a main JFrame window which extends JFrame, and in this JFrame I have created a JMenuBar. I have created other JFrames which open up after JButtons have been clicked on and found that in each JFrame file, in order to show th... | http://www.javaprogrammingforums.com/%20awt-java-swing/5887-jframes-jmenubars-printingthethread.html | CC-MAIN-2017-34 | refinedweb | 372 | 52.39 |
I'm trying to understand socket programming in python by experimenting a little. I'm trying to create a server that you can connect to by telnet and that echoes what you type in the telnet prompt. I don't want to start using threads just yet. This is my code.
import socket host = "127.0.0.1" port = 8080 sock = socket.s... | https://www.daniweb.com/programming/software-development/threads/371134/socket-error-errno-107-transport-endpoint-is-not-connected | CC-MAIN-2018-13 | refinedweb | 189 | 71.41 |
Finding the nth root of a periodic function
Posted March 05, 2013 at 02:06 PM | categories: nonlinear algebra | tags: heat transfer | View Comments
Updated March 05, 2013 at 03:12 PM
There is a heat transfer problem where one needs to find the n^th root of the following equation: \(x J_1(x) - Bi J_0(x)=0\) where \(J_0\... | http://kitchingroup.cheme.cmu.edu/blog/2013/03/05/Finding-the-nth-root-of-a-periodic-function/ | CC-MAIN-2018-30 | refinedweb | 552 | 84.17 |
%I
%S 1,2,4,6,8,9,12,15,16,18,20,24,25,27,28,30,32,35,36,40,42,44,45,48,49,
%T 50,52,54,55,56,60,63,64,65,66,70,72,75,77,78,80,81,84,85,88,90,91,95,
%U 96,98,99,100,102,104,105,108,110,112,114,115,117,119,120
%N Positive integers x that are (x-1)/log(x-1) smooth, that is, if a prime p divides x, then p <= (x-1)/log(x-1... | http://oeis.org/A316350/internal | CC-MAIN-2019-13 | refinedweb | 256 | 73.41 |
In today’s Programming Praxis exercise, our goal is to implement an algorithm that calculates the bernoulli numbers and one that uses them to quickly calculate the sum of the mth power of numbers 1 through n. Let’s get started, shall we?
A quick import:
import Data.Ratio
To calculate the Bernouilli numbers I initially ... | http://bonsaicode.wordpress.com/2011/02/11/programming-praxis-sums-of-powers/ | CC-MAIN-2014-41 | refinedweb | 393 | 71.95 |
where this is correct syntax for inserting element
V=inserElementAt(n,m)
V is the class object in my program
can u explain a simple example of vector class normal and simple.....for only undrstandidng the concept of vector.....plzzzzz
i want to update my knowledge in java please update new trends
what is it vector?
wha... | http://www.roseindia.net/discussion/18701-Vector-Example-in-java.html | CC-MAIN-2015-06 | refinedweb | 609 | 56.76 |
add_key — add a key to the kernel's key management facility
#include <keyutils.h>.
There are a number of key types available in the core key management code, and these can be specified to this function:rings.
The keyring doesn't exist.
The keyring has expired.
The keyring has been revoked.
The payload data was invalid.... | http://man.linuxexplore.com/htmlman2/add_key.2.html | CC-MAIN-2021-21 | refinedweb | 126 | 69.99 |
- Write a Java program to search an element in an array using linear search algorithm.
Given an array of integer size N and a number K. We have to search number K in given array. If number K is present in input array then we have to print it's index.
Algorithm to search an element in an unsorted array using linear sear... | https://www.techcrashcourse.com/2016/04/java-program-to-search-element-in-array.html | CC-MAIN-2020-16 | refinedweb | 323 | 56.05 |
03 August 2010 13:16 [Source: ICIS news]
LONDON (ICIS)--Dow Chemical swung to a net profit of $659m (€501m) in the second quarter, compared with a loss of $332m in the same period of last year, on stronger volumes and price gains, the US chemical major said on Tuesday.
Reported sales for the three months ended 30 June ... | http://www.icis.com/Articles/2010/08/03/9381838/dow-chemical-swings-to-net-profit-of-659m-as-sales-rise-20.html | CC-MAIN-2014-52 | refinedweb | 350 | 51.38 |
Introdu.
JavaScript in the JVM
A few years back, I read a blog post by a fellow named Steve Yegge, which talked about JavaScript on the JVM. The post is long, but well worth the read. At one point, he talks about the benefits of scripting on the JVM, and all of what he wrote and talked about back then is still valid to... | https://moduscreate.com/blog/javascript-and-the-jvm/ | CC-MAIN-2021-43 | refinedweb | 3,722 | 77.64 |
A timer is an object of Timer class which is the subclass of Object class present in java.lang package. A timer fires one or more action events after regular interval of time (in milliseconds) called delay.
The amount of delay is specified at the time of creation of timer. A timer is used in a program by creating a tim... | http://ecomputernotes.com/java/swing/timer-class-example | CC-MAIN-2019-39 | refinedweb | 255 | 58.28 |
Hi,
I am new to Silverlight and this website, so sorry if I am posting in the wrong section.
I am trying to create a custom border control in Silverlight 2 which acts like the Border control already existing in System.Windows.Controls, however I want it to have a different look (specifically, I am trying to draw sharp ... | http://silverlight.net/forums/t/15727.aspx | crawl-001 | refinedweb | 644 | 69.11 |
Java struts variable valu - Struts
date format updated
STRUTS2 Dynamic data is not
Loading updated values In my jsp project profile updating is one of that part. While updating i have to show updated values in choice list for birthday date column. How can we show the previously updated values in choice
Servlets Books
w... | http://roseindia.net/tutorialhelp/comment/91863 | CC-MAIN-2014-42 | refinedweb | 277 | 50.02 |
thrkill—
#include <signal.h>
int
thrkill(pid_t
tid, int sig,
void *tcb);
thrkill() function sends the signal given by sig to tid, a thread in the same process as the caller.
thrkill() will only succeed if tcb is either
NULLor the address of the thread control block (TCB) of the target thread. sig may be one of the sign... | https://man.openbsd.org/OpenBSD-current/man2/thrkill.2 | CC-MAIN-2019-35 | refinedweb | 142 | 72.97 |
Summary
A hotfix is available for Microsoft BizTalk Server 2013, Microsoft BizTalk Server 2010, and Microsoft BizTalk Server 2009.This hotfix enables support for Health Insurance Exchange (HIX) EDI transactions 005010x306 (820) and 005010x220 (834). This hotfix includes HIPAA 5010 compliant schemas that you can build a... | https://support.microsoft.com/en-us/topic/fix-support-for-hix-edi-transactions-005010x306-820-and-005010x220-834-for-biztalk-server-2013-biztalk-server-2010-and-biztalk-server-2009-2a175f83-6b59-0982-6d35-0d6edf3858f6 | CC-MAIN-2021-49 | refinedweb | 188 | 50.36 |
ANTLR Section Index | Page 3
Is there a way to match a grammar fragment exactly n times similar to FLEX's (...)?{1,n} construct?
ANTLR currently does not have a {1,n} operator just ?, +, *. It is somewhat of a pain, but I usually just check the count during the semantic analysis or translation phase. In other words, us... | http://www.jguru.com/faq/java-tools/antlr?page=3 | CC-MAIN-2017-47 | refinedweb | 647 | 66.84 |
API Documentation
2.3
Introduction
Open Babel is a full chemical software toolbox. In addition to converting file formats, it offers a complete programming library for developing chemistry software. The library is written primarily in C++ and also offers interfaces to other languages (e.g., Perl, Python, Ruby, and Java... | http://openbabel.org/api/2.3/ | CC-MAIN-2016-36 | refinedweb | 168 | 53.07 |
Problem
You have a class that represents some kind of text field or document, and as text is appended to it, you want to correct automatically misspelled words the way Microsoft Word's Autocorrect feature does.
Solution
Using a map, defined in , strings, and a variety of standard library features, you can implement thi... | https://flylib.com/books/en/2.131.1/autocorrect_text_as_a_buffer_changes.html | CC-MAIN-2021-21 | refinedweb | 704 | 62.48 |
Sorry for the delay in getting the results out. There is a really funny story behind it with me running 7 hours of tests in debug mode then aggregating results and getting it all ready before I realized what I had done :-/
You can find the original contest here.
One of the key optimizations for the tokenizer is realizi... | http://codebetter.com/blogs/gregyoung/archive/2006/08/15/148292.aspx | crawl-002 | refinedweb | 4,784 | 69.41 |
Important: Please read the Qt Code of Conduct -
QTreeView separate class implementation
I'm trying to implement treeView widget as a separate class. The idea is I have a mainWindow with pushButton that when pressed opens a file dialog from which users selects directory. The selected directory path is given to instance ... | https://forum.qt.io/topic/117602/qtreeview-separate-class-implementation/4 | CC-MAIN-2021-17 | refinedweb | 817 | 50.16 |
the underlying ECDSA algorithm – in fact it is obtained by multiplying the generator point on the curve by our private key. As any point on the curve, it therefore has an x-coordinate and a y-coordinate, both being 32 bytes unsigned integers. So one way to encode the public key would be as follows.
- take the x-coordi... | https://leftasexercise.com/2018/03/08/keys-in-the-bitcoin-network-the-public-key/ | CC-MAIN-2021-31 | refinedweb | 1,128 | 59.23 |
In the previous article we introduced Redux for managing the user interface state and added some rudimentary animation.
In this addition we will refactor the application models and introduce some testing.
To follow along with this article checkout the commit b01c12d.
$ git clone $ npm install $ git checkout b01c12d
Fix... | https://www.withouttheloop.com/articles/2016-01-04-tetris4/ | CC-MAIN-2022-27 | refinedweb | 2,185 | 58.18 |
I have set up nested routing for a project I’m working on. The routing
config file looks like this:
resources :projects do
resources :key_questions
end
I have this working for other aspects of my site just fine, and
actually have no problems at all except for when I’m trying to destroy
a key_question entry.
Here is my ... | https://www.ruby-forum.com/t/strange-routing-error/197830 | CC-MAIN-2021-43 | refinedweb | 182 | 64.51 |
[ Split from original support question here: ]
Setting up firejail is relatively easy, and the included default profiles thoroughly enhance security for the programs they are for. You can configure firejail for further needs and for additional programs. How complex you want to make it is up to you. I'll provide an over... | https://forums.linuxmint.com/viewtopic.php?p=1067011&sid=66d038608062f6d29c4f633ddd83c7ba | CC-MAIN-2018-05 | refinedweb | 1,334 | 53.92 |
mona is a Javascript library for easily writing reusable, composable parsers.
It makes parsing complex grammars easy and fun!
With
mona, you simply write some Javascript functions that parse small pieces
of text and return any Javascript value, and then you glue them together into
big, intricate parsers using
combinato... | https://www.npmjs.com/package/mona | CC-MAIN-2018-09 | refinedweb | 2,765 | 58.58 |
This post has (errr, “These posts have”) been a long time coming. They are based off the Mix 11 and TechEd 2011 sessions I gave a loooooong time ago, but despite my best efforts I’ve not been able to post anything to my blog for some time. Partly it was due to a family vacation in Yellowstone National Park (go there! i... | https://blogs.msdn.microsoft.com/ptorr/2011/07/11/background-agents-part-1-of-3/ | CC-MAIN-2017-26 | refinedweb | 2,391 | 57.2 |
hi,
Just a quick question. I wrote a short code for generating 0, 1 randomly in order to simulate a coin-tossing game.
I compiled and execute the program, it just gave out 1 result all the time!!!I compiled and execute the program, it just gave out 1 result all the time!!!Code://This program will simulate 100 times //o... | http://cboard.cprogramming.com/cplusplus-programming/103889-random-isn%27t-really-random.html | CC-MAIN-2015-11 | refinedweb | 178 | 62.01 |
A couple of years ago the BBC distributed nearly a million BBC Micro:bits to schools in the UK as part of the BBC’s Make it Digital initiative. It was generally considered a resounding success, as described for example in this article from the BBC website..
You can program the BBC micro:bit in several ways, including u... | https://compucademy.net/bbc-microbit-introduction/ | CC-MAIN-2022-27 | refinedweb | 723 | 61.26 |
XSL Jumpstart: Creating Style Sheets
XSL Jumpstart
In this chapter
- XSL Processing
- Creating the Style Sheet
- Templates and Template Rules
- Understanding Patterns
- Creating Text
- Getting the Content of an Element
- Outputting the Results
- Applying Style Sheets Dynamically
- Retrieving Attributes
- Adding New Tem... | http://www.informit.com/articles/article.aspx?p=26312&seqNum=6 | CC-MAIN-2017-09 | refinedweb | 1,580 | 62.07 |
LogGenerator is used in older versions for generating statistics on how many page views you have per page on your website. Normally you don't use it...
You don't need it for using log4net no...
To get statistics on usage, use GA (Google Analytics) instead...free, and a thousand times better. There is a nice addon to gi... | https://world.optimizely.com/forum/legacy-forums/Episerver-7-CMS/Thread-Container/2014/6/Episerver-Migration-from-52R2-to-70-/ | CC-MAIN-2022-21 | refinedweb | 114 | 62.54 |
log.rofl(‘Fun with Groovy metaprogramming’)
Recently I saw a post by someone (I think it was @jbarnette, but it was retweeted to me) suggesting that there should be some alternate log levels, like
fyi,
omg, or even
wtf. I thought that was pretty funny, but then it occurred to me I could probably implement them using Gr... | https://kousenit.org/2011/12/ | CC-MAIN-2017-17 | refinedweb | 1,359 | 51.44 |
The final keyword does not allow modifying or replacing its original value or definition.
The final keyword can be used in the following three contexts:
If a variable is declared final, it can be assigned a value only once. The value of a final variable cannot be modified once it has been set.
A variable declaration in... | http://www.java2s.com/Tutorials/Java/Java_Object_Oriented_Design/0095__Java_final_Keyword.htm | CC-MAIN-2017-22 | refinedweb | 394 | 52.7 |
This prints 7, not 5 as it would if the defines are replaced with:
Code: Select all
#include <iostream> using namespace std; #define max(a,b) a>b?a:b #define max(a,b) a<b?a:b int main() { int a=7, b=5, c=3; cout << (min(a,max(b,c))) << endl; return 0; }
#define max(a,b) (a>b?a:b)
#define max(a,b) (a<b?a:b)
If you compi... | https://onlinejudge.org/board/viewtopic.php?f=14&t=71441&p=208068 | CC-MAIN-2020-16 | refinedweb | 168 | 88.74 |
These two example programs should work without any changes on a Linux or FreeBSD system. For other operating systems, minor changes are needed, mostly with file paths. These examples are designed to give enough details for you to understand the problem, without the clutter that is a necessary part of a real application... | http://dev.mysql.com/doc/refman/5.7/en/libmysqld-example.html | CC-MAIN-2015-22 | refinedweb | 1,427 | 57.16 |
Hi,
I need to do the following.
Suppose I have a class A and class B and C are subtypes of A.
I want to implement an ArrayList that contains subtypes of A. But I only want to implement this ArrayList using methods in class A.
I was thinking about using the bounded wildcard, but I could not get it to work.
So, I need so... | http://www.javaprogrammingforums.com/collections-generics/14724-arraylist-implementation.html | CC-MAIN-2014-10 | refinedweb | 188 | 87.52 |
How can I implement conditional compilation in Java?
Created May 4, 2012
In the general case, conditional compilation in Java is not needed where it would be needed in C/C++ because the same class files must run on all platforms. This is not always the case, as you may want either testing code included only in testing ... | http://www.jguru.com/faq/view.jsp?EID=58973 | CC-MAIN-2019-04 | refinedweb | 718 | 63.09 |
Before we can write our first program (which we will do very soon), we need to know two things about development environments.
First, although our programs will be written inside .cpp files, the .cpp files themselves will be added to a project. Some IDEs call projects “workspaces”, or “solutions”.:
#include <iostream> ... | http://www.learncpp.com/cpp-tutorial/06-writing-your-first-program/ | crawl-001 | refinedweb | 1,087 | 75.5 |
Other Software
Soft Download Site
Download freware and shareware archive - is a PAD (Portable Application Description)software archive ( software repository ) . The same engine based on Php5-MySql database- Smarty templating . Modifications were made to accommodate the features of a modern software repository, Read the... | http://m.mowser.com/web/trialsoftwarez.com%2Fcategory%2Fweb-development%2Fother-12%2F | crawl-002 | refinedweb | 1,829 | 57.2 |
Opened 15 months ago
Closed 15 months ago
#19668 closed New feature (wontfix)
Form enhancement: `Form.set_data` to set data and files
Description
This simply moves the logic for setting is_bound, data and files into a method which enables setting the data after form initialization. This is a backwards compatible. This ... | https://code.djangoproject.com/ticket/19668 | CC-MAIN-2014-15 | refinedweb | 446 | 63.19 |
import all of the how-to articles from the pkgsrc.se wiki
This how-to describes how to install NetBSD/hpcsh on a Jornada 620LX. We will be using a 2 GB compact flash card and no swap.. Also, not having a serial cable for this (somewhat) rare Jornada I did the entire install through the in-ROM Windows CE and a CF Disk. ... | https://wiki.netbsd.org/cgi-bin/cvsweb/wikisrc/tutorials/how_to_install_netbsd_on_hpcsh.mdwn?rev=1.1;content-type=text%2Fx-cvsweb-markup | CC-MAIN-2017-09 | refinedweb | 572 | 66.23 |
Introduction
Behavior testing simply means that we should test how an application behaves in certain situations. Often the behavior is given to us developers by our customers. They describe the functionality of an application, and we write code to meet their specifications. Behavioral tests are a tool to formalize thei... | https://semaphoreci.com/community/tutorials/getting-started-with-behavior-testing-in-python-with-behave | CC-MAIN-2019-13 | refinedweb | 2,450 | 62.07 |
Wikipedia:Redirects for discussion
From Wikipedia, the free encyclopedia
Redirects for discussion (RfD) is the place where Wikipedians decide what should be done with problematic redirects. Items sent here usually stay listed for a week or so, after which they are deleted by an administrator, kept, or retargeted.
Note:... | http://ornacle.com/wiki/Wikipedia:Redirects_for_discussion | crawl-002 | refinedweb | 13,897 | 57.4 |
I'm trying to find the first day of the month in python with one condition which is if my current date passed the 25th of the month then the first date variable will hold the first date of the next month instead of the current month. I'm doing like the following:
import datetime
todayDate = datetime.date.today()
if (to... | https://codedump.io/share/R6nadLg5wziP/1/finding-first-day-of-the-month-in-python | CC-MAIN-2017-30 | refinedweb | 145 | 61.43 |
This action might not be possible to undo. Are you sure you want to continue?
Cat. No. 15107u
Contents
Important Changes . . . . . . . . . . . . . . . . Important Reminders . . . . . . . . . . . . . . Introduction . . . . . . . . . . . . . . . . . . . . . Personal Representative . . . . . . . . . . . . Duties . . . . .... | https://www.scribd.com/document/545774/US-Internal-Revenue-Service-p559-2002 | CC-MAIN-2017-04 | refinedweb | 25,160 | 62.38 |
Are you sure?
This action might not be possible to undo. Are you sure you want to continue?
)
Department of the Treasury Internal Revenue Service
Capital Gains and Losses
Attach to Form 1065.
OMB No. 1545-0099
Name of partnership
Employer identification number
Part I
Short-Term Capital Gains and Losses—Assets Held 1 Ye... | https://www.scribd.com/document/540612/US-Internal-Revenue-Service-f1065sd-1992 | CC-MAIN-2018-30 | refinedweb | 1,497 | 51.99 |
Nevermind everyone - I've fixed this one myself. You have to make sure that the Nextion is being powered by the Arduino (not an external source!) or your Serial will say recvRetString[0,]
for anyone who is interested this is my final code
#include <Nextion.h> #include <Wire.h> #include <LCD.h> #include <LiquidCrystal_I... | http://support.iteadstudio.com/support/discussions/topics/11000010880 | CC-MAIN-2018-30 | refinedweb | 523 | 64.71 |
FileInfo.Delete Method
.NET Framework 4.5
Permanently deletes a file.
Namespace: System.IONamespace: System.IO
Assembly: mscorlib (in mscorlib.dll)
The following example demonstrates the Delete method.
using System; using System.IO; class Test { public static void Main() { string path = @"c:\MyTest.txt"; FileInfo fi1 =... | http://msdn.microsoft.com/en-us/library/system.io.fileinfo.delete.aspx | CC-MAIN-2014-52 | refinedweb | 134 | 56.72 |
Given N lines and one starting point and destination point in 2-dimensional space. These N lines divide the space into some blocks. We need to print the minimum number of jumps to reach destination point from starting point. We can jump from one block to other block only if they share a side.
Examples:
Input : Lines = ... | https://www.geeksforgeeks.org/minimum-block-jumps-reach-destination/ | CC-MAIN-2018-09 | refinedweb | 528 | 67.62 |
Moose::Cookbook::Basics::HTTP_SubtypesAndCoercion - Demonstrates subtypes and coercion use HTTP-related classes (Request, Protocol, etc.)
version 2.0802
package Request; use Moose; use Moose::Util::TypeConstraints; use HTTP::Headers (); use Params::Coerce (); use URI (); subtype 'My::Types::HTTP::Headers' => as class_t... | http://search.cpan.org/~ether/Moose-2.0802/lib/Moose/Cookbook/Basics/HTTP_SubtypesAndCoercion.pod | CC-MAIN-2013-48 | refinedweb | 945 | 57.71 |
Sometimes.
These applications can only run on Windows 8 and they have a brand new look and feel compared to other and older Windows applications. In addition, Windows Store apps follow a different pattern as far as publishing and sales are concerned. Windows Store apps, in fact, can be distributed for free or for sale ... | http://www.codemag.com/Article/1304051 | CC-MAIN-2014-49 | refinedweb | 4,351 | 53 |
2 Get Started
Where you start in Oracle Visual Builder Studio depends on the type of IDCS role you've been assigned, as well as your membership status within the project:
Access VB Studio
You can access VB Studio using the latest version of Google Chrome, Firefox, and Safari. Google Chrome is the only browser currently... | https://docs.oracle.com/en/cloud/paas/visual-builder/visualbuilder-manage-development-process/get-started.html | CC-MAIN-2020-40 | refinedweb | 2,400 | 61.87 |
Enlighten Progress Bar
Project description
Overview
Enlighten Progress Bar is a console progress bar module for Python. (Yes, another one.)
The main advantage of Enlighten is it allows writing to stdout and stderr without any redirection.
Documentation
Installation
PIP
$ pip install enlighten
EL6 and EL7 (RHEL/CentOS/S... | https://pypi.org/project/enlighten/ | CC-MAIN-2018-26 | refinedweb | 343 | 50.94 |
- Ryan O'Connor , Tom Kopchak
- Jul 11, 2017
- Tested on Splunk Version: N/A
While Splunk is well equipped for ingesting large quantities of data without issue, it can be significantly more difficult to extract the original raw data from Splunk (if you ever need to). This blog post is based on a true “worst case scenar... | https://www.hurricanelabs.com/splunk-tutorials/splunk-answers-how-to-export-massive-amounts-of-data-from-splunk | CC-MAIN-2019-43 | refinedweb | 2,263 | 61.06 |
Project Server Events
This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
The Microsoft Office Project S... | https://msdn.microsoft.com/en-us/library/ms481079(v=office.12).aspx | CC-MAIN-2015-48 | refinedweb | 1,687 | 55.95 |
Animal Rights vs. Animal Welfare: Making the Case
May 18, 2008. Brighton Town Lodge, Rochester, NYKindly transcribed by David Stasiak. Some additional editing by Alex Chernavsky.
Original audio recording is
here (2 hrs 18 mins; 16MB). Microsoft Word version is
here.
Gary Francione: Thank you very much. I just wanted to... | http://www.animalliberationfront.com/Philosophy/ARvAW-Francione.htm | crawl-003 | refinedweb | 21,924 | 71.34 |
Technical Articles
Writing an Example Application using the SAP S/4HANA Cloud SDK for JavaScript (Beta)
As you may have seen in our announcement blog post, we have released the SAP S/4HANA Cloud SDK for JavaScript (beta)! In time for TechEd Las Vegas we bring the benefits of the SAP S/4HANA Cloud SDK also to anyone dev... | https://blogs.sap.com/2018/10/02/writing-an-example-application-using-the-sap-s4hana-cloud-sdk-for-javascript-beta/ | CC-MAIN-2022-33 | refinedweb | 3,048 | 56.86 |
This.]
Excessive.♦.
Recently I was working with a customer who had a file server experiencing high CPU in the WMIprvse.exe process. We received multiple user dumps and noted that someone or something was running the same query again and again. We needed to figure out what was running the query in a tight loop, causing... | https://blogs.msdn.com/b/ntdebugging/default.aspx?Redirected=true&PostSortBy=MostViewed&PageIndex=1 | CC-MAIN-2015-27 | refinedweb | 714 | 73.68 |
Rules of texas holdem poker
Atlantic chip female bulldog tables
pacific
2005 shirts download on line games download
chips with tricks
thursday odds high
tournaments play money online
rule cheat with game tricks trackers
video hint sheet
trek top software money party. Nickname. Tournement paradise player gay helping
fre... | http://ca.geocities.com/casino778palms/tsdkl-ph/rules-of-texas-holdem-poker.htm | crawl-002 | refinedweb | 2,060 | 69.58 |
Feb 17, 2009 04:19 PM|JKC|LINK
I have a property of an object called Contract. It is called client (the GUID of Client in the contract table links to the client in the Client table).
I am trying to manipulate its (the client property of the contract entity) order in the dynamic data grid using the new columnorder attri... | http://forums.asp.net/p/1386121/2947381.aspx?Dynamic+Data+Attribute+Trouble+ | CC-MAIN-2015-18 | refinedweb | 1,015 | 61.56 |
Lazy learning: React useEffect hook:
It’s a simple diagram but really shows what it is in a nutshell. What makes the useEffect hook great is that it can be used in all phases of the lifecycle. So let’s get right into it.
on every update
useEffect can be used to run code on each update or re-render of the component it’s... | https://nasheomirro.medium.com/lazy-learning-react-useeffect-hook-e66dfc6386b0?source=post_internal_links---------4---------------------------- | CC-MAIN-2021-21 | refinedweb | 385 | 65.73 |
PParse demonstrates progressive parsing.
In this example, the application doesn't have to depend upon throwing
an exception to terminate the parsing operation. Calling parseFirst() will
cause the DTD to be parsed (both internal and external subsets) and any
pre-content, i.e. everything up to but not including the root ... | http://xerces.apache.org/xerces-c/pparse-3.html | CC-MAIN-2017-17 | refinedweb | 319 | 57.77 |
@react-google-maps/api@react-google-maps/api
@react-google-maps/api
This library requires React v16.6 or later. To use the latest features (including hooks) requires React v16.8+. If you need support for earlier versions of React, you should check out react-google-maps
This is complete re-write of the (sadly unmaintain... | https://preview.npmjs.com/package/@byrekt/react-google-maps-api | CC-MAIN-2020-40 | refinedweb | 587 | 50.53 |
What is RTTI?
- RTTI stands for Run-time Type Identification.
- RTTI is useful in applications in which the type of objects is known only at run-time.
- Use of RTTI should be minimized in programs and wherever possible static type system should be used.
- RTTI allows programs that manipulate objects or references to ba... | http://www.sourcetricks.com/2008/06/c-rtti.html | CC-MAIN-2017-04 | refinedweb | 349 | 51.78 |
Creating Palette Images
February 05, 1999 | Fredrik Lundh | Previously published as “fyi #53: creating palette images”
Introduction
One of the weak spots in the current release of PIL is that it’s quite difficult to create a 8-bit palette image from scratch. The obvious way to create a palette, by using the ImagePalett... | http://effbot.org/zone/creating-palette-images.htm | CC-MAIN-2017-04 | refinedweb | 948 | 65.01 |
Edit and Save Work Items by Using the Client Object Model for Team Foundation
You can change the Fields, Links, and Attachments of a WorkItem and then try to save those changes by using either the WorkItem.Save or WorkItemStore.BatchSave method.
When you try to save your changes, they are evaluated against the rules fo... | https://docs.microsoft.com/ja-jp/previous-versions/visualstudio/visual-studio-2010/bb130323(v%3Dvs.100) | CC-MAIN-2019-26 | refinedweb | 439 | 60.41 |
Full Disclosure
mailing list archives
Heya --
Quoth Honza Vlach (Mon, Mar 22, 2004 at 10:40:12AM +0100):
2004-03-22 09:01:37.781326500 Failed keyboard-interactive for illegal
user xjunr01 from ::ffff:212.65.252.97 port 61991 ssh2
2004-03-22 09:01:37.781379500 Disconnecting: Too many authentication
failures for xjunr01
... | http://seclists.org/fulldisclosure/2004/Mar/1243 | CC-MAIN-2014-15 | refinedweb | 359 | 67.15 |
I have a program that is supposed to convert temperature i celcius to temperature in fehrenhiet. I get a syntax error on the line where the user is supposed to input the temperature in celcuis.
I cant seem to figure out what is wrong.
I keep getting error: error C2059: syntax error : ';'
Any help would be appreciated. ... | http://cboard.cprogramming.com/cplusplus-programming/121341-cant-solve-syntax-error-printable-thread.html | CC-MAIN-2014-10 | refinedweb | 141 | 57.67 |
These:.
Software Framework.
The diagram on the left may give you a good understanding of what Software Framework is and what role it performs. Simply saying, it is a shim between the user application and the Operating System. There are at least two types of Software Frameworks:
- Application Programming Interface (API)... | http://syprog.blogspot.com/2012/05/simple-runtime-framework-by-example.html | CC-MAIN-2017-43 | refinedweb | 864 | 54.32 |
Hi Anish,
Please refer to the blog posts. I think it will help.
Hi Ravindra,
Thanks for replying to my post. I have already implemented IValidate interface for showing warning message and it works fine. Now, I am looking for highlighting the field in editor when it fails the validation. The field will get auto highligh... | https://world.optimizely.com/forum/developer-forum/CMS/Thread-Container/2019/11/highlighting-a-cms-field-with-yellow-color-for-validationerrorseverity-warning--currently-only-for-error-it-highlights-the-field-with-red-color/ | CC-MAIN-2021-49 | refinedweb | 327 | 56.76 |
Saving processes and threads in a WSGI server with Moya
I have a webserver with 3 WSGI applications running on different domains (1, 2, 3). All deployed with a combination of Gunicorn and NGINX. A combination that works really well, but there are two annoyances that are only going to get worse the more sites I deploy:
... | http://www.willmcgugan.com/tag/django/ | CC-MAIN-2015-27 | refinedweb | 1,495 | 64.3 |
BACHELOR OF ENGINEERING IN COMPUTER SCIENCE & ENGINEERING
Submitted to: Miss Ayesha
Submitted By:
First and foremost, I would like to take this opportunity to thank our mentor MissAyesha for her guidance and advice on this project. At the same time I also won’tforget my group participant and also friends to because the... | https://de.scribd.com/document/404314580/report-2-docx | CC-MAIN-2019-43 | refinedweb | 3,564 | 53.1 |
"Raymond Hettinger" python@rcn.com writes:
In Py2.3, __getitem__ conveniently supports slices for builtin sequences: 'abcde'.__getitem__(slice(2,4))
For user defined classes to emulate this behavior, they need to test the index argument to see whether it is a slice and then loop over the slice indices like this:
class ... | https://mail.python.org/archives/list/python-dev@python.org/thread/F2SR5XWOVMUP6MLJJGAZBASYWWWMME25/ | CC-MAIN-2020-40 | refinedweb | 222 | 64 |
Roger Larsson wrote:> > On Thursday 12 April 2001 23:52, Andre Hedrick wrote:> > Okay but what will be used for a base for hardware that has critical> > timing issues due to the rules of the hardware?> >> > I do not care but your drives/floppy/tapes/cdroms/cdrws do:> >> > /*> > * Timeouts for various operations:> > */>... | https://lkml.org/lkml/2001/4/15/18 | CC-MAIN-2017-43 | refinedweb | 437 | 60.14 |
What's an efficient way, given a numpy matrix (2-d array), to return the min/max
n
def n_max(arr, n):
res = [(0,(0,0))]*n
for y in xrange(len(arr)):
for x in xrange(len(arr[y])):
val = float(arr[y,x])
el = (val,(y,x))
i = bisect.bisect(res, el)
if i > 0:
res.insert(i, el)
del res[0]
return res
pyopencv
Since there is n... | https://codedump.io/share/OSDcsCazCU1L/1/pythonnumpy-efficient-way-to-take-the-minmax-n-values-and-indices-from-a-matrix | CC-MAIN-2017-47 | refinedweb | 151 | 59.43 |
Opened 6 years ago
Closed 6 years ago
Last modified 6 years ago
#15778 closed Bug (fixed)
Command createsuperuser fails under some system user names
Description
Commands 'createsuperuser' and 'syncdb' can not create a superuser account no way because of database error,
if a system account username contains an 8-bit cha... | https://code.djangoproject.com/ticket/15778 | CC-MAIN-2017-34 | refinedweb | 2,225 | 50.23 |
Advertise with Us!
We have a variety of advertising options which would give your courses an instant visibility to a very large set of developers, designers and data scientists.View Plans
Java Interview Questions and Answers
Table of Contents
It's a no-brainer that Java is one of the leading programming options for bag... | https://hackr.io/blog/java-interview-questions | CC-MAIN-2020-50 | refinedweb | 7,662 | 55.74 |
Properties allow clients to access class state as if they were accessing member fields directly, while actually implementing that access through a class method.
This is ideal. The client wants direct access to the state of the object and does not want to work with methods. The class designer, however, wants to hide the... | https://etutorials.org/Programming/Programming+C.Sharp/Part+I+The+C+Language/Chapter+4.+Classes+and+Objects/4.7+Encapsulating+Data+with+Properties/ | CC-MAIN-2022-21 | refinedweb | 688 | 59.64 |
This
Problem:
You want a servlet to present some information to the user.
Solution:
Override the
HttpServlet method
service( ), or>");
}
}
Problem
You want to process the data from an HTML form in a servlet.
Solution
Use the
request object's
getParameter( ) method.
Each uniquely named INPUT element in the FORM on the H... | http://oreillynet.com/lpt/a/1000 | CC-MAIN-2013-20 | refinedweb | 1,661 | 63.9 |
Created on 2016-04-01 00:28 by terry.reedy, last changed 2016-10-24 23:12 by ned.deily. This issue is now closed.
From
import tkinter as tk
from tkinter.ttk import Frame, Notebook
root = tk.Tk()
nb = Notebook(root, width=320, height=240)
nb.pack(fill='both', expand=1)
page0 = Frame(nb)
page1 = Frame(nb)
page2 = Frame(n... | https://bugs.python.org/issue26682 | CC-MAIN-2021-17 | refinedweb | 486 | 85.59 |
- Configuring your identity provider
- Configuring GitLab
- Providers
- User access and management
- Group Sync
- Passwords for users created via SAML SSO for Groups
- Troubleshooting
- SAML debugging tools
- Verifying configuration
- Verifying NameID
- Users receive a 404
-
- Searching Rails log
SAML SSO for GitLab.co... | https://docs.gitlab.com/14.3/ee/user/group/saml_sso/ | CC-MAIN-2021-49 | refinedweb | 961 | 57.98 |
Sending Udp Packets
From IronPython Cookbook
A simple class for sending UDP packets over a network.
This uses the System.Net.Sockets.UdpClient class.
from System.Net import IPAddress from System.Net.Sockets import UdpClient from System.Text import Encoding class UdpSender(object): def __init__(self, port, ipAddress): s... | http://www.ironpython.info/index.php/Sending_Udp_Packets | crawl-002 | refinedweb | 234 | 53.27 |
Odoo Help
Odoo is the world's easiest all-in-one management software. It includes hundreds of business apps:
CRM | e-Commerce | Accounting | Inventory | PoS | Project management | MRP | etc.
Write method
i want to update my field depend on current user's group , but when i execute the method it update all the record ev... | https://www.odoo.com/forum/help-1/question/write-method-71125 | CC-MAIN-2017-09 | refinedweb | 222 | 66.54 |
Configuration System
This page can be used as a reference while discussing the configuration system. This page should be updated as the discussion progresses.
Introduction
One of the Google Summer of Code project ideas for 2012 was a "configuration system". The configuration system was not among the selected projects, ... | http://freedesktop.org/wiki/Software/PulseAudio/Documentation/Developer/ConfigurationSystem/?action=SpellCheck | CC-MAIN-2014-42 | refinedweb | 1,954 | 54.42 |
Why Cannabis, Why Post Seed & Why Now?
The cannabis industry is at an inflection point. Essential-business status created an unexpected leap in new consumer adoption. Sales were up 40% in 2020. The results appear in nearly every sector but are most visible in the quarterly reports of the publicly traded multi-state ope... | https://epaxhia-62645.medium.com/why-cannabis-why-late-seed-why-now-1dd32d950cb7?readmore=1&source=user_profile---------3---------------------------- | CC-MAIN-2021-43 | refinedweb | 641 | 56.96 |
On 9/27/2017 8:11 PM, wm4 wrote: > On Wed, 27 Sep 2017 19:52:13 -0300 > James Almer <jamrial at gmail.com> wrote: > >>> +#if !HAVE_KCMVIDEOCODECTYPE_HEVC >>> +enum { kCMVideoCodecType_HEVC = 'hvc1' }; >>> +#endif >> >> The correct thing to do is adding kCMVideoCodecType_HEVC to >> hevc_videotoolbox_hwaccel_deps in conf... | https://ffmpeg.org/pipermail/ffmpeg-devel/2017-September/216987.html | CC-MAIN-2020-05 | refinedweb | 141 | 73.58 |
It is time that I talk a little about what to do if you want your application to run on XP. There are three sets of APIs, each with subtle differences and caveats, and ultimately your choice requires deciding what platform your application must run on:
Windows Vista:
Call IShellItem2::GetPropertyStore to get an IProper... | http://blogs.msdn.com/b/benkaras/archive/2007/01/05/choosing-your-property-api.aspx | CC-MAIN-2015-27 | refinedweb | 415 | 57.57 |
Now blogging at SteveSmithBlog.com
Ads Via DevMavens
I have three things that have been on my wish list for ASP.NET and/or Visual Studio that I'm curious to know what others think. I've mentioned some of these before on my blog or elsewhere - they're not exactly earth shattering and I'm not saying that I want them more... | http://aspadvice.com/blogs/ssmith/archive/2008/03/16/Three-Requests-for-ASP.NET-4-and-VS-2010.aspx | crawl-002 | refinedweb | 1,303 | 70.23 |
-- Richard Jones, Virtualization Group, Red Hat virt-top is 'top' for virtual machines. Tiny program with many powerful monitoring features, net stats, disk stats, logging, etc.
>From 80aad709954cc4a3a294200e242876599047cef8 Mon Sep 17 00:00:00 2001 From: Richard W.M. Jones <rjones redhat com> Date: Wed, 2 Mar 2011 05:... | https://www.redhat.com/archives/libguestfs/2011-March/msg00007.html | CC-MAIN-2017-30 | refinedweb | 181 | 61.83 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.