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 |
|---|---|---|---|---|---|
Hey so I'm taking a intro to java class and I'm told to (Computing the volume of a cylinder) Write a program that reads in the radius and length of a cylinder and computes volume using the following formulas:
area = r*r*pi
volume= area*length
In the end the program is suppose to say "The area is...The volume is..."
Thi... | http://www.javaprogrammingforums.com/whats-wrong-my-code/23273-intro-java.html | CC-MAIN-2014-10 | refinedweb | 184 | 67.55 |
Very Good. The code helped me alot.
Thanks to r
Very Good. The code helped me alot.
Thanks to roseIndia. Thanks a lot.
Very Good.
Very Helpful
This will be very helpful to getting me started on Java.
Valuable guides
It is very fine the beginners.It is very useful to solve the specific problem.
Java
Sir,
In this example... | http://roseindia.net/tutorialhelp/allcomments/203 | CC-MAIN-2014-15 | refinedweb | 452 | 85.99 |
Using shims to isolate your application from other assemblies for unit testing.
Use shims to isolate your code from assemblies that are not part of your solution. To isolate components of your solution from each other, we recommend that you use stubs.
For an overview and quick start guidance, see Isolating Code under T... | https://msdn.microsoft.com/library/hh549176(v=vs.110).aspx?cs-save-lang=1&cs-lang=csharp | CC-MAIN-2017-17 | refinedweb | 1,005 | 63.8 |
(For more resources related to this topic, see here.)
I have chosen to use XML files because they are so easy to parse. We are not going to write our own XML parser, rather we will use an open source library called TinyXML. TinyXML was written by Lee Thomason and is available under the zlib license from.
Once downloade... | https://www.packtpub.com/books/content/data-driven-design | CC-MAIN-2016-44 | refinedweb | 4,513 | 52.6 |
I need forward 200 email messages. I have a Gmail account and Thunderbird installed. I can't forward each message manually; I want forward them at once. How can I do that?
This question came from our site for professional and enthusiast programmers.
If the emails have any common feature that you can make a filter out o... | http://superuser.com/questions/519261/email-tool-for-bulk-email-forward?answertab=oldest | CC-MAIN-2015-06 | refinedweb | 700 | 61.33 |
Date: Fri, 14 Jun 1996 16:29:20 -0400 (EDT) From: "william c. rinehuls" <rinehuls@access.digex.net> To: sc22docs@dkuug.dk Subject: Document SC22 N2185 ISO/IEC JTC 1/SC22 Programming languages, their environments and system software interfaces Secretariat: U.S.A. (ANSI) ISO/IEC JTC 1/SC22 N2185 June 1996 TITLE: Minutes ... | http://www.open-std.org/JTC1/SC22/open/n2185.htm | CC-MAIN-2017-43 | refinedweb | 1,826 | 64.1 |
Today I had to write an assignment for my Evolutionary Algorithms course, which was to implement a genetic algorithm to solve the Traveling Salesman Problem. I wrote the Python code, it worked well but it took a while to find a good solution with 100 cities, and I realised it would be a few days before I could get a so... | https://www.stavros.io/posts/optimizing-python-with-cython/ | CC-MAIN-2017-04 | refinedweb | 505 | 75.5 |
C# Programming Examples on Files
Here is the listing of C# programming examples on Files.
1. C# Examples on Files and Directories
A file is a collection of data and information and a Directory is a location in the computer where files are stored. The programs in the given section creates a file, reads the contents of a... | https://www.sanfoundry.com/csharp-programming-examples-on-files/ | CC-MAIN-2018-13 | refinedweb | 337 | 57.2 |
Basic Components
This is a list of the basic components available in Anvil.
The properties and events for each component are listed in the API Reference.
You can also find out about a component’s properties and events by creating one in the Anvil Editor and examining it in the Properties Panel. Hover your mouse over th... | https://anvil.works/docs/client/components/basic.html | CC-MAIN-2020-29 | refinedweb | 1,902 | 65.22 |
Wu Zhangjin wrote:
From: Wu Zhangjin <wuzhangjin@gmail.com>
As the Chapter 15: "Errata: Issue of Out-of-order in loongson"[1] shows, to
workaround the Issue of Loongson-2F,We need to do:
"When switching from user model to kernel model, you should flush the branch
target history such as BTB and RAS."
Just wondered, mode... | http://www.linux-mips.org/archives/linux-mips/2010-03/msg00119.html | CC-MAIN-2014-49 | refinedweb | 165 | 58.72 |
HAppS tutorial 0.9
Disclaimer: This is a draft.
Hello World
import HAppS import HAppS.Server.StdConfig main = start serverConfig{http=impl} impl =[method GET $ ok "Hello World!"] -- GET / returns "HTTP/1.0 200 OK\nContent-Type: text/plain; charset=utf-8\n\nHello World!"
This simple app will respond with "Hello World!" ... | https://wiki.haskell.org/index.php?title=HAppS_tutorial_0.9&oldid=16223&printable=yes | CC-MAIN-2021-10 | refinedweb | 363 | 72.66 |
A lightweight IRC framework.
Project description
miniirc
A relatively simple thread-safe(-ish) IRC client framework.
To install miniirc, simply run
pip3 install miniirc as root.
If you have previously used miniirc, you may want to read the deprecations list (last updated 2020-04-28).
This repository is available on bot... | https://pypi.org/project/miniirc/ | CC-MAIN-2020-29 | refinedweb | 1,982 | 51.44 |
/* <@> */ #ifndef LIBSPAMC_H #define LIBSPAMC_H 1 #include <stdio.h> #include <stdarg.h> #include <sys/types.h> #ifdef _WIN32 #ifdef _MSC_VER /* ignore MSVC++ warnings that are annoying and hard to remove: 4115 named type definition in parentheses 4127 conditional expression is constant 4514 unreferenced inline functio... | http://opensource.apple.com/source/SpamAssassin/SpamAssassin-144.2/SpamAssassin/spamc/libspamc.h | CC-MAIN-2016-36 | refinedweb | 1,143 | 56.18 |
In this blog post, we will learn how to pull data from Istanbul Metropolitan Municipality open data platform using its API, and also we will use Google’s distance matrix API to calculate distances between districts and create new data for our analysis.
Then, we will implement linear regression without using any package... | https://www.analyticsvidhya.com/blog/2021/05/how-to-use-google-distance-matrix-api-to-gather-data-and-conduct-data-analysis-google-and-ibb-api/ | CC-MAIN-2021-25 | refinedweb | 1,061 | 64.81 |
ver. 0.5.1 fixing stuff broken by new dart release ("script" doesn't return path as string)
ver. 0.5.0:
Pigeon library provides implementation of memory- and performance-efficient map-backed data structures. These structures are efficiently serializable with no extra boilerplate. Serialization doesn't rely on reflectio... | https://pub.dartlang.org/packages/pigeon_map | CC-MAIN-2018-43 | refinedweb | 1,652 | 55.74 |
On Mon, 6 Jan 2020 at 17:15, Peter Maydell <address@hidden> wrote: > > On Fri, 20 Dec 2019 at 20:27, Beata Michalska > <address@hidden> wrote: > > > > On ARMv7 & ARMv8 some load/store instructions might trigger a data abort > > exception with no valid ISS info to be decoded. The lack of decode info > > makes it at leas... | https://lists.gnu.org/archive/html/qemu-arm/2020-01/msg00065.html | CC-MAIN-2020-24 | refinedweb | 1,275 | 55.95 |
Talk:Climbing
I raised this proposal on the Talk-GB list, to see if it was likely to get any traction or objections, and the copyright status of route information was raised. I'd initially believed that BMC vs Rockfax 2001 had gone to court, but it appears that £10000 of lagal advice convinced them not to try it. So st... | https://wiki.openstreetmap.org/wiki/Talk:Climbing | CC-MAIN-2021-43 | refinedweb | 5,963 | 65.46 |
Contents
High TCP socket (IP and port) or unix domain socket (UDS)!
Pay special attention to the slowlog settings (request_slowlog_timeout and slowlog directives), that is, through this log and a reasonable amount of timeout, you can easily see which php calls from your application take longer than expected and start d... | https://wiki.apache.org/httpd/PHP-FPM?highlight=ProxyPassMatch | CC-MAIN-2017-30 | refinedweb | 143 | 51.48 |
One of the most powerful features of PYLON is the access you're given to demographic details of users. We'll take a look at some of the options you have in this document, specifically working with Facebook topic data. Unlike some sources you may have worked with in the past the Facebook graph contains demographic detai... | http://dev.datasift.com/docs/products/pylon-fbtd/howto/examples/filtering-interactions/filtering-demographics | CC-MAIN-2016-40 | refinedweb | 486 | 56.25 |
Tutorial for using 9worker.gz raw VM image Walkthrough done with Qemu in Debian Wheezy commands shown are executed inside the vm except where shown as
[HOST] wget [HOST] gunzip 9worker.gz
When launching the qemu 9queen fileserver, you may wish to increase the default memory slightly from 128m to 256m. For convenience w... | http://doc.9gridchan.org/antfarm/tutorial | CC-MAIN-2017-22 | refinedweb | 1,182 | 71.85 |
import "github.com/katzenpost/core/sphinx"
Package sphinx implements the Katzenpost parameterized Sphinx Packet Format.
const ( // HeaderLength is the length of a Sphinx packet header in bytes. HeaderLength = adLength + crypto.GroupElementLength + routingInfoLength + crypto.MACLength // 460 bytes. // PayloadTagLength i... | https://godoc.org/github.com/katzenpost/core/sphinx | CC-MAIN-2020-16 | refinedweb | 251 | 52.76 |
How to deploy serverless GraphQL APIs with custom Lambda resolvers using AWS Amplify and AWS AppSync
The Amplify CLI recently added support for deploying Lambda GraphQL resolvers directly from your Amplify environment. Lambda function resolvers allow you to write your AppSync resolver logic in JavaScript.
Using the
@fu... | https://dabit3.hashnode.dev/deploying-lambda-function-graphql-resolvers-cjwrr7jsk0030tzs14ksuv62w | CC-MAIN-2019-39 | refinedweb | 1,590 | 50.23 |
recently we had a stolen laptop, and though we were able to figure out that it was online via the agent checking in, its IP was only the one of our Firewall since it was outside our LAN perimeter. Obviously, that was useless in tracking it down.
So, I wrote a small script, similar to the one for listing local admins, t... | http://www.itninja.com/blog/view/custom-inventory-rule-to-populate-public-ip | CC-MAIN-2017-30 | refinedweb | 537 | 63.09 |
Cf 361div2 C [二分]
题目连接
Description
Bad
The single line of input contains the integer m (1 ≤ m ≤ 1015) — the number of ways the thieves might steal the chocolates, as rumours say.
Output
Print the only integer n — the maximum amount of chocolates that thieves’ bags can carry. If there are more than one n satisfying the ... | http://blog.csdn.net/xgogoforit/article/details/52374407 | CC-MAIN-2017-47 | refinedweb | 229 | 56.59 |
Code. Collaborate. Organize.
No Limits. Try it Today.
This is generally true. However, in this case, I am looking at batch processing, a type of programming which is very common in commercial settings. In this programming model, many discrete data processing programs are run in succession, traditionally controlled by a... | http://www.codeproject.com/Articles/174484/Understanding-JVM-Performance-It-is-Fast-Very-Fast?msg=4110404 | CC-MAIN-2014-15 | refinedweb | 2,045 | 67.04 |
Originally posted by sarang bharambe: Thats fine guys... But you all are explaining the flow at runtime and my post asks for the flow during compilation. I guess the possible flow is: 1.The compilation of SuperClass starts 2.when It Comes to the line SubClass s1=new SubClass(); then the compiler try to find the Class f... | http://www.coderanch.com/t/250946/java-programmer-SCJP/certification/super-class-method-subclass-object | CC-MAIN-2014-49 | refinedweb | 165 | 68.77 |
Isn't that cool! A robot
Isn't that cool! A robot super Heroe.
It is an interesting video, because we can see what can be improved concerning voice commands second stage confirmation. It also helps me to see what movements other robots can do.
J ha has made a script for voice and jaw movement to he talks
i think i fou... | http://myrobotlab.org/content/inmoov-mrl-strikes-again | CC-MAIN-2019-39 | refinedweb | 769 | 82.14 |
This article is an excerpt from Developing Solutions with Microsoft InfoPath, from Microsoft Press (ISBN 0-7356-2116-0, copyright Microsoft Press 2004 all rights reserved). A portion of Chapter 7: Web Services is adapted here and describes how to use Web services to receive and submit data to and from your forms.
Patri... | http://msdn.microsoft.com/en-us/library/aa218672(office.11).aspx | crawl-002 | refinedweb | 7,468 | 54.42 |
In this article, we will learn how to use Liskov Substitution Principle for declaring correctly relationships between types, without using is-a relationship.
Let’s get started.
Table of contents
- Liskov Substitution Principle
- Detecting violations of the LSP
- Fixing incorrect relationships between types
- Wrapping u... | https://ducmanhphan.github.io/2020-01-13-Understanding-about-SOLID-part-3/ | CC-MAIN-2021-25 | refinedweb | 1,205 | 56.05 |
On 02/11/2013 05:56 PM, John Ferlan wrote: > On 02/11/2013 07:07 PM, Eric Blake wrote: >> We have several cases where we need to read endian-dependent >> data regardless of host endianness; rather than open-coding >> these call sites, it will be nicer to funnel things through >> a macro. >> >> The virendian.h file can ... | https://www.redhat.com/archives/libvir-list/2013-February/msg00684.html | CC-MAIN-2015-32 | refinedweb | 310 | 58.82 |
Investment is the activity, which is made with the objective of earning some sort of positive
returns in the future. It is the commitment of the funds to earn future returns and it involves
sacrificing the present investment for the future return. Every person makes the investment so
that the funds he has increases as ... | https://www.scribd.com/document/259294338/PORTFOLIO-MANAGEMENT-ANALYSIS | CC-MAIN-2018-39 | refinedweb | 14,831 | 57.67 |
Scene metadata
All scenes have a
scene.json file where you can set metadata for the scene. Some fields in this file are predefined with information that’s necessary for the Decentraland client.
You’re also free to add any fields that you wish. In the future, custom fields can then be checked by alternative clients, or ... | https://docs.decentraland.org/development-guide/scene-metadata/ | CC-MAIN-2021-17 | refinedweb | 1,583 | 60.95 |
After importing PySide multiprocessing pool hangs on numpy dot
I've got this very peculiar hanging happening on my machine when using pytnon multiprocessing Pool with numpy and PySide imported. This is the most entangled bug I have seen in my life so far:) The following code:
@import numpy as np
import PySide
def hang(... | https://forum.qt.io/topic/42050/after-importing-pyside-multiprocessing-pool-hangs-on-numpy-dot | CC-MAIN-2018-26 | refinedweb | 286 | 70.19 |
The mock client that comes with RestORM is an excellent method to simulate server side responses that you expect from a real REST API. You typically use it in your unit tests.
You can switch out your client with a mock client and simply work as usual, given that you mocked some typical responses. The mocking works tran... | http://restorm.readthedocs.io/en/latest/mocking.html | CC-MAIN-2017-30 | refinedweb | 1,014 | 51.55 |
During my day job I’ve been working on re-factoring some the internals of Juju to reverse the trend of a growing number of dependencies in our core packages.
In this post I’ll show how I used
go list to help me in this task.
The basics
Let’s start with the basics of
go list. The default invocation of
go list returns th... | https://dave.cheney.net/tag/go-list | CC-MAIN-2022-27 | refinedweb | 815 | 54.22 |
FleetConf::Log - A simple logger for FleetConf
use FleetConf::Log; $log = FleetConf::Log->get_logger(__PACKAGE__); $log->debug("Debug it"); $log->info("Give some info"); $log->notice("Notice this"); $log->warning("I'm warning you"); $log->error("Uh-oh, an error"); $log->alert("Alert: very bad stuff"); $log->emergency("... | http://search.cpan.org/~hanenkamp/FleetConf-0.01_016/lib/FleetConf/Log.pm | CC-MAIN-2017-13 | refinedweb | 310 | 53.51 |
Hello all replers! Today, I'm going to be announcing something new and fun for you all. We're introducing WEEKLY CHALLENGES!.
So, what are these weekly challenges? These are small beginner-friendly programming problems for the community to solve. We will be posting one of these every week. After 1 week of posting the c... | https://repl.it/talk/announcements/WEEKLY-CHALLENGES-1/36161 | CC-MAIN-2020-34 | refinedweb | 714 | 73.78 |
no the do while is correct you dont need to ask the first time through the loop.
i would still say just make some char and at the end do a
char = getch();
and for a condition just make sure it doesnt == n or N
This is a discussion on Alittle help for a beginner please... within the C++ Programming forums, part of the G... | http://cboard.cprogramming.com/cplusplus-programming/57090-alittle-help-beginner-please-2.html | CC-MAIN-2014-35 | refinedweb | 444 | 82.14 |
My notes on Python
Preface material
Who is this for? It’s for a beginning programmer, but I’m assuming this isn’t your first programming language — HTML doesn’t count, but if you coded a bit of JavaScript, then that counts.
The very fundamentals of coding won’t be tackled in here. I’m already assuming that your quite f... | http://tedhagos.com/posts/python-lang/ | CC-MAIN-2020-29 | refinedweb | 514 | 73.88 |
How and Where we Access struts Properties file - Struts
file download in struts - Struts
Struts properties file location - Struts
Where to learn Struts 2?
where the progrming is done in the struts.
struts
Multiple file upload - Struts
struts - Struts
where this file is stored
where to stroe this uploaded file
how to re... | http://www.roseindia.net/tutorialhelp/comment/37557 | CC-MAIN-2014-15 | refinedweb | 481 | 73.17 |
can URL use unicode ?
Python 3 can use Unicode as func name So I try to
import cherrypy from mako.template import Template class HelloWorld: @cherrypy.expose def index( self ): s = Template( filename="login.html" ).render() return s @cherrypy.expose def 登入( self, UserName=None, PassW=None ): if UserName == "" or PassW ... | https://bitbucket.org/cherrypy/cherrypy/issues/1248/can-url-use-unicode | CC-MAIN-2015-35 | refinedweb | 765 | 61.33 |
My Laravel Package Building Workflow
This article was peer reviewed by Claudio Ribeiro. Thanks to all of SitePoint’s peer reviewers for making SitePoint content the best it can be!
Packages are a really important part of the Laravel experience (just like with any other framework). Whatever we need to do, there’s probab... | https://www.sitepoint.com/laravel-package-building-workflow/ | CC-MAIN-2019-22 | refinedweb | 2,197 | 55.64 |
This document is also available in these non-normative formats: XML
Copyright © 2007 XML Processing Model Working Group which is part of the XML. The Working Group considers this specification complete and finished. The review period for this document ends on 24 October 2007. The scope of editorial changes since the la... | http://www.w3.org/TR/2007/WD-xproc-20070920/ | crawl-001 | refinedweb | 4,910 | 53.61 |
import "go.chromium.org/luci/server/tsmon"
Package tsmon adapts common/tsmon library to a server-side environment.
It provides a bunch of useful things:
* Hooks up tsmon library configuration to the server settings so it can be changed on the fly without restarts. * Provides a middleware that captures request metrics. ... | https://godoc.org/go.chromium.org/luci/server/tsmon | CC-MAIN-2019-35 | refinedweb | 701 | 50.73 |
Profiling - OpenMDAO-Specific Profiling¶
This tutorial describes how to use OpenMDAO’s simple instance-based profiling capability..
To use profiling, you first have to call profile.setup. This must happen after your system tree has been defined. This is necessary because the setup process traverses down the tree search... | http://openmdao.readthedocs.io/en/1.7.3/usr-guide/tutorials/profiling.html | CC-MAIN-2017-17 | refinedweb | 620 | 65.83 |
I have a problem. I need to create an object that will remain on the Tomcat server and will be accessable to all other users.
I have tried creating an object that is static within a servlet, that works for individual sessions, but when 2 users are concurrently using the application, they can not see each other's object... | http://www.theserverside.com/discussions/thread.tss?thread_id=24541 | CC-MAIN-2014-52 | refinedweb | 1,127 | 55.54 |
Join devRant
Search - "mystery code"
-
- ?13
-
- Just reverted some commits because I rewrote the thing and wasn't satisified with it.
In one of the files, I found this:
def ddefault():
return 1
I have absolutely no memory of adding this, it's apparently used nowhere (that I can find), it's apparently been in since the... | https://devrant.com/search?term=mystery+code | CC-MAIN-2018-47 | refinedweb | 286 | 72.36 |
CodePlexProject Hosting for Open Source Software
Voted
We are seeing an issue where Style Cop version 4.7.49.0 is not picking up violations with rule SA1518:
CodeMustNotContainBlankLinesAtEndOfFile
It will pick it up if the line contains white space...
Id #7680 | Release:
None
| Updated: Thu at 3:58 PM by paddybee | Cr... | http://stylecop.codeplex.com/workitem/list/basic | CC-MAIN-2014-42 | refinedweb | 514 | 55.24 |
Hello, Mirar! > > Yes you may, but it will be 2.50. The fact that broken configure.in > > no longer work is no surprise, and it could have happened in 2.15. > > Yes, that version should have been named 3.x too, imho. No. We pretend to be fully compatible with correctly written configure.in's. > It's interesting that yo... | http://lists.gnu.org/archive/html/autoconf/2000-12/msg00267.html | CC-MAIN-2013-48 | refinedweb | 198 | 78.75 |
US5956513A - System and method for automated software build control - Google PatentsSystem and method for automated software build control Download PDF
Info
- Publication number
- US5956513AUS5956513A US08908439 US90843997A US5956513A US 5956513 A US5956513 A US 5956513A US 08908439 US08908439 US 08908439 US 90843997 A... | https://patents.google.com/patent/US5956513 | CC-MAIN-2018-17 | refinedweb | 10,086 | 52.6 |
It goes without question that performance on the web is important. Our apps and sites should load fast in order to keep the user’s attention, keep them engaged and deliver a positive experience.
Development, however is usually done on above-average machines connected to a strong network. However, not all users access t... | https://hackernoon.com/lessons-learned-code-splitting-with-webpack-and-react-f012a989113?source=rss----3a8144eabfe3---4 | CC-MAIN-2019-43 | refinedweb | 2,227 | 69.52 |
- Can't get status of file upload to be returned
- IE8 Memory leak
- Is it possible to render two children using the fit layout?
- Implementing server side filters on grids without FiltersFeature.js
- Grid with Locking and Grouping Capability
- Adding buttons to a Panel
- How should ext.direct work with the new sencha ... | http://www.sencha.com/forum/archive/index.php/f-87-p-2.html | CC-MAIN-2014-42 | refinedweb | 1,714 | 54.02 |
This week, in Part 2 of our tutorial, we will continue our investigation of ASP.NET from a classic ASP developer's perspective. Last week, In Part 1, we showed how ASP.NET allows us to cleanly separate presentation markup from server side script code. Today, we will delve deeper and demonstrate how an ASP.NET page is p... | http://archive.oreilly.com/lpt/a/5269 | CC-MAIN-2016-44 | refinedweb | 3,441 | 63.19 |
, whereas
The attack & defend “game” is not an even one; an attacker only needs one successful attempt to get in, whereas the defender has to succeed 100% of the time.
A post-publish important remarks by there readers @codemouse92 and @corymcdonald about password complexity, rotation, and physical devices assisting:
Us... | https://practicaldev-herokuapp-com.global.ssl.fastly.net/omerxx/how-hackers-steal-your-keys-and-secrets-45g2 | CC-MAIN-2021-31 | refinedweb | 2,330 | 64.71 |
Jaap Suter, July 22, 2004: This document is out of date and not compatible with the most recent version of the MPL. However, it still makes for an interesting read, so I'll leave it around.
Contributions by: Jaap Suter, Dave Abrahams, Terje Slettebo, Aleksey Gurtovoy, Dirk Gerrits
Errors by: Jaap Suter (so if you find ... | http://www.crystalclearsoftware.com/cgi-bin/boost_wiki/wiki.pl?action=browse&diff=1&id=Effective_MPL | CC-MAIN-2017-51 | refinedweb | 2,296 | 55.68 |
Apache Nifi Processors in version 0.7.4
For other nifi versions, please reference our default processors post. Check the Apache nifi site for downloads or any nifi version or for current version docs
List of Processors
- AttributesToJSON
- Base64EncodeContent
- CompressContent
- ConsumeAMQP
- ConsumeJMS
- ConsumeKafka
... | https://www.nifi.rocks/apache-nifi-processors-version-0.7.4/ | CC-MAIN-2018-34 | refinedweb | 5,859 | 52.19 |
skia
/
external
/
github.com
/
KhronosGroup
/
EGL-Registry
/
a5b9dcd34b196bbeb0d61495b48a552015968bfc
/
.
/
extensions
/
NV
/
EGL_NV_sync.txt
blob: 0bf007754cc7b1921e41fc296a00be0f6065f54a [
file
] [
log
] [
blame
]
Name
NV_sync
Name Strings
EGL_NV_sync
Contributors
Gary King
Gregory Prisament
Acorn Pooley
Jon Leech
Co... | https://skia.googlesource.com/external/github.com/KhronosGroup/EGL-Registry/+/a5b9dcd34b196bbeb0d61495b48a552015968bfc/extensions/NV/EGL_NV_sync.txt | CC-MAIN-2022-21 | refinedweb | 2,565 | 51.89 |
# Copyright (c) 2007-2011 Thomas Lotze # See also LICENSE.txt """Public interfaces used in Ophelia. """ import zope.interface # APIs intended to be used from scripts and templates.[docs]class IRequestAPI(zope.interface.Interface): """HTTP request API for use in scripts and TALES expressions. """ # Basic parameters whic... | https://pythonhosted.org/ophelia/_modules/ophelia/interfaces.html | CC-MAIN-2022-27 | refinedweb | 1,292 | 50.73 |
Here's my Source Control Tip of the Week:
<<Create a blank solution before creating a project.>>
In Web
Projects and Source Control Integration in Visual Studio .NET, I state
that doing so will, "
...improve the long-term manageability and discoverability of your projects [and] maintain a close symmetry between local p... | http://blogs.msdn.com/b/korbyp/archive/2003/08/12/54100.aspx | CC-MAIN-2016-07 | refinedweb | 713 | 64 |
have stacking tabs the same way the attribute manager? (Not sure what's it really called)
Currently, with my code, it doesn't stack when I hold the Shift key. It just goes to the next tab.
Shift
You can see the illustration of the problem here:
You can check the working code (in a .pyp file) here:
import c4d
from c4d ... | https://plugincafe.maxon.net/topic/12140/stacking-tabs-menu/1 | CC-MAIN-2021-43 | refinedweb | 620 | 51.34 |
Introduction: Halloween LED Headband
Check out this cool, animated, LED headband, just in time for Halloween! You can make it light in any color, not just the orange we have here. But we thought it had a nice Halloween look to it. It'll give your costume some extra flair, and also make you very visible at night.
Diffic... | https://www.instructables.com/id/Halloween-LED-Headband/ | CC-MAIN-2020-24 | refinedweb | 2,338 | 83.15 |
FileHelpers Home Page
The FileHelpers are an easy to use library to import/export data from fixed length or delimited flat files (like the CSV). FileHelpers also has support to import/export data from different data storages (Excel, Acces, SqlServer).
The library has a set of converters for the basic types and can be e... | https://www.codeproject.com/Articles/12170/FileHelpers-v-Delimited-CSV-or-Fixed-Data-Import-E?msg=1436443 | CC-MAIN-2019-39 | refinedweb | 1,160 | 56.05 |
I'm looking to make a Makefile that can compile a C program on Unix (Ubuntu). That Makefile should include the SDL library (2.0), as well as SDL_image.
So here's my current Makefile :
CC = gcc
OBJECTS = $(patsubst %.c,%.o,$(wildcard *.c))
EXEC = main
LDFLAGS = `sdl2-config --libs` -L/usr/lib -lSDL2_image
CCFLAGS = `sdl... | https://codedump.io/share/fT4nhpO79Fx8/1/c--unix-sdl2-library--undefined-reference-issue-in-the-makefile | CC-MAIN-2017-13 | refinedweb | 380 | 63.9 |
subhashini
(Moderator):
The chat starts at 5.00 pm IST
subhashini (Moderator):
hello everbody . A very good evening to all of you.
subhashini (Moderator):
welcome to today's chat on ASP.NET caching Features
subhashini (Moderator):
We have Saravana P Kumar with us today
subhashini (Moderator):
Saravana currently works f... | http://www.microsoft.com/india/communities/chat/14.aspx | crawl-002 | refinedweb | 3,609 | 55.74 |
From: Eric Niebler (eric_at_[hidden])
Date: 2007-11-20 20:38:07
Joel de Guzman wrote:
> Eric Niebler wrote:
>> Joel de Guzman wrote:
>>> Giovanni Piero Deretta wrote:
>>>
>>>> In fact I think that fusion should provide function objects for
>>>> every one of its algorithm.
>>> That used to be the case at one point. I'll... | https://lists.boost.org/Archives/boost/2007/11/130708.php | CC-MAIN-2019-13 | refinedweb | 115 | 80.28 |
Render Partial — But With Arguments!
One thing that I haven’t really liked about MVC was using RenderPartial instead of an actual UserControl. Its not that you can’t use them but that there is a disconnect between the control state and the render phase which makes it pretty much impossible to really work with them inli... | https://somewebguy.wordpress.com/2009/10/26/render-partial-but-with-arguments/ | CC-MAIN-2017-34 | refinedweb | 1,181 | 62.38 |
Marc M. Adkins wrote:
>>>To replace FakeRequest, look at Apache::Test in the 2.0 distribution.
>>
>>If there are folks who look for a really fun project to do, a
>>complete rewrite
>>of Apache::FakeRequest is needed and in mp2 it should be possible
>>to turn it a
>>much more useful package. Hint: the functions in APR::... | http://mail-archives.apache.org/mod_mbox/perl-modperl/200305.mbox/%3C3EB76849.70101@stason.org%3E | CC-MAIN-2019-26 | refinedweb | 287 | 71.24 |
Front-end and JavaScript in particular are a strange world. The amount of new things being rolled out on a daily basis is often ridiculed by people that don’t work with them, and many that do. Still, at times, we get a bit overwhelmed with new information, libraries, and discussions, and we would like something stable,... | https://www.toptal.com/react/react-tutorial-pt1 | CC-MAIN-2021-31 | refinedweb | 3,239 | 61.16 |
Reading an executable jar's manifest - here's how
Brian Pipa
Ranch Hand
Joined: Sep 29, 2003
Posts: 299
posted
Sep 29, 2003 11:30:00
0
Here's what I was trying to do:
I wanted to read the current version of my
Java
app from the jar's manifest.
My app is run with a single, excutable jar. It needs to know it's version s... | http://www.coderanch.com/t/371866/java/java/Reading-executable-jar-manifest | CC-MAIN-2014-49 | refinedweb | 797 | 63.19 |
[open] Define fixation start parameters
Hi,
I'm really new to OpenSesame, and not particularly proficient in Python but I've been able to do pretty much everything I've needed to so far through the GUI. I'm getting stuck with setting a trial to start and end based on fixation at a specific location (I want the trial to... | http://forum.cogsci.nl/index.php?p=/discussion/1850/open-define-fixation-start-parameters | CC-MAIN-2019-30 | refinedweb | 662 | 69.21 |
17507/how-to-create-new-folder
I want to put output information of my program to a folder. if given folder does not exist, then the program should create a new folder with folder name as given in the program. Is this possible? If yes, please let me know how.
Suppose I have given folder path like "C:\Program Files\alex"... | https://www.edureka.co/community/17507/how-to-create-new-folder | CC-MAIN-2020-05 | refinedweb | 258 | 78.75 |
64824/instance-is-not-pingable-from-outside-in-openstack
Hi Guys,
I launched an instance in OpenStack. I added Ingress and Egress rule properly, but still I am not able to ping to my instance. Is there any issue with firewall or any other thing?
Thank You
Ho@akhtar,
There is nothing wrong. But when you launch an instan... | https://www.edureka.co/community/64824/instance-is-not-pingable-from-outside-in-openstack | CC-MAIN-2021-10 | refinedweb | 346 | 85.18 |
Test-driven data pipelining
When to test, and why:
• Write a test for every method.
• Write a test any time you find a bug! Then make sure the test passes after you fix the bug.
• Think of tests as showing how your code should be used, and write them accordingly. The next person who’s going to edit your code, or even j... | https://szeitlin.github.io/posts/engineering/test-driven-data-pipelining/ | CC-MAIN-2022-27 | refinedweb | 772 | 50.94 |
QuickStart: Clipboard basics (XAML)
The best apps give users as much control over their data as possible. One method of control that users expect is clipboard operations. These operations enable users to cut, copy, and paste data. Clipboard operations can occur within the same app or between two different apps on the s... | https://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh871366.aspx | CC-MAIN-2017-47 | refinedweb | 1,150 | 56.05 |
Abstraction a technique by which we can hide the data that is not required to a user. It hides all unwanted data so that users can work only with the required data.
Let’s take real-time examples to understand the concept of abstraction in java.
Realtime Examples of Abstraction in Java
1. Let’s first take ATM machine as... | https://www.scientecheasy.com/2020/05/java-abstraction.html/ | CC-MAIN-2020-24 | refinedweb | 2,051 | 58.18 |
Serial port programming
This is a step-by-step guide to using the serial port from a program running under Linux; it was written for the Raspberry Pi serial port with the Raspbian Wheezy distribution. However, the same code should work on other systems.
Contents
Step 1: Connect to a terminal emulator using a PC
This st... | https://elinux.org/index.php?title=Serial_port_programming&oldid=244046 | CC-MAIN-2019-39 | refinedweb | 603 | 51.07 |
Qt creator plugin crash
Hi ! I have try to build simplest qt creator plugin using standart Libraries->Qt creator plugin selection from project wizard. Of course, previosly I build debug version of qt creator from sources, using qmake with flags -r -spec macx-g++ CONFIG+=debug CONFIG+=x86_64 CONFIG+=declarative_debug CO... | https://forum.qt.io/topic/23616/qt-creator-plugin-crash | CC-MAIN-2018-13 | refinedweb | 935 | 59.9 |
Hello,
currently generated Dart classes have non-nullable properties, and can’t be used with null-safety mode.
Is there a possibility to change this?
Thanks,
Dart null safety
Hello,
It’s on the TODO list, please file feature requests on UserVoice so we can keep track of it and let you know when it’s implemented:
Thanks... | https://forums.servicestack.net/t/dart-null-safety/9683 | CC-MAIN-2021-31 | refinedweb | 541 | 62.88 |
Packages..
Syntax of the Package in Java:
package <Package Name>;
Types of package:
- User defined package: The package we create is called user-defined package.
- Built-in package: The already defined package like java.io.*, java.lang.* etc are known as built-in packages.
How to use package
There are 2 ways in order t... | https://tekslate.com/java-packages-in-java/ | CC-MAIN-2018-13 | refinedweb | 922 | 50.33 |
Ask a question about Individurls and their products
Recently active topics in Individurls
- 0 RepliesIdea shared on February 05, 2009 22:21
- 1 Reply
Options neededShow more... ...Show lessWould like to options to do these functions:Reply to this idea
1. Continuous scroll down a longer page (similar to alltop.com) The ... | http://getsatisfaction.com/individurls | crawl-002 | refinedweb | 414 | 73.78 |
From Python to Rust: Part 2.
In our “dna_toolkit” series we used Python Strings, Lists, and Dictionaries extensively. These data structures are very useful and make our life very easy. Let’s see what Rust has to offer.
We start with
Strings. Rust has two types. One, called ‘String slice’, and the other one is more like... | https://rebelscience.club/2020/06/04/from-python-to-rust-part-2-strings-functions-crates-modules/ | CC-MAIN-2021-39 | refinedweb | 1,585 | 71.75 |
29225/where-is-the-cryptogen-tool-in-fabric
I want to run the following command:
build/bin/cryptogen generate --config crypto-config.yaml --output=crypto-config
But I cant find the cryptogen tool. Please help
Go in the fabric directory and then run:
make cryptogen
After this code is executed, you will find cryptogen to... | https://www.edureka.co/community/29225/where-is-the-cryptogen-tool-in-fabric | CC-MAIN-2019-39 | refinedweb | 153 | 62.64 |
Serialize Anything: Part 2
One of the new features in Flash Player 11 is a native JSON encoder/decoder class. In the Serialize Anything article, I neglected to add JSON as an option for serializing and deserializing arbitrary objects. In today’s followup we’ll take a look at the performance of the native JSON class and... | https://jacksondunstan.com/articles/1696?replytocom=20696 | CC-MAIN-2019-51 | refinedweb | 1,158 | 58.69 |
Designing a class and test program
Norman Neaderhiser
Greenhorn
Joined: Mar 10, 2004
Posts: 6
posted
Apr 03, 2004 07:28:00
0
Hello guys and I hope that you are doing well.
I have written a program that creates a class and then I have created a
test
program. I would be gratefull if you could look at it and critique. An... | http://www.coderanch.com/t/396109/java/java/Designing-class-test-program | CC-MAIN-2015-18 | refinedweb | 753 | 54.83 |
Django app for using API Star as frontend.
Project description
This project is a Django App that switches between Django and API Star’s routes and views. That way, we have API Star as the API frontend, while leaving Django’s toolset available for devs to work with.
Both API Star’s docs and Django Admin work as intended... | https://pypi.org/project/django-apistar/0.3.2/ | CC-MAIN-2020-29 | refinedweb | 757 | 56.25 |
Anyways, usually I did that setting some flag so that the second time a function is called, it'd check that flag and would skip the function in the second time.
After tinkering a bit about it, I came with a shorter version changing the function code which I thought is pretty nice:
def func(): print 'Calling func only t... | http://pydev.blogspot.com/2012/12/python-tricks-making-sure-function-is.html?showComment=1354963787901 | CC-MAIN-2015-40 | refinedweb | 438 | 64.51 |
Hoello On Wed, May 25, 2005 at 05:55:11PM -0400, Nicolas Blais wrote: > I do this by changing my software's code to the following: > > #ifdef HAVE_SRANDOMDEV > srandomdev(); > #endif > #ifndef HAVE_SRANDOMDEV > srandom(time(0)); > #endif Or perhaps: #ifdef HAVE_SRANDOMDEV srandomdev(); #else srandom(time(0)); #endif I ... | http://lists.gnu.org/archive/html/autoconf/2005-05/msg00087.html | CC-MAIN-2016-18 | refinedweb | 155 | 64.75 |
.
Spocket
From $0.00 / month
Find Dropshipping products from thousands of reliable suppliers in US/Europe/Canada/Asia. Shopify sourcing products, fast-shipping
MODALYST
From $0.00 / month
Source & sell millions of dropship products from Wish.com and the Modalyst Marketplace of curated, independent suppliers.
Aliexpress... | https://apps.shopify.com/featured/product-sourcing | CC-MAIN-2018-13 | refinedweb | 1,356 | 60.11 |
Learn how to add web views into your apps to display web pages.
This is a companion discussion topic for the original entry at
Learn how to add web views into your apps to display web pages.
One interesting thing I noticed. When I drag and drop “BullsEye.html”, the html file was not read in “AboutViewController”. Howev... | https://forums.raywenderlich.com/t/your-first-swift-4-ios-11-app-part-42-ray-wenderlich/34652 | CC-MAIN-2022-33 | refinedweb | 532 | 59.4 |
This topic describes how to create and configure a Windows SharePoint Services send port by using the BizTalk Server Administration Console.
In the BizTalk Server Administration Console, create a new send port or double-click an existing send port to modify it. For more information,see How to Create a Send Port. Config... | http://msdn.microsoft.com/en-us/library/aa560874.aspx | crawl-002 | refinedweb | 719 | 56.86 |
[EXPL] Apache 2.x APR Exploit Code
From: SecuriTeam (support_at_securiteam.com)
Date: 06/09/03
- Previous message: SecuriTeam: "[NT] Etherleak Information Leak in Windows Server 2003 Drivers"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
To: list@securiteam.com Date: 9 Jun 2003 20:05:4... | http://www.derkeiler.com/Mailing-Lists/Securiteam/2003-06/0014.html | crawl-001 | refinedweb | 1,902 | 64.51 |
ranked 17th if I had chosen another of my predictions as final submission… (That additionnal URL feature wasn’t that useless afterall…)
This blog post is a (slightly modified) export of my IPython notebooks written for this competition. Well… Let’s get started!
TL;DR: I used a bunch of basic statistical features extrac... | http://www.thomas-robert.fr/en/blog-en/ | CC-MAIN-2019-35 | refinedweb | 4,369 | 50.23 |
jamaican blue coffee xxx free stories mature women naked teaching methods free pics of naked old ladies blue fish buy hockey tickets hardcore free porn how to make a volcano free adult web cam buy drugs prescription online adult games free free lesbian full movie downloads sex and the city ringtone free lesbian full mo... | http://ca.geocities.com/camps982gay/gkkvk/buy-drugs-prescription-online.htm | crawl-002 | refinedweb | 1,785 | 75.2 |
One of the most basic building blocks are functions. You can write extremely simple programs without them, but everything beyond “Hello World” demos will likely need to utilize functions eventually.
Have you ever wondered why functions are a cornerstone of so many programming languages? Let’s look into the reasons why ... | https://www.makeuseof.com/tag/programming-languages-need-functions/ | CC-MAIN-2019-13 | refinedweb | 1,562 | 62.98 |
Getting repaint issue while creating parabolic curves using awt in java
Hi I am trying to create parabolic curves using lines in awt java but previous lines are getting removed as soon as some new lines are drawn.
I am using this code in paint method
static int x1 = 0; static int y1 = 300; static int x2 = 300; static i... | http://quabr.com/51296809/getting-repaint-issue-while-creating-parabolic-curves-using-awt-in-java | CC-MAIN-2018-39 | refinedweb | 1,868 | 57.67 |
How to: Use the Entity Data Model Wizard
This topic shows how to use the Entity Data Model Wizard to generate the AdventureWorks Sales .edmx file and to configure your Visual Studio project to use the Entity Framework. This model and configuration is used throughout the task-related Entity Framework topics.
The Entity ... | https://msdn.microsoft.com/en-us/library/bb738677.aspx | CC-MAIN-2017-30 | refinedweb | 381 | 51.34 |
Details
- Type:
Bug
- Status: Resolved
- Priority:
Major
- Resolution: Fixed
- Affects Version/s: ManifoldCF 0.5
- Fix Version/s: ManifoldCF 0.5
- Component/s: Documentation
- Labels:None
Description
Japanese fonts are missing from the PDFs generated for the site.
This page describes how to fix that:
Issue Links
Activi... | https://issues.apache.org/jira/browse/CONNECTORS-387?focusedCommentId=13193533&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel | CC-MAIN-2015-27 | refinedweb | 2,579 | 57.47 |
I worked on an issue where we were receiving two different messages (Message1 and Message2) inside orchestration each with multiple records. Now, we have to join these messages in a map inside orchestration based on TRANID and PROCID. So basically, we have to get the value of TRANID from Message1 and look for the recor... | http://blogs.msdn.com/b/biztalkcpr/archive/2009/06/01/how-to-join-two-schemas-in-a-map-when-they-contain-namespaces.aspx | CC-MAIN-2014-23 | refinedweb | 548 | 72.16 |
Date: Nov 29, 2012 8:25 AM Author: Michael Stemper Subject: Re: From Fermat little theorem to Fermat Last Theorem In article <50B61B27.43E71ACA@btinternet.com>, Frederick Williams <freddywilliams@btinternet.com> writes:
>John Jens wrote:
>> Corrections was made.
>>
>> It's sufficient that only a < p.
>>
>> If a + b â c... | http://mathforum.org/kb/plaintext.jspa?messageID=7929846 | CC-MAIN-2015-40 | refinedweb | 133 | 74.59 |
Posted 28 Oct 2013
Link to this post
Hi Telerik Folk!
First of all, the cloud uploader is totally what we needed! Our web application is hosted as Microsoft's Windows Azure Website (WAWS), and having the file stream straight into blobage is critical since WAWS has only limited local disk space for "temp" storage of upl... | http://www.telerik.com/forums/feedback-on-cloud-uploader | CC-MAIN-2017-34 | refinedweb | 298 | 66.23 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.