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
123456789101112131415161718192021 // Numbers start from the right squares wishing to move to the left. // Letters start from the left squares wishing to move to the right. initBoard(); // While all numbers not at the leftmost squares while (!allNumbersAtLeft()) { // For all numbers where the letter is in the adjacent s...
http://www.cplusplus.com/forum/general/247030/
CC-MAIN-2018-51
refinedweb
240
63.9
Changing Resource Structure With Evolution¶ As you develop your software and make changes to structures, your existing content will be in an old state. Whether in production or during development, you need a facility to correct out-of-date data. Evolution provides a rich facility for "evolving" your resources to match ...
http://substanced.readthedocs.io/en/latest/evolution.html
CC-MAIN-2017-30
refinedweb
827
54.52
People have been asking for a Clock Panel in Grafana so I thought I’d give it a try and at the same time show how to build plugins for Grafana. Grafana 3.0 introduces a new plugin system architecture and these plugins can be shared with everyone through Grafana.net. TL;DR - If you just want a clock panel for Grafana th...
https://grafana.com/blog/2016/04/08/timing-is-everything.-writing-the-clock-panel-plugin-for-grafana-3.0/
CC-MAIN-2022-27
refinedweb
1,673
67.76
#!/bin/bash # Template for "svn commit" # Add "export SVN_EDITOR=/path/to/this/file" to your .bashrc # Fail one first error set -e filename=$1 editor=${EDITOR-vim} mv $filename /tmp # The template cat << EOF > $filename Bug # Reviewed-by: EOF # Add file list to template cat /tmp/$filename >> $filename mtime=$(stat -c %...
http://pythonwise.blogspot.com/2010/
CC-MAIN-2019-35
refinedweb
1,248
71.24
: from your command line. This py.test plugin provides a fixture named regtest for recording data by writing to this fixture, which behaves like an output stream: .. code::python def test_squares_up_to_ten(regtest): result = [i*i for i in range(10)] # one way to record output: print >> regtest, result # alternative met...
https://pypi.org/project/pytest-regtest/0.4.1/
CC-MAIN-2018-30
refinedweb
234
66.23
The following code is given: #include <vector> std::vector<int> intVec; intVec.reserve(5); intVec[0] = 1; std::cout << "intVec Size: " << intVec.size(); intVec.size() push_back intVec[0] = 1 From your non-understable question, I can guess that you want the vector to treat the [] operator as "edit if it is exist or crea...
https://codedump.io/share/96RjMA2iRgZD/1/size-of-c-vector-is-invalid
CC-MAIN-2017-26
refinedweb
150
70.6
Chat them. Are they hard to create? What technologies should I know before attempting to work on them? In the end, we end up discouraged reading through many posts on the internet and effectively accomplishing nothing. Let me assure you this is not going to be “that kind of a post”. I will try to distill some of the kn...
https://mlwhiz.com/blog/2019/04/15/chatbot/
CC-MAIN-2021-25
refinedweb
2,980
50.12
PyCharm Scientific Mode with Code Cells You can use code cells to divide a Python script into chunks that you can individually execute, maintaining the state between them. This means you can re-run only the part of the script you’re developing right now, without having to wait for reloading your data. Code cells were a...
https://blog.jetbrains.com/pycharm/2018/04/pycharm-scientific-mode-with-code-cells/
CC-MAIN-2022-21
refinedweb
2,618
63.09
Google Quietly Posts Big JavaScript Engine Update 120." The Browser Wars (Score:1) Re: (Score:2, Informative) No. "The browser war continues" -or- "The browser wars continue" Either would be fine, but "The browser wars continues" is certainly not proper English grammar. Mod me as troll or whatever makes you feel better...
http://tech.slashdot.org/story/10/12/07/2027259/Google-Quietly-Posts-Big-JavaScript-Engine-Update
CC-MAIN-2015-40
refinedweb
4,038
73.37
How many route-target supported. when i config route-target import or export , is there any limitation on maximum numbers of route-target. i heard it is 64 on cisco ios, when i config more than 64 route target ,is there any problem? when i config route-target import or export , is there any limitation on maximum number...
https://supportforums.cisco.com/discussion/11600526/how-many-route-target-supported
CC-MAIN-2015-11
refinedweb
355
59.53
I lost this post so I have attempted to reconstruct what I can of everybody’s replies. I think I did ok in the end. I continued my discussion of the topic here:... Hi all, I wanted to do a post on this for a while now but it is hard to separate the Yaw issues I want to talk about from a number of other issues regarding...
https://diydrones.com/profiles/blogs/yaw-control-esc-linearization-and-hover-reconstruction
CC-MAIN-2019-43
refinedweb
4,803
59.64
The primary purpose of ASP.NET AJAX is making the user’s experience as rich as possible by providing a breakthrough programming environment to developers so that they can code what was impossible or impractical before. Partial page refresh and remote method calls are the key features of an AJAX-powered application. Tog...
https://flylib.com/books/en/2.369.1/building_ajax_applications_with_aspnet.html
CC-MAIN-2018-43
refinedweb
7,930
55.13
Hi there! My name is Mayank Mishra, I’m the Director of Engineering at Contentstack and have been a member of the Built.io team since its inception for over 10 years! I’m passionate about great design, and am a firm believer that it’s possible to build products that offer a great experience for both developers and busi...
https://blogs.sap.com/2017/10/19/building-websites-and-web-apps-using-sap-cloud-platform-and-contentstack/
CC-MAIN-2020-24
refinedweb
786
62.88
Interesting Things - If you are testing with jasmine, it’s a good idea to include your CSS files in the test runner. This prevents, for example, issues where you’ve hidden an element in the CSS and expect it to be visible in your JavaScript. If you are using Sass, then you should regenerate your CSS from the Sass befor...
http://pivotallabs.com/standup-2-11-2010-sass-with-jasmine/
CC-MAIN-2015-32
refinedweb
250
56.35
I want to increase the number of licenses we have but in order to justify it to the budget committee I need to prove that people are getting locked out often and that we are at max capacity often. Is there a way to track this? I want to increase the number of licenses we have but in order to justify it to the budget co...
https://community.esri.com/thread/171818
CC-MAIN-2019-18
refinedweb
1,592
72.46
Blazor has some pretty handy built-in support for validating your forms. You can use the DataAnnotations validator and decorate your model classes with attributes like [Required] or go a step further and wire up more involved validation rules using tools like FluentValidation. For the most part this “just works”… But… ...
https://jonhilton.net/blazor-client-server-validation-with-fluentvalidation/
CC-MAIN-2022-05
refinedweb
1,835
51.99
Bill is a middleware developer for Capital One and has had papers published in the Journal of Object Oriented Programming and Embedded Systems Programming. He can be contacted at billtrudell@yahoo.com. While I prefer (and enjoy) using debuggers to test and step through code, not all code can easily be debugged by setti...
http://www.drdobbs.com/cpp/redirection-through-c-function-pointers/184404884
CC-MAIN-2014-15
refinedweb
3,324
52.8
Hello to all, I've lost touch with C programming for almost 3 years, so I forgot some subtle details. I was solving one problem by writing C program and was surprised to learn that this code: ... Hello to all, I've lost touch with C programming for almost 3 years, so I forgot some subtle details. I was solving one prob...
https://cboard.cprogramming.com/search.php?s=e9ed1947006ce946b6c26962da8206cd&searchid=2966935
CC-MAIN-2020-10
refinedweb
692
75.61
ripley wrote: > Boris Borcic wrote: > >>ripleyfu at gmail.com wrote: >> >>>>>>class A: >>> >>>... pass >>>... >>> >>>>>>a = A() >>>>>>b = a >>>>>>del b >>>>>>a >>> >>><__main__.A instance at 0x00B91BC0> >>>I want to delete 'a' through 'b', why It does't? >>>How can I do that? >> >>del a,b > > > But 'b' is also deleted,...
https://mail.python.org/pipermail/python-list/2006-June/414280.html
CC-MAIN-2019-30
refinedweb
212
72.66
15 May 2008 10:49 [Source: ICIS news] SHANGHAI (ICIS news)--Oil and gas major PetroChina has restarted a crude distillation unit (CDU) at its Nanchong refinery after the facility was shut down as a precaution in the wake of Monday’s devastating earthquake, a company source said on Thursday. Other units at the complex, ...
http://www.icis.com/Articles/2008/05/15/9123992/petrochina-restarts-cdu-at-sichuan-based-refinery.html
CC-MAIN-2013-20
refinedweb
124
55.98
perfect for starting me off, no good tutorials for sockets. Thanks! Have you tried it? it does work, just not finished! :) "(not myself, I have my own project)" I had better things to do aswell reason for giving up. There is a lot of source code to work with so shouldn't be too hard to finish it. Yeh sorry missed a lit...
http://hawkee.com/profile/59368/
CC-MAIN-2018-05
refinedweb
1,164
67.38
HdmiConnector Since: BlackBerry 10.2.0 #include <bb/device/HdmiConnector> To link against this class, add the following line to your .pro file: LIBS += -lbbdevice The set of possible HDMI connectors. Overview Public Types Index Public Types The set of possible HDMI connectors. BlackBerry 10.2.0 - Unknown = 0 The type o...
http://developer.blackberry.com/native/reference/cascades/bb__device__hdmiconnector.html
CC-MAIN-2014-35
refinedweb
104
55.3
Hello World compiled using java6 Hi, I am having a tough time running a simple hello world program. I get a class not found exception even though I pass the correct class path using -cp: option. So I guess the first question is can I run regular java byte code on squawk. If I can how? Thank you babar Hi babar, try to u...
https://www.java.net/node/687023
CC-MAIN-2015-18
refinedweb
1,077
61.63
." Dylan Schiemann, the CEO of SitePen and one of the initial developers of Dojo, noted that the new proposed features weren't going to speed up code as much as some had hoped. "The results of more research showed that the performance improvements weren't that great," he said, before pointing to the performance improve...
http://www.infoworld.com/article/2653711/application-development/javascript-performance-turns-the-tide.html
CC-MAIN-2014-52
refinedweb
283
54.12
hi guys can anyone help me out please im sorta really stuck. im trying to draw a sphere onto processing but anytime i use P3D, the display image is just grey and blank. does anyone know why? Hello, Reference for sphere(): sphere() \ Language (API) \ Processing 3+ Check out the related reference as well for an example w...
https://discourse.processing.org/t/please-help-issue-with-3d/30290
CC-MAIN-2022-27
refinedweb
446
78.69
For this first post in the Developing a Simple Game of Air Hockey Using C++ and OpenGL ES 2 for Android, iOS, and the Web series, we’ll create a simple Android program that initializes OpenGL, then renders simple frames from native code. Prerequisites - The Android SDK & NDK installed, along with a suitable IDE. - An e...
http://www.learnopengles.com/calling-opengl-from-android-using-the-ndk/
CC-MAIN-2018-05
refinedweb
3,198
56.66
![if gte IE 9]><![endif]> Backed-up my sitefinity database from production, with the aim of replacing my development database. I followed the KB Article on how to migrate the database which worked perfectly fine. However, when I start/debug Sitefinity from Visual Studio, now it's starting to create new databases and ap...
https://community.progress.com/community_groups/sitefinity/upgrading-sitefinity/f/300/p/58721/200645
CC-MAIN-2019-39
refinedweb
206
71.65
CodePlexProject Hosting for Open Source Software Just got a quick question: Since ISingletonDependency is one instance per shell/tenant, once I got it created, I should be able to get hold of it whereever I want by injection, so if I have some large objects kept there, then what's the points to use caching? (Caching is...
http://orchard.codeplex.com/discussions/366331
CC-MAIN-2017-30
refinedweb
552
71.85
. Set the following values for latex_documents in docs/conf.py: # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, document class [howto/manual]). latex_documents = [ ('latexindex', 'pyramid_<project name>.tex', 'Pyramid\_<project name>', 'Author', 'manual'),...
https://docs.pylonsproject.org/en/latest/community/codestyle.html
CC-MAIN-2014-23
refinedweb
611
54.83
Hi Olaf, thanks so far for your reply. Now I changed ftest.m according to your suggestions and it turns out, that even more strange come up... cat wb_ftest.m printf("start\n"); ftest(); printf("stop\n"); cat ftest.m function ftest() [pid msg]=fork(); if (pid > 0) disp("par start") pause(3); disp("par term") waitpid(pid...
https://lists.gnu.org/archive/html/octave-maintainers/2019-10/msg00003.html
CC-MAIN-2021-25
refinedweb
740
72.16
Leave:;>> wrote: > > > Hi all, > > > > Roman Shaposhnik suggested I open a discussion on the following topic: > > > > For Apache DataFu, all of the Java classes are declared in a datafu.* > > namespace. This has been the naming convention since the DataFu project > > started in 2010. Since DataFu became part of the Apa...
http://mail-archives.apache.org/mod_mbox/datafu-dev/201508.mbox/%3CCANSvDjowr2_hU=4Z7Sgk-oDmSpE0iQL2QswcK-UYiX1=6wDhJw@mail.gmail.com%3E
CC-MAIN-2019-26
refinedweb
202
60.35
A table with row selection capabilities. More... #include <Fl_Table_Row.H> A table with row selection capabilities. This class implements a simple table with the ability to select rows. This widget is similar to an Fl_Browser with columns. Most methods of importance will be found in the Fl_Table widget, such as Fl_Tabl...
http://www.fltk.org/doc-1.3/classFl__Table__Row.html
CC-MAIN-2017-47
refinedweb
190
52.56
Microsoft's official enterprise support blog for AD DS and more Hi folks, Jonathan again. Ned is taking some time off visiting his old stomping grounds – the land of Mother-in-Laws and heart-breaking baseball. Or, as Sandburg put it: “Hog Butcher for the World, Tool Maker, Stacker of Wheat, Player with Railroads and th...
http://blogs.technet.com/b/askds/archive/2012/01.aspx
CC-MAIN-2014-15
refinedweb
3,146
62.27
The following code shows how to get to the stack frames of a thread. A Throwable object captures the stack of the thread at the point it is created. public class Main { public static void main(String[] args) { m1();//from w w w . j av a2 s. c o m } public static void m1() { m2(); } public static void m2() { m3(); } pub...
http://www.java2s.com/Tutorials/Java/Java_Object_Oriented_Design/0430__Java_Exception_Usage.htm
CC-MAIN-2017-22
refinedweb
535
51.04
NAME | SYNOPSIS | DESCRIPTION | RETURN VALUE | ENVIRONMENT | CONFORMING TO | NOTES | BUGS | EXAMPLE | SEE ALSO | COLOPHON STRFTIME(3) Linux Programmer's Manual STRFTIME(3) str specifications are introduced by a '%' character, and terminated by a conversion specifier ambiguous, that is, with a 2-digit year (00-99). (TZ)...
http://www.kernel.org/doc/man-pages/online/pages/man3/strftime.3.html
crawl-002
refinedweb
410
63.9
Views: 30786 have hit on my current study area for this technology. I am still only just looking since my time is limited. The timeout for the PulseIn command just limits the time taken by the function waiting for the pulse to cycle. If the function times out it returns 0. I am hopefully looking at the attachInterrupt(...
http://diydrones.com/profiles/blog/show?id=705844:BlogPost:38418
CC-MAIN-2017-17
refinedweb
1,025
71.24
If you've got a Cocoa application, using Sparkle could hardly be easier. If you've want to use Sparkle in your Java application, though, you've a little more work to do. I'll ignore the setting up of "appcast" feeds and the like, because that's exactly the same as with a Cocoa application. This post is just meant to ru...
http://elliotth.blogspot.com/2007/09/using-sparkle-to-keep-java-applications.html
CC-MAIN-2017-13
refinedweb
1,803
62.68
I'm working on a project which allows the user to set a path to upload files to by adding the necessary argument but for whatever reason, the upload_destination variable is always empty! Here's my code def main(): global listen global port global execute global command global upload_destination global target if not len...
https://codedump.io/share/qvT5uX85l1bI/1/python-get-passed-arguments
CC-MAIN-2018-05
refinedweb
246
58.52
IRC log of tagmem on 2002-10-21 Timestamps are in UTC. 18:29:04 [RRSAgent] RRSAgent has joined #tagmem 18:55:46 [DanCon] Zakim, Chris sends regrets 18:55:47 [Zakim] I don't understand 'Chris sends regrets', DanCon 18:59:35 [Norm] Norm has joined #tagmem 18:59:57 [Norm] zakim, this istag 18:59:58 [Stuart] Stuart has joi...
http://www.w3.org/2002/10/21-tagmem-irc.html
CC-MAIN-2016-36
refinedweb
8,179
82.14
. To create a run-time text template In Solution Explorer, on the shortcut menu of your project, choose Add, New Item. In the Add New Item dialog box, select Runtime Text Template. (In Visual Basic look under Common Items\General.) Type a name for your template file. Choose Add. A new file is created that has extension...
http://msdn.microsoft.com/en-us/library/ee844259.aspx
CC-MAIN-2014-10
refinedweb
236
57.77
Allows to create QR codes for use with the ReportLab PDF library. Project description reportlab-qrcode reportlab-qrcode implements a QR code flowable for the ReportLab PDF library using the qrcode package. Installation reportlab-qrcode can be installed via pip: pip install reportlab-qrcode Usage Simply use the QRCodeIm...
https://pypi.org/project/reportlab-qrcode/
CC-MAIN-2021-17
refinedweb
233
51.65
In Django forms, how do I make fields read-only (or disabled)? When creating a new entry using a form, all fields should be enabled - however, some fields must be read-only when the record is in update mode. For example, when creating a new Item model, all fields must be editable, but when updating records, is there a ...
https://programmer.group/5e3d230cc6288.html
CC-MAIN-2020-40
refinedweb
1,040
51.34
array troubles My assignment for this week is create a program, which uses arrays, that accepts a series of numbers and then prints each number followed by a string of * characters equal to the number. Here is a sample of the program: > Enter the length of the series: 5 > Enter number 1: 4 > Enter number 2: 2 > Enter n...
http://www.java-index.com/java-technologies-archive/519/new-to-java-5197527.shtm
crawl-001
refinedweb
174
62.48
I've been looking at the forums and tried multiple examples Importing a CyComponentLibrary, to be able to add code which doesn't get removed each time by the default library when I build. And no, the available areas to add code are not on the places I need. So I need to overide the standard library component. I found a...
https://community.cypress.com/t5/PSoC-5-3-1-MCU/PSOC-Creator-4-0-Importing-Components-from-CyComponentLibrary/td-p/111276
CC-MAIN-2021-04
refinedweb
304
68.16
Geertjan's Blog Random NetBeans Stuff 2014-09-16T04:45:24+00:00 Apache Roller YouTube: Karma Istanbul Code Coverage in NetBeans IDE Geertjan 2014-09-15T19:31:39+00:00 2014-09-15T19:39:39+00:00 <p><a href="">I mentioned it before</a>, but now that Karma Istanbul Code Coverage is part of NetBeans IDE, I thought I'd make ...
http://blogs.oracle.com/geertjan/feed/entries/atom?cat=%2FNetBeans+IDE
CC-MAIN-2014-41
refinedweb
7,464
53.1
REST (Web Services and Clients) Background Information REST is a simple stateless architecture that generally runs over HTTP. The REST acronym represents Representational State Transfer. Available Tools Enables you to create web services in Caché. Caché REST support includes the following items: URL maps that specify t...
https://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=ITECHREF_REST
CC-MAIN-2021-10
refinedweb
114
51.55
Is it possible to tint iconicons using scene.image? When using scene.image to draw iconicons they appear black. Using scene.tint makes no difference. I would like them to appear blue. Any ideas? A workaround is to use ui Buttons. But it seems overkill to use buttons just to draw a passive icon. from scene import * clas...
https://forum.omz-software.com/topic/1192/is-it-possible-to-tint-iconicons-using-scene-image
CC-MAIN-2018-13
refinedweb
473
69.07
Password validation with certain conditions Hi Friends, I needed to validate password for certain conditions. As per the requirements, any valid must password must pass the following conditions: - Minimum of 7 characters - Must have numbers and letters - Must have at least a one special characters- “!,@,#,$,%,&,*,(,),+...
http://www.tothenew.com/blog/password-validation-with-certain-conditions/
CC-MAIN-2019-39
refinedweb
123
60.11
forgive me if I'm being stupid, but I've been using C for about a week so bear with me.... I need to use a few pretty large arrays (highest would be about 256*256*256) of floats or doubles - most smaller than that though. But I keep getting errors when I define them. If I just start a new program and put: #include <std...
http://cboard.cprogramming.com/c-programming/29668-problems-array-sizes.html
CC-MAIN-2014-52
refinedweb
202
73.88
Search Search Close suggestions Upload Change Language Join Saved Bestsellers Books Audiobooks Snapshots Magazines Documents Sheet Music Upload Read Free For 30 Days 0 Up votes, mark as useful 0 Down votes, mark as not useful Manual Uploaded by Moranda Kilbane pharoah Download as PDF, TXT or read online from Scribd Fla...
https://tr.scribd.com/document/237890638/Manual
CC-MAIN-2019-30
refinedweb
51,744
71.14
Cry about... .NET / C# Troubleshooting The type or namespace name 'some-name' does not exist in the namespace 'some-namespace' (C#) Symptom: When compiling a C# application the compiler generates the following error: The type or namespace name 'some-name' does not exist in the namespace 'some-namespace' (are you missin...
http://www.cryer.co.uk/brian/mswinswdev/ms_csharp_type_or_namespace_does_not_exist_in_the_namespace.htm
CC-MAIN-2016-50
refinedweb
421
65.73
In this article, you will learn how to use a tuple data structure in Python. Also, learn how to create, access, and modify a tuple in Python and all other operations we can perform on a tuple. What is a Tuple Tuples are ordered collections of heterogeneous data that are unchangeable. Heterogeneous means tuple can store...
https://pynative.com/python-tuples/
CC-MAIN-2021-39
refinedweb
3,659
55.88
<? Xml version = "1.0" encoding = "utf-8"?> <S: Application xmlns: fx = "" xmlns: s = "library: / / ns.adobe.com / flex / spark" xmlns: <fx:Script> <! [CDATA [ q private function init (): void ( button3.addEventListener (MouseEvent.CLICK, handleClick); w ) private function handleClick (event: MouseEvent): void ( e if (...
http://www.quweiji.com/mouse-click-functions-mouseevent/
CC-MAIN-2018-43
refinedweb
1,245
60.55
In the previous chapters you saw many different constructs of the Scala programming different computing tasks. There's the visual aspect, where a spreadsheet is seen as a rich GUI application. There's the symbolic aspect, having to do with formulas and how to parse and interpret them. There's the calculational aspect, ...
http://www.artima.com/pins1ed/the-scells-spreadsheet.html
CC-MAIN-2015-48
refinedweb
5,646
55.13
In Part 1 of this series, we used App Studio to build the shell of a project that will (eventually) display data from a REST API call, specifically the Rotten Tomatoes API. In App Studio, we were able to create a dynamic collection, select the type of layout for its two pages (list and details), and then set the bindin...
http://blogs.msdn.com/b/quick_thoughts/archive/2014/07/13/rest-apis-in-app-studio-part-2-changing-the-source-code.aspx
CC-MAIN-2014-42
refinedweb
1,331
64
Newark’s Booker Lures Wall Street Millions to City Few Have Seen room is packed; you had every major hedge-fund, private-equity person,” recalls Joseph Shenker, chairman of law firm Sullivan & Cromwell LLP. Booker holds guests spellbound using the Hebrew phrase “tikkun olam,” or fixing the world, to describe Ackman’s g...
http://www.bloomberg.com/news/print/2012-10-03/newark-s-booker-lures-wall-street-millions-to-city-few-have-seen.html
CC-MAIN-2016-40
refinedweb
1,405
63.7
Translations This guide is limited to providing translations to the napari core codebase. We will soon provide more information on how to make your napari plugins localizable. How to make strings translatable?¶ To make your code translatable (localizable), please use the trans helper provided by the napari utilities. f...
https://napari.org/developers/translations.html
CC-MAIN-2022-40
refinedweb
1,110
50.12
Table of Contents - What is Covid-19 Data API? - How does the COVID-19 Data API work? - Who can use the COVID-19 Data API? - How to Connect to COVID-19 Data API Tutorial – Step by Step - Explanation of the COVID-19 Data API Endpoints - How to use COVID-19 Data API with Python - How to use COVID-19 Data API with PHP - H...
https://rapidapi.com/blog/covid-19-data-api-with-python-php-ruby-javascript-examples/
CC-MAIN-2021-31
refinedweb
2,228
54.63
Groovy Collection method: groupBy() public Map groupBy(Closure closure) Going through Groovy Collection, I found this powerful method which takes a Closure as parameter & based on the closure, it returns a map in which all unique values returned by closure act as keys. Lets take an example: If you want to group integer...
https://www.tothenew.com/blog/groovy-collection-method-groupby/?replytocom=33899
CC-MAIN-2021-21
refinedweb
423
67.65
AppSettings in ASP.NET Core AppSettings in ASP.NET Core This is the first part in a series about the configuration system available in Core. Join the DZone community and get the full member experience.Join For Free Most parts of elmah.io consist of small services. While they may not be microservices, they are in fact s...
https://dzone.com/articles/appsettings-in-aspnet-core?fromrel=true
CC-MAIN-2020-34
refinedweb
662
51.34
Moya Template Language Moya's template language is a spiritual successor to Django, and Jinja templates. It borrows a number of constructs from both, and adds a few of its own. There is a slight difference in the syntax in that variables are substituted with ${variable} rather than {{ variable }}, but tags still use th...
https://www.willmcgugan.com/blog/tech/post/moya-template-language/
CC-MAIN-2021-49
refinedweb
670
61.97
User talk:Danielsmw/User Guide F11 tasks From FedoraProject Is this page still valid or can it be archived? --Sparks 01:19, 15 June 2010 (UTC) I would like to review this page as I merge my F13 task list into a more general SOP for the UG. Laubersm 11:52, 15 June 2010 (UTC) Also, User namespace is not searched by defau...
http://fedoraproject.org/wiki/User_talk:Danielsmw/User_Guide_F11_tasks
crawl-003
refinedweb
131
71.48
Supporting Information - Intro to Project Development with the Atmel SAM4S Xplained Pro - Turn Your PWM into a DAC - Low-Pass Filter a PWM Signal into an Analog Voltage Required Hardware/Software Before a PWM DAC, We Need PWM This article is intended to build upon a recent two-article series that explored the technique...
https://www.allaboutcircuits.com/projects/pulse-width-modulation-with-the-sam4s-xplained-pro/
CC-MAIN-2019-22
refinedweb
1,765
55.17
A Brief Introduction to Template Haskell In this article, we will explore some of the intricacies of Template Haskell and build a practical example that will introduce you to the metaprogramming capabilities of Haskell. We will first use Template Haskell to generate some functions instead of writing them manually for t...
https://serokell.io/blog/introduction-to-template-haskell
CC-MAIN-2021-43
refinedweb
2,830
62.07
Safe Win32 Timer Posted by Prihodko Michael on July 29th, 2001 Hello guys. This article presents some Win32 timer-related stuff. It consists of two classes: - CTimerHost -- that class is the source of "safe" timers. That means you can kill timer and be sure that you will not receive any timer notification from already ...
http://www.codeguru.com/cpp/misc/misc/timers/article.php/c3785/Safe-Win32-Timer.htm
CC-MAIN-2015-18
refinedweb
142
60.51
In article <mailman.999911770.2065.python-list at python.org>, Tim Peters <tim.one at home.com> writes >[Robin Becker] >> Steve Alexander kindly forwarded me a note relating to a change in .... see below > >News to me, and I see nothing about that in the CVS log. The only 2.0.1 >patch to getargs.c plugged a memory leak...
https://mail.python.org/pipermail/python-list/2001-September/065283.html
CC-MAIN-2014-10
refinedweb
685
68.47
I had been with this pending task about a year, and a month ago i decided to implement message pack on library pushed by an issue on github´s library. These was my original plans, but i´ve been procrastinating it to this weekend. As it can read on title, my implementation was SignalR message pack protocol. First i need...
https://practicaldev-herokuapp-com.global.ssl.fastly.net/mandrewcito/signalr-core-python-client-viii-messagepack-3e89
CC-MAIN-2021-25
refinedweb
248
50.12
David De Roure Electronics and Computer Science University of Southampton, UK dder@ecs.soton.ac.uk Mike Surridge IT Innovation University of Southampton, UK ms@it-innovation.soton.ac.uk The vision of the Grid Resources. The Grid Resources for Industrial Applications (GRIA) project has the clear but challenging aim of m...
https://eprints.soton.ac.uk/260267/1/index.html
CC-MAIN-2017-17
refinedweb
1,883
51.07
If you work with the .NET Framework long enough, you may eventually find yourself tasked with converting one .NET language to another. There are hundreds of questions on Stack Overflow for converting C# to VB.NET, VB.NET to C#, and even C# to F# - and maybe thousands more that aren't tagged. But first, ask yourself... ...
https://grantwinney.com/how-do-i-convert-my-code-from-c-to-vb-net-or-vice-versa/
CC-MAIN-2019-18
refinedweb
1,132
65.93
# Using Flex (Fast Lexical Analyzer Generator) Lexical analysis is the first stage of a compilation process. It's used for getting a token sequence from source code. It gets an input character sequence and finds out what the token is in the start position, whether it's a language keyword, an identifier, a constant (al...
https://habr.com/ru/post/521996/
null
null
1,336
61.97
Introduction to Database Visual Support A Data Source Introduction To make database development user friendly and graphically-driven, Microsoft Visual Studio provides its own set of tools. Some of these tools are available from the Toolbox. Some other tools are provided as classes you can use. As an example,, click Dat...
http://www.functionx.com/vcsharp/ado.net/dvs.htm
CC-MAIN-2016-36
refinedweb
580
54.32
A Modern Python 2/3 SDK for signing WePay requests. Project description The Signer class is designed for those who are signing data on behalf of a public-private keypair. In principle, the “client party” has public key (i.e., client_id) and a matching private key (i.e., client_secret) that can be verified by both the s...
https://pypi.org/project/wepay-signer/1.0.0/
CC-MAIN-2018-39
refinedweb
792
60.72
Writing Scala code like this gets to be so much like algebra that you can imagine walking in on Einstein writing at a chalkboard, and following his equations one at a time until he joins them all together at the end. For example, let’s walk through the process of writing a “word occurrence” algorithm using only pure fu...
https://alvinalexander.com/scala/thinking-with-types/example-count-word-occurrences/
CC-MAIN-2022-05
refinedweb
1,422
61.8
Why do i get truncated array inside my C function? In C: #include <Python.h> #include <arrayobject.h> PyObject *edge(PyObject *self, PyObject *args) { int *ptr; unsigned char *charPtr; PyArrayObject *arr; PyObject *back; int ctr = 0; int size = 500 * 500; if (!PyArg_ParseTuple(args, "O", &arr)) return NULL; charPtr = (...
https://codedump.io/share/xSZsRIKWlKz3/1/why-my-pyarrayobject-data-truncated
CC-MAIN-2017-34
refinedweb
253
64.61
Get the highlights in your inbox every week. A practical guide to learning awk | Opensource.com A practical guide to learning awk Get a better handle on the awk command by downloading our free eBook. Image from Unsplash.com, Creative Commons Zero Subscribe now Of all the Linux commands out there (and there are many), t...
https://opensource.com/article/20/9/awk-ebook
CC-MAIN-2020-45
refinedweb
1,342
69.52
yay 0.0.61 An extensible config file format yay ain't YAML ============== yay is a configuration file format built on top of YAML based on our experience with the ConfigParser extensions buildout uses. It adds overlays (one config file including and extending another) and variables. Consider a config file that looks so...
https://pypi.python.org/pypi/yay/0.0.61
CC-MAIN-2014-15
refinedweb
2,715
68.36
I ran across some Java source code today that I want to share. This code demonstrates how to use the Java WeakHashMap class, which can serve as a nice cache some times. I particularly like how this class responds to available memory and the Java garbage collection system. Let me share the source code first, and then I'...
https://alvinalexander.com/blog/post/java/how-use-java-weakhashmap-class-example/
CC-MAIN-2022-05
refinedweb
400
71.04
Problem Locating minor Bug Please note these java.net forums are being decommissioned and use the new and improved forums at. Problem Locating minor BugMarch 18, 2013 - 10:57 public class ForDemo1 { public static void main(String[] args) { int x = 0, y = 10; for(System.out.println("Call Me A Coder or Programmer" ); x <...
https://www.java.net/forum/topic/general-programming-help/problem-locating-minor-bug
CC-MAIN-2015-27
refinedweb
213
68.4
Hidden test case This challenge doesnot show the test cases. It say that the testcase is hidden. I want to know how to open it 12/26/2019 9:50:13 AMnguyễn long 10 AnswersNew Answer You can't. They want you to write the code according to their specifications; if their secret tests fail, you're supposed to figure out the...
https://www.sololearn.com/Discuss/2112298/hidden-test-case
CC-MAIN-2021-49
refinedweb
435
67.76
At the core of Java 2 Micro Edition (J2ME) are the configurations, the specifications that define the minimal feature set of a complete Java runtime environment. J2ME currently defines two configurations. In this article we look at the first of these, the Connected Limited Device Configuration, or CLDC for short. Like ...
http://www.ericgiguere.com/articles/understanding-the-cldc.html
crawl-002
refinedweb
1,046
56.05
THIRTY-FIVE PART DOCUMENTARY THE ADVENT AWAKENING Vance Ferrell ."-L.C. Collins, letter dated May 23, 1842, to Joshua V Himes and Josiah Litch, printed in Signs of the Times, June 1, 1842. Introduction 1 TABLE OF CONTENTS SECTION ONE- RECOGNIZING THE NEARNESS OF THE END 3 Events Indicating the End of Time 3 Signs of H...
https://ru.scribd.com/document/145440108/The-Advent-Awakening-By-Vance-Ferrell
CC-MAIN-2020-29
refinedweb
33,327
70.63
Fable The Courtship of Lady Grey FAQ AUthor: Phillip Meris (Ulala Rocks) Copyright 2004 Phillip Meris. All rights reserved. If you have any questions, comments, tips, corrections, etc. then my contacts are at the bottom of the FAQ. TOTALLY MAJOR UPDATE!! READ HERE NOW! HERE! OVER HERE! It has come to my attention that ...
http://www.gamefaqs.com/console/xbox/file/516688/33003
crawl-002
refinedweb
4,089
81.63
Python coding guide¶ General¶ Pure coding style¶ The code should follow the Python coding style expressed in PEP8 with the following exceptions: - Soft limit for line length is 80 characters. Hard limit is 100 characters. You should only exceed 80 characters if it doesn’t hurt readability. - Indentation is made of four...
http://doc.aldebaran.com/qibuild/hacking/contrib/python/coding_guide.html
CC-MAIN-2019-13
refinedweb
2,653
64.71
10,123 Brady's bi o -..- . Dining oasis rtt at neo /Page 10 Annie's Mailbox . . . . SC Comics . . . . . . . 6C Crossword . . . . . . SC Editorial . . . . . . 10A Entertainment . . . . 6B Horoscope . . . . . . SC Lottery Payouts . . . . 6B OM t ries Stocks . . . . . . . 8A Three sections HIGH FORECAST: 80 Mostly sunny ...
http://ufdc.ufl.edu/UF00028315/01123
CC-MAIN-2017-34
refinedweb
48,858
75.5
J.R. Johansson (jrjohansson at gmail.com) The latest version of this IPython notebook lecture is available at. The other notebooks in this lecture series are indexed at. # what is this line all about? Answer in lecture 4 %matplotlib inline import matplotlib.pyplot as plt from)) J_0(0.000000) = 1.000000 Y_0(1.000000) = ...
http://nbviewer.jupyter.org/github/jrjohansson/scientific-python-lectures/blob/master/Lecture-3-Scipy.ipynb
CC-MAIN-2018-51
refinedweb
1,283
64.91
A doubly linked list allows items to be added and removed from the start and the end of the list. Each node (except the root node) has only one node that it is connected to above it - its parent . A node can have any number of nodes connected below it - its children. A node has one parent and zero or more children. Eac...
http://cs-alb-pc3.massey.ac.nz/notes/59102/notes/l16.html
CC-MAIN-2017-30
refinedweb
546
71.34
1. General / Applicability 1.1 These Terms and Conditions apply to all offers of Oxxmirrors and all contracted with Oxxmirrors similarities. 1.2 Oxxmirrors in these terms and conditions and elsewhere on the site mean OXXHOLDING LTD, which is entitled to introduce it and its registered office in England and Wales, Compa...
https://www.oxxmirrors.eu/en/service/general-terms-conditions/
CC-MAIN-2022-40
refinedweb
2,130
53.81
Hey guys! I know some of you might comment saying this should be in the game programming section, but my question isn't specifically related to a game function, but the C++ function of classes in general. Here is my program so far, just to let you guys know, this program was purely made fast and simple to see if my fir...
http://cboard.cprogramming.com/cplusplus-programming/143346-need-help-class-my-monster-player.html
CC-MAIN-2014-15
refinedweb
380
78.59
Subject: Re: [boost] [inspect] More changes to Inspection Report From: Beman Dawes (bdawes_at_[hidden]) Date: 2010-01-21 08:01:36 On Thu, Jan 21, 2010 at 7:17 AM, Paul A. Bristow <pbristow_at_[hidden]> wrote: >> * Apple macros clashes now show the specific name causing the problem. > > It is clearly a nuisance for all ...
https://lists.boost.org/Archives/boost/2010/01/161037.php
CC-MAIN-2021-31
refinedweb
214
64.41
How to Interface an HC-SR04 Sonar sensor to the Omega2 - James Behrens The Omega2 cannot interface to the HC-SR04 Sonar sensor using the same technique that the Arduino uses. This is due to the Linux OS running on the Omega2 whereas the Arduino does not run an OS. The HC-SR04 works by sensing a high-to-low transition o...
http://community.onion.io/topic/2694/how-to-interface-an-hc-sr04-sonar-sensor-to-the-omega2/2
CC-MAIN-2018-26
refinedweb
1,171
74.59
Ticket #3822 (closed Bugs: fixed) boost/asio/buffer.hpp MSVC workaround is inaccurately targeted Description This was reported to Microsoft as a bug in VC10 Beta 2 (see ), but is actually a bug in Boost.Asio, caused by an inaccurately targeted workaround for a bug in VC8! The offending code is in boost/asio/buffer.hpp ...
https://svn.boost.org/trac/boost/ticket/3822
CC-MAIN-2015-11
refinedweb
507
63.29
Microsoft Interview Experience | Set 133 (On-Campus for Internship) Online coding Round 410 students appeared for the online coding round and cgpa cut off was 7. Three coding questions were asked to us and we were given 90 minutes to solve three questions. 1. We were given an array. Values of the array were memory size...
https://www.geeksforgeeks.org/microsoft-interview-experience-set-133-campus-internship/?ref=lbp
CC-MAIN-2022-05
refinedweb
777
71.14
Diameter of N-ary tree using Dynamic Programming Get FREE domain for 1st year and build your brand new site In this problem, we are given input as the reference to the root of an N-ary tree. We need to calculate the diameter of the tree that is the longest path between any two nodes using Dynamic Programming. A tree is...
https://iq.opengenus.org/diameter-of-n-ary-tree-dp/
CC-MAIN-2021-43
refinedweb
977
61.77
An Introduction to ZooKeeper An Introduction to ZooKeeper Let's discuss distributed systems and how ZooKeeper fits into the picture, going over the basics. Join the DZone community and get the full member experience.Join For Free In our last blog, we talked about the HDFS cluster. It's needed for deploying OpenTSDB in ...
https://dzone.com/articles/an-introduction-to-zookeeper-1
CC-MAIN-2019-51
refinedweb
647
56.45
Hi, I've got some saved searches scheduled to output CSV files using the outputcsv command which works well. From there I run a script to upload the CSV file to an SFTP server. I'd like to do something similar with the PDF output from a Dashboard. I have Scheduled PDF Delivery via email but I'm wondering if there is a ...
https://community.splunk.com/t5/Reporting/Scheduled-PDF-Delivery-to-file-or-folder-not-via-email/m-p/117682
CC-MAIN-2022-21
refinedweb
254
64.91
horde 0.1.0 Torrent distribution. ## About Horde is a torrent-based file distribution system, forked from [Herd]() and based on [Murder](). It allows for quick and easy transfer of small and large files. You can probably use it for other things too. Horde requires no extra modules on Python and includes everything need...
https://pypi.python.org/pypi/horde/0.1.0
CC-MAIN-2017-26
refinedweb
342
57.87
Specify the alignment of an object #include <stdalign.h> #define __alignas_is_defined 1 #ifndef __cplusplus #define alignas _Alignas; #endif /* __cplusplus */ The alignas macro expands to the C11 _Alignas keyword, which specifies the alignment requirements of the object being declared. The _Alignas keyword has the foll...
http://www.qnx.com/developers/docs/7.0.0/com.qnx.doc.neutrino.lib_ref/topic/a/alignas.html
CC-MAIN-2018-43
refinedweb
170
59.13
In WinForms, everything that derived from System.Windows.Forms.Control had the MouseDoubleClick event - and not suprisingly, in WPF, everything derived from System.Windows.Controls.Control also has a MouseDoubleClick event. But there is a key difference - in WinForms, almost everything that gets displayed on the screen...
http://tech.pro/tutorial/838/wpf-tutorial-getting-the-doubleclick-event
CC-MAIN-2014-42
refinedweb
811
59.64
You can subscribe to this list here. Showing 4 results of 4 On Fri, Jun 10, 2011 at 10:50:21PM -0500, Benjamin Root wrote: Hi Ben and Scott and all, > Admittedly, these following examples are for dates (and might even need to > be updated...) > [2] > [3] > > There are others as well. I see, thanks (all your examples he...
http://sourceforge.net/p/matplotlib/mailman/matplotlib-users/?viewmonth=201106&viewday=11
CC-MAIN-2015-35
refinedweb
667
75.61
Ticket #567 (closed defect: fixed) Logging causes error in python2.4 Description The logging module in python2.4 doesn't accept the 'extra' kwarg. It is used here: This causes all migrations to fail with an exception. The 'extra' kwarg might be used other places too, not sure. This is where it is making trouble for me....
http://south.aeracode.org/ticket/567
CC-MAIN-2015-35
refinedweb
666
67.76