text stringlengths 20 1.01M | url stringlengths 14 1.25k | dump stringlengths 9 15 ⌀ | lang stringclasses 4
values | source stringclasses 4
values |
|---|---|---|---|---|
insq - insert a message into a queue
#include <sys/stream.h> int insq(queue_t *q, mblk_t *emp, mblk_t *nmp);
Architecture independent level 1 (DDI/DKI).
Pointer to the queue containing message emp.
Enqueued message before which the new message is to be inserted. mblk_t is an instance of the msgb(9S) structure.
Message ... | https://docs.oracle.com/cd/E88353_01/html/E37855/insq-9f.html | CC-MAIN-2022-05 | en | refinedweb |
Getting Started with Identity Vault in @ionic/vue
In this tutorial we will walk through the basic setup and use of Ionic's Identity Vault in an
@ionic/vue/services/useVault.ts: A composition API function that abstracts the logic associated with using Identity Vault. The functions and reactive variable exported here mod... | https://ionic.io/docs/identity-vault/getting-started-vue | CC-MAIN-2022-05 | en | refinedweb |
README
hotkeys-managerhotkeys-manager
Executes callback when hotkey commands are pressed.
InstallInstall
npm i -D hotkeys-manager
InitializeInitialize
import HotkeysManager from 'hotkeys-manager';
// settings these options in the constructor defines these options // globaly thorughout command registrations. Though indi... | https://www.skypack.dev/view/hotkeys-manager | CC-MAIN-2022-05 | en | refinedweb |
.
Tutorial Chapters
- BDD, SpecFlow and The SpecFlow Ecosystem (Chapter 1)
- Getting Started with SpecFlow (Chapter 2)
- You’re here →, we have seen how to set up a SpecFlow project in Visual Studio, how to add a first SpecFlow feature to the project and how to let SpecFlow auto-generate step definitions that implement... | https://blog.testproject.io/2019/10/23/writing-more-expressive-specflow-steps/ | CC-MAIN-2022-05 | en | refinedweb |
This article is my entry for the language detector part of CodeProject's Machine Learning and Artificial Intelligence Challenge[^]. The goal of the challenge was to train a model to recognize programming languages, based on a provided training dataset with 677 code samples.
I've used C#. The solution has a LanguageReco... | https://www.codeproject.com/Articles/1232473/Recognizing-Programming-Languages-using-a-Neural-N?msg=5496534#xx5496534xx | CC-MAIN-2022-05 | en | refinedweb |
Java Heap Memory Error
Errors and exceptions are very common when working with any programming language. In Java, all objects are stored in the Heap memory, and JVM throws an OutOfMemoryError when it is unable to allocate space to an object. Sometimes this error is also called Java Heap Space Error. Let's learn more ab... | https://www.studytonight.com/java-examples/java-heap-memory-error | CC-MAIN-2022-05 | en | refinedweb |
On Mar 13, 2013, at 08:52, Bjoern Drabeck wrote: > Btw I think there are still a couple more issues with the configure going wrong sometimes, depending what options I choose. Bit later when I got more time I can create a list of options and outcomes.. Will try to see if I can get a debug build to work which allows me t... | http://ffmpeg.org/pipermail/ffmpeg-devel/2013-March/140442.html | CC-MAIN-2022-05 | en | refinedweb |
Use Visual C# to create a remote server
This article helps you create a remote server where another application can access by using Visual C#.
Original product version: Visual C#
Original KB number: 307445
Summary
This article illustrates how to create a .NET Remoting run-time framework.
This article refers to the foll... | https://docs.microsoft.com/en-US/troubleshoot/dotnet/csharp/create-remote-server | CC-MAIN-2022-05 | en | refinedweb |
7. Train and Test Sets by Splitting Learn and Test Data
By Bernd Klein. Last modified: 02 Dec 2021.
Learn, Test and Evaluation Data
>
When you consider how machine learning normally works, the idea of a split between learning and test data makes sense. Really existing systems train on existing data and if other new dat... | https://python-course.eu/machine-learning/train-and-test-sets-by-splitting-learn-and-test-data.php | CC-MAIN-2022-05 | en | refinedweb |
35. Net Income Method Example with Numpy, Matplotlib and Scipy
By Bernd Klein. Last modified: 12 Dec 2021.
The Net Income Method (in Germany known as Einnahmeüberschussrechnung, EÜR) is a simplified profit determination method. Under German law, self-employed persons such as doctors, lawyers, architects and others have... | https://python-course.eu/numerical-programming/net-income-method-example-with-numpy-matplotlib-and-scipy.php | CC-MAIN-2022-05 | en | refinedweb |
Written By Tony SuiLewis Fogden,
Mon 27 February 2017, in category Data science
Twitter’s data can often provide valuable insight into your company's products, brand, clients, or competition. You can extract sentiment, volume, what's trending, and much more. Enough said, let’s stream some tweets!
First, a Twitter Appli... | http://blog.keyrus.co.uk/streaming_data_from_twitter_using_python.html | CC-MAIN-2022-05 | en | refinedweb |
So now we know our way round the front end part of a new React + Web API project, what about the Web API part?
Everything else in the new project (apart from the ClientApp folder) is there to make your Web API work.
First up we have the Controllers folder.
API controllers for your data
In the controllers folder you’ll ... | https://jonhilton.net/understanding-the-asp-net-react-template-web-api/ | CC-MAIN-2022-05 | en | refinedweb |
NAMEqbloop.h - Main loop manages timers, jobs and polling sockets.
SYNOPSIS
#include <qb/qbloop.h>
DESCRIPTIONOnly a weaker sense of priorities is implemented, alluding to distinct set of pros and cons compared to the stronger, strict approach to them as widely applied in this problem space (since the latter gives the ... | https://man.archlinux.org/man/community/libqb/qbloop.h.3.en | CC-MAIN-2022-05 | en | refinedweb |
Get the qualifier from an ACL entry
#include <sys/acl.h> void *acl_get_qualifier( acl_entry_t entry_d );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The acl_get_qualifier() function gets the qualifier from an ACL entry and returns a pointer to a copy of ... | https://www.qnx.com/developers/docs/7.1/com.qnx.doc.neutrino.lib_ref/topic/a/acl_get_qualifier.html | CC-MAIN-2022-05 | en | refinedweb |
@Retention(value=RUNTIME) @Target(value=FIELD) public @interface LinkingObjects
RealmResults.
To expose reverse relationships for use, create a declaration as follows:In the above example `Person` is related to `Dog` through the field `dog`. This in turn means that an implicit reverse relationship exists between the cl... | https://docs.mongodb.com/realm-legacy/docs/java/5.7.0/api/io/realm/annotations/LinkingObjects.html | CC-MAIN-2022-05 | en | refinedweb |
.
/* "SecurityManager.h" #include "pretty_printer.h" #if MBED_CONF_APP_FILESYSTEM_SUPPORT #include "LittleFileSystem.h" #include "HeapBlockDevice.h" #endif //MBED_CONF_APP_FILESYSTEM_SUPPORT /** char DEVICE_NAME[] = "SM_device"; /* we have to specify the disconnect call because of ambiguous overloads */ typedef ble_err... | https://os.mbed.com/docs/mbed-os/v6.2/apis/securitymanager.html | CC-MAIN-2020-34 | en | refinedweb |
.
This is the way I went about the "Validate a Sudoku Board” problem..
This one is fairly straight-forward, your basic task is to make sure that the value of any given cell isn’t replicated in the cell’s row, column, or “cube”. The problem is how you go about this. There is a space-efficient way, but requires more loop... | http://geekswithblogs.net/BlackRabbitCoder/archive/2015/06/02/solution-to-little-puzzlersndashvalidate-a-sudoku-board.aspx | CC-MAIN-2020-34 | en | refinedweb |
Published: 08/15/2012, Last Updated: 08/15/2012
By Dr. Michael J. Gourlay
Download Fluid Simulation for Video Games (part 14) [PDF 1.1MB]
Download MjgIntelFluidDemo14.zip [ZIP 3.8MB]
Figure 1. Dyed fluid drop inside convex polyhedral container. Cyan arrows show the density gradient. Yellow balls show vortex particles (... | https://software.intel.com/content/www/us/en/develop/articles/fluid-simulation-for-video-games-part-14.html | CC-MAIN-2020-34 | en | refinedweb |
PageRank (PR) is an algorithm used by Google Search to rank websites in their search engine is used to find out the importance of a page to estimate how good a website is.PageRank (PR) is an algorithm used by Google Search to rank websites in their search engine is used to find out the importance of a page to estimate ... | https://www.thinkinfi.com/2018/08/how-google-page-rank-works-and.html | CC-MAIN-2020-34 | en | refinedweb |
How to always call a class method, forcefully, on return in python
I have a
ReportEntry class
class ReportEntry(object): def __init__(self): # Many attributes defined here ... # Lot many setattr/getattr here def validate(self): # Lot of validation code in here return self
Multiple other classes maintain
has-a relation ... | http://thetopsites.net/article/54167069.shtml | CC-MAIN-2020-34 | en | refinedweb |
SyncMutexUnlock(), SyncMutexUnlock_r()
Unlock a mutex synchronization object
Synopsis:
#include <sys/neutrino.h> int SyncMutexUnlock( sync_t * sync ); int SyncMutexUnlock_r( sync_t * sync );
Arguments:
- sync
- A pointer to the synchronization object for the mutex that you want to unlock.
Library:
libc
Use the -l c opt... | https://developer.blackberry.com/playbook/native/reference/com.qnx.doc.neutrino.lib_ref/topic/s/syncmutexunlock.html | CC-MAIN-2020-34 | en | refinedweb |
- Type:
Task
- Status: Closed (View Workflow)
- Priority:
Critical
- Resolution: Cannot Reproduce
- Component/s: job-dsl-plugin, pipeline
- Labels:None
- Similar Issues:
I've marked this one as "cannot reproduce" because it sounds like the issue is not reproducible, but we can re-open it if you can provide the informat... | https://issues.jenkins-ci.org/browse/JENKINS-53246 | CC-MAIN-2020-34 | en | refinedweb |
Provided by: gnutls-doc_3.0.11+really2.12.14-5ubuntu3_all
NAME
gnutls_session_get_ptr - API function
SYNOPSIS
#include <gnutls/gnutls.h> void * gnutls_session_get_ptr(gnutls_session_t session);
ARGUMENTS
gnutls_session_t session is a gnutls_session_t structure.
DESCRIPTION
Get user pointer for session. Useful in callba... | http://manpages.ubuntu.com/manpages/precise/man3/gnutls_session_get_ptr.3.html | CC-MAIN-2020-34 | en | refinedweb |
Introduction: Servo Driven Automatic Vice
You will need:
- Parallel Gripper Kit -
- Standard Size Servo - (See Note)
Base - I show a couple of ideas
To build it on a breadboard you will need:
- Arduino - (I used an Uno)
- Breadboard
- Jumper Wires
- 10k Linear Taper Potentiometer -
- Long Male Headers -
To build the pe... | https://www.instructables.com/id/Servo-Driven-Automatic-Vice/ | CC-MAIN-2020-34 | en | refinedweb |
KIMAP2::FetchJob
#include <fetchjob.h>
Inherits KIMAP2::Job.
Detailed Description
Fetch message data from the server.
All data is returned using the signals, so you need to connect to the relevant signal (or all of them) before starting the job.
This job will always use BODY.PEEK rather than BODY to fetch message conte... | https://api.kde.org/kdepim/kimap2/html/classKIMAP2_1_1FetchJob.html | CC-MAIN-2020-34 | en | refinedweb |
RAIL_IEEE802154_AddrConfig_t Struct Reference
A configuration structure for IEEE 802.15.4 Address Filtering.
#include <
rail_ieee802154.h>
A configuration structure for IEEE 802.15.4 Address Filtering.
The broadcast addresses are handled separately and do not need to be specified here. Any address to be ignored should ... | https://docs.silabs.com/rail/2.8/struct-r-a-i-l-i-e-e-e802154-addr-config-t | CC-MAIN-2020-34 | en | refinedweb |
Hi,
I have placed the license registration before the apphost initializing and still I am getting the error in the image below.
Thanks
Thanks
Hi,
I have placed the license registration before the apphost initializing and still I am getting the error in the image below.
Thanks
I don’t see
TestAppHost or
NewInstance() in... | https://forums.servicestack.net/t/free-quota-limit-errro-apears-in-tests/8758 | CC-MAIN-2020-34 | en | refinedweb |
IMX241 CX3 2592x1944 @ 30FPS issuesZaTu_4258396 Aug 8, 2019 3:05 PM
Hello all, I am attempting to add full functionality to our firmware for multiple available framerates and the first one I am trying to tackle is changing from 2592x1944 @ 15 FPS to 30 FPS. This seems like a simple change but I am having a hard time ge... | https://community.cypress.com/message/206156 | CC-MAIN-2020-16 | en | refinedweb |
Provided by: allegro4-doc_4.4.3.1-1_all
NAME
show_mouse - Tells Allegro to display a mouse pointer on the screen.
SYNOPSIS
#include <allegro.h> void show_mouse(BITMAP *bmp);
DESCRIPTION graphics drawing code will get confused and will leave 'mouse droppings' all over the screen. To prevent this, you must make sure you ... | http://manpages.ubuntu.com/manpages/focal/man3/show_mouse.3alleg4.html | CC-MAIN-2020-16 | en | refinedweb |
imports in sage/combinat/free_module.py
I was reading the code in
sage/combinat/free_module.py and I noticed some weirdness in the imports. In the second line there is a
from sage.structure.element import Element, have_same_parent
and then in the fourth line there is
from sage.structure.element import have_same_parent
... | https://ask.sagemath.org/question/28710/imports-in-sagecombinatfree_modulepy/?answer=28714 | CC-MAIN-2020-16 | en | refinedweb |
Author: Ulrich Schoebel <[email protected]> Tcl-Version: 8.5 State: Withdrawn Type: Project Vote: Pending Created: 23-Jul-2003 Post-History: Keywords: namespace, command lookup, search path
Abstract
This TIP adds a Tcl variable to define the search path for command name lookup across namespaces.
Rationale
Command names... | https://core.tcl-lang.org/tips/doc/trunk/tip/142.md | CC-MAIN-2020-16 | en | refinedweb |
A small point to point out a difference.
A lot of optimisation is done with gradient systems. In this blogpost I’d just like to point out a very simple example to demonstrate that you need to be careful with calling this “optimisation”. Especially when you have a system with a constaint. I’ll pick an example from wikip... | https://koaning.io/posts/optimisation-not-gradients/ | CC-MAIN-2020-16 | en | refinedweb |
- Change a node's text
- Reversed each loop over a store?
- Row Grid height Dynamically increases/Decreases in ExtJS 4
- Date picker
- CDN Network
- Is it possible to open a .ppt on a window?
- Enable/Disabling row in a Grid in extjs4
- Combo Box Dirty Field Indicator
- Multiselect combo with typeahead
- Ext.define ins... | https://www.sencha.com/forum/archive/index.php/f-87-p-34.html?s=aa6962fe5093c8f150fedc953cdcc6f1 | CC-MAIN-2020-16 | en | refinedweb |
Remove redundant NOTICE symbolic link. Now that and are in, NOTICE symbolic links are no longer needed. Bug: 67772237 Bug: 68860345 Test: manually built and diffed before and after system image notices Change-Id: I435a659dc8f3b0ae90ead7c7beb60004bda1be33
Header-only library for division via fixed-point multiplication b... | https://android.googlesource.com/platform/external/FXdiv/+/refs/heads/master | CC-MAIN-2020-16 | en | refinedweb |
copy of the vertex positions or assigns a new vertex positions array.
The number of vertices in the Mesh is changed by assigning a vertex array with a different number of vertices. Note that if you resize the vertex array then all other vertex attributes (normals, colors, tangents, UVs) are automatically resized too. ... | https://docs.unity3d.com/ScriptReference/Mesh-vertices.html | CC-MAIN-2020-16 | en | refinedweb |
End-to-End Multilingual Optical Character Recognition (OCR) Solution
Jaided Read
End-to-End Multilingual Optical Character Recognition (OCR) Solution.
Supported Languages
We are currently supporting following 39 languages.
Afrikaans (af), Azerbaijani (az), Bosnian (bs), Czech (cs), Welsh (cy),
Danish (da), German (de),... | https://pythonawesome.com/end-to-end-multilingual-optical-character-recognition-ocr-solution/ | CC-MAIN-2020-16 | en | refinedweb |
Input: [2,3,-2,4]
Output: 6
The Maximum Product Sub-Array problem asks the user to find the subarray with the largest possible product. Sounds, Easy right?
The catch is to calculate the highest product keeping in mind that the array size can vary, as well as the fact that the locations have to be contiguous. This is ex... | https://www.studymite.com/maximum-product-sub-array-problem/?utm_source=related_posts&utm_medium=related_posts | CC-MAIN-2020-16 | en | refinedweb |
Controllers fail during execution when using octomap with Moveit
I'm using MoveIt with the default
RRTConnectkConfigDefault motion planning library. I have a 6 DoF arm to which I pass target poses using roscpp's MoveGroupInterface. I'm using ros_control and have created my own Fake Controllers of the type
FollowJointTr... | https://answers.ros.org/question/289286/controllers-fail-during-execution-when-using-octomap-with-moveit/ | CC-MAIN-2020-16 | en | refinedweb |
Side effects and Pure functions in JS functions
Side effects
Side effects, is when a function is effecting things outside of itself. When any of the inputs or any of the outputs are indirect.
- Indirect input, i.e. was not part of the parameters
- Indirect output i.e. was not returned from the function
A function witho... | https://tldrdevnotes.com/javascript/side-effects/ | CC-MAIN-2020-16 | en | refinedweb |
Handle an _IO_FDINFO message
#include <sys/iofunc.h> int iofunc_fdinfo( resmgr_context_t * ctp, iofunc_ocb_t * ocb, iofunc_attr_t * attr, struct _fdinfo * info ); _fdinfo structure is included in the reply part of a io_fdinfo_t structure; for more information, see the documentation for iofunc_fdinfo_default().
libc
Use... | http://www.qnx.com/developers/docs/7.0.0/com.qnx.doc.neutrino.lib_ref/topic/i/iofunc_fdinfo.html | CC-MAIN-2018-09 | en | refinedweb |
Map a memory region into a process's address space
#include <sys/mman.h> void * mmap( void * addr, size_t len, int prot, int flags, int fildes, off_t off ); void * mmap64( void * addr, size_t len, int prot, int flags, int fildes, off64_t off );
The following are Unix or QNX Neutrino extensions:
For more information, se... | http://www.qnx.com/developers/docs/7.0.0/com.qnx.doc.neutrino.lib_ref/topic/m/mmap.html | CC-MAIN-2018-09 | en | refinedweb |
.In this tutorial, you'll go through a code walkthrough of a Maven project containing a complete Cloud Endpoints backend API and a sample web client that accesses the API. This sample demonstrates many of the core features supported for backend APIs:
- A simple HTTP
GETmethod that retrieves one of two canned responses ... | https://cloud.google.com/endpoints/docs/frameworks/legacy/v1/java/helloendpoints-java-maven | CC-MAIN-2018-09 | en | refinedweb |
Im using an ATMega16 to detect overload current. So it measures the true rms of the current. I read that the ADC can run at 1 Mhz but with 8 bit resolution. I want to take a reading after every cycle of a 50 Hz signal, so
System clock = 8 Mhz, prescaler is 8 so ADC clock is 1 Mhz
Therefore ADC conversion time is = 13 u... | http://www.avrfreaks.net/comment/2319266 | CC-MAIN-2018-09 | en | refinedweb |
Copyright © 2008 Creative Commons. This work is licensed under a Creative Commons Attribution License, v3.0. Please provide attribution to Creative Commons and the URL. It is also available under the W3C Document License. See the W3C Intellectual Rights Notice and Legal Disclaimers for additional information. paper int... | http://www.w3.org/Submission/2008/SUBM-ccREL-20080501/ | CC-MAIN-2018-09 | en | refinedweb |
Using Open XML Schema with .NET
Using Open Elements and Attributes
When an application encounters an XML document that contains some unexpected elements, there are multiple outcomes that you can choose from. If your only requirements are that debugging information be logged during deserialization, you can simply handle... | https://www.developer.com/net/article.php/10916_3396691_2/Using-Open-XML-Schema-with-NET.htm | CC-MAIN-2018-09 | en | refinedweb |
Really Simple Tricks to Speed up Your CLIs 10 Times Using vSphere Java API
I recently had a short discussion with my colleague on implementing CLIs with vSphere Java API. One problem is that if you have multiple commands to run, each of them connects to the server and authenticate over and over. You’d better remember t... | http://www.doublecloud.org/2010/10/really-simple-tricks-to-speed-up-your-clis-10-times-using-vsphere-java-api/ | CC-MAIN-2018-09 | en | refinedweb |
Ingo Molnar wrote:>> +static inline pmd_t native_make_pmd(unsigned long long val)>> +{>> + return (pmd_t) { val };>> +}>> +static inline pte_t native_make_pte(unsigned long long val)>> +{>> + return (pte_t) { .pte_low = val, .pte_high = (val >> 32) } ;>> +}>> >> missing newlines between inline functions.> OK.>> +#ifnde... | https://lkml.org/lkml/2007/3/16/302 | CC-MAIN-2018-09 | en | refinedweb |
CPA 2011
a. Spontaneous Financing
b. Spontaneous financing is the amount of working capital that arises naturally in the ordinary course of business without the firm's financial managers needing to take deliberate action.
c. Trade credit arises when a company is offered credit terms by its suppliers.
d. Accrued expense... | https://quizlet.com/5202232/chapter-8-2011-bec-flash-cards/ | CC-MAIN-2015-48 | en | refinedweb |
Amit is a technical architect in Software Engineering and Technology Labs at Infosys Technologies and can be reached at chaturvedi_a@infosys.com.
Error detection in software is usually done via code reviews, unit testing, system testing, integration testing, and user-acceptance testing. The first possible error-detecti... | http://www.drdobbs.com/jvm/java-static-analysis/184406143 | CC-MAIN-2015-48 | en | refinedweb |
This action might not be possible to undo. Are you sure you want to continue?
11/19/2011
text
original
discovering Maven while searching for a simpler way to define a common build process across projects. specializing in open source consulting. published by O'Reilly in 2005 (ISBN 0-596-00750-7). Jason van Zyl: Jason va... | https://pt.scribd.com/doc/66655570/47487031-BetterBuildsWithMaven | CC-MAIN-2015-48 | en | refinedweb |
Hi, I am a C newbie. My first project is to model my guitar (strings + frets = notes) in C and then write algorithms to create music. This post attempts a simple for loop to assign a char array containing musical letters (i.e., E, F, F#...n) to another char array of 19 possible notes on my bottom (i.e., low) E string.
... | http://cboard.cprogramming.com/c-programming/116576-c-guitar-printable-thread.html | CC-MAIN-2015-48 | en | refinedweb |
Library: General utilities
Does not inherit
Base class for creating binary function objects
#include <functional> namespace std { C++ Standard function objects by inheriting from binary_function.
Function Objects, unary_function, and Section 3.2, "Function Objects," in the User's Guide
ISO/IEC 14882:1998 -- Internation... | http://stdcxx.apache.org/doc/stdlibref/binary-function.html | CC-MAIN-2015-48 | en | refinedweb |
Next: Display Tables, Up: Character Display [Contents][Index]
Here are the conventions for displaying each character code (in the absence of a display table, which can override these conventions; see Display Tables).
tab-widthcontrols the number of spaces per tab stop (see below).
ctl-arrow. If this variable is non-
ni... | http://www.gnu.org/software/emacs/manual/html_node/elisp/Usual-Display.html | CC-MAIN-2015-48 | en | refinedweb |
Details
Description
I have a contrib:tableRows component that binds the EvenOdd class like this:
<component id="tableRows" type="contrib:TableRows">
<binding name="class" expression="beans.evenOdd.next"/>
<binding name="row" expression="currentRow"/>
</component>
However the evenOdd class was never getting instantiated... | https://issues.apache.org/jira/browse/TAPESTRY-403 | CC-MAIN-2015-48 | en | refinedweb |
Re: The Sundowners: "Always You"
Expand Messages
- Below is what I found in 5 minutes of "Googling". Apart
from the "Always You" track appearing on several
compilations and the Rev-Ola label CD listed below,
there is also a 12minute and 28 second performance by
the Sundowners on the Monkees tour in which they
perform a... | https://groups.yahoo.com/neo/groups/spectropop/conversations/topics/45596 | CC-MAIN-2015-48 | en | refinedweb |
Initializes a Slapi_Mod structure that is a wrapper for an existing LDAPMod.
#include "slapi-plugin.h" void slapi_mod_init_byref(Slapi_Mod *smod, LDAPMod *mod);
This function takes the following parameters:
Pointer to an uninitialized Slapi_Mod.
This function initializes a Slapi_Mod containing a reference to an LDAPMod... | http://docs.oracle.com/cd/E19693-01/819-0996/aaijc/index.html | CC-MAIN-2015-48 | en | refinedweb |
Namespaces are obsolete
To those of us who have been around for a while, namespaces have been part of the landscape. One could even say that they have been defining the large-scale features of the landscape in question.
However, something happened fairly recently that I think makes this venerable structure obsolete. Be... | http://weblogs.asp.net/bleroy/namespaces-are-obsolete | CC-MAIN-2015-48 | en | refinedweb |
Processing Image Pixels, Color Intensity, Color Filtering, and Color Inversion
Java Programming, Notes # 406
- Preface
- Background Information
- Preview
- Discussion and Sample Code
- Communication between the Programs
- Run the Programs
- Summary
- What's Next
- Complete Program Listings
Preface
Fourth in a series
Th... | http://www.developer.com/java/other/article.php/3512456/Processing-Image-Pixels-Color-Intensity-Color-Filtering-and-Color-Inversion.htm | CC-MAIN-2015-48 | en | refinedweb |
Tech Tips index
May 21, 1998
This issue presents tips, techniques, and sample code for the following topics:
Temporary Files
In programming applications you often need to use temporary files --
files that are created during program execution to hold transient information.
A typical case is a language compiler that uses... | http://java.sun.com/developer/TechTips/1998/tt0521.html | crawl-002 | en | refinedweb |
Articles Index
Applets fuelled Java technology programming.
Applet:
.JNLP:
SimpleExample
SimpleExample.jnlp
<?xml version="1.0" encoding="utf-8"?>
<!-- JNLP File for SimpleExample Application -->.
codebase
<information>
</information>
Having created the .JNLP file, create the SimpleExample.html file used to launch the ... | http://java.sun.com/developer/technicalArticles/JavaLP/javawebstart/ | crawl-002 | en | refinedweb |
..JSR 41 has added a simple assertion facility to Java. In the proposed final draft, assert statements have one of two forms:
assert Expr_1;
assert Expr_1:Expr_2;
Both of these forms, with and without parentheses around Expr_1 and Expr_2, are recognized by javac when the "-source 1.4" flag is used. However, javadoc (St... | http://bugs.sun.com/bugdatabase/view_bug.do%3Fbug_id=4492054 | crawl-002 | en | refinedweb |
#include <hallo.h> * Wichert Akkerman [Mon, Nov 11 2002, 12:12:24PM]: > > Boot-floppies drop the name of the selected network card in there to > > have the module loaded, so I'd call /etc/modules pretty vital for the > > current mode of operation in Debian. > > In that case boot-floppies are buggy, they should do somet... | http://lists.debian.org/debian-devel/2002/11/msg00738.html | crawl-002 | en | refinedweb |
> 2DCAD_duojiemian.rar > Math.h
// The following ifdef block is the standard way of creating macros which make exporting // from a DLL simpler. All files within this DLL are compiled with the MATH_EXPORTS // symbol defined on the command line. this symbol should not be defined on any project // that uses this DLL. Thi... | http://read.pudn.com/downloads47/sourcecode/windows/console/157695/2DCAD/Math.h__.htm | crawl-002 | en | refinedweb |
> ucos+net.zip > InetAddr.h
/***************************************************************************** * InetAddr.h - * *. * * portions Copyright (c) 2001 by Cognizant Pty Ltd. * * The authors hereby grant permission to use, copy, modify, distribute, * and license this software and its documentation for any purpos... | http://read.pudn.com/downloads12/sourcecode/os/51266/ucos-ii_vc/m-ix86pm/MyTask/inc/InetAddr.h__.htm | crawl-002 | en | refinedweb |
> firev0.01.rar > interpolimg _INTERPOLBASEIMG_H #define _INTERPOLBASEIMG_H #include "image.hpp" #ifdef __HAVE_INTERPOLATION_STUFF__ #include "interpol.h" #include "coeff.h" #endif #include "diag.hpp" using namespace std; using namespace diag; namespace img { ///class to give interpolated values for between pixel poin... | http://read.pudn.com/downloads9/sourcecode/graph/34944/firev0.01/fire-v0.01/interpolimg.hpp__.htm | crawl-002 | en | refinedweb |
> ffmpeg_win32.rar > mpegaudiodecheader.h
/* * MPEG Audio header decoder *audiodecheader.c * MPEG Audio header decoder. */ #ifndef FFMPEG_MPEGAUDIODECHEADER_H #define FFMPEG_MPEGAUDIODECHEADER_H #include "common.h" #include "mpegaudio.h" /* header decoding. MUST check the header before because no consistency check is ... | http://read.pudn.com/downloads100/sourcecode/windows/multimedia/408202/ffmpeg_win32/libavcodec/mpegaudiodecheader.h__.htm | crawl-002 | en | refinedweb |
> Cimage.zip > GIFDECOD. * */ #define LOCAL static #define FAST register typedef short SHORT; // 16 bits integer typedef unsigned short USHORT; // 16 bits unsigned integer typedef unsigned char byte; // 8 bits unsigned integer typedef unsigned long ULONG; // 32 bits unsigned integer typedef int INT; // 16 bits integer... | http://read.pudn.com/downloads/sourcecode/graph/1410/CIMAGE/GIFDECOD.H__.htm | crawl-002 | en | refinedweb |
One).
I'd argue that $54 is the ridiculous price, not $16.49
well when Scott Hanselman posted on Twitter last night that the book was going for so cheap I had to try and order it and to my surprise, Amazon are shipping to South Africa again so I'm stoked! Can't wait for it to arrive!
You've been kicked (a good thing) -... | http://weblogs.asp.net/scottgu/archive/2008/05/06/professional-asp-net-3-5-book-only-16-on-amazon-for-a-short-time.aspx | crawl-002 | en | refinedweb |
In this tip, I demonstrate how you can create LINQ to SQL entities that do not contain any special attributes. I show you how you can use an external XML file to map LINQ to SQL entities to database objects.
In this tip, I demonstrate how you can create LINQ to SQL entities that do not contain any special attributes. I... | http://weblogs.asp.net/stephenwalther/archive/2008/07/22/asp-net-tip-23-use-poco-linq-to-sql-entities.aspx | crawl-002 | en | refinedweb |
Usage
Signature:
final class AsyncDateTimeRangeValidator<V> implements AsyncValidator<V>
Typescript Import Format
//This class is exported directly as module. To import it
import AsyncDateTimeRangeValidator= require("ojs/ojasyncvalidator-datetimerange");
For additional information visit:
Final classes in JET
Classes in... | https://www.oracle.com/webfolder/technetwork/jet/jsdocs/AsyncDateTimeRangeValidator.html | CC-MAIN-2021-10 | en | refinedweb |
Serializing DateTime into JSON
In my current project I ran into the requirement of serializing an object with a DateTime property into Json, specifically through the Json() method of the Controller class. I can't say it serialized pretty well though.
From a DateTime value that looks like this in SQL server:
2013-06-05 ... | https://www.ojdevelops.com/2013/06/serializing-datetime-into-json.html | CC-MAIN-2021-10 | en | refinedweb |
The articulation body the collider is attached to.
Returns null if the collider is attached to no articulation body.
Colliders are automatically connected to the articulation body attached to the same game object or attached to any parent game object.
using UnityEngine;
public class Example : MonoBehaviour { void Start... | https://docs.unity3d.com/kr/2020.1/ScriptReference/Collider-attachedArticulationBody.html | CC-MAIN-2021-10 | en | refinedweb |
This tutorial explains what is Python Lambda Function, how and when to use it with examples. Also compares Regular and Lambda functions:
Anonymous function, the term commonly used in computer programming, also known as lambda function has been a feature of many programming languages since 1958, originating in the inven... | https://www.softwaretestinghelp.com/python-lambda-function/ | CC-MAIN-2021-10 | en | refinedweb |
Location Is Everything: Getting Into ArcGIS in 5 Minutes
all data has a location if you look hard enough to all the thoughts in your brain (yet).
They don’t know “all that’s on your mind”. But analyzing your GPS data, search history (they own Instagram, remember) and yes, listening through your phone’s microphone is en... | https://medium.com/swlh/location-is-everything-getting-into-arcgis-in-5-minutes-aec9b0a6b1c | CC-MAIN-2021-10 | en | refinedweb |
curl / libcurl / API / curl_easy_setopt / CURLOPT_POSTFIELDSIZE
CURLOPT_POSTFIELDSIZE explained
NAME
CURLOPT_POSTFIELDSIZE - size of POST data pointed to
SYNOPSIS
#include <curl/curl.h>
CURLcode curl_easy_setopt(CURL *handle, CURLOPT_POSTFIELDSIZE, long size);
DESCRIPTION
If you want to post data to the server without ... | https://curl.se/libcurl/c/CURLOPT_POSTFIELDSIZE.html | CC-MAIN-2021-10 | en | refinedweb |
PROBLEM LINK:
Practice
Div-2 Contest
Div-1 Contest
Author & Editorialis: Vasyl Protsiv
Tester: Istvan Nagy
DIFFICULTY:
Simple
PREREQUISITES:
Number theory
PROBLEM:
For an array a of size N let’s construct array B of size N as follows:
B_i = max \space j such that A_i divides A_j. (1 \le j \le N)
Given array B that was ... | https://discuss.codechef.com/t/restore-editorial/79945 | CC-MAIN-2021-10 | en | refinedweb |
Before Python 2.6 there was no explicit way to declare an abstract class. It changed with the
abc (Abstract Base Class) module from the standard library.
abc module
abc module allows to enforce that a derived class implements a particular method using a special
@abstractmethod decorator on that method.
from abc import ... | https://zaiste.net/posts/abstract-classes-python/ | CC-MAIN-2021-10 | en | refinedweb |
As you recall from the previous blog post, I’d installed Unity and JetBrains on my Fedora 32 computer via Flatpaks. I was going to use them for the Unity Multiplayer course I was taking on Udemy. Unfortunately it was an immediate fail and in lesson one after they have me install a new inputs library and restart Unity, ... | http://www.ericsbinaryworld.com/page/4/ | CC-MAIN-2021-10 | en | refinedweb |
Hide Forgot
python-http-client fails to build with Python 3.10.0a4.
=================================== FAILURES ===================================
________________________ DateRangeTest.test__daterange _________________________
self = <tests.test_daterange.DateRangeTest testMethod=test__daterange>
def test__daterange... | https://bugzilla.redhat.com/show_bug.cgi?id=1914225 | CC-MAIN-2021-10 | en | refinedweb |
Qt SQL C++ Classes
Provides a driver layer, SQL API layer, and a user interface layer for SQL databases. More...
Namespaces
Classes
Detailed Description
To include the definitions of the module's classes, use the following directive:
#include <QtSql>
To link against the module, add this line to your qmake
.pro file:
QT... | https://doc.qt.io/archives/qt-5.9/qtsql-module.html | CC-MAIN-2021-10 | en | refinedweb |
public class Singleton { private static final Singleton INSTANCE = new Singleton(); private Singleton() {} public static Singleton getInstance() { return INSTANCE; } }
It can be argued that this example is effectively lazy initialization. Section 12.4.1 of the Java Language Specification states:
- T is a top level clas... | https://riptutorial.com/java/example/5070/singleton-without-use-of-enum--eager-initialization- | CC-MAIN-2021-10 | en | refinedweb |
Froala Editor alternatives and similar libraries
Based on the "Editors" category.
Alternatively, view Froala Editor alternatives based on common mentions on social networks and blogs.
vuetify9.6 9.8 Froala Editor VS vuetify🐉 Material Component Framework for Vue
quill9.5 5.0 L5 Froala Editor VS quillA cross browser ric... | https://js.libhunt.com/wysiwyg-editor-alternatives | CC-MAIN-2021-10 | en | refinedweb |
Hi,I digged around HPSF and found the following bug. Word 8.0/97 docs
DocumentSummaryInformation have 2 sections, but getCategory() (Category is
located within the section with index 0) (implicitly) calls GetSingleSection()
which throws an exception if sectionCount != 1. Word 6.0/95 has single section
and this works fi... | https://bz.apache.org/bugzilla/show_bug.cgi?id=14734 | CC-MAIN-2020-29 | en | refinedweb |
IDEA-64675 (Bug)
Add Framework - groovy - Can't add Framework - Ok Button isn't active
WI-4899 (Bug)
Smarty 3: Escapes not recognized in strings
IDEA-64179 (Bug)
User Interface hangs during editing with Background Indexing
IDEA-64521 (Bug)
Good CSS highlighted red
IDEA-64916 (Exception)
Cannot open JSPx files: java.lan... | https://confluence.jetbrains.com/display/IDEADEV/IDEA+X+103.59+Release+Notes | CC-MAIN-2020-29 | en | refinedweb |
By Loc Q Nguyen, published on December 15 , 2016
Message Passing Interface (MPI) is a standardized message-passing library interface designed for distributed memory programming. MPI is widely used in the high-performance computing (HPC) domain because it is well-suited for distributed memory architectures.
Python* is a... | https://software.intel.com/content/www/us/en/develop/articles/code-sample-exploring-mpi-for-python-on-intel-xeon-phi-processor.html | CC-MAIN-2020-29 | en | refinedweb |
I looked and there are offtheshelfe solution, but they are rather expensive and not as fun to build as a RPi setup
So I have the newest RPi and bought the PiCam.
I found this project : and had a go with the code.
Except for a small problem with the Print statement, I got it working.
The RPi setup will be left unattende... | https://www.raspberrypi.org/forums/viewtopic.php?f=91&t=160412&p=1040356 | CC-MAIN-2020-29 | en | refinedweb |
3 Ways improve Redux Reducers
- 2021
Improving Redux Reducers in 3 Ways. Below is a simple `switch` statement that you probably have seen in 99% of the Redux/reducers examples out there.
In this article, I am going to assume you know what Redux is and what the reducers do.
I will go over how to improve your Redux reduc... | https://geekwall.in/p/T7WR9-8N/3-ways-improve-redux-reducers | CC-MAIN-2020-29 | en | refinedweb |
Having a problem understanding the difference between ruby blocks, procs and lamdas. What are blocks? What is the difference between procs and lambdas? Lets break this down.
BLOCKS
A block is a collection of code enclosed in a do / end statement or between braces { }. They are chunks of code that you can pick up and dr... | https://medium.com/podiihq/ruby-blocks-procs-and-lambdas-bb6233f68843 | CC-MAIN-2020-29 | en | refinedweb |
1. What is the list view?
Answer:.
2. What is Inline editing?
Answer: On the detail page without clicking on the edit button we can edit a particular field if it is not read-only.
3. Explain the term “Data Skew” in Salesforce?
Answer: .
4. Explain the skinny table. What are the considerations for Skinny Table?.
5. Ment... | https://svrtechnologies.com/salesforce-interview-questions-and-answers/ | CC-MAIN-2020-29 | en | refinedweb |
Message for a Key eXchange for a tunnel, with authentication. More...
#include </home/handbook/gnunet/src/cadet/cadet_protocol.h>
Message for a Key eXchange for a tunnel, with authentication.
Used as a response to the initial KX as well as for rekeying.
Definition at line 291 of file cadet_protocol.h.
Message header wi... | https://docs.gnunet.org/doxygen/d5/d6f/structGNUNET__CADET__TunnelKeyExchangeAuthMessage.html | CC-MAIN-2020-29 | en | refinedweb |
I have a mockservice that listens on port 80 and receive the JSON callback from a API server. Rightnow im using the below code in OnrRequest script to get the response and assign it to a project's property like below.
mockRunner.mockService.project.setPropertyValue("ResponseBody",requestBody)
In the testsuite, i poll f... | https://community.smartbear.com/t5/SoapUI-Open-Source/Add-the-responses-to-a-list-in-Mockservice-s-OnRequestScript-and/td-p/192617 | CC-MAIN-2020-34 | en | refinedweb |
Original article was published on Deep Learning on Medium
(W-ROV)Webserver Remotely Operated Vehicle Observation-Class I, Deep Learning Enabled Python, Github Code Included
Story
On this tutorials we explore:
In this tutorial, we will combine what we have learned before, controlling our camera position through the inte... | https://mc.ai/w-rovwebserver-remotely-operated-vehicle-observation-class-i-deep-learning-enabled-python/ | CC-MAIN-2020-34 | en | refinedweb |
Technical Support
On-Line Manuals
RL-ARM User's Guide (MDK v4)
#include <net_config.h>
void modem_init (void);
The modem_init function initializes the modem driver. The
function:
The modem_init function for the null modem is in the
RL-TCPnet library. The prototype is defined in net_config.h. If you
want to use a standa... | https://www.keil.com/support/man/docs/rlarm/rlarm_modem_init.htm | CC-MAIN-2020-34 | en | refinedweb |
Strongly customizable React component helping you make animated background
View Demo · Report Bug · Request Feature
Getting StartedGetting Started
This component has been built to help you create customizable animated background. You can provide a list of colors, decide how long each color should be visible, set animat... | https://preview.npmjs.com/package/react-animated-bg | CC-MAIN-2020-34 | en | refinedweb |
read24 - Server: Administrating Students
July 24, 2020
I will begin by implementing the logic to administrate students first. To remind myself, here are the routes that will be needing some shiny new code:
GET /admin/classroom/:classroomId/students POST /admin/classroom/:classroomId/students PUT /admin/classroom/:class... | http://rogerngo.com/article/20200724_110_read24_administrating_students/ | CC-MAIN-2020-34 | en | refinedweb |
Generate a pseudo-random nonnegative long integer in a thread-safe manner
#include <stdlib.h> long nrand48( unsigned short xsubi[3] );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The nrand48() function uses a linear congruential algorithm and 48-bit inte... | http://www.qnx.com/developers/docs/6.3.0SP3/neutrino/lib_ref/n/nrand48.html | CC-MAIN-2020-34 | en | refinedweb |
Since the advent of Node.js in 2009, everything we knew about JavaScript changed. The seemingly dying language made a phoenix-like comeback, growing to become the most popular language in the world.
JavaScript was earlier seen as a web-browser’s language, but Node.js came and made it server-side. In essence, Node.js al... | https://www.zeolearn.com/magazine/step-by-step-guide-to-deploy-react-component-as-an-npm-library | CC-MAIN-2020-34 | en | refinedweb |
# 4. Integrate file upload
Our API is starting to look great now that we can add new stories. But it would be even better if we could attach some cute pictures to our stories, right?
# Set up storage account access
You already created a storage account in Step 2, so you now have to generate an access token to allow our... | https://black-cliff-0123f8e1e.azurestaticapps.net/step4/ | CC-MAIN-2020-34 | en | refinedweb |
C# 6.0 Features Series
- How to try C# 6.0 and Rosyln?
- Getter-only (Read Only) Auto Properties in C# 6.0
- Lambda and Getter Only Auto-Properties in C# 6.0
- Initializers for Read-Only Auto Properties in C# 6.0
- Initializers via Expression Auto Properties in C# 6.0
- C# 6.0 – A field initializer cannot reference the... | https://developerpublish.com/expression-bodies-on-methods-returning-void-in-c-6-0/ | CC-MAIN-2020-34 | en | refinedweb |
import "github.com/nanobox-io/golang-scribble"
Package scribble is a tiny JSON database
Version is the current version of the project
Driver is what is used to interact with the scribble database. It runs transactions, and provides log output
New creates a new scribble database at the desired directory location, and re... | https://godoc.org/github.com/nanobox-io/golang-scribble | CC-MAIN-2020-34 | en | refinedweb |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.