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 |
|---|---|---|---|---|---|
Round-Tripping DatadiagramML Files
You can save Microsoft Visio drawings, stencils, and templates as XML files and then open them again in Visio without any loss of information. This is called round-tripping.
However, after Visio opens an XML file that was created in another application or opens a DatadiagramML file th... | https://msdn.microsoft.com/en-us/library/ff768326.aspx | CC-MAIN-2017-34 | refinedweb | 1,246 | 50.16 |
Example Code: Code_050713.zip
In the previous post I talked about how you can use macro lists to solve the problem of wanting to generate a bunch of code based on the same set of data. This was useful for doing things like defining a list of resources a player could accumulate, and then being able to generate code to s... | http://blog.demofox.org/2013/05/07/macro-lists-for-the-win-side-b/ | CC-MAIN-2017-22 | refinedweb | 1,294 | 50.16 |
i need a program for rational numbers to represent 500/1000 as 1/2 in java using java doc comments Hi Friend,
Try the following code:
public class RationalClass{
private int nr
java programs - Java Beginners
java programs 1) write a program to print prime numbers?
2) write a program to print factorial of given number?... | http://www.roseindia.net/tutorialhelp/comment/90153 | CC-MAIN-2015-35 | refinedweb | 1,461 | 54.02 |
Streaming in WSGI is usually done by passing a generator function as a response. As HTTPResponse.write only accepts str and bytes, I tried this:
def hello(): yield b'hello' time.sleep(1) yield b'world' resp = wheezy.http.HTTPResponse() resp.buffer = hello() return resp
But this doesn't work, because HTTPResponse tries ... | https://bitbucket.org/akorn/wheezy.http/issues/3/httpresponse-should-accept-generator-to | CC-MAIN-2019-43 | refinedweb | 417 | 53.92 |
On Wed, May 04, 2011 at 11:36:35AM +0200, Sorin Manolache wrote:
> On Wed, May 4, 2011 at 11:34, <rm@tuxteam.de> wrote:
> > Hello list,
> >
> > as the subject line says, I'm trying to run a subrequest through
> > mod_proxy and need to post-process the subrequests response data.
> > Looking at older posts on this list i... | http://mail-archives.apache.org/mod_mbox/httpd-modules-dev/201105.mbox/%3C20110504103919.GC20933@seid-online.de%3E | CC-MAIN-2016-44 | refinedweb | 504 | 61.46 |
Control.Concurrent.STM.Broadcast
Description
A Broadcast variable is a mechanism for communication between threads. Multiple reader threads can wait until a broadcaster thread writes a signal. The readers retry until the signal is received. When the broadcaster sends the signal all readers are woken.
This module is des... | http://hackage.haskell.org/package/concurrent-extra-0.2/docs/Control-Concurrent-STM-Broadcast.html | CC-MAIN-2014-42 | refinedweb | 116 | 53.37 |
The MD5 hashing algorithm.
Implementing the algorithm itself was not as hard as I thought it would be. The algorithm is roughly like this:
- It starts with 4 32-bits integers which contain a predefined value.
- The algorithm contains 4 "rounds". On each of them, a different function is applied to those integers and the... | http://average-coder.blogspot.nl/2012/08/compile-time-md5-using-constexpr.html | CC-MAIN-2018-17 | refinedweb | 543 | 54.93 |
// This is needed when accessing an XElement or Attribute that has a namespace on its name XNamespace xts = ""; List<Object> mySchedules = new List<object>(); XElement Root = xmlDoc.Root; List<DocumentSportsInfo> docSportsInfo = (from listing in xmlDoc.Descendants("sports-content") let SportsMetadata = listing.Elements... | https://www.experts-exchange.com/questions/25579650/LINQ-Let-Statement-Determine-Null-Elements.html | CC-MAIN-2018-09 | refinedweb | 1,321 | 50.63 |
Roman's Law and Fast Processing with Multiple CPU Cores
OpenMP and -xautopar seem to work pretty well for C, but what about C++? Will they mesh well with the kind of modern C++ usage peppered with generics and template metaprogramming? The short answer is, there's no short answer. But, let's see for ourselves with the ... | http://www.linuxjournal.com/article/9857?page=0,2 | CC-MAIN-2017-22 | refinedweb | 554 | 56.96 |
."
Catch: a method can catch an exception by providing an exception handler for that type
of exception.
Specify: if a method chooses not to catch an exception, the method must specify that it
can throw that exception. Why did the Java designers make this requirement? Because any
exception that can be thrown by a method... | http://javafaq.nu/java-article1185.html | CC-MAIN-2017-43 | refinedweb | 588 | 54.83 |
📅 15 May, 2019 – Kyle Galbraith easy to miss.
So in the spirit of learning in public, I thought id write up my experience with this problem. We can dive into the problem and the solution so that you can avoid this scar tissue in the future.
First, let’s set the stage for the problem by getting into some of the backgro... | https://blog.kylegalbraith.com/2019/05/15/the-curious-case-of-nvarchar-and-varchar-in-entity-framework/ | CC-MAIN-2020-50 | refinedweb | 1,200 | 73.47 |
I’m just starting Python web development, and have chosen Bottle as my framework of choice.
I’m trying to have a project structure that is modular, in that I can have a ‘core’ application that has modules built around it, where these modules can be enabled/disabled during setup (or on the fly, if possible…not sure how ... | https://pythonquestion.com/post/creating-subprojects-in-bottle/ | CC-MAIN-2020-16 | refinedweb | 443 | 58.89 |
First time here? Check out the FAQ!
@berak Thank you so much...
I am developing commercial software for reading images and finding region of interest by passing top left corner coordinates and bottom right coordinates of rectangle then crop the image.Some client provides samples like 100 dpi, 200 dpi or 400 dpi images ... | https://answers.opencv.org/users/63672/rashmi/?sort=recent | CC-MAIN-2020-45 | refinedweb | 550 | 68.97 |
Subject: [Boost-bugs] [Boost C++ Libraries] #12790: Left shift does not work on 32 bit Linux and MSVC 2015 (32 and 64 bits)
From: Boost C++ Libraries (noreply_at_[hidden])
Date: 2017-01-25 16:06:03
#12790: Left shift does not work on 32 bit Linux and MSVC 2015 (32 and 64 bits)
------------------------------+-----------... | https://lists.boost.org/boost-bugs/2017/01/47201.php | CC-MAIN-2019-43 | refinedweb | 207 | 62.07 |
Installable Units
From Eclipsepedia
Installable Unit
As the name implies, Installable Units (IUs for short)". The metadata allows dependencies to be structured as graphs without forcing containment relationships between nodes. Here is detailed presentation of what an installable unit is made of.
IU Identity
An IU is un... | http://wiki.eclipse.org/Installable_Units | crawl-002 | refinedweb | 1,251 | 50.02 |
A class is like structure in C. A class is a way to bind the data and its associated functions in a unit. It allows the data to be hidden. The keyword 'class' is used to define a class. The body of class is enclosed within braces and terminated by a semicolon. These functions and variables collectively called 'class me... | http://r4r.co.in/cpp/cpp_oops_tutorial/classes_and_Objects.html | CC-MAIN-2018-47 | refinedweb | 306 | 65.62 |
You might’ve run up against this concept in Redux called a “selector.”
In this short tutorial I’ll explain what selectors are, why they’re useful, and when (and when not) to use them.
What’s a Selector?
A selector is a small function you write that can take the entire Redux state, and pick out a value from it.
You know... | https://daveceddia.com/redux-selectors/ | CC-MAIN-2019-35 | refinedweb | 1,315 | 64.71 |
Chapter 15
Advanced Internet Topics
"Surfing on the Shoulders of Giants"
This chapter concludes our look at Python Internet programming by exploring a handful of Internet-related topics and packages. We've covered many Internet topics in the previous five chapters--socket basics, client and server-side scripting tools,... | http://oreilly.com/catalog/python2/chapter/ch15.html | crawl-002 | refinedweb | 12,136 | 51.38 |
This is a guest post by Tomas Mikula. It was initially published as a document in the hasheq. It has been slightly edited and is being republished here with the permission of the original author.
This article describes what we mean when we say that the data structures in this library are equivalence-aware in a type-saf... | https://typelevel.org/blog/2017/04/02/equivalence-vs-equality.html | CC-MAIN-2019-13 | refinedweb | 1,641 | 50.53 |
Java, J2EE & SOA Certification Training
- 35k Enrolled Learners
- Weekend
- Live Class
Java consists of several classes and interfaces to hold the objects before Java 1.2 version. Before this version, there was no existence of Collection Framework. Legacy classes and interfaces are used to hold objects in that scenario... | https://www.edureka.co/blog/legacy-classes-in-java/ | CC-MAIN-2020-05 | refinedweb | 676 | 53.07 |
Cross-platform colored terminal text.
Project description
- Download and docs:
-
-. It also provides some shortcuts to help generate ANSI sequences,().’.:
from colorama import init, AnsiToWin32 init(wrap=False) stream = AnsiToWin32(sys.stderr).stream print >>stream, Fore.BLUE + 'blue text on stderr'
Status & Known Prob... | https://pypi.org/project/colorama/0.2.3/ | CC-MAIN-2021-21 | refinedweb | 157 | 70.9 |
Building on my last post (Move Your Client Logic to the Server - Windows Azure Mobile Services) I will show you how to create a Virtual (or dummy) table to give you a different view of your TodoItem table. This Virtual table will not contain any records however.
In this case, let’s assume you did not want to change you... | https://blogs.msdn.microsoft.com/jpsanders/2013/06/12/using-virtual-tables-for-different-views-windows-azure-mobile-services/ | CC-MAIN-2019-04 | refinedweb | 670 | 63.9 |
05 January 2010 05:27 [Source: ICIS news]
By Felicia Loo
?xml:namespace>
Open-spec naphtha for second-half February delivery was assessed at $752.50-$755.50/tonne (€519.23-521.30/tonne) CFR (cost and freight)
Also up was the first-half March naphtha contract, quoted at $744.50-$747.50/tonne CFR Japan, while the second-... | http://www.icis.com/Articles/2010/01/05/9322511/strong-petchem-demand-to-push-asian-naphtha-higher.html | CC-MAIN-2014-23 | refinedweb | 555 | 57.5 |
Chris Kunicki OfficeZealot.com
September 2004
Applies to:
Microsoft Office 2003 Editions
Summary: One of four articles, read this article to discover the requirements and steps to build a new data provider plug in for use with custom data providers. The Microsoft Office 2003 Research Service Class Library (RSCL) Wizard... | http://msdn.microsoft.com/en-us/library/aa159908(office.11).aspx | crawl-002 | refinedweb | 1,113 | 55.34 |
FOG Client / FOS report bios product key to database (Host) Activate through BIOS key (Deployment)
Hi,
i really would like to see the fog clients ability to read out the current windows key and report it back to the fog server, this information should then be added to each specific host definition.
When i first deploy ... | https://forums.fogproject.org/topic/10808/fog-client-fos-report-bios-product-key-to-database-host-activate-through-bios-key-deployment | CC-MAIN-2019-04 | refinedweb | 2,859 | 66.88 |
A huge portion of the data that exists today is textual and as a Data Scientist, it is very important to have the skill sets to process these textual data. Natural Language processing has been around for a long time and it has been growing in popularity. Today almost all tech devices have some sort of NLP technology t... | https://www.analyticsindiamag.com/how-to-solve-your-first-ever-nlp-classification-challenge/ | CC-MAIN-2019-39 | refinedweb | 1,099 | 55.84 |
Introduction: Scrolling Text With Arduino and Adafruit TFT Shield
What we are going to do: demonstrate text scrolling with an Arduino and an Adafruit 2.8 inch TFT touch shield
What we will use
Arduino Uno
Adafruit 2.8 inch TFT touch shield
Assembly
Mount TFT shield on Arduino
Take care to avoid bending pins - it does g... | https://www.instructables.com/id/Scrolling-text-on-TFT-screen/ | CC-MAIN-2018-39 | refinedweb | 972 | 74.49 |
Is your ice cream float bigger than mine
Posted May 27, 2013 at 07:46 AM | categories: math | tags: | View Comments
Updated May 28, 2013 at 08:59 AM
Float numbers (i.e. the ones with decimals) cannot be perfectly represented in a computer. This can lead to some artifacts when you have to compare float numbers that on p... | http://kitchingroup.cheme.cmu.edu/blog/2013/05/27/Is-your-ice-cream-float-bigger-than-mine/ | CC-MAIN-2017-39 | refinedweb | 574 | 76.52 |
This blog was originally published on Ales Nosek - The Software Practitioner.
Pods on Kubernetes are ephemeral and can be created and destroyed at any time. In order for Envoy to load balance the traffic across pods, Envoy needs to be able to track the IP addresses of the pods over time. In this blog post, I am going t... | https://www.redhat.com/ja/blog/configuring-envoy-auto-discover-pods-kubernetes | CC-MAIN-2020-45 | refinedweb | 652 | 61.06 |
Other Aliasco_create, co_call, co_resume, co_exit_to, co_exit, co_current
SYNOPSIS
#include <pcl.h>);
DESCRIPTIONThe. This document defines an API for the low level handling of coroutines i.e. creating and deleting coroutines and switching between them. Higher level functionality (scheduler, etc.) is not covered.
Funct... | http://manpages.org/co_delete/3 | CC-MAIN-2020-50 | refinedweb | 428 | 58.79 |
Prefix all system groups with "_"
RESOLVED WONTFIX
Status
()
▸
Administration
People
(Reporter: Joel Peshkin, Unassigned)
Tracking
Details
To prevent collisions between user-defined groups and system groups, all system groups should start with an underscore. While administrators should not be blocked from using groups ... | https://bugzilla.mozilla.org/show_bug.cgi?id=247081 | CC-MAIN-2018-09 | refinedweb | 187 | 53.21 |
Bit-field
Declares a class data member with explicit size, in bits. Adjacent bit-field members may (or may not) be packed to share and straddle the individual bytes.
A bit-field declaration is a class data member declaration which uses the following declarator:
The type of the bit-field is introduced by the decl-specif... | https://en.cppreference.com/w/cpp/language/bit_field | CC-MAIN-2022-21 | refinedweb | 356 | 61.12 |
uiomove,
uiomovei
— move data described by a struct uio
#include
<sys/systm.h>
int
uiomove(void
*buf, size_t n,
struct uio *uio);
int
uiomovei(void
*buf, int n,
struct uio *uio);;/* associated process or NULL */ };
A struct uio typically describes data in motion. Several of the fields described below reflect that expec... | https://man.openbsd.org/OpenBSD-5.9/uiomovei.9 | CC-MAIN-2020-05 | refinedweb | 132 | 74.08 |
Simple exceptions and messaging
Project description
EZCeption (and EZMessage)
These classes provide a simplified means to define exception classes and message attributes.
Goals
- Less boilerplate to define error classes so they'll be used more.
- Formatting does not happen at raise time so catching errors doesn't incur... | https://pypi.org/project/ezception/0.0.2/ | CC-MAIN-2022-40 | refinedweb | 351 | 52.26 |
The .NET Framework is a new set of interfaces intended to replace the old Win32 and COM APIs. A couple of the major design goals for the .NET Framework were to make programming in a Windows environment much simpler and more consistent. The .NET Framework has two major components: the common language runtime (CLR) and t... | http://etutorials.org/Server+Administration/Active+directory/Part+III+Scripting+Active+Directory+with+ADSI+ADO+and+WMI/Chapter+28.+Getting+Started+with+VB.NET+and+System.Directory+Services/28.1+The+.NET+Framework/ | CC-MAIN-2016-44 | refinedweb | 252 | 57.47 |
There are three ways a strongly typed DataSet class can be generated. The easiest method is to drop one or more DataAdapter objects from the Data tab in the Visual Studio .NET Toolbox onto a design surface such as a form or a component. Configure each DataAdapter to select data from one table. Right-click on the design... | http://etutorials.org/Programming/ado+net/Part+I+ADO.NET+Tutorial/Chapter+13.+Strongly+Typed+DataSets/13.1+Creating+a+Strongly+Typed+DataSet/ | CC-MAIN-2018-09 | refinedweb | 897 | 57.37 |
netCDF4 Files Creation and Conventions¶
The Salish Sea MEOPAR project uses netCDF4 files as input for the NEMO model and for other purposes, where appropriate. This section documents the recommended way of creating netCDF4 files with compression of variables, limitation of variables to appropriate precision, and approp... | http://salishsea-meopar-tools.readthedocs.io/en/latest/netcdf4/index.html | CC-MAIN-2018-13 | refinedweb | 1,783 | 55.84 |
Introduction to Variables in C++
Variables in C++ acts as a memory location, it is nothing but the name of the container or element that stores the data or values that are being used in the program later for execution. It can be defined using the combination of letters digits, or special symbols like underscore(_), def... | https://www.educba.com/variables-in-c-plus-plus/ | CC-MAIN-2020-29 | refinedweb | 1,083 | 65.42 |
In this section we will discuss about how to construct file path in Java.
A file path can be constructed manually or by a Java program. It is best practice to construct a file path in Java by a Java Program. When you will construct a file path manually the path name will be system dependent because the file separator c... | http://www.roseindia.net/java/example/java/io/constructFilePath.shtml | CC-MAIN-2016-30 | refinedweb | 359 | 51.44 |
NamedNodeMap::getAttributeItem() reasonably assumes that an attribute with null namespace will also have a null prefix. But we actually let one create nodes with null namespace and non-null prefix, due to a bug introduced in <>.
Patch forthcoming.
Created attachment 46727 [details]
proposed fix
Comment on attachment 46... | https://bugs.webkit.org/show_bug.cgi?id=33752 | CC-MAIN-2020-05 | refinedweb | 151 | 61.36 |
wcpcpy - copy a wide-character string, returning a pointer to its end
Synopsis
Description
Colophon
#include <wchar.h>
wchar_t *wcpcpy(wchar_t *dest, const wchar_t *src);
Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
wcpcpy():
The wcpcpy() function is the wide-character equivalent of the stpc.... | http://manpages.sgvulcan.com/wcpcpy.3.php | CC-MAIN-2017-09 | refinedweb | 104 | 64.41 |
“Two cruise boats, two Lochs and some amazing cycling!”
I had heard about the two Lochs tour but wasn't quite sure what it entailed. I knew it involved joining Loch Lomond up with Loch Katrine but my geography let me down after that. Luckily the crew at Cruise Loch Lomond set me right and told me that it involved 2 cru... | https://medium.com/@cruisell/2-cruise-boats-2-lochs-and-some-amazing-cycling-d71462e7ce4b?source=rss-9701916b0fdb------2 | CC-MAIN-2021-43 | refinedweb | 853 | 77.87 |
Mike
--
Mike Levin
mlev...@comcast.net
I would recommend using OpenGL and its GLUT toolkit, which lets you create
simple applications with a window to draw in.
hth
meeroh
--
If this message helped you, consider buying an item
from my wish list: <>
the apple developer sw is free, last time i checked anyway.
when you ins... | https://groups.google.com/g/comp.sys.mac.programmer/c/rXlAAJW7IxM | CC-MAIN-2021-49 | refinedweb | 787 | 71.75 |
By coincidence, today I was looking at Java bugs related to overloading. One report had a bad cast, like yours, and that value was passed to an overloaded method in Object and String. In Java 7, type inference inferred Object and the Object-taking method was picked; in Java 8, it could infer String, picked the other me... | https://contributors.scala-lang.org/t/cannot-be-cast-to-class-scala-runtime-boxedunit/3599?page=2 | CC-MAIN-2019-39 | refinedweb | 1,673 | 58.99 |
A guide to the Clojure Spec library
The clojure.spec library was introduced in the
1.9.0 version of the language. Born out of a recognition that documentation , of individual functions and collective behaviours , was not adequate for complex systems using clojure. This may have something to do with dynamic typing , bei... | https://functional.works-hub.com/learn/a-guide-to-the-clojure-spec-library-606d6?utm_source=rss&utm_medium=automation&utm_content=606d6 | CC-MAIN-2020-16 | refinedweb | 13,473 | 60.35 |
Yhc/RTS/Exceptions
From HaskellWiki
1 RTS Exceptions
Support for 'imprecise exceptions' has recently been added to Yhc. Imprecise exceptions allow any kind of exception (including 'error') to be thrown from pure code and caught in the IO monad.
This page attempts to describe how imprecise exceptions are implemented in ... | https://wiki.haskell.org/Yhc/RTS/Exceptions | CC-MAIN-2016-22 | refinedweb | 1,093 | 56.69 |
Object-Oriented Programming (OOP) is a widely popular programming paradigm used across many different languages. This method of structuring a program uses objects that have properties and behaviors. Each programming language handles the principles of OOP a little differently, so it’s important to learn OOP for each lan... | https://dev.to/educative/how-to-use-object-oriented-programming-in-python-3d6c | CC-MAIN-2020-50 | refinedweb | 3,044 | 56.55 |
Sometimes even the simple stuff can have some interesting unit tests and corner cases. I had a class that's basically a "Thing" with an X,Y position and an OnMoved event. In C# :
public class ThingMovedArgs {
public ThingMovedArgs(Thing t, Point ptOld, Point ptNew);
}
class Thing
{
int X; // just get/set X
int Y; // ju... | http://blogs.msdn.com/b/jmstall/archive/2007/08/10/unit-tests-for-a-simple-onmoved-event-handler.aspx | CC-MAIN-2014-35 | refinedweb | 259 | 63.49 |
I wrote the slower table version first, then I realized if I had used a set, I would be able to avoid checking through the whole preceding s1 and s2. The set version did turn out to be significantly faster.
I believe both versions could be further tuned to run faster (for example, you do not really have to store tuples... | https://discuss.leetcode.com/topic/34214/2-python-dp-solutions-1-quick-44-ms-the-other-slow-156-ms | CC-MAIN-2017-51 | refinedweb | 368 | 67.28 |
On Fri, 2002-06-07 at 10:35, Peter Wächtler wrote:> Vladimir Zidar wrote:> > Nice to have everything as POSIX says, but how could process-shared> > mutex be usefull ? Imagine two processes useing one mutex to lock shared> > memory area. One process locks, and then dies (for example, it goes> > sigSEGV way). Second proc... | http://lkml.org/lkml/2002/6/7/91 | CC-MAIN-2015-06 | refinedweb | 654 | 65.73 |
#include <deal.II/fe/mapping_q_cache.h>
This class implements a caching strategy for objects of the MappingQ family in terms of the MappingQGeneric::compute_mapping_support_points() function, which is used in all operations of MappingQGeneric. The information of the mapping is pre-computed by the MappingQCache::initial... | https://dealii.org/developer/doxygen/deal.II/classMappingQCache.html | CC-MAIN-2020-10 | refinedweb | 429 | 50.43 |
Evaluating ACPI Control Methods Synchronously
A device driver can use the following device control requests to synchronously evaluate control methods that are defined in the ACPI namespace of a device:
Starting with Windows 2000, this request evaluates a control method that is an immediate child object in the ACPI name... | https://docs.microsoft.com/en-us/windows-hardware/drivers/acpi/evaluating-acpi-control-methods-synchronously | CC-MAIN-2018-22 | refinedweb | 452 | 54.12 |
RoboFont can install a font directly in the OS for quick testing. This font will be directly available for use in any other application. The font will be installed only for the current user and it will be deactivated when the UFO document in RoboFont is closed, when the user quits RoboFont or when the user logs out.
Ro... | https://doc.robofont.com/documentation/tutorials/using-test-install/ | CC-MAIN-2021-39 | refinedweb | 605 | 55.64 |
Developing 3D Games for Windows* 8 with C++ and Microsoft DirectX*
Published on July 24, 2014
By Bruno Sonnino
Game development is a perennial hot topic: everybody loves to play games, and they are the top sellers on every list. But when you talk about developing a good game, performance is always a requirement. No one... | https://software.intel.com/en-us/articles/developing-3d-games-for-windows-8-with-c-and-microsoft-directx?language=ru | CC-MAIN-2018-13 | refinedweb | 6,820 | 57.06 |
I’ve been working on getting a better understanding of the Discrete Fourier Transform. I’ve figured out some things which have really helped my intuition, and made it a lot simpler in my head, so I wanted to write these up for the benefit of other folks, as well as for my future self when I need a refresher.
The discre... | http://blog.demofox.org/2016/08/11/understanding-the-discrete-fourier-transform/ | CC-MAIN-2017-22 | refinedweb | 3,413 | 59.64 |
Using the Simulation Data Inspector or Simulink® Test™, you can import data from a Microsoft® Excel® file or export data to a Microsoft Excel file. You can also log data to an Excel file using the Record block. The Simulation Data Inspector, Simulink Test, and the Record block all use the same file format, so you can u... | https://au.mathworks.com/help/simulink/ug/simulation-data-inspector-import-file-format.html | CC-MAIN-2021-21 | refinedweb | 1,096 | 53.31 |
Convert and import flipshare video to Quicktime.Mov Flipshare video to mov software supports convert flip video from flipshare to mov, import flip share video from flip ultra(HD), mino(HD), slide(HD) to mov multimedia device, say flip video to Quicktime mov, flip share video to iTunes, flipshare video to Window live mo... | https://issuu.com/verywell/docs/flipshare_video_to_mov_123 | CC-MAIN-2018-09 | refinedweb | 673 | 66.37 |
Today, I'd like to share with you one of the items from my tools-belt, which I'm successfully using for years now. It is simply a react component. It is a form. But not just a form, it is a form that allows anyone independently of their React or HTML knowledge to build a sophisticated feature-rich form based on any arb... | https://practicaldev-herokuapp-com.global.ssl.fastly.net/vudodov/react-json-schema-form-39da | CC-MAIN-2021-25 | refinedweb | 1,880 | 63.59 |
In this tutorial, we are going to cover how we can add sound effects to our Ionic applications. This particular example is going to cover adding a “click” sound effect that is triggered when switching between tabs, but we will be creating a service that can be used generally to play many different sound effects in what... | https://www.joshmorony.com/adding-sound-effects-to-an-ionic-application/ | CC-MAIN-2021-04 | refinedweb | 1,235 | 50.77 |
hello all,
i'm a biology student currently taking programming in uni, and i have a homework question to solve.
i have to write a programme to create and print a one-month calendar which can be used as month and year calendars as well.
the programme should be able to;
1. detect the leap years and non-leap years
2. ident... | https://www.daniweb.com/programming/software-development/threads/205037/compiling-different-parts-of-a-calendar | CC-MAIN-2017-34 | refinedweb | 399 | 74.12 |
TracUserPage
Description
Defines a namespace for user pages, where users can place personal wiki pages that can be public or private. A private page can only be opened by TRAC_ADMIN or the user whose login name matches the wiki page. Users can use this page to store a personal set of reports, queries, macros, etc.
Bugs... | https://trac-hacks.org/wiki/TracUserPagePlugin?version=2 | CC-MAIN-2017-26 | refinedweb | 175 | 57.27 |
I have no idea what does this code means even though the book explained it. I think maybe it didn't explain well enough. Can anyone tell me what does this code means?
I also have no idea about the char 256 thing =,=I also have no idea about the char 256 thing =,=Code://This programme shows an example of using an if sta... | http://cboard.cprogramming.com/cplusplus-programming/97876-what-does-code-means.html | CC-MAIN-2015-27 | refinedweb | 112 | 79.3 |
PyBytes MQTT integration
Is it possible to have an MQTT client watch data coming into PyBytes from registered devices and consume that data in real time? This client would be running on premise (not AWS). I've seen nothing in the docs on this so far. (It's the approach we use with TTN but in this case we'll be using NB... | https://forum.pycom.io/topic/6457/pybytes-mqtt-integration/9?lang=en-US | CC-MAIN-2021-04 | refinedweb | 537 | 63.39 |
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN" ""> <html> <head> <title>Postfix IPv6 Support</title> <meta http- </head> <body> <h1><img src="postfix-logo.jpg" width="203" height="98" ALT="">Postfix IPv6 Support</h1> <hr> <h2>Introduction</h2> <p> Postfix 2.2 introduces support for the IPv6 (IP version ... | http://opensource.apple.com//source/postfix/postfix-247/postfix/proto/IPV6_README.html | CC-MAIN-2016-40 | refinedweb | 1,441 | 56.55 |
Technical Support
Support Resources
Product Information
How do I locate an initialized array in XDATA memory. I am declaring an array thus:
char * lcd_message = { "message 1", "message 2", ... "last message" };
and need to get the messages and pointers into XDATA as they may be changed during runtime.
The best way to d... | http://www.keil.com/support/docs/299.htm | crawl-003 | refinedweb | 141 | 64.1 |
Created on 2008-03-30 22:23 by belopolsky, last changed 2010-06-25 21:06 by r.david.murray.
Opening a new issue per Raymond's request at msg64764:
"""
It would be *much* more useful to direct effort improving the mis-
reporting of the number of arguments given versus those required for
instance methods:
>>> a.f(1, 2)
T... | http://bugs.python.org/issue2516 | crawl-003 | refinedweb | 1,024 | 62.38 |
You want to create a custom control
that remembers its state between
postbacks of a form, like the server controls
provided with ASP.NET.
Create a custom control like the one described in Recipe 5.2, implement the
IPostBackDataHandler interface to add
the functionality to retrieve the
values posted to the server, and t... | https://www.oreilly.com/library/view/aspnet-cookbook/0596003781/ch05s04.html | CC-MAIN-2019-18 | refinedweb | 263 | 64.2 |
Introduction: Make a Soil Moisture Meter With the Help of Arduino
I am an academician in Faculty of Agriculture. We have a lot of experiments in field and measure some parameters that are constraint to do. One of the compulsory measurement is determining of soil moisture. Estimation of soil moisture as using soil sampl... | http://www.instructables.com/id/Make-a-Soil-Moisture-Meter-With-the-Help-of-Arduin/ | CC-MAIN-2018-09 | refinedweb | 781 | 54.93 |
I was trying to setup a project for unit testing using Typescript, Mocha, Chai, Sinon, and Karma and I quickly realized that there were so many moving parts that made it a bit challenging to setup the project. Here are the detailed steps for successfully creating a JavaScript unit testing project using the aforemention... | https://blogs.msdn.microsoft.com/wael-kdouh/2017/06/27/unit-testing-using-typescript-mocha-chai-sinon-and-karma/ | CC-MAIN-2019-18 | refinedweb | 160 | 65.32 |
-Bsymbolicoption or Sun Studio compiler's
-xldscope=symbolicoption, all symbols of a library can be made non-interposable (those symbols are called protected symbols, since no one else can interpose on them). If the targeted routine is interposable, dynamic linker simply passes the control to whatever symbol it encoun... | http://technopark02.blogspot.com/2005/05/solaris-hijacking-function-call.html | CC-MAIN-2015-22 | refinedweb | 601 | 65.62 |
Lever's libuv integration
Although I integrated libuv into Lever weeks ago, I figured out some improvements only about a week ago. I was motivated to do a walkthrough from the implementation details. This may help you if you are studying Lever's internals in general because we go through lot of details.
Lets study a bi... | http://boxbase.org/entries/2017/jan/16/lever-libuv-integration/ | CC-MAIN-2018-34 | refinedweb | 967 | 53.07 |
A more liberal autolink extension for python Markdown
Project description
A more liberal autolink extension for python Markdown - inspired by Django’s urlize function`
Requires:
To make this extension loadable by Mardown, just drop mdx_urlize.py into your PYTHONPATH or projects root.
From:
Once installed, you can use i... | https://pypi.org/project/markdown-urlize/ | CC-MAIN-2020-24 | refinedweb | 121 | 55.54 |
Firstly, my apologies to any one who may feel like this is a very dumb question or a question that has already been answered. I'm very new to MVVM, XAML and having read everything on StackOverflow, I'm still failing to understand what I'm sure is a simple concept.
So I have a MVVM set up where an Observable Collection ... | http://m.dlxedu.com/m/askdetail/3/d3b5cea3e6cff94cfb7cf30064a1edde.html | CC-MAIN-2018-22 | refinedweb | 748 | 61.77 |
Can we make the permissions for deleting changes a bit more flexible?
Currently changes can only be deleted by administrators, or by the change owner if they have the "delete own changes" permission.
This means that for example in a system where projects are separated by namespaces and we assign permissions to "owner" ... | https://bugs.chromium.org/p/gerrit/issues/detail?id=9354 | CC-MAIN-2018-43 | refinedweb | 107 | 67.08 |
LOG(9) NetBSD Kernel Developer's Manual LOG(9)Powered by man-cgi (2021-06-01). Maintained for NetBSD by Kimmo Suominen. Based on man-cgi by Panagiotis Christias.
NAME
log -- log a message from the kernel through the /dev/klog device
SYNOPSIS
#include <sys/syslog.h> void log(int level, const char *format, ...);
DESCRIPT... | https://man.netbsd.org/hppa/log.9 | CC-MAIN-2021-49 | refinedweb | 118 | 53.98 |
This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.
On 08/18/18 18:46, Richard Sandiford wrote: > Bernd Edlinger <bernd.edlinger@hotmail.de> writes: >> On 08/18/18 12:40, Richard Sandiford wrote: >>> Bernd Edlinger <bernd.edlinger@hotmail.de> writes: >>>> Hi everybody, >>>> >>>> On... | https://gcc.gnu.org/legacy-ml/gcc-patches/2018-08/msg01097.html | CC-MAIN-2021-49 | refinedweb | 1,001 | 52.9 |
With the final release of Python 2.5 we thought it was about time Builder AU gave our readers an overview of the popular programming language. Builder AU's Nick Gibson has stepped up to the plate to write this introductory article for beginners.
With the final release of Python 2.5 we thought it was about time Builder ... | https://www.techrepublic.com/article/a-quick-start-to-python/ | CC-MAIN-2022-05 | refinedweb | 2,373 | 64.24 |
An input_event is _any_ kind of input from the user, including keys, screen resizes, etc. If NoKey is the type, then the event should be ignored. More...
#include <cursorwindow.h>
An input_event is _any_ kind of input from the user, including keys, screen resizes, etc. If NoKey is the type, then the event should be ign... | http://www.bordoon.com/tools/structcxxtls_1_1CursorWindow_1_1input__event.html | CC-MAIN-2019-18 | refinedweb | 308 | 67.04 |
IRC log of xmlsec on 2007-09-25
Timestamps are in UTC.
15:57:53 [RRSAgent]
RRSAgent has joined #xmlsec
15:57:53 [RRSAgent]
logging to
15:57:59 [tlr]
Meeting: XML Security Workshop
15:58:07 [ht]
Scribe: Henry S. Thompson
15:58:11 [ht]
ScribeNick: ht
15:58:20 [tlr]
bridge is setup
15:58:36 [Zakim]
-Ed_Simon
15:59:08 [Zak... | http://www.w3.org/2007/09/25-xmlsec-irc | CC-MAIN-2016-26 | refinedweb | 5,726 | 59.64 |
Local continuous test runner with pytest and watchdog.
pytest-watch a zero-config CLI tool that runs pytest, and re-runs it when a file in your project changes. It beeps on failures and can run arbitrary commands on each passing and failing test run.
Whether or not you use the test-driven development method, running te... | https://xscode.com/joeyespo/pytest-watch | CC-MAIN-2020-50 | refinedweb | 473 | 60.82 |
audiocutter
A plugin to cut audio files. You pass in a path to a file, start and end times and the plugin will do the rest. For now, it automatically will reduce the quality quite a bit to ensure optimal file size for storage/streaming.
Getting Started
Take a look at the requirements and any gotchas for your platform a... | https://pub.dev/documentation/audiocutter/latest/ | CC-MAIN-2020-34 | refinedweb | 125 | 70.5 |
In this article, I’ll show you the easiest way possible to create a chat application using React.js. It’ll be done entirely without server-side code, as we’ll let the Chatkit API handle the back-end.
I’m assuming that you know basic JavaScript and that you’ve encountered a little bit of React.js before. Other than that... | https://www.freecodecamp.org/news/how-to-build-a-react-js-chat-app-in-10-minutes-c9233794642b/ | CC-MAIN-2020-45 | refinedweb | 2,149 | 66.03 |
Odoo Help
Odoo is the world's easiest all-in-one management software. It includes hundreds of business apps:
CRM | e-Commerce | Accounting | Inventory | PoS | Project management | MRP | etc.
Which table stores image in openerp
Hi All,
I have created module where employee can upload their image. Module works perfectly. ... | https://www.odoo.com/forum/help-1/question/which-table-stores-image-in-openerp-42436 | CC-MAIN-2017-09 | refinedweb | 216 | 54.49 |
flask_restful Unable to install with StaSh
Guys, I search the forum about this but could not find anything. But using StaSh to pip install flask-restful fails as it has to run a setup file. Not sure what the setup file is doing, but it appears that the installation and dependencies get installed ok.
To test I just used... | https://forum.omz-software.com/topic/4229/flask_restful-unable-to-install-with-stash | CC-MAIN-2021-17 | refinedweb | 1,189 | 53.78 |
prestapyt 0.1.1
A library to access Prestashop Web Service from Python.
prestapyt is a library for Python to interact with the PrestaShop's Web Service API.
Learn more about the PrestaShop Web Service from the [Official Documentation]().
prestapyt is a direct port of the PrestaShop PHP API Client, PSWebServiceLibrary.p... | http://pypi.python.org/pypi/prestapyt/0.1.1 | crawl-003 | refinedweb | 343 | 58.89 |
FUNOPEN(3) BSD Programmer's Manual FUNOPEN(3)
funopen, fropen, fwopen - open a stream
#include <stdio.h> FILE * funopen(const void *cookie, int (*readfn)(void *, char *, int), int (*writefn)(void *, const char *, int), fpos_t (*seekfn)(void *, fpos_t, int), int (*closefn)(void *)); FILE * fropen(const void *cookie, int... | https://www.mirbsd.org/htman/i386/man3/funopen.htm | CC-MAIN-2015-40 | refinedweb | 229 | 69.41 |
Up till now, you have used variables to store a single value. C++ offers the flexibility to store multiple values of the same type, and address them with a single name. The mechanism that enables this is arrays.
An Array is a variable that allows you to store multiple values of the same type. Let’s say you need to stor... | http://www.wideskills.com/c-plusplus/c-plusplus-arrays | CC-MAIN-2018-09 | refinedweb | 1,913 | 61.46 |
Recursively build tree.
- find midpoint by fast/slow method, use middle node as root.
- build left child by first half of the list
- build right child by second half of the list (head is midpoint->next)
<cpp> class Solution { public: TreeNode *sortedListToBST(ListNode *head) { if(!head) return NULL; if(!head->next) ret... | https://discuss.leetcode.com/topic/10979/clean-c-solution-recursion-o-nlogn-with-comment | CC-MAIN-2018-05 | refinedweb | 949 | 60.24 |
The process to set up a client library varies by programming language. Select the tab for the language you're using for development. If you are using a language not available here, see the complete table list of available Downloads.
Java
Using the Google APIs Client Library for Java requires that you download the core ... | https://developers.google.com/google-apps/calendar/setup | CC-MAIN-2015-14 | refinedweb | 324 | 57.47 |
The phrase “better safe than sorry” gets thrown around whenever people talk about monitoring or getting observability into your AWS resources but the truth is that you can’t sit around and wait until a problem arises, you need to proactively look for opportunities to improve your application in order to stay one step a... | https://coinerblog.com/getting-down-and-dirty-with-metric-based-alerting-for-aws-lambda-44dee79df49a/ | CC-MAIN-2019-43 | refinedweb | 1,464 | 58.52 |
Earlier this week we discussed how to build fully-featured React forms with KendoReact, which is another great React forms tutorial. In this article, we’ll take a step a back and discuss the challenges inherent to building forms with just React, such as state management and validation, and then how to solve them with t... | https://www.telerik.com/blogs/how-to-build-forms-with-react-the-easy-way?utm_medium=cpm&utm_source=jsweekly&utm_campaign=kendo-ui-react-blog-easy-react-form&utm_content=primary | CC-MAIN-2021-10 | refinedweb | 2,086 | 54.42 |
hey how do u use amouse in c++,is it possible and if yes to what extent,right click??
[/color][glowpurple]The ladder of sucess is never crowded at top:Napolean[/glowpurple]
What do you mean by "use a mouse"???
C++ is a programming language..
You can write code to take advantage of mouse clicks, mouse movement and every... | http://www.antionline.com/showthread.php?274063-Mouse-in-c | CC-MAIN-2016-40 | refinedweb | 387 | 73.07 |
Hello.
I came across a serious problem with the rich data table when running on Mojarra 2.1.2. I would like to discuss possible solutions, b/c it is not obvious to me.
The problem can be recreated by having a data table with an ajax delete link on every row. The ajax re-renders the whole table. With Mojarra, you will f... | https://developer.jboss.org/thread/170052 | CC-MAIN-2017-34 | refinedweb | 295 | 53.51 |
This article will continue to expand the capabilities of my reflection based event tests. Although my
VerifyEventCallbacks test method can inventory collections of EventHandler based events declared directly on a class, it only works on events backed by EventHandler delegates, and it won’t detect events declared on bas... | https://ihadthisideaonce.com/2012/09/09/beyond-the-event-horizon-event-complications/ | CC-MAIN-2020-05 | refinedweb | 2,853 | 56.96 |
Hello… I am writing a simple chat program, but i have encountered a
problem. I ask for a client to provide a handle, but it he disconnects
during a gets call, it does weird things.
def get_handle(session) for attempt in (0..2) session.print "Please Login\n" response=session.gets.strip # The problem re=/(Login)\s(.+)/ m... | https://www.ruby-forum.com/t/monitoring-socket-disconnect-during-gets-or-readline/70750 | CC-MAIN-2021-21 | refinedweb | 139 | 79.06 |
Path Class
Definition
public ref class Path abstract sealed
[System.Runtime.InteropServices.ComVisible(true)] public static class Path
type Path = class
Public Class Path
- Inheritance
-
- Attributes
-
Examples
The following example demonstrates some of the main members of the
Path class.
using namespace System; using ... | https://docs.microsoft.com/en-us/dotnet/api/system.io.path?view=netframework-1.1 | CC-MAIN-2020-10 | refinedweb | 151 | 60.21 |
You want to pick a random element from a collection, where each element in the collection has a different probability of being chosen.
Store the elements in a hash, mapped to their relative probabilities. The following code will work with a hash whose keys are mapped to relative integer probabilities:
def choose_ weigh... | https://www.safaribooksonline.com/library/view/ruby-cookbook/0596523696/ch05s11.html | CC-MAIN-2017-13 | refinedweb | 242 | 65.73 |
Template Matching
Template matching (a.k.a. Match by example) is a simple way to query the space - The template is a PONO.FirstName = "John"; Person person = spaceProxy.Read(template);
Read an entry of type Person whose FirstName is John and LastName is Smith:
Person template = new Person(); template.FirstName = "John"... | https://docs.gigaspaces.com/xap/10.1/dev-dotnet/query-template-matching.html | CC-MAIN-2021-49 | refinedweb | 297 | 51.55 |
Here's a little details on my Raspberry Pi Midi-keyboard project I made as a degree work at school. This is my first attempt on making something with a RaspPi.
I've been interested in music and technology (and music technology) for almost my entire life, and when we had to come up with something to create as a degree w... | https://www.raspberrypi.org/forums/viewtopic.php?f=38&p=1219820&sid=dcd4a26a9b1bdb92b601034f2391e105 | CC-MAIN-2017-43 | refinedweb | 665 | 74.79 |
Francois Wirth wrote:
>
> Hi,
>
> Just want to know if anyone considered developing an XML driven database
> like Tamino. I would be nice to work on an open source database that uses
> Xerces, Xalan etc. for the XML processing. I know this is a huge project,
> but I think there could be a lot of uses for this database ... | http://mail-archives.apache.org/mod_mbox/xml-general/200007.mbox/%3C3965C92C.A8969FA3@apache.org%3E | CC-MAIN-2015-48 | refinedweb | 471 | 70.73 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.