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 |
|---|---|---|---|---|---|
If you came to JavaOne 2012 or watched they keynote online you would have seen a cool proof of concept we did along with Canoo and Navis. In case you missed it, its on YouTube:
It was built on a early JavaFX prototype with added 3D mesh, Camera and Lighting support. The first public build of JavaFX 8 with the official ... | http://fxexperience.com/2013/02/javafx-3d-early-access-available/ | CC-MAIN-2019-43 | refinedweb | 1,430 | 74.69 |
GETPEERNAME(2) BSD Programmer's Manual GETPEERNAME(2)
getpeername - get name of connected peer
#include <sys/types.h> #include <sys/socket.h> int getpeername(int s, struct sockaddr *name, socklen_t *namelen);
getpeername() returns the address information of the peer connected to socket s. One common use occurs when a p... | http://www.mirbsd.org/htman/sparc/man2/getpeername.htm | CC-MAIN-2014-35 | refinedweb | 268 | 57.37 |
#include <programs/mdrun/tests/moduletest.h>
Helper object for running grompp and mdrun in integration tests of mdrun functionality.
Objects of this class must be owned by objects descended from MdrunTestFixtureBase, which sets up necessary infrastructure for it. Such an object may own more than one SimulationRunner.
T... | https://manual.gromacs.org/current/doxygen/html-full/classgmx_1_1test_1_1SimulationRunner.xhtml | CC-MAIN-2021-39 | refinedweb | 173 | 52.9 |
On Sun, Apr 21, 2002 at 01:23:22AM -0400, eichin-lists@boxedpenguin.com wrote: > Are the sources that give these errors the current "apt-get source > heimdall", or something else? Yes, thats it. I have made some changes, but nothing to produce these errors. I wonder if autoconf is somehow interpreting an expression as ... | https://lists.debian.org/debian-devel/2002/04/msg01603.html | CC-MAIN-2015-27 | refinedweb | 259 | 56.96 |
Hi Chris! On Tuesday 07 December 2004 00:56, Christopher R. Hertel wrote: > There's a thread started on the Samba-Technical mailing list that has > some discussion regarding cluster filesystems. I'm learning fast, > but I'm not the right one to answer this: > > >tml > > An excerpt: > > The other network-like filesystem... | https://www.redhat.com/archives/linux-cluster/2004-December/msg00038.html | CC-MAIN-2015-11 | refinedweb | 491 | 59.84 |
class Solution(object): def maxEnvelopes(self, envs): def liss(envs): def lmip(envs, tails, k): b, e = 0, len(tails) - 1 while b <= e: m = (b + e) >> 1 if envs[tails[m]][1] >= k[1]: e = m - 1 else: b = m + 1 return b tails = [] for i, env in enumerate(envs): idx = lmip(envs, tails, env) if idx >= len(tails): tails.appe... | https://discuss.leetcode.com/topic/48160/python-o-nlogn-o-n-solution-beats-97-with-explanation | CC-MAIN-2017-39 | refinedweb | 477 | 69.31 |
I have a lot of lines with
# TODO
# TODO
# TODO
TODO
def destroy
# TODO Alter route (Tell git to ignore this)
@comment.destroy
end
def destroy
@comment.destroy # TODO Alter this line. (Tell git to ignore from '# TODO' onwards.
end
You could use a 'clean' filter. It is run before a file is staged.
First, define the file... | https://codedump.io/share/QQpii10pKuAl/1/how-do-i-tell-gitignore-or-git-itself-to-ignore-lines-containing--todo | CC-MAIN-2016-50 | refinedweb | 167 | 73.68 |
Hi,
With JCR-996 and the goal of eventually integrating SPI with
Jackrabbit core there comes a question of where and how we should
bundle the various "commons" classes we have. Currently
jackrabbit-jcr-commons is the throw-in default of all utility classes
that might be useful also outside jackrabbit-core.
To better de... | http://mail-archives.apache.org/mod_mbox/jackrabbit-dev/200707.mbox/%3C510143ac0707260252o2a6743bcn5445c6611cfad789@mail.gmail.com%3E | CC-MAIN-2016-44 | refinedweb | 316 | 57.67 |
This is the WccCoolButton; it is a multifunction composition based composite control. It has three operation modes: text, image and button. Each mode conceals an underlying LinkButton, Button or ImageButton control respectively. This composite control was created to be used inside future composite controls, and to give... | http://www.codeproject.com/Articles/3569/Eventing-Within-Composite-Web-Custom-Controls | CC-MAIN-2016-40 | refinedweb | 2,324 | 54.63 |
(this post)
- Part 9 - Combination Key Input
- Part 10 - Testing
- Part 11 - Netlify Deployment
- diff:
- ellie:
It would be nice if users could input numbers into our calculator using their number pad on their keyboard.
We need to tell our program what to do when a user presses these keys. So we need to add some more... | https://pianomanfrazier.com/post/elm-calculator-book/08-keypad-input/ | CC-MAIN-2020-24 | refinedweb | 761 | 68.26 |
Dec 12, 2019 07:09 AM|Zerimar|LINK
I need to fill an object list with stuff, and later on i want it immutable for a certain part of a code that modifies it in a loop.
What i have NOW, cannot do the job because i am ignorant to the immutable concept, i have never used it before, i need it now, however.
how do i turn my ... | https://forums.asp.net/t/2162352.aspx?Help+with+an+immutable+class | CC-MAIN-2021-43 | refinedweb | 741 | 59.94 |
On May 12, 2009, at 10:53 AM, Thomas Lotze wrote: > Buildout as well as a number of buildout recipes need to download > files > from the net. They need to take care of doing the actual download, > using the download cache and honouring the offline option. A couple of > years ago, we also wrote the gocept.download recip... | https://mail.python.org/pipermail/distutils-sig/2009-May/011843.html | CC-MAIN-2014-15 | refinedweb | 268 | 66.54 |
Try to compile and run this program with your C compiler and with your C++ compiler:
#include <stdio.h>
struct empty {};
int main()
{
printf("nothing is %d\n", sizeof(struct empty));
}
struct empty
C gets this right: bytes. But C++ requires it to take 1 byte. That's so that various object identity weirdnesses work out ... | http://everything2.com/title/C%252B%252B%253A+how+big+is+nothing%253F | CC-MAIN-2016-40 | refinedweb | 582 | 60.55 |
Hello, My name is Simone Basso, and I study Computer Science at Politecnico di Torino, Italy. In the three past weeks I've been working to a project that involves Qemu, as a part of an exam, together with another student, Gaspare Scherma. The requested task was to add to Qemu 0.9.0 support for AMBA ARM PL031 RTC chip, ... | http://lists.gnu.org/archive/html/qemu-devel/2007-06/msg00210.html | CC-MAIN-2016-36 | refinedweb | 2,606 | 53.71 |
How to: Run Tests from Microsoft Visual Studio
This topic is about how to use Visual Studio to run automated tests, which include unit tests, coded UI tests, ordered tests, generic tests, and load tests. You can run automated tests from both the Visual Studio integrated development environment (IDE) and at a command pr... | https://docs.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2012/ms182470(v=vs.110) | CC-MAIN-2019-04 | refinedweb | 812 | 68.5 |
Created on 2015-12-24 20:40 by yan12125, last changed 2016-09-08 17:34 by steve.dower. This issue is now closed.
Originally reported at
Steps to reproduce:
1. Build 99665:dcf9e9ae5393 with Visual Studio 2015
2. Download and extract PsTools [1]
3. PsExec.exe -l python.exe
4. In Python, run:
import _ssl
_ssl.enum_certifi... | https://bugs.python.org/issue25939 | CC-MAIN-2021-39 | refinedweb | 1,011 | 60.41 |
Copy pixel data from one buffer to another Function Type: Delayed Execution
#include <screen/screen.h>
int screen_blit(screen_context_t ctx, screen_buffer_t dst, screen_buffer_t src, const int *attribs)
A connection to screen
The buffer which data will be copied to.
The buffer which the pixels will be copied from.
A li... | http://www.qnx.com/developers/docs/qnxcar2/topic/com.qnx.doc.qnxcar2.screen/topic/screen_blit.html | CC-MAIN-2019-47 | refinedweb | 140 | 64.71 |
TmVirtualTime reads the insamples information to advance the timer. More...
#include <TmVirtualTime.h>
TmVirtualTime reads the insamples information to advance the timer.
Definition at line 39 of file TmVirtualTime.h.
empty constructor. The read source MarSystem and control are zero values and must be updated using set... | http://marsyas.info/doc/sourceDoc/html/classMarsyas_1_1TmVirtualTime.html | CC-MAIN-2018-47 | refinedweb | 286 | 52.05 |
Every once in a while, I’ll encounter a developer that thinks that WCF is too complicated to use. Whereas in fact, the basics of WCF are incredibly simple. MSDN’s tutorial hides this fact by making their introduction to WCF a fairly long and painful 6-step process, but you need much less to write your first WCF applica... | http://blogs.msdn.com/b/youssefm/archive/2009/11/02/wcf-101-the-simplest-wcf-example-you-ll-ever-see.aspx | CC-MAIN-2015-48 | refinedweb | 505 | 67.45 |
To
Create, Read, Update and Delete information are some of the main
operations in all IT applications. Login, Search, Validations etc are some
common functionalities in all IT applications. or e!ample
http"##irctc.com#displaySer$let is a %eb application and you can chec& all
operations and functionalities in this %ebsi... | https://www.scribd.com/document/236617250/New-Rich-Text-Document | CC-MAIN-2018-43 | refinedweb | 1,746 | 63.8 |
Non-native JS types (aka Scala.js-defined JS types)
A non-native JS type, aka Scala.js-defined JS type, is a JavaScript type implemented in Scala.js code. This is in contrast to native JS types, described in the facade types reference, which represent APIs implemented in JavaScript code.
Defining a non-native JS type
A... | http://www.scala-js.org/doc/interoperability/sjs-defined-js-classes.html | CC-MAIN-2021-10 | refinedweb | 2,097 | 59.7 |
news.digitalmars.com - c++Dec 28 2005 [bug(s)] More ICEs (3)
Dec 26 2005 [bug] New to DMC++ 8.45 (2)
Dec 23 2005 [bug] DMC++ goes ga-ga when given different unions with similar definitions inside extern "C" (6)
Dec 20 2005 Crash in exception handler (2)
Dec 19 2005 [bug] Another static array size bug (1)
Dec 19 2005 [b... | http://www.digitalmars.com/d/archives/c++/index2005.html | CC-MAIN-2015-22 | refinedweb | 1,731 | 77.47 |
Inline assembly
Introduction
While reading source code in the Linux kernel, I often see statements like this:
__asm__("andq %%rsp,%0; ":"=r" (ti) : "0" (CURRENT_MASK));
Yes, this is inline assembly or in other words assembler code which is integrated in a high level programming language. In this case the high level pro... | https://0xax.gitbooks.io/linux-insides/content/Theory/linux-theory-3.html | CC-MAIN-2019-43 | refinedweb | 3,040 | 60.45 |
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.
How can we use dynamic domains in new Odoo API?
How can we use dynamic domains in new Odoo API?
I'm trying to do it, I have an Ma... | https://www.odoo.com/forum/help-1/question/how-can-we-use-dynamic-domains-in-new-odoo-api-71304 | CC-MAIN-2017-13 | refinedweb | 283 | 59.9 |
User Name:
Brian Mains, Apr 28, 2008
Brian Mains explains the benefits of a 3-tier architecture.
Brian Mains, Jan 09, 2008
Brian Mains talks about abstractions.
Keyvan Nayyeri, Dec 24, 2007
Review of the NDepend tool.
Karl Seguin, Dec 05, 2007
The Foundations of Programming series looks at a number of key concepts, tec... | http://dotnetslackers.com/articles/NET/default.aspx | crawl-001 | refinedweb | 447 | 53.71 |
Auto fill
Say I wanted to auto fill info into a website. Could I do that in a python script?
it depends, but usually, yes.
There are a few options, such as mechanize, requests, or webbrowser (using javascript to simulate clicks, etc). I tend to use bs4 along with requests.
Ok also, how do I open a website in UI
This sh... | https://forum.omz-software.com/topic/3489/auto-fill | CC-MAIN-2021-49 | refinedweb | 185 | 67.96 |
How many triangles (of all sizes) do you see in the equilateral triangle below?
Before we begin, let's get a bit of terminology out of the way. I'll be referring to each specific instance of this problem by the number of unit-triangles at its base. The unit-triangle is the smallest triangle in each image, and the base ... | http://www.billthelizard.com/2009/08/how-many-triangles.html | CC-MAIN-2018-26 | refinedweb | 4,086 | 70.23 |
Agenda
See also: IRC log
<trackbot> Date: 15 September 2009
<gpilz> I'll drown myself tonight in sangria, made with slice-up fruit and cheap marsala
<Bob> scribenick Katy
<Bob> scribenick: Katy
<scribe> Chair: considering schedule and deadline we would probably benefit for this.
UNKNOWN_SPEAKER: Follow tech
plenary sta... | http://www.w3.org/2009/09/15-ws-ra-minutes.html | CC-MAIN-2015-40 | refinedweb | 1,684 | 66.17 |
How to Modify Element or Elements of an ArrayList in Java
While working with ArrayList in Java, You might have faced some problems like, suppose you got a huge number of elements in your ArrayList and you have to modify a particular element from your list.
So how to do that?
In this post, we are going to learn the easy... | https://www.codespeedy.com/how-to-modify-element-or-elements-of-an-arraylist-in-java/ | CC-MAIN-2019-43 | refinedweb | 355 | 63.9 |
We have compiled most frequently asked .NET Interview Questions which will help you with different expertise levels.
SQL Server Interview Questions and Answers PDF Free Download for .Net Developers
Question 1.
What is Microsoft SQL Server?
Answer:
The Microsoft relational database management system is a software produc... | https://btechgeeks.com/sql-server-interview-questions-and-answers-for-net-developers/ | CC-MAIN-2022-27 | refinedweb | 7,340 | 57.67 |
Scraping News Websites like CNN & NBC using Python
Scraping News Websites like CNN & NBC using Python
Send download link to:
News websites contains a lot of data. Every day more data is posted on these websites on most hot topics around the world. They are a great source not only for news but also for other things like... | https://www.worthwebscraping.com/scraping-news-websites-like-cnn-nbc-using-python/ | CC-MAIN-2021-43 | refinedweb | 272 | 62.14 |
The Properties_impl class implements the Properties interface. More...
#include <properties_impl.h>
The Properties_impl class implements the Properties interface.
The key=value pairs are stored in a std::map. An instance can be created either by means of the default constructor, which creates an object with an empty ma... | https://dev.mysql.com/doc/dev/mysql-server/latest/classdd_1_1Properties__impl.html | CC-MAIN-2020-16 | refinedweb | 529 | 57.57 |
JustLinux Forums
>
Community Help: Check the Help Files, then come here to ask!
>
Programming/Scripts
> More Qt Questions
PDA
Click to See Complete Forum and Search -->
:
More Qt Questions
Dun'kalis
02-04-2003, 11:34 PM
I've got some more Qt questions.
I got my text editor working (after scrapping it and starting over)... | http://justlinux.com/forum/archive/index.php/t-88598.html | crawl-003 | refinedweb | 2,350 | 64.2 |
This is, can we separate this context from the monad, and reconstitute it later? If we know the monadic types involved, then for some monads we can. Consider the
State monad: it’s essentially a function from an existing state, to a pair of some new state and a value. It’s fairly easy then to extract its state and later... | http://newartisans.com/2013/09/using-monad-control-with-monad-transformers/ | CC-MAIN-2017-13 | refinedweb | 1,002 | 58.86 |
What is OpenCV?
Computer vision is a process by which we can understand how the images and videos are stored and manipulated, also it helps in the process of retrieving data from either images or videos. Computer Vision is part of Artificial Intelligence. Computer-Vision plays a major role in Autonomous cars, Object de... | https://www.analyticsvidhya.com/blog/2021/05/pose-estimation-using-opencv/ | CC-MAIN-2021-25 | refinedweb | 1,210 | 57.67 |
Fabric: a System Administrator's Best Friend
A Brief Word on Application Deployment
Fabric also is used in development teams to deploy new code to production. It is actually used in a fairly similar fashion to how system administrators use it (copy files, run a few commands and so on), just in a very specific manner. B... | http://www.linuxjournal.com/content/fabric-system-administrators-best-friend?page=0,2&quicktabs_1=0 | CC-MAIN-2015-11 | refinedweb | 828 | 60.72 |
Type: Posts; User: codelogman; Keyword(s):
I respect so much the work with slackware about in the tutorials section (). This simple man has understanding very good how the...
in agreement to nihil, the AV "industry" need food, need pay takes and employees.
where they i supose the "instant" worms appear?
the same AV ent... | http://www.antionline.com/search.php?s=5fb3082500086c6b1e6ec6d12c8bf0b5&searchid=2324927 | CC-MAIN-2015-18 | refinedweb | 741 | 72.36 |
: 2960
Author: joergl
Date: 2007-12-04 02:15:50 -0800 (Tue, 04 Dec 2007)
Log Message:
-----------
do not start readpipe in constructor and catch interupted system calls (thanks to Laurence Tratt and Eric Faurot)
Modified Paths:
--------------
trunk/pyx/CHANGES
trunk/pyx/pyx/text.py
Modified: trunk/pyx/CHANGES
=========... | https://sourceforge.net/p/pyx/mailman/pyx-checkins/?viewmonth=200712&viewday=4&style=flat | CC-MAIN-2017-09 | refinedweb | 408 | 60.51 |
After having a good command over classes and objects, you must have understood how useful the concept of classes and objects can be.
In the previous chapter, we printed the area of a rectangle by making an object of the Rectangle class. If we have to print the area of two rectangles having different dimensions, we can ... | https://www.codesdope.com/cpp-array-of-objects/ | CC-MAIN-2022-40 | refinedweb | 552 | 65.76 |
Hide Forgot
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.1) Gecko/20021003
Description of problem:
After applying the march 19 glibc security update to redhat 8.0, attempts to
link statically programs using ncurses (5.2) fail with __ctype_b undefined.
Version-Release number of select... | https://bugzilla.redhat.com/show_bug.cgi?id=86465 | CC-MAIN-2020-50 | refinedweb | 1,593 | 58.89 |
We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I'm running Processing 2.2.1 along with SimpleOpenNI 1.96 (based on instructions at). I modified the DepthImage example sketch and added file writing (code below).
I'm trying to output the depth data from Kinect t... | https://forum.processing.org/two/discussion/7042/processing-s-export-functionality-does-not-work-with-simpleopenni-kinect-application | CC-MAIN-2021-10 | refinedweb | 365 | 62.34 |
drand48, erand48, jrand48, lcong48, lrand48, mrand48, nrand48, seed48, srand48 - generate uniformly distributed pseudo-random numbers
#include <stdlib.h> double drand48(void); double erand48(unsigned short int xsubi[3]); long int jrand48(unsigned short int xsubi[3]); void lcong48(unsigned short int param[7]); long int ... | http://pubs.opengroup.org/onlinepubs/7990989775/xsh/drand48.html | CC-MAIN-2016-40 | refinedweb | 328 | 52.6 |
Linked List Data Structure in Java
In this Java tutorial, we are going to discuss the linked list data structure. We will learn the following things in this Java Linked List tutorial:
- Advantages of LinkedList in Java
- Disadvantages of LinkedList in Java
- Implementation of LinkedList in Java
- Representation of Link... | https://www.codespeedy.com/linked-list-data-structure-in-java/ | CC-MAIN-2020-24 | refinedweb | 662 | 72.56 |
- A First Look at VB 7.0 and the .NET Framework
- A New Ballgame
- Summary
Abstract: Dan Fox takes a look at what is on the horizon for the next version of Visual Basic, and how it relates to Microsoft's new .NET initiative.
Regular readers of InformIT have no doubt already noticed the coverage of Microsoft's newest la... | https://www.informit.com/articles/article.aspx?p=19481 | CC-MAIN-2020-45 | refinedweb | 1,357 | 54.02 |
Core Perl: A Book Review
Title: Core PerlAuthor: Reuven M. LernerPublisher: Prentice-Hall, Inc.URL:: 0-13-035181-4Price: US$44.99
Every Linux Journal reader is probably familiar with Reuven Lerner's "At The Forge" column, where each month he describes web programming techniques and technologies. If you are a fan of Per... | http://www.linuxjournal.com/article/5813?quicktabs_1=1 | CC-MAIN-2015-35 | refinedweb | 2,302 | 61.16 |
#include <sys/types.h> #include <sys/buf.h> void biodone(struct buf *bp);
Architecture independent level 1 (DDI/DKI).
Pointer to a buf(9S) structure.
The biodone() function buffer I/O request is complete.
The biodone() function.
The biodone() function can be called from user, interrupt, or kernel context. } . . .
read(... | http://docs.oracle.com/cd/E36784_01/html/E36886/biodone-9f.html | CC-MAIN-2016-30 | refinedweb | 142 | 58.89 |
I'm having a small problem with Pyglet. Building the following source code will show "Running" in the console window, but will not show the Pyglet main window. It works fine when running via the command line.
import pyglet
game_window = pyglet.window.Window(800, 600)
if __name__ == '__main__':
print 'Running'
pyglet.ap... | https://forum.sublimetext.com/t/pyglet/6743 | CC-MAIN-2016-22 | refinedweb | 128 | 69.38 |
Rob's Blog 2019-09-04T19:37:55+00:00 Rob Bos raj.bos@gmail.com Use Stryker for .NET code in Azure DevOps 2019-09-04T00:00:00+00:00 <p>Recently I was at a customer where they where testing running test mutation with <a href="">Stryker</a>. <code class="highlighter-rouge">mutations</code> and they check if they <code cla... | https://rajbos.github.io/blog/atom.xml | CC-MAIN-2019-39 | refinedweb | 31,174 | 53.1 |
Wire Signals
Yet Another Event Streams Library
Introduction
I’m from Poland but now I live in Berlin and work for Wire, an end-to-end encrypted messenger. And I work there in the Android team even though I write my code in Scala. About two-thirds of Wire Android code is written in Scala making it unique among Android a... | https://medium.com/swlh/wire-signals-81918bbcc07f?source=post_internal_links---------3---------------------------- | CC-MAIN-2021-21 | refinedweb | 3,589 | 70.94 |
C# Hello World Example
C# is the newest enterprise programming language created by Microsoft to compete with Java. Let's start with the classic Hello World example.
C# Hello World code
At first glance, the C# Hello World example is very similar with Java, as the code below shows.
using System; class Test { static void ... | http://makble.com/c-hello-world-example | CC-MAIN-2018-34 | refinedweb | 270 | 66.13 |
sub make_command
{
my @arr = @_;
for (@arr)
{
$_ = qq["$_"] if /\s/;
}
my $_command_to_execute = join(' ',@arr);
return ($_command_to_execute);
}
Of course, the multiple argument form of system isn't all that portable, either. On Windows, system(@ARGS) is system("@ARGS"), so you need to take proper care of quoting. On ... | http://www.perlmonks.org/index.pl?node_id=762248 | CC-MAIN-2017-13 | refinedweb | 375 | 73.47 |
31 December 2010 10:34 [Source: ICIS news]
By Caroline Murray
VALENCIA, Spain (ICIS)--European polyethylene terephthalate (PET) will remain tight and prices will stay firm through much of 2011 because of bullish feedstocks and limited availability, according to industry sources.
"Next year will be a sellers’ market," a... | http://www.icis.com/Articles/2010/12/31/9422501/outlook-11-europe-pet-to-stay-firm-on-feedstocks-tight-supply.html | CC-MAIN-2014-49 | refinedweb | 554 | 57.4 |
Python Boolean array in NumPy
In this post, I will be writing about how you can create boolean arrays in NumPy and use them in your code.
Overview
Boolean arrays in NumPy are simple NumPy arrays with array elements as either ‘True’ or ‘False’. Other than creating Boolean arrays by writing the elements one by one and co... | https://www.codespeedy.com/python-boolean-array-in-numpy/ | CC-MAIN-2020-45 | refinedweb | 501 | 52.39 |
WebReference.com - Excerpt from Inside XSLT, Chapter 2, Part 6 (5/5)
Inside XSLT
Using Internet Explorer to Transform XML Documents
There's one more topic to discuss during this overview of stylesheets, and that's how to use stylesheets in the Internet Explorer. As we saw in Chapter 1, you can use JavaScript to read in... | http://www.webreference.com/authoring/languages/xml/insidexslt/chap2/6/5.html | CC-MAIN-2017-26 | refinedweb | 664 | 67.86 |
Web development has seen a huge advent of Single Page Application (SPA) in the past couple of years. Early development was simpleâreload a complete page to perform a change in the display or perform a user action. The problem with this was a huge round-trip time for the complete request to reach the web server and back... | https://www.packtpub.com/product/reactjs-by-example-building-modern-web-applications-with-react/9781785289644 | CC-MAIN-2020-40 | refinedweb | 3,849 | 66.13 |
GridDataFormats 0.2.3
Reading and writing of data on regular grids in Python
The gridDataFormats package provides classes to unify reading and writing n-dimensional datasets. One can read grid data from files, make them available as a Grid object, and allows one to write out the data again.
The Grid class
A Grid consis... | https://pypi.python.org/pypi/GridDataFormats/0.2.3 | CC-MAIN-2017-09 | refinedweb | 545 | 59.4 |
We use the function
list_words() to get a list of unique words with more than three characters in lower case:
def list_words(text): words = [] words_tmp = text.lower().split() for w in words_tmp: if w not in words and len(w) > 3: words.append(w) return words
For a more advanced term-document matrix, we can use the Pyth... | https://www.safaribooksonline.com/library/view/practical-data-analysis/9781785289712/ch04s05.html | CC-MAIN-2018-39 | refinedweb | 119 | 55.24 |
GNOME Bugzilla – Bug 635172
When calling into overrides for some reason we are converting str("2") to int(2)
Last modified: 2012-02-10 09:34:17 UTC
Created attachment 174764 [details]
Test case
I encountered this problem when trying to add data received via DBus to a ListStore. python-dbus uses subclasses of built-in t... | https://bugzilla.gnome.org/show_bug.cgi?id=635172 | CC-MAIN-2022-05 | refinedweb | 532 | 75.5 |
In python, a set is an unordered collection of items. The items in a set are unordered and thus cannot be accessed with indexes. Sets come in handy while performing mathematical operations in python. The operations are union, intersection, complement difference, etc. In this article, we shall learn about sets and how w... | https://www.pythonpool.com/learn-how-to-combine-sets-in-python/ | CC-MAIN-2021-43 | refinedweb | 1,339 | 76.22 |
Odoo Help
This community is for beginners and experts willing to share their Odoo knowledge. It's not a forum to discuss ideas, but a knowledge base of questions and their answers.
Show Existing Products of a customer in a tab
Hi
I'm very new in python and odoo so I need a help.
In project>task module I've added a sele... | https://www.odoo.com/forum/help-1/question/show-existing-products-of-a-customer-in-a-tab-98601 | CC-MAIN-2016-50 | refinedweb | 202 | 51.95 |
The following test asserts on mozilla-central revision f3f5d8a8a473 (options -m -n):
function MakeDay( year, month, date ) {
date = ToInteger(date );
var t = ( year < 1970 ) ? 1 : 0;
return ( (Math.floor(t/86400000)) + date - 1 );
}
function MakeDate( day, time ) {
if ( day == Number.POSITIVE_INFINITY || day == Number.... | https://bugzilla.mozilla.org/show_bug.cgi?id=687125 | CC-MAIN-2016-36 | refinedweb | 234 | 64.2 |
.
RefinedWiki Original Theme 3.1 for Atlassian’s Confluence is a massive release packed with many new features and improvements for both end users and admins. This blog post covers the highlights of the release.
Create Beautiful Blogs Your Customers will Love
Move over WordPress, there’s a new blogging platform in town... | https://www.atlassian.com/blog/archives/transform-confluence-into-a-blogging-platform-with-refinedwiki-original-theme-3-1 | CC-MAIN-2019-30 | refinedweb | 567 | 64.71 |
I did a very similar configuration a while back under the Arduino IDE, and everything was rock-solid.
My configuration:
Wemos D1 Mini
DS1631+ i2c temp sensor ( ... DS1731.pdf)
4.7k pull-ups and a .1uF cap near the sensor
a sample of the output:
Code: Select all
import time import machine from machine import Pin, I2C i2... | https://forum.micropython.org/viewtopic.php?p=21606 | CC-MAIN-2020-10 | refinedweb | 126 | 68.36 |
Hi, thanks in advance.
I know there is a way to connect to ssids and / or create a connection in C++.
But i need a Managed C++ way.
I have some NetworkInformation code. But I need to know how to connct to an SSID.
I have no networks programmation clues. So All i need, is to make a pannel for showing the ssids and to co... | http://forums.codeguru.com/showthread.php?527975-Working-multiple-forms-using-Visual-C-2008&goto=nextnewest | CC-MAIN-2017-13 | refinedweb | 474 | 77.13 |
Summary
Create a field group for a feature class or table. Field groups are used when creating contingent values.
Learn more about contingent values
Usage
Fields used to create a field group cannot be system-maintained fields such as ObjectID or Shape or the subtype field.
If your data is stored in an enterprise geodat... | https://pro.arcgis.com/en/pro-app/tool-reference/data-management/create-field-group.htm | CC-MAIN-2019-09 | refinedweb | 166 | 59.5 |
04 August 2011 18:28 [Source: ICIS news]
HOUSTON (ICIS)--?xml:namespace>
Also dimming growth prospects in
The Chinese government measures to stem inflation by tightening access to capital have made it more difficult for smaller Huntsman downstream customers to finance working capital, Esplin said.
“In the near-term, we... | http://www.icis.com/Articles/2011/08/04/9482699/huntsman-expects-more-modest-growth-in-china-execs.html | CC-MAIN-2014-42 | refinedweb | 269 | 60.55 |
k6 Loki extension load testing
Grafana k6 is a modern load-testing tool. Its clean and approachable scripting API works locally or in the cloud. Its configuration makes it flexible.
The xk6-loki extension permits pushing logs to and querying logs from a Loki instance. It acts as a Loki client, simulating real-world loa... | https://grafana.com/docs/enterprise-logs/latest/loki/clients/k6/ | CC-MAIN-2022-40 | refinedweb | 283 | 58.79 |
Hi Rui, I am experimenting with the Heltec LoRa 32 v2 board, and am having problem to get the OLED display to work with MicroPython.
The board worked correctly when I received it, and I could see the Heltec logo and the LoRa sender APP information on the OLED display.
After flashing the latest version of MicroPython I ... | https://rntlab.com/question/heltec-lora-32-micropython-oled-not-working/ | CC-MAIN-2022-21 | refinedweb | 1,359 | 67.35 |
yyield v1.0.0
Y-yield
Y-yield is a way to to build asynchronous javascript applications using generators. As an alternative to
await/async, working with Node versions from
4.9.1 and all modern browsers except IE11, you can still get reliable exceptions and easy to follow asynchronous. So it's based on generators and yi... | https://npm.io/package/yyield | CC-MAIN-2021-10 | refinedweb | 1,563 | 66.54 |
Details
- Type:
Improvement
- Status:
Closed
- Priority:
Major
- Resolution: Duplicate
- Affects Version/s: 1.7.5
- Fix Version/s: None
- Component/s: groovy-jdk
- Labels:None
Description
The method 'with' is very useful to write clean code, but it would be even more useful if it returned the object in which it is call... | http://jira.codehaus.org/browse/GROOVY-4442 | crawl-003 | refinedweb | 212 | 64.81 |
Stephen wrote:
> Can you help me out here. I need to know how a container
> recognizes that an attribute must be recognized, and how
> a container establishes validity of a attribute that must
> be recognized, and how a container establishes that an
> attribute has in fact been recognized.
OK, problem definition: We ha... | http://mail-archives.apache.org/mod_mbox/avalon-dev/200308.mbox/%3C20030814164202.G19739@minotaur.apache.org%3E | CC-MAIN-2018-05 | refinedweb | 429 | 67.35 |
:
This sample is the evolution of my previous article How to integrate a BizTalk Server 2010 application with Service Bus Queues and Topics. This solution shows how to integrate a BizTalk Server 2013 application with the Windows Azure Service Bus to exchange messages with external systems in a reliable, flexible, and s... | http://blogs.msdn.com/b/paolos/archive/2013/04/09/how-to-integrate-biztalk-server-2013-with-windows-azure-service-bus.aspx | CC-MAIN-2015-48 | refinedweb | 1,541 | 53 |
This document contains the following sections:1.0 Sax parser introduction
This document has been revised since its first release. A patch made available around June 7, 2004, updates the sax module to conform to the description in this document.
This utility provides a validating parser for XML 1.0 and XML 1.1. The inte... | http://franz.com/support/documentation/8.2/doc/sax.htm | CC-MAIN-2014-52 | refinedweb | 5,935 | 54.83 |
SYNOPSIS
#include <string.h>
char *stpncpy(char *dest, const char *src, size_t n);
Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
stpncpy():
- Since glibc 2.10:
- _POSIX_C_SOURCE >= 200809L
- Before glibc 2.10:
- _GNU_SOURCE
DESCRIPTIONThe.
RETURN VALUEstpncpy() returns a pointer to the termina... | https://manpages.org/stpncpy/3 | CC-MAIN-2022-21 | refinedweb | 133 | 70.6 |
One element of a subcommand dispatch table.
More...
#include <svn_opt.h>
One element of a subcommand dispatch table.
Definition at line 82 of file svn_opt.h.
A list of alias names for this command (e.g., 'up' for 'update').
Definition at line 91 of file svn_opt.h.
The function this command invokes.
Definition at line 8... | http://subversion.apache.org/docs/api/1.7/structsvn__opt__subcommand__desc2__t.html | CC-MAIN-2018-05 | refinedweb | 121 | 71.71 |
Recently, when I was working on SQL Server 2005 project, I created a job and scheduled it as recurring using GUI interface. Then I tried to reverse engineer the script (Create Script > Change the Script parameters manually).
It showed that begindate as current date but to my suprise, last date was 99991231, ie 31st Dec... | http://niketanblog.blogspot.com/2006/11/metaphysical-coding.html | CC-MAIN-2019-04 | refinedweb | 481 | 64.51 |
In this C++ tutorial, let us discuss multithreading concepts and creation or termination of threads with an example program.
Introduction of Multithreading
Multithreading is a specific form of multitasking that allows your computer to run two or more programs concurrently. There are two types of multitasking such as
- ... | https://www.codeatglance.com/cpp-multithreading/ | CC-MAIN-2020-40 | refinedweb | 438 | 55.64 |
The micro:bit can output sound to a pair of headphones or a speaker by sending a signal on Pin0.
Common ways to do this are by using a set of analogue headphones with a jack plug on the end or using an inexpensive piezo speaker
Connection
Programming
MakeCode
Place a start melody block from the Music menu underneath th... | https://support.microbit.org/support/solutions/articles/19000101901-connecting-a-speaker-to-the-micro-bit | CC-MAIN-2019-51 | refinedweb | 523 | 62.48 |
Increase the memory available to your tests
I love having test projects included in my solutions. Software is alive. I’m constantly making improvements/changes/fixes. When I have customers asking for various features in my code, or for code improvements, being agile and able to publish a changed build with utmost confi... | https://docs.microsoft.com/en-us/archive/blogs/calvin_hsia/increase-the-memory-available-to-your-tests | CC-MAIN-2020-24 | refinedweb | 1,318 | 56.15 |
routes from Google Maps for JavaScript
Location Based Services are one of the most used services in mobile application today. Sometime, routs are needed to determine how to go to a location more easily. This tutorial teaches how to get routs from Google Maps.
Preconditions
This example needs import some modules wich c... | http://developer.nokia.com/community/wiki/Archived:Getting_routes_from_Google_Maps_for_JavaScript | CC-MAIN-2015-11 | refinedweb | 311 | 63.05 |
Checking if a user owns a domain
The technique we’re using is the one used by Google, Microsoft and others to verify that you've got some authority over a domain. So while it's not foolproof, at least we're in good company!
The code in this article is TypeScript, but the same method would work in most languages.
Overvi... | https://www.solarwinter.net/checking-if-a-user-owns-a-domain/ | CC-MAIN-2022-05 | refinedweb | 703 | 57.77 |
How to get the automatic AP back on lopy ?
Hi, I'm using a Lopy4. I managed to connect with a computer to the automatic AP named "lopy-wlan-xxx". Then I went on and everything worked fine.
I tried to change the AP name with the following command :
network.WLAN(mode=network.WLAN.AP, ssid="lopy_test", auth=(network.WLAN.... | https://forum.pycom.io/topic/4939/how-to-get-the-automatic-ap-back-on-lopy | CC-MAIN-2020-24 | refinedweb | 378 | 74.79 |
You have seen the demos showing you how to access your camera and take pictures from a PhoneGap application. But these demos often end there, and a number of people have asked me for an end-to-end example showing how to take pictures and upload them to a server.
I created a simple app that I called Picture Feed. It sho... | http://coenraets.org/blog/2013/09/how-to-upload-pictures-from-a-phonegap-application-to-node-js-and-other-servers-2/?utm_source=rss&utm_campaign=how-to-upload-pictures-from-a-phonegap-application-to-node-js-and-other-servers-2&utm_content=buffer90db7&utm_medium=facebook | CC-MAIN-2017-43 | refinedweb | 264 | 62.88 |
Today’s Programming Praxis problem is an easy one. In 2005, Steve Yegge posted an article about interviewing programmers that listed 7 simple programming exercises for phone screening. These assignments are a perfect example of ‘Bonsai code’, since they require so little code. The scheme solution clocks in at 22 lines,... | http://bonsaicode.wordpress.com/2009/06/30/programming-praxis-steve-yegge%E2%80%99s-phone-screen-coding-exercises/ | CC-MAIN-2014-42 | refinedweb | 717 | 73.17 |
web.py Sessions
Other languages : français | ...
Sessions are a way to store information between requests, thereby making http stateful. They work by sending the user a cookie, which maps to a session storage object on the server. When the user requests a page, the client sends the cookie back with the request, web.py ... | http://webpy.org/docs/0.3/sessions | CC-MAIN-2017-17 | refinedweb | 425 | 61.22 |
So i have massive(i mean massive) array. It has over 500000 lines. Each line starts with some bs that i don't need. What i need is EVERYTHING after 64th symbol(65th symbol is needed). It's the same for every line, but after 64th symbol each line lenght is different. How do i get symbols form 65 and on...? It's ok by me... | http://www.howtobuildsoftware.com/index.php/how-do/bxm/java-arrays-string-break-java-cut-off-array-line-before-charactern-nr-x | CC-MAIN-2019-39 | refinedweb | 337 | 78.35 |
Accessing Hidden VB Interfaces
The Microsoft KnowledgeBase article Q193018 in MSDN lists the problem that Visual C++ programs cannot access hidden Visual Basic interfaces that are defined with an underscore ( _ ) as the first letter in the name, such as the Visual Basic Collection interface declared in MSVBVM60.DLL.
Th... | http://www.codeguru.com/cpp/com-tech/activex/controls/article.php/c2565/Accessing-Hidden-VB-Interfaces.htm | CC-MAIN-2015-35 | refinedweb | 821 | 58.69 |
//**************************************
// Name: GetResource
// Description:Reads embeded files from your executable programs (such as xml, images, etc.) Allows you to distribute one program - the exe, but still access your data and images needed with the program.
// By: Lewis E. Moten III (from psc cd)
//
// Assumes:... | https://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=954&lngWId=10 | CC-MAIN-2018-30 | refinedweb | 227 | 57.77 |
Hi everyone,
I am working on a project (just started) in PYTHON and I want to create a keylogger for 2 languages english and greek. For this I have created the below (it is under "construction") code.
from pynput.keyboard import Key, Listener from langdetect import detect from pynput import keyboard def on_press(key): ... | https://www.daniweb.com/programming/software-development/threads/521791/solve-pynput-problem-when-changing-language | CC-MAIN-2022-33 | refinedweb | 198 | 67.76 |
The revolutionary project management tool is here! Plan visually with a single glance and make sure your projects get done.
private void LoadUserAdmin_Click(object sender, EventArgs e) { UserAdmin ua = new UserAdmin(); }
Are you are experiencing a similar issue? Get a personalized answer when you ask a related question... | https://www.experts-exchange.com/questions/23802506/Not-able-to-open-sub-form-from-main-form.html | CC-MAIN-2018-13 | refinedweb | 182 | 59.8 |
Circular Programming in Clojure
A couple years ago, I decided to learn Haskell. This led me to develop an interest for lambda calculus, interpreters, and laziness. (And monads, in general as well as in Clojure, but that is less relevant for today's topic.) While researching those topics, I came across a paper meshing a... | https://cuddly-octo-palm-tree.com/posts/2021-11-21-circular-clojure/ | CC-MAIN-2022-40 | refinedweb | 3,007 | 60.38 |
This is very common request recently – How to import CSV file into SQL Server? How to load CSV file into SQL Server Database Table? How to load comma delimited file into SQL Server? Let us see the solution in quick steps.
CSV stands for Comma Separated Values, sometimes also called Comma Delimited Values.
Create TestTa... | http://blog.sqlauthority.com/2008/02/06/sql-server-import-csv-file-into-sql-server-using-bulk-insert-load-comma-delimited-file-into-sql-server/ | crawl-002 | refinedweb | 9,875 | 74.19 |
A CTaskContext is the main entry point of a distributed component and maps to a RTT::TaskContext. More...
import "rtt/transports/corba/TaskContext.idl";
A CTaskContext is the main entry point of a distributed component and maps to a RTT::TaskContext.
Definition at line 33 of file TaskContext.idl.
Activate this componen... | http://www.orocos.org/stable/documentation/rtt/v2.x/api/html/interfaceRTT_1_1corba_1_1CTaskContext.html | CC-MAIN-2015-48 | refinedweb | 212 | 63.76 |
The Storage Team Blog about file services and storage features in Windows and Windows Server.
Several newsgroup customers have recently reported Explorer refresh issues when connecting to shared folders using a DFS path. For example, if you connect to a shared folder directly (without using the namespace) and create a ... | http://blogs.technet.com/b/filecab/archive/2006/03/22/422547.aspx | CC-MAIN-2014-15 | refinedweb | 116 | 63.29 |
We teamed up with SiteGround
To bring you the latest from the web and tried-and-true hosting, recommended for designers and developers. SitePoint Readers Get Up To 65% OFF Now
WordPress Cron is one of the most useful features that you’ll want to learn and understand if, like me, you spend a great deal of time working w... | https://www.sitepoint.com/mastering-wordpress-cron/ | CC-MAIN-2017-26 | refinedweb | 1,380 | 54.15 |
Considerations (ISSN: 1066-4920) is an independent magazine written for all who are sensitive to the seasonal rhythms of the Earth and the apparent movement of the planets about her. It provides a forum in which there is an opportunity for new and old ideas to be presented, questioned and refined. The magazine, MasterC... | https://issuu.com/considerations/docs/19-1 | CC-MAIN-2020-45 | refinedweb | 37,209 | 59.84 |
Persistent torrent client for web browsers and web workersPersistent torrent client for web browsers and web workers
Perma-Torrent persists everything to IndexedDB so the torrent data does not disappear when the web page is closed. This also means that the torrent data is shared across all web pages so only one page ha... | https://www.npmjs.com/package/perma-torrent | CC-MAIN-2020-16 | refinedweb | 635 | 67.25 |
.commons.compress.compressors; 20 21 import java.io.InputStream; 22 23 public abstract class CompressorInputStream extends InputStream { 24 private long bytesRead = 0; 25 26 /** 27 * Increments the counter of already read bytes. 28 * Doesn't increment if the EOF has been hit (read == -1) 29 * 30 * @param read the numbe... | http://commons.apache.org/proper/commons-compress/xref/org/apache/commons/compress/compressors/CompressorInputStream.html | CC-MAIN-2014-52 | refinedweb | 235 | 69.62 |
Today's lab will introduce you to how we could implement OOP using only functions and dictionaries, which means that Python's class and object syntax isn't necessary, but is rather just a syntactic convenience.
Note: If you're working on your own machine, instead of the lab machines, then you'll need to first copy the ... | http://inst.eecs.berkeley.edu/~cs61a/su12/lab/lab11/lab11.php | CC-MAIN-2018-17 | refinedweb | 1,551 | 53.41 |
Your Account
by Daniel Berger
I find Ruby’s current warning system, if you can call it that, lacking. Warnings are controlled by the -W flag on the command line, and are generated via the Kernel#warn method within code. There are a host of problems with this approach to warnings.
First, warnings aren’t currently testab... | http://archive.oreilly.com/pub/post/structured_warnings_now.html | CC-MAIN-2016-36 | refinedweb | 944 | 64 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.