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
Pirates 6 — Add a component In the previous lesson, you detected a cannonball hit. But at the moment, nothing happens when a ship gets hit by a cannonball. In this lesson you’ll: - create a component to store the ship’s health - add this component to players’ ships and to pirate ships - reduce a ship’s health when it g...
https://docs.improbable.io/reference/11.0/tutorials/pirates/lesson6
CC-MAIN-2018-13
refinedweb
1,211
57.87
The static keyword is one of the most confusing keywords in the C++ language (maybe with the exception of the keyword “class”). This is because it has different meanings depending on where it is used. In section 4.2 -- Global variables, When applied to a local variable, the static keyword defines the local variable as ...
http://www.learncpp.com/cpp-tutorial/43-static-duration-variables/comment-page-1/
CC-MAIN-2018-13
refinedweb
2,860
72.05
0 Hi, I just installed Dev-Cpp for a IT class and started up with a basic program to see if all was alright: #include <stdio.h> int main() { printf("Ola Mundo"); system("PAUSE"); } Still, when i tried F9 (Compile & Run), appear this errors: [Linker error] undefined reference to `__dyn_tls_init_callback' [Linker error] ...
https://www.daniweb.com/programming/software-development/threads/347951/help-linker-error-dev-cpp-basic-program
CC-MAIN-2017-43
refinedweb
127
50.5
Listing 1. Model Files, with Associations and Validations class Person < ActiveRecord::Base has_many :meeting_people has_many :meetings, :through => :meeting_people validates_presence_of :first_name, :last_name, :email validates_uniqueness_of :email def fullname "#{first_name} #{last_name}" end end class Meeting < Act...
https://www.linuxjournal.com/magazine/forge-fixtures-and-factories
CC-MAIN-2019-13
refinedweb
1,730
57.16
16 AnswersNew Answer Example findall(regex,"12345")=234 General case: find string w.o first and last. 16 AnswersNew Answer Oma Falk Based on the question: "How can regex find the middle 3 letters of a 5 char-word?" I'm assuming the word can include any non-whitespace alphanumeric character like this one: "12345" The re...
https://www.sololearn.com/Discuss/2272451/how-can-regex-find-the-middle-three-letters-of-a-5char-word
CC-MAIN-2020-45
refinedweb
405
75.5
{emayili} Message Templates Want to share your content on R-bloggers? click here if you have a blog, or here if you don't. Services like Mailchimp and MailerLite make it easy to create stylish email campaigns. Their templating tools allow you to create elegant HTML messages which are personalised to the recipient. Woul...
https://www.r-bloggers.com/2022/01/emayili-message-templates-2/
CC-MAIN-2022-40
refinedweb
799
58.58
Today.. The provider source code comes with a buildable VS 2005 Project all setup. Jeff Prosise also wrote 130+ pages of awesome whitepapers that walkthrough the code, database schema, and how they work. You can read them here: The beauty of the ASP.NET 2.0 Provider model is that it delivers rich extensibility and flex...
http://weblogs.asp.net/scottgu/archive/2006/04/13/442772.aspx
CC-MAIN-2013-20
refinedweb
1,760
72.76
I know there has been a ton of questions about this, but mine is pretty specific and i don't really know why the import is not working. I've got the following Folder Structure: importmodule -classes -pluginhelper -- __init__.py -plugins -- plugin_a -- plugin b -- .. -__init__.py -<other py files> In my plugin files i a...
http://m.dlxedu.com/m/askdetail/3/f294157206cb8824983e8a14b582c97a.html
CC-MAIN-2019-04
refinedweb
354
68.26
I am beginning python and trying to convert one of my simple C++ programs to see the differences in the languages. I am a bit stuck on the following function which is part of my original program: C++ - Code: Select all bool sumOfPrimeFactorsIsPrime(int number) //works out if a number is prime or not, returns true or fa...
http://www.python-forum.org/viewtopic.php?f=6&t=3614
CC-MAIN-2014-42
refinedweb
312
66.17
Gary Deer wrote:Yes, got this to work, thanks. Gary Deer wrote:Using gen-class takes some getting used to, but once I had a working example to play with I started to get it. Gary Deer wrote:I'll try to build off of this and post any interesting discoveries. I'm also going to work on some sort of automation for the buil...
http://www.coderanch.com/t/601586/clojure/Calling-Clojure-Java-code
CC-MAIN-2015-40
refinedweb
365
77.16
Consistently, one of the more popular stocks people enter into their stock options watchlist at Stock Options Channel is Wal-Mart Stores, Inc. (Symbol: WMT). So this week we highlight one interesting put contract, and one interesting call contract, from the September expiration for WMT. The put contract our YieldBoost ...
https://www.nasdaq.com/articles/interesting-september-stock-options-wmt-2014-04-07
CC-MAIN-2021-25
refinedweb
358
65.52
Hello, I have this assigment to solve a quadratic equation, and the professor started us with the code.. He told us to use a,b,c and the Determinant and root1 and root2 and ANS, as the identifiers. I tried finishing the code but keep getting errors or it wont work :( it's 4:55AM and am still trying to figure this out. ...
http://cboard.cprogramming.com/c-programming/82654-need-your-help-guys-printable-thread.html
CC-MAIN-2015-32
refinedweb
266
61.7
Difference between revisions of "Keywords" Revision as of 18:42, 2 May 2006 This page lists all Haskell keywords, feel free to edit. Hoogle searches will return results from this page. Please respect the Anchor macros. For additional information you might want to look at the Haskell 98 report. Contents | safeTail x | n...
https://wiki.haskell.org/index.php?title=Keywords&diff=prev&oldid=3962
CC-MAIN-2021-39
refinedweb
178
74.79
Announcing .NET Core 3.0 Richard Announcing .NET Core 3.0. } In this example, the ConsoleLogger class doesn’t have to implement the Log(Exception) overload of ILogger, because it is declared with a default implementation. Now you can add new members to existing public interfaces as long as you provide a default impleme...
https://devblogs.microsoft.com/dotnet/announcing-net-core-3-0/?WT.mc_id=ndepend-blog
CC-MAIN-2020-16
refinedweb
4,646
78.35
GameFromScratch.com In this tutorial we are going to look at adding keyboard and mouse support to your cocos2D application. cocos2D was traditionally used on the iPhone, so keyboard and mouse support is very touch centric, so if you are used to desktop development and things seem a bit strange, this is why. Alright, le...
http://www.gamefromscratch.com/post/2013/04/04/My-next-project%E2%80%A6-finally-a-game!.aspx
CC-MAIN-2017-26
refinedweb
2,894
50.23
Learn about .NET Collections in this article. A .NET collection is a set of similar type of objects that are grouped together. System.Collections namespace contains specialized classes for storing and accessing the data. Why a Collection? Collection Interfaces There are some basic operations that are possible on any co...
https://www.c-sharpcorner.com/article/collections-in-net/
CC-MAIN-2019-30
refinedweb
435
50.94
We all know the basic statement that finalize() method is called by garbage collector thread before reclaiming the memory allocated to the object. In this post, we will drill down more deeply into this method. Sections in this post: - finalize() execution is not guaranteed at all (with example) - Other reasons for not ...
http://howtodoinjava.com/2012/10/31/why-not-to-use-finalize-method-in-java/
CC-MAIN-2014-52
refinedweb
1,285
58.69
ASP.NET Identity is the new membership system for ASP.NET applications. To learn more about ASP.NET Identity please visit One of the mainline features about ASP.NET Identity is to make it easy to add profile information about the user. In the existing ASP.NET Membership system, User and Profile were separate tables and...
https://blogs.msdn.microsoft.com/webdev/2013/10/16/customizing-profile-information-in-asp-net-identity-in-vs-2013-templates/
CC-MAIN-2016-44
refinedweb
5,071
57.87
Popularity 6.7 Declining Activity 0.0 Stable 43 28 11 Monthly Downloads: 6,584 Programming language: Elixir License: Apache License 2.0 Tags: Third Party APIs sparkpost alternatives and similar packages Based on the "Third Party APIs" category. Alternatively, view sparkpost alternatives based on common mentions on soci...
https://elixir.libhunt.com/elixir-sparkpost-alternatives
CC-MAIN-2021-43
refinedweb
982
52.15
A configuration object to generate a matcher and replacer JavaScript function. More... #include <WSuggestionPopup.h> A configuration object to generate a matcher and replacer JavaScript function. When replacing the current edited value with suggestion value, append the following string as well. Used during replacing. O...
https://webtoolkit.eu/wt/doc/reference/html/structWt_1_1WSuggestionPopup_1_1Options.html
CC-MAIN-2020-10
refinedweb
210
54.59
Subject: Re: [OMPI users] How to force eager behavior during Isend? From: George Bosilca (bosilca_at_[hidden]) Date: 2008-12-08 14:44:42 Barry, If you set the eager size large enough, the isend will not return until the data is pushed into the network layer. However, this doesn't guarantee that the data is delivered to...
https://www.open-mpi.org/community/lists/users/2008/12/7469.php
CC-MAIN-2016-22
refinedweb
223
66.67
Grid. Hi Matt, I am new to ASP.NET 2.0 GridView and the topic of this blog entry is something that I wanted to implement. Can you provide an example project/solution (here is my email address sunisha[at]comcast.net)? Thank you so much! Sunish I’m curious how much effort it’d be to extend the gridview in such a way that...
https://blogs.msdn.microsoft.com/mattdotson/2005/11/09/real-world-gridview-bulk-editing/
CC-MAIN-2019-47
refinedweb
6,582
58.99
# Why Not Airflow? Read the original post You can view the original version of this post on our blog. Why should I choose Prefect over Airflow?: decrees that such workflows do not exist. You’ll need to create two nearly-identical DAGs, or start them a millisecond apart, or employ other creative hacks to get this to wor...
https://docs.prefect.io/core/getting_started/why-not-airflow.html
CC-MAIN-2020-45
refinedweb
392
53.51
App::Trace - Embedded debug statements, including call/return tracing In a program (such as the following one named "foo"), you can do the following... #!/usr/bin/perl use App::Option; # App::Trace was written to be used with App::Options use App::Trace; # enable tracing support use Foo; &run(); sub run { &App::sub_ent...
http://search.cpan.org/dist/App-Trace/lib/App/Trace.pm
CC-MAIN-2018-05
refinedweb
753
50.67
The QTextOStream class is a convenience class for output streams. More... All the functions in this class are reentrant when Qt is built with thread support. #include <qtextstream.h> Inherits QTextStream. List of all member functions. This class provides a shorthand for creating simple output QTextStreams without havin...
http://doc.trolltech.com/3.2/qtextostream.html
crawl-002
refinedweb
125
79.06
OVERVIEW In this blog, you will learn, - How to check the slots availability for vaccine dose based on pincode of your area, district ID and location basis. - How to integrate rasa chatbot to the CoWin vaccine notifier app. - How to send the fetched details to your email ID. Understanding the CoWin public APIs Firstly,...
https://innovationyourself.com/automate-cowin-vaccine-notifier-using-rasa/
CC-MAIN-2022-21
refinedweb
1,336
61.16
I’ve been there. I’ve built one myself. And it collapsed killing me in the process. I’ve learned my lesson. So here is the story of a dead man. Learn from my faults or be doomed to repeat them. The story. But we were safe. We had tons of tests. We could change anything. Or so I thought.. It took me a week to figure out...
http://www.javacodegeeks.com/2012/09/test-driven-traps-part-1.html
CC-MAIN-2015-18
refinedweb
1,444
79.16
The navigate method is not available in Selenium webdriver with Python. In order to navigate to a page, we can use the get method and pass the URL of the page that we want to launch as a parameter. In this method the webdriver waits till the webpage is completely loaded prior transferring the control to the next step i...
https://www.tutorialspoint.com/is-navigate-method-available-in-selenium-webdriver-with-python
CC-MAIN-2021-25
refinedweb
184
52.66
On the quad or trapz'd in ChemE heaven Posted February 02, 2013 at 09:00 AM | categories: integration, python | tags: | View Comments Updated February 27, 2013 at 02:53 PM What is the difference between quad and trapz? The short answer is that quad integrates functions (via a function handle) using numerical quadrature...
http://kitchingroup.cheme.cmu.edu/blog/2013/02/02/On-the-quad-or-trapz-d-in-ChemE-heaven/
CC-MAIN-2020-05
refinedweb
522
70.9
Rob Browning <address@hidden> writes: > I've also been through *all* of our defines in config.h and evaluated > each one to figure out what should be done with it. Excellent work! Thank a lot for doing this, Rob! Since this is a major change, we should not be doing it in the 1.6 series unless there is a real and specif...
http://lists.gnu.org/archive/html/guile-devel/2003-03/msg00015.html
CC-MAIN-2014-41
refinedweb
359
70.63
View all headers Path: senator-bedfellow.mit.edu!bloom-beacon.mit.edu!news.rediris.es!irazu.switch.ch!switch.ch!newsfeed00.sul.t-online.de!newsfeed01.sul.t-online.de!t-online.de!newsfeed.vmunix.org!news1.optus.net.au!optus!news.uwa.edu.au!not-for-mail From: trs80@tartarus.uwa.edu.au (James Andrewartha) Newsgroups: rec....
http://www.faqs.org/faqs/games/roguelike/angband-faq/
CC-MAIN-2015-35
refinedweb
5,854
74.79
User talk:Bürste Bot Could you explain in your bot wiki page if you removed the duplicate node-id's in the ways, not the nodes with the same locations. -- Pieren 10:32, 28 September 2009 (UTC) Your multipolygon relation bug broke lake in my area, the islands are now in a separate relation from the coastline. Can you pl...
http://wiki.openstreetmap.org/wiki/User_talk:B%C3%BCrste
CC-MAIN-2017-22
refinedweb
485
71.24
This article has to do with a number of games in the market that use the keyboard as the primary controller. Categories would include racing games where the user lacks a joystick or a wheel. Before I go on with this article, a few points have to be covered. This article assumes that you have a basic knowledge of I/O te...
https://www.gamedev.net/articles/programming/general-and-gameplay-programming/keyboard-io-considerations-in-game-development-r2107/
CC-MAIN-2018-43
refinedweb
939
60.04
From: Aleksey Gurtovoy (agurtovoy_at_[hidden]) Date: 2005-05-06 11:17:51 Joel writes: > Joel wrote: >> Brian Braatz wrote: >> >>> Could it be as simple as missing the namespace on the is_sqeuence<> >>> call? >> >> >> Have you tried it? If it was, I wouldn't have bothered the list ;-) >> Try replacing int_<0> with int. ...
https://lists.boost.org/Archives/boost/2005/05/86043.php
CC-MAIN-2020-10
refinedweb
248
74.9
Today I am going to post the code of a function I wrote to check broken links in a web page. You can learn two things by going through it – First, how to check broken links (I know that’s obvious :D). Second, how to handle multiple windows in selenium webdriver + python. There are three useful functions for this – 1. w...
https://amybughunter.wordpress.com/2013/07/20/check-broken-links-and-handle-multiple-windows-through-selenium-webdriver-in-python/
CC-MAIN-2018-39
refinedweb
662
57.47
Membru care solicită informaţii Event 5858 from WMI-Activity Întrebare Many instances of Event 5858 from WMI-Activity are appearing in the Microsoft-Windows-WMI-Activity/Operational log. An example of the event message text is "Id = {BA4361BF-423A-0001-1284-43BA3A42CD01}; ClientMachine = SERVER1; User = SERVER\bnf1; Cl...
https://social.technet.microsoft.com/Forums/windows/ro-RO/84d42b34-6941-4b60-9908-450ef8305813/event-5858-from-wmiactivity?forum=winserver8gen
CC-MAIN-2020-24
refinedweb
4,267
54.73
Community TutorialsCOMMUNITY HOME SEARCH TUTORIALS There has been much already written about using BigQuery for data analysis - for example: - Analyzing Financial Time Series using BigQuery - How to forecast demand with Google BigQuery, public datasets and TensorFlow - The interesting sample queries for the BigQuery Pu...
https://cloud.google.com/community/tutorials/data-science-exploration?hl=vi
CC-MAIN-2020-24
refinedweb
1,353
64.61
Home -> Community -> Mailing Lists -> Oracle-L -> Re: hash joins and pga/temp space? The algorithm Oracle uses for hash joins is wonderfully explained starting on page 319 of Jonathan Lewis' "Cost Based Oracle", including the memory management and even some events that may help you answer most of your questions about m...
http://www.orafaq.com/maillist/oracle-l/2006/11/14/0712.htm
CC-MAIN-2017-17
refinedweb
283
69.01
All-Star 48181 Points May 26, 2020 11:28 AM|mgebhard|LINK imagetech When should I port asp.net webforms solution to .net core, and are there any guides for that? Migration guidance can be found in the official documentation. ASP.NET Core is very different approach to generating dynamic HTML than ASP.NET WebForms. This ...
https://forums.asp.net/t/2167305.aspx?+Updated+Why+When+should+I+port+asp+net+webforms+solution+to+net+core+and+are+there+any+guides+for+that+
CC-MAIN-2020-29
refinedweb
702
75.3
Using DesignScript to visualize prime numbers in AutoCAD In the last post we looked at some amazing visualizations of prime numbers created by Carlos Paris. I also mentioned I’d try my hand at replicating the basic visualization using DesignScript: it’s a good fit for solving this kind of problem (we want to create lot...
http://through-the-interface.typepad.com/through_the_interface/2012/11/using-designscript-to-visualize-prime-numbers-in-autocad.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+typepad%2Fwalmsleyk%2Fthrough_the_interface+%28Through+the+Interface%29
CC-MAIN-2015-22
refinedweb
620
54.56
C++ tricks, #1: Compile time checks While writing a library, you have sometimes to prevent users from making mistakes. To accomplish this, you have two choices: Either include run-time checking and throw an appropriate exception or try to catch as much as possible during compile time. Of course, the latter should be pr...
https://anteru.net/blog/2007/02/10/151/index.html
CC-MAIN-2017-43
refinedweb
512
57.81
I made this function that calculates the mode of a list. I was just wandering if there were any other ways of finding the mode that are more simpler than what I have done. Also there could be a possibility that my code does’nt work. def mode(list_in): count_dict = {} for x in list_in: #makes a dictionary of the numbers...
https://discuss.codecademy.com/t/improving-my-code/346226
CC-MAIN-2018-34
refinedweb
128
52.19
In and of itself, the article is quite useful and makes some extremely valuable, though often missed, points regarding how coding style affects the long term value of a body of software. First, I had no idea that Yahoo! uses Python heavily enough to have warranted the creation of a coding standards document! However, t...
http://radio.weblogs.com/0100490/2003/03/12.html
crawl-002
refinedweb
346
62.38
Review this application that uses the HttpWebRequest and HttpWebResponse classes to provide Web page information. HTTP Test Published 03/18/2003 Review this application that uses the HttpWebRequest and HttpWebResponse classes to provide Web page information. Use the DNS class to resolve host names to IP addresses. Also...
http://www.codeguru.com/member.php/Bill+Nolde/6/
CC-MAIN-2014-42
refinedweb
149
58.08
RealNews is a Winforms RSS Reader similar in features to FeedReader which is out of support for 10 years now and is showing its age on the Windows 10 operating system. As a replacement for FeedReader, I tried out many other RSS readers like RSSOwl (which is also unsupported) but none of them felt right, so I decided to...
https://www.codeproject.com/Articles/1254903/RealNews
CC-MAIN-2020-24
refinedweb
1,947
51.78
> Hi All! I'm trying to add a bit of random drift to my rigidbody player controller to make my game project a little more challenging but for the life of me cannot figure out how to make a rigidbody move in a circular pattern just with addForce or even constantForce. The closest I can get is movement that looks like a ...
https://answers.unity.com/questions/1519123/creating-circular-motion-to-rigidbody-using-addfor.html
CC-MAIN-2019-22
refinedweb
286
54.32
Code Java: import java.util.*; import java.lang.*; /** * To output whether a students chosen password is valid or not. * * @author (Sean McGlone * @version (December 13, 2010) */ class SemesterProject { public static void main(String[]args)throws Exception { Scanner scanReader = new Scanner(System.in); String password ...
http://www.javaprogrammingforums.com/%20whats-wrong-my-code/6476-problems-code-printingthethread.html
CC-MAIN-2014-52
refinedweb
160
52.36
mutation testing for Python 3 Project description Mutmut is a mutation testing system for Python, with a strong focus on ease of use. If you don’t know what mutation testing is try starting with this article. Some highlight features: - Found mutants can be applied on disk with a simple command making it very easy to wo...
https://pypi.org/project/mutmut/
CC-MAIN-2021-21
refinedweb
939
61.46
DBus Support¶ PyQt5 provides two different modules that implement support for DBus. The QtDBus module provides wrappers for the standard Qt DBus classes. The dbus.mainloop.pyqt5 module add support for the Qt event loop to the standard dbus-python Python module. QtDBus¶ The QtDBus module is used in a similar way to the ...
http://doc.bccnsoft.com/docs/PyQt5/dbus.html
CC-MAIN-2019-13
refinedweb
383
55.44
Abstract This proposal provides content for section 9 "How To Extend Atom", noting the locations where non-Atom-namespace markup may be inserted and requiring "Must Ignore" behavior from software. Status Open. Rationale The default MustIgnore rule needs to be spelled out somewhere. Proposal (These sub-section numbers w...
http://www.intertwingly.net/wiki/pie/PaceExtendingAtom?action=raw
CC-MAIN-2017-47
refinedweb
373
52.39
.customizers.common;20 21 import java.awt.Font ;22 import java.awt.Graphics ;23 import javax.swing.JTable ;24 25 /** JTables do not automatically scale their row height with font size, so when26 * running under, for example --fontsize 16 (common for Chinese), the rows of our27 * tables are too narrow and only marginall...
http://kickjava.com/src/org/netbeans/modules/j2ee/sun/share/configbean/customizers/common/FixedHeightJTable.java.htm
CC-MAIN-2016-50
refinedweb
216
65.32
readv, writev - read or write data into multiple buffers Synopsis Description Errors Bugs #include <sys/uio.h> ssize_t readv(int fd, const struct iovec *vector, int count); ssize_t writev(int fd, const struct iovec *vector, int count);. BSD 4.2), Unix98, POSIX 1003.1-2001. Linux libc5 used size_t as the type of the cou...
http://www.squarebox.co.uk/cgi-squarebox/manServer/usr/share/man/man2/readv.2
crawl-003
refinedweb
104
69.11
the Assign button., and Inbound Web Services check boxes. Leave the Resource Required and Group By ID fields empty. Check the Unauthenticated check box on the Allowed Authentication Methods line. Set the Dispatch Class to the component class, such as EnsLib.REST.GenericService or EnsLib.SOAP.GenericService. Click Save...
https://docs.intersystems.com/irisforhealthlatest/csp/docbook/DocBook.UI.Page.cls?KEY=ESOAP_CONFIGURE_ENSEMBLE
CC-MAIN-2021-10
refinedweb
225
59.19
Qt5 compiling problem on OSX Hi, Following this tutorial: I can't compile Qt5 on my OSX (Mountain Lion). I run into the this problem: @In file included from xml/parser/XMLDocumentParser.h:33: xml/XMLErrors.h:36:10: fatal error: 'libxml/parser.h' file not found #include <libxml/parser.h> ^ 1 error generated. make[4]: **...
https://forum.qt.io/topic/21513/qt5-compiling-problem-on-osx
CC-MAIN-2018-39
refinedweb
330
59.19
[SOLVED]Android: Exclude subdir project How can I exclude subdir project from Android build? P.S. I tied to use but it still include in qmake @win32|linux|mac { SUBDIRS += openrpt }@ Hi, IIRC there's now the android scope so you could use @!android:SUBDIRS += openrpt@ Hope it helps [quote]IIRC there’s now the android s...
https://forum.qt.io/topic/31334/solved-android-exclude-subdir-project
CC-MAIN-2018-09
refinedweb
201
69.48
Let's say there are two dictionaries: a and b. How to make sure that when you enter input, say b, the dictionary b is displayed? if input ()== "b": print (b) else: print (a). Or print (b if input ()== "b" else a).GrAnd2021-11-25 12:24:48 Similar questions have been asked here a lot. for examplealeksandr barakin2021-11-...
https://www.tutorialfor.com/questions-382181.htm
CC-MAIN-2021-49
refinedweb
291
74.32
14, 2012 #include "51Degrees.mobi.h" char *isMobile( *result) { *token; token = strtok(result, "|" ); while (token != NULL) { if (strcmp(token, "IsMobile" ) == 0) { token = strtok(NULL, "\n" return token; } else (token != NULL) token = strtok(NULL, "null" ; int main( argc, * argv[]) { *check, *result, subject; FILE *i...
https://51degrees.com/blog/gaining-device-statistics-from-w3c-server-logs
CC-MAIN-2019-47
refinedweb
254
50.23
stream head interacts between applications in the user space and the rest of the stream in kernel space. The stream head is responsible for configuring the plumbing of the stream through open, close, push, pop, link, and unlink operations. It also translates user data into messages to be passed down the stream, and tr...
http://docs.oracle.com/cd/E19253-01/816-4855/6mb1p1r09/index.html
CC-MAIN-2014-35
refinedweb
3,300
54.02
Jesse Allen writes: > --- linux/arch/i386/kernel/apic.c 2003-10-25 11:44:59.000000000 -0700 > +++ linux-jla/arch/i386/kernel/apic.c 2003-12-09 19:07:19.000000000 -0700 > @@ -1089,6 +1089,16 @@ > */ > irq_stat[cpu].apic_timer_irqs++; > > +#ifdef CONFIG_MK7 && CONFIG_BLK_DEV_AMD74XX > + > + /* > + * on 2200XP & nforce2 c...
https://lkml.org/lkml/2003/12/10/28
CC-MAIN-2021-17
refinedweb
170
71
A python package for Personalized Genomics and Proteomics Project description Short description: pyGeno is developed by Tariq Daouda at the Institute for Research in Immunology and Cancer (IRIC). With pyGeno you can do that: from pyGeno.Genome import * #load a genome ref = Genome(name = 'GRCh37.75') #load a gene gene =...
https://pypi.org/project/pyGeno/1.2.8/
CC-MAIN-2019-13
refinedweb
378
52.09
This post is OBE. See Log4j2 Sample Config **NOTE: With the build from November 10 #579 the location of all the files in runtime/karaf/etc have moved to userdata/etc. The instructions below have been updated accordingly. If you are running an older verison of openHAB (anything older than build #579), the location of th...
https://community.openhab.org/t/taming-openhab-2-logging/13976
CC-MAIN-2019-39
refinedweb
550
59.09
In our earlier post we introduced you to package in Java.Today we shall make a program on this concept.The statement of the program is as follows: “Write a program to keep student information in one package and student marks information in a class and try to access the data in the student information package and finall...
https://letusprogram.com/2013/10/24/programming-with-packages/
CC-MAIN-2021-17
refinedweb
319
53.21
Web Service to return data in JSON format - Get link - Other Apps Web services are those services which are available over web to communicate between systems. By default Web Service returns data in XML format, now if the requirement is to return in JSON format then we need to do modification in web method. Below webmet...
https://www.sharepointcafe.net/2017/01/web-service-to-return-data-in-json.html
CC-MAIN-2019-51
refinedweb
260
52.36
[Solved] Tutorial: GPIO/I2C/SPI-access without root-permissions SUBSYSTEM=="spidev", GROUP="spiuser", MODE="0660" Next, copy and paste or type these lines into the terminal as the user you want to give access to the bus: sudo groupadd spiuser sudo adduser "$USER" spiuser SUBSYSTEM=="i2c-dev", GROUP="i2cuser", MODE="066...
https://forum.up-community.org/discussion/2141/solved-tutorial-gpio-i2c-spi-access-without-root-permissions
CC-MAIN-2021-25
refinedweb
1,070
56.05
You can subscribe to this list here. Showing 8 results of 8 Hi Hisham! Currently htop does not display the stolen CPU time as top does (and vmstat does). Can you please add that feature to htop? :) It's very very helpful for paravirtualized machines (e.g. under Xen, KVM). The 'top' man page says: --8<-- st -- Steal Tim...
http://sourceforge.net/p/htop/mailman/htop-general/?viewmonth=201008
CC-MAIN-2015-40
refinedweb
790
67.86
Efficient off-screen rendering of QPainterPaths (OpenGL and non-OpenGL solution required) - In my application, I paint a street map using QPainter on a widget - made by QPainterPaths that contain precalculated paths to be drawn - the widget is currently a QWidget, not a QGLWidget, but this might change. - I'm trying to...
http://www.brokencontrollers.com/faq/11474078.shtml
CC-MAIN-2019-51
refinedweb
723
55.68
03 October 2011 10:08 [Source: ICIS news] SINGAPORE (ICIS)--Indian major Reliance Industries Limited (RIL) has raised its list prices for all of its polyethylene (PE) grades with effect from 1 October this year, in line with the weak Indian rupee and flat domestic demand, a source close to the company said Monday. RIL ...
http://www.icis.com/Articles/2011/10/03/9496885/indias-reliance-hikes-pe-list-prices-on-weak-currency-flat.html
CC-MAIN-2015-14
refinedweb
356
61.06
Part 1: Build a Static Widget Introduction. In this first part we are going to set up our dev environment, scaffold a module and then build a simple Widget inside it. Prerequisites This course assumes the following: You have some experience using Orchard and understand its core concepts. Refreshers and links to related...
http://docs.orchardproject.net/en/latest/Documentation/Getting-Started-with-Modules-Part-1/
CC-MAIN-2017-26
refinedweb
4,149
65.12
From: mfdylan (dylan_at_[hidden]) Date: 2002-02-06 22:03:08 --- In boost_at_y..., "Noah Stein" <noah_at_v...> wrote: > > > I like the idea of being able to accept default values anywhere one is > present. I think it would be preferable, though, to have an explicit > declaration of intent to use the default value instea...
https://lists.boost.org/Archives/boost/2002/02/24698.php
CC-MAIN-2019-47
refinedweb
209
64.91
If you haven’t quite gotten all of Python OOP yet, don’t worry; now that we’ve had a quick tour, we’re going to dig a bit deeper and study the concepts introduced earlier in further detail. In this and the following chapter, we’ll take another look at class mechanics. Here, we’re going to study classes, methods, and in...
https://www.safaribooksonline.com/library/view/learning-python-4th/9780596805395/ch28.html
CC-MAIN-2018-09
refinedweb
143
60.55
Created on 2020-03-30 21:04 by gregory.p.smith, last changed 2021-06-08 00:21 by gregory.p.smith. The correct C99 way to do this is using a char[]. PyBytesObject and unicode's struct encoding_map both do this. Unclear to me if we should backport this to earlier versions or not (because PyBytesObject may be exposed?) Pr...
https://bugs.python.org/issue40120
CC-MAIN-2021-39
refinedweb
1,251
63.39
Red Hat Bugzilla – Full Text Bug Listing yumUtils.oldUtils contains a lot of errors and is completely unusable. I suggest to review the code and fix it. I already fixed most annoying errors (see my patch). Created attachment 335830 [details] a patch *** Bug 491069 has been marked as a duplicate of this bug. *** *** Bug...
https://bugzilla.redhat.com/show_bug.cgi?format=multiple&id=491077
CC-MAIN-2016-30
refinedweb
488
61.02
Important changes to forums and questions All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com. 4 years, 4 months ago. Cannot attache ISRs to both rising and falling edges for the same pin Hello, I have noticed an issue: When I attach interrupt service ...
https://os.mbed.com/questions/68987/Cannot-attache-ISRs-to-both-rising-and-f/
CC-MAIN-2020-40
refinedweb
270
64.81
fseek Sets the file position indicator for the file stream stream to the value pointed to by offset. If the stream is open in binary mode, the new position is exactly offset bytes measured from the beginning of the file if origin is SEEK_SET, from the current file position if origin is SEEK_CUR, and from the end of the...
http://en.cppreference.com/w/c/io/fseek
CC-MAIN-2015-11
refinedweb
375
61.56
Introduction to Python BeautifulSoup BeautifulSoup reduces human effort and time while working. A Python library for data pulling from files of markup languages such as HTML and XML is Python BeautifulSoup. It is also Provides analogical ways to produce navigation, modifying, and searching of necessary files. Also used...
https://www.educba.com/python-beautifulsoup/
CC-MAIN-2022-40
refinedweb
1,025
57.77
! /// u: // below) I've been playing around with writing a Full Text Indexer - not for any practical reason, more because I was having an argument with an integration of Lucene (.Net) at work and that phrase crossed my mind; "how hard could it be?!" Yeah.. generally that should be a warning sign :) I was working under ...
http://www.productiverage.com/Archive/5/2012
CC-MAIN-2017-13
refinedweb
3,758
52.8
Well, to be honest I haven't used dev-c++ in a long time myself, but there are many people here who have who will hopefully chime in. I think you have to add the two cpp files to a project, then build the project. Well, to be honest I haven't used dev-c++ in a long time myself, but there are many people here who have w...
https://cboard.cprogramming.com/cplusplus-programming/102722-classes-objects-2.html
CC-MAIN-2017-09
refinedweb
371
82.54
I have been working with arrays and lists a lot lately and I wanted to view them in column mode rather than in row mode to make documentation easier to follow and to make the output more intuitative. The demo relies on the numpy module, but that is no issue since everyone has it with their ArcMap and ArcGIS Pro install...
https://community.esri.com/blogs/dan_patterson/2016/09/01/format-lists-and-arrays
CC-MAIN-2019-26
refinedweb
500
58.69
. Note: I may be an idiot, or I'm missing something fundamental, or I just have unrealistic expectations. Context: Background (i.e. Why I Care): a Socket uses file descriptors, and Android's Linux (emulator) only allows a limited number of them to be open at once (~982, by my estimation). If an app downloads lots of ht...
https://bugzilla.xamarin.com/15/15135/bug.html
CC-MAIN-2021-39
refinedweb
5,394
57.98
Load PIL image in scene with retina resolution I would like to paste PIL images with load_pil_image to a retina screen at full resolution (e.g. 2224 * 1668 for a 10.5" iPad Pro). It now works actually at half that resolution, ie. 1112 * 834). Is there any way to use the double resolution (in Scene)? @upwart, you could ...
https://forum.omz-software.com/topic/5604/load-pil-image-in-scene-with-retina-resolution
CC-MAIN-2021-10
refinedweb
1,135
68.26
This is a good tutorial about interfacing with the parallel port; more importantly reading from the port. Other articles I've seen only show how to write to the port. Before I get ahead of myself, the parallel port I used is an ECP (<!--?xml:namespace prefix = st1 /-->Extended Capability Port). Find out if your port is...
https://www.codeproject.com/Articles/15020/Reading-from-Parallel-Port-using-Inpout-dll?msg=4385240#xx4385240xx
CC-MAIN-2022-33
refinedweb
974
74.9
(). The file status flags and the file access modes of the open file description are set according to the value of oflag. The open file descriptor created is new, and therefore isn't shared with any other process in the system. Construct the value of oflag by bitwise ORing values from the following list, defined in the...
https://developer.blackberry.com/native/reference/core/com.qnx.doc.neutrino.lib_ref/topic/o/open.html
CC-MAIN-2019-47
refinedweb
327
72.87
Does the create_port_postcommit method work in liberty? I am talking about the below method in ovs-mech-driver of ml2 plugin. def create_port_postcommit(self, context): """Create a port. :param context: PortContext instance describing the port. Called after the transaction completes. Call can block, though will block t...
https://ask.openstack.org/en/question/94423/does-the-create_port_postcommit-method-work-in-liberty/
CC-MAIN-2021-04
refinedweb
138
69.48
I am trying to obtain class information on a field inside a model, when I only know name of the field and name of the model (both plain strings). How is it possible? I can load the model dynamically: from django.db import models model = models.get_model('myapp','mymodel') You can use model's _meta attribute to get fiel...
https://codedump.io/share/9HMbfjwiwAMv/1/how-to-introspect-django-model-fields
CC-MAIN-2017-17
refinedweb
220
50.23
Agenda See also: IRC log DC: Regrets: Stuart <timbl_> Regrets for 30 April - I will be in Nashville DC: Next Telcon: Propose: 30rd April -- scribe: Rhys? <ht> Hmmm HT: Rhys has sent regrets for today. RESOLUTION: we will meet next 30 Apr, Rhys to scribe, Stuart to chair. <DanC> minutes 16 apr RESOLUTION: minutes for 16...
http://www.w3.org/2001/tag/2007/04/23-minutes
crawl-002
refinedweb
3,091
73.37
The Root will be considered a separate namespace. PSR-0, also known as the Autoloading Standard, prescribes that classes and namespaces in PHP should match the directory and file structure, and vice-versa. PSR-4 allows specifying a namespace prefix for a given directory explicitly. Having this project structure makes a...
https://blog.jetbrains.com/phpstorm/2014/04/psr-0-psr-4-and-sourcetest-root-support-in-phpstorm-8-eap/
CC-MAIN-2017-04
refinedweb
365
63.49
Quick Tip: Understanding the Yield Keyword in Python Thanks to Shaumik Daityari for kindly helping to peer review this article. When we call a function in Python, the function will normally start working until it encounters a return, exception, or reaches its end – after which it returns control back to the caller. Whe...
https://www.sitepoint.com/quick-tip-understanding-the-yield-keyword-in-python/
CC-MAIN-2018-34
refinedweb
655
67.59
18, 2005 at 12:46:36PM +0000, Kevin Campbell wrote: > > Can anyone see any problems with just changing 'open' to 'Open', etc in > the ticket states? The code that touches those states should be getting > changed anyway to fit in the ruleset, so I'm not so bothered about that > aside from the effort to do so. > I shoul...
https://sourceforge.net/p/mailmanager/mailman/message/379605/
CC-MAIN-2016-44
refinedweb
456
62.41
Opened 9 months ago Last modified 9 months ago #29056 assigned Bug Required SelectDateWidget renders invalid HTML Description SelectDateWidget in required field renders an invalid HTML. According to standard every select with required attribute must have a placeholder option, i.e. first option must have an empty string...
https://code.djangoproject.com/ticket/29056
CC-MAIN-2018-43
refinedweb
122
52.26
Linked by Thom Holwerda on Sat 2nd Feb 2013 01:47 UTC, submitted by rohan_p Thread beginning with comment 551308 To view parent comment, click here. To read all comments associated with this story, please click here. To view parent comment, click here. To read all comments associated with this story, please click here....
http://www.osnews.com/thread?551308
CC-MAIN-2015-40
refinedweb
167
72.36
network group entries SYNOPSIS #include <netdb.h> int setnetgrent(const char *netgroup); void endnetgrent(void); int getnetgrent(char **host, char **user, char **domain); int getnetgrent_r(char **host, char **user, char **domain, char *buf, int buflen); int innetgr(const char *netgroup, const char *host, const char *us...
http://www.linux-directory.com/man3/getnetgrent.shtml
crawl-003
refinedweb
181
57.47
I’m trying to use the Software Serial library to interface with an ESP8266, but the library isn’t showing up in my list of installed libraries. I tried uninstalling and reinstalling the IDE, but it’s still not showing up. So far, I’ve tried to compile using just the expression to include the SoftwareSerial library. #in...
https://forum.arduino.cc/t/softwareserial-library-not-included-with-arduino/323693
CC-MAIN-2021-49
refinedweb
117
57.67
In this post we will see how quickly and easily we can transform any web application into Windows 10 app using Hosted Web Apps concept. Hosted Web App is the new concept to convert any website into a fully functional windows 10 app and allow developers to access features like Camera, sending toast notifications, updati...
https://blogs.msdn.microsoft.com/msgulfcommunity/2015/11/27/bringing-asp-net-website-to-run-as-a-windows-10-app-and-access-camera-using-uwp-api/
CC-MAIN-2018-30
refinedweb
558
50.73
GTK+ By Example/Print version< GTK+ By Example Permission is granted to copy, distribute and/or modify this document under the terms of the Creative Commons Attribution/Share-Alike License. Contents Introduction About This Book GTK+ is a cross-platform Graphical User Interface (GUI) programming library. It is most well...
https://en.m.wikibooks.org/wiki/GTK%2B_By_Example/Print_version
CC-MAIN-2017-47
refinedweb
1,904
57.3
about this but I could comment. As you know, namespaces are simply addresses for finding some code kept inside them. It looks to me that this com.qas.proweb.soap namespace is a web service. Since the proxy of the web service is compiled in your dll (not an indepentent dll), I'd guess that .NET doesn't like it standing...
https://www.experts-exchange.com/questions/21828337/Namespace.html
CC-MAIN-2018-30
refinedweb
366
76.11
XSLT 2.0 From MDC [edit] For users Although XSLT 2.0 is not supported natively in Firefox, it is possible, via Saxon-B to perform XSLT 2.0, either as a regular user using the XSL Results extension, or within one's own extensions using the approach taken in its code (see below). The extension author hopes to soon add su...
http://developer.mozilla.org/en/docs/XSLT_2.0
crawl-001
refinedweb
392
50.91
#include <semaphore.h> int sem_post(sem_t *sem); If the semaphore value resulting from this operation is positive, then no threads were blocked waiting for the semaphore to become unlocked; the semaphore value is simply incremented. If the value of the semaphore resulting from this operation is zero, then one of the th...
https://man.linuxreviews.org/man3p/sem_post.3p.html
CC-MAIN-2020-24
refinedweb
253
52.39
This is one of the 100 recipes of the IPython Cookbook, the definitive guide to high-performance scientific computing and data science in Python. We will download and process a dataset about attendance on Montreal's bicycle tracks. This example is largely inspired by a presentation from Julia Evans. import numpy as np ...
http://nbviewer.jupyter.org/github/ipython-books/cookbook-code/blob/master/notebooks/chapter01_basic/02_pandas.ipynb
CC-MAIN-2017-47
refinedweb
479
60.92
Actor lifecycle, automatic garbage collection, and manual delete An actor is activated the first time a call is made to any of its methods. An actor is deactivated (garbage collected by the Actors runtime) if it is not used for a configurable period of time. An actor and its state can also be deleted manually at any ti...
https://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-reliable-actors-lifecycle
CC-MAIN-2021-43
refinedweb
944
53.81
#include <SIM_Options.h> This class stores a set of name/value pairs. Each value can be one of several different data types. No automatic conversion between data types is provided, so accessing existing data requires knowledge of both the data name and the data type. Definition at line 27 of file SIM_Options.h. This fu...
https://www.sidefx.com/docs/hdk/class_s_i_m___options.html
CC-MAIN-2021-10
refinedweb
135
58.18