text
stringlengths
20
1.01M
url
stringlengths
14
1.25k
dump
stringlengths
9
15
lang
stringclasses
4 values
source
stringclasses
4 values
The QImageReader class provides a format independent interface for reading images from files or other devices. More... #include <QImageReader> Note: All the functions in this class are reentrant.. See also QImageWriter, QImageIOHandler, and QImageIOPlugin.(). Destructs the QImageReader object. sequence number of the cu...
https://doc.qt.io/archives/4.3/qimagereader.html
CC-MAIN-2019-26
en
refinedweb
I have a list of complex numbers for which I want to find the closest value in another list of complex numbers. My current approach with numpy: import numpy as np refArray = np.random.random(16); myArray = np.random.random(1000); def find_nearest(array, value): idx = (np.abs(array-value)).argmin() return idx; for value...
https://codedump.io/share/733sPpwaK8g0/1/find-nearest-indices-for-one-array-against-all-values-in-another-array---python--numpy
CC-MAIN-2019-26
en
refinedweb
Safety-certified tools Tools for Automotive Applications C-STAT Static analysis C-RUN Runtime analysis Debugging and trace probes To optimize system performance, it is important to have tools to monitor the application performance. High-end ARM processors based on Cortex-A and Cortex-R include Performance Monitor Unit ...
https://www.iar.com/support/resources/articles/monitor-performance-in-arm-cortex-a-from-your-code/
CC-MAIN-2019-26
en
refinedweb
We are building a WebApi that we're hosting using Owin. Previously we've used HttpResponseException for returning 404 status codes etc. in our controller actions and it's been working well. However, when we started working with Owin (self hosted) we're experiencing an issue with this approach resulting in the HttpRespo...
https://codedump.io/share/sCcW4JpT5EVG/1/throwing-httpresponseexception-from-webapi-controller-when-using-owin-self-host
CC-MAIN-2019-26
en
refinedweb
umem: umalog shows free calls on memory not previously alloced?!user8840798 Dec 3, 2013 6:37 AM We have a java webapp that has a problem with a native memory leak (not a java heap leak). At some point the process balloons to almost 4GB in size and we experience issues creating new threads. I was hoping to use umem to h...
https://community.oracle.com/thread/2609430
CC-MAIN-2017-51
en
refinedweb
sorry for this noob question... let's say we have : class TestMe attr_reader :array def initialize @array = (1..10).to_a end >> a = TestMe.new => #<TestMe:0x00000005567228 @x=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]> >> a.array.map! &:to_s => ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10"] >> a.array => ["1", "2", "3", "4",...
https://codedump.io/share/GgeMsKI88oop/1/ruby--how-to-prevent-modification-of-an-array-instance-variable-through-an-attribute-reader
CC-MAIN-2017-51
en
refinedweb
I am trying to run a small bash script inside a QT application which contains an if-test-then block and the necessary quotes inside the test. As the script should be compiled by QT and run by bash, the quotes have to be escaped twice, so the escaping backslashes for the quotes have to be escaped also, as I see it. Unfo...
https://codedump.io/share/jabNmOPdFODH/1/qt-program-containing-a-bash-script-with-an-if-test-then-block-and-the-escaped-necessary-quotes-inside-issues-error
CC-MAIN-2017-51
en
refinedweb
I have imported an Existing Java Application into my Workspace . I see that , a class with same name is present in different packages with in the Application. For example a class named "Status.java" is present with in com.tata.model.common.Status; com.bayer.frontlayer.dao.Status; import com.tata.model.common.Status; im...
https://codedump.io/share/nrGlrqDMEFv5/1/java--the-import-collides-with-another-import-statement
CC-MAIN-2017-51
en
refinedweb
Overview Run IBM® MQ in a Docker container. By default, the supplied Dockerfile runs IBM MQ for Developers, but also works for IBM MQ. The source can be found on the ibm-messaging GitHub. There's also a short demo video available. Preparing your Docker host It is necessary to configure operating settings on your Docker...
https://hub.docker.com/r/anoopnair/ibm-mq-debian/
CC-MAIN-2017-51
en
refinedweb
If you take the hello world example, and add a time.sleep(5) at the beginning... like this: ----- import time from mod_python import apache def handler(req): time.sleep(5) req.content_type = "text/plain" req.write("Hello World!") return apache.OK ----- Then request that URL twice, it seems that the second one doesn't s...
http://modpython.org/pipermail/mod_python/2006-July/021657.html
CC-MAIN-2017-51
en
refinedweb
Not to self about mapM. Is it lazy? Sort of. Literate source is here:. First, some imports: > {-# LANGUAGE OverloadedStrings, InstanceSigs #-} > > import Control.Applicative > import Control.Monad > import qualified Data.ByteString as B > import Data.ByteString.Internal (w2c) > import Data.Either I recently wrote some ...
https://carlo-hamalainen.net/2014/10/
CC-MAIN-2017-51
en
refinedweb
Using Filters in Code Completion ReSharper allows you to filter completion suggestions by kind of symbol, access modifiers, etc. You can modify the set of applied filters each time the code completion is invoked and/or choose to keep the state of filters. By default, ReSharper shows filters bar at the bottom of the com...
https://www.jetbrains.com/help/resharper/2017.3/Using_Filters_in_Code_Completion.html
CC-MAIN-2017-51
en
refinedweb
Can VB 6 and VB.NET forms coexist? Time and money are two of the biggest reasons developers don't migrate VB 6 applications. A toolkit due later this year will let VB 6 and VB.NET forms coexist. This Article Covers .NET 2.0 and VS 2005 Tech Ed 2006, SearchVB.com attended several breakout sessions focused on Visual Basi...
http://searchwindevelopment.techtarget.com/news/1195714/Can-VB-6-and-VBNET-forms-coexist
CC-MAIN-2017-51
en
refinedweb
This comes as a surprise to me. I thought that: Xup, Xdown, Yup, Ydown and Zup, Zdown meant 6 'lots' of data. The XY and Z are clearly printed on the board: HERE ARE IMAGES OF CALIBRATION RIGLSM303D is in the middle very near the middle of the big wooden pivoting 'arm', pivots on a clear acetate sheet over a printed co...
https://forum.pololu.com/t/lsm303d-tilt-compensation-problem/11611/84
CC-MAIN-2017-51
en
refinedweb
Earlier in the year I wrote about using Bridge.net to write browser-based applications using React. Well, now, I'd like to present an update to that. I've changed how the base Component class ties into the React library (this is a class that may be derived from in order to create custom React components) - it now suppo...
http://www.productiverage.com/Archive/11/2015
CC-MAIN-2017-13
en
refinedweb
This post is about the second SWC of my “dreamed up” Flex SDK for JavaScript, browser.swc. In a nutshell, I want to put the main framework class, core JavaScript library class wrapper, and browser DOM API wrapper into browser.swc. Framework class When you start building a Flex SDK in ActionScript you will quickly reali...
http://blogs.adobe.com/bparadie/2012/01/14/wrapping-native-javascript-libraries-in-actionscript/
CC-MAIN-2017-13
en
refinedweb
Created on 2009-08-23 17:46 by carlosdf, last changed 2016-09-08 13:13 by berker.peksag. This issue is now closed. It's not possible to modify a dict inside a dict using a manager from multiprocessing. Ex: from multiprocessing import Process,Manager def f(d): d['1'] = '1' d['2']['1'] = 'Try To Write' if __name__ == '__...
https://bugs.python.org/issue6766
CC-MAIN-2017-13
en
refinedweb
POSIX_TRACE_TRYGETNEXT_EVENT(3P)Programmer'sPManualRACE_TRYGETNEXT_EVENT(3P) This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface may differ (consult the corresponding Linux manual page for details of Linux behavior), or the interface may not be implemented on Linux. pos...
http://man7.org/linux/man-pages/man3/posix_trace_trygetnext_event.3p.html
CC-MAIN-2017-13
en
refinedweb
Hi, Advertising Recently, gateways have clamped down on malformed message bodies that contain single LF instead of the proper CF/LF mandated by RFCs: 2.1 "A line is a series of characters that is delimited with the two characters carriage-return and line-feed; that is, the carriage return (CR) character (ASCII value 13...
http://www.mail-archive.com/declude.junkmail@declude.com/msg33647.html
CC-MAIN-2017-13
en
refinedweb
Earlier this year I was introduced by someone I work with to AutoMapper. At a very convenient time it turned out since I was in the middle of a couple of projects that I had to do a lot of run-of-the-mill gluing together of request between web services where there were very similar object models in play but which came ...
http://www.productiverage.com/Archive/3/2011
CC-MAIN-2017-13
en
refinedweb
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. [8.0] Computed field with bulk write In official documentation, we have the following example for computed fields : total = field...
https://www.odoo.com/forum/help-1/question/8-0-computed-field-with-bulk-write-87506
CC-MAIN-2017-13
en
refinedweb
#include <Pt/Unit/Test.h> Inherits NonCopyable. Inherited by Application [private], TestCase, TestMethod, and TestSuite. This is the base class for all types of tests that can be registered and run in a test application. It provides a virtual method run that is overriden by the derived classes and signals to inform abo...
http://pt-framework.org/htdocs/classPt_1_1Unit_1_1Test.html
CC-MAIN-2017-13
en
refinedweb
After adding the Structured Queries functionality to my Full Text Indexer project I've been looking back at the mechanism for matching runs of tokens - eg. matching "penguins are the best" not just to results that contain the words "penguins", "are", "the", "best" but results that contain them in a string, as a run of ...
http://www.productiverage.com/Archive/3/2013
CC-MAIN-2017-13
en
refinedweb
. @script RequireComponent(AudioSource) public var clip : AudioClip; //make sure you assign an actual clip here in the inspector function Start() { AudioSource.PlayClipAtPoint(clip, new Vector3 (5, 1, 2)); } using UnityEngine; using System.Collections; [RequireComponent(typeof(AudioSource))] public class ExampleClass :...
https://docs.unity3d.com/ScriptReference/AudioSource.PlayClipAtPoint.html
CC-MAIN-2017-17
en
refinedweb
java inheritance : example for overriding what is the output of below Java program. class Parent{ public void getBike(){ System.out.println("Suzuki bike"); } } class Child extends Parent{ public void getBike(){ System.out.println("Apache bike"); } public void getCar(){ System.out.println("Swift car"); } } public class ...
http://skillgun.com/question/2889/java/inheritance/java-inheritance-example-for-overriding-what-is-the-output-of-below-java-program-class-parent-public-void-getbike-systemoutprintlnsuzuki-bike-class-child-extends-parent-public-void-getbike-systemoutprintlnapache-bike-public-void-getcar-systemoutprin
CC-MAIN-2017-17
en
refinedweb
Microsoft promotes SQL Server as the database for your .NET applications, but with Oracle’s strong presence, you will undoubtedly need to utilize Oracle data in a .NET application. Oracle data was accessible in ADO.NET, using generic OLE-DB providers, but performance lagged behind that of SQL Server’s managed provider....
http://www.techrepublic.com/article/access-oracle-data-with-nets-new-managed-provider/
CC-MAIN-2017-17
en
refinedweb
Carsten Langgaard wrote: > Ralf Baechle wrote: > > > On Mon, Aug 05, 2002 at 03:04:13PM +0200, Carsten Langgaard wrote: > > > > > Ok, I finally figured out what the problem is. > > > The attached patch fix the problems, please apply. > > > > Applied, along with the 64-bit and 2.5 bits your patch was missing. > > > Anot...
https://www.linux-mips.org/archives/linux-mips/2002-08/msg00040.html
CC-MAIN-2017-17
en
refinedweb
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. Multi-step relations in computed fields (v8) I'm trying to add a field to stock.picking that would compute the set of packages cr...
https://www.odoo.com/forum/help-1/question/multi-step-relations-in-computed-fields-v8-87062
CC-MAIN-2017-17
en
refinedweb
I wanted to create something that took advantage of the 3d world available in Minecraft and decided to see if I could make some 3d fractals. Fractals are repeating patterns which when observed at different scales appear the same - I know that sounds like rubbish, but that's what they are! These are the 3d fractal tree'...
http://www.stuffaboutcode.com/2014/07/minecraft-fractal-trees.html
CC-MAIN-2017-17
en
refinedweb
Hi I have a sequence that I want to put into a seperate function: The variables I want to take into that function and back to the main function are declared globally. declaring the function and the testing variable: void sanction (); int test[10]; my main function: int main(int argc, char *argv[]) { test[10] = 10; prin...
https://www.daniweb.com/programming/software-development/threads/71811/function-question
CC-MAIN-2017-17
en
refinedweb
Here is the code filling data with enterprise library. First Create a Type dataset in the visual studio dataset called 'crystal'. Then create a data table via right click add datatable called script.create columns you require. and then first import following name space using directives. using Microsoft.Practices.Enterp...
http://www.dotnetjalps.com/2007/03/filling-typed-dataset-with-enterprise.html
CC-MAIN-2017-43
en
refinedweb
Nice. It would be nice if we could just say systemctl start minidlna and have it work. Could you please drop the User= line from the service file or fix it some other way. E.g. the official minidlna package creates a new `minidlna` user. That code could just be copied wholesale to this package if desired. Search Criter...
https://aur.archlinux.org/packages/readymedia-transcode-git/
CC-MAIN-2017-43
en
refinedweb
Capturing the view close "x" - polymerchm So, can you capture the event of the "x" in the upper left hand corner of a presented ui.view being touched to allow for a cleanup before the whole script stops? I tried the obvious "finally", but that didn't fire, only the console upper right hand X did that. Two techniques to...
https://forum.omz-software.com/topic/1495/capturing-the-view-close-x
CC-MAIN-2017-43
en
refinedweb
The String class represents character strings. A quoted string constant can be assigned to a String variable. String literals in Java are specified by enclosing a sequence of characters between a pair of double quotes. In Java strings are actually object types. The following code declares String type variable with Java...
http://www.java2s.com/Tutorials/Java/Java_Language/2050__Java_String.htm
CC-MAIN-2017-43
en
refinedweb
I'm primarily a vanilla C programmer, so I never really thought about this before, but when programming in C++, should you attempt to remain as C++-only as possible? Or is the use of C functions in C++ perfectly ok? For example, I'm rather used to explicitly declaring my char arrays and using strcpy etc on them, as opp...
https://cboard.cprogramming.com/cplusplus-programming/124442-mixing-c-cplusplus-code.html
CC-MAIN-2017-43
en
refinedweb
Animation and Transitions in Qt Quick Animation and Transitions Types - Transition - Animates transitions during state changes - SequentialAnimation - Runs animations sequentially - ParallelAnimation - Runs animations in parallel - Behavior - Specifies a default animation for property changes - PropertyAction - Sets im...
http://doc.qt.io/qt-5/qtquick-statesanimations-animations.html
CC-MAIN-2017-43
en
refinedweb
So I’m upgrading my app from Rails 1.2.6 to Rails 2.1.2. I have a complex find statement that worked in 1.2.6 and isn’t working in 2.1.2. I think maybe this is a bug, although maybe there’s something else I could be doing to work-around it? My find statement involves: - Models in a module for namespace purposes - a joi...
https://www.ruby-forum.com/t/rails-2-1-2-complex-find-involving-complex-include-bug/152618
CC-MAIN-2018-47
en
refinedweb
Safely set bits in a variable #include <atomic.h> void atomic_set( volatile unsigned * loc, unsigned bits ); libc Use the -l c option to qcc to link against this library. This library is usually included automatically.. To safely set the 1 bit in a flag: #include <atomic.h> … volatile unsigned flags; … atomic_set( &fla...
https://www.qnx.com/developers/docs/6.4.1/neutrino/lib_ref/a/atomic_set.html
CC-MAIN-2018-47
en
refinedweb
partial void CurveSetListDetail_Created() { var gdpChart = this.FindControl("CurveItemCollection1"); gdpChart.ControlAvailable += gdpChart_ControlAvailable; } public class CurveItem { public double Week { get; set; } public double Low { get; set; } public double High { get; set; } } void gdpChart_ControlAvailable(objec...
https://www.syncfusion.com/forums/123227/additional-data-in-lightswitch-silverlight-sfchart
CC-MAIN-2018-47
en
refinedweb
API Versioning in .NET Core API Versioning in .NET Core .NET Core is a great framework for building out front- and backend applications. Read on to learn how to version the APIs your app's call using this framework. Join the DZone community and get the full member experience.Join For Free Start coding something amazing...
https://dzone.com/articles/api-versioning-in-net-core
CC-MAIN-2018-47
en
refinedweb
How to Build a Custom Mule Connector in Java How to Build a Custom Mule Connector in Java Want to learn how to build a custom mule connector in Java? Check out this tutorial to learn how with the ConnectorConfig and SampleDynamicsConnector classes. Join the DZone community and get the full member experience.Join For Fr...
https://dzone.com/articles/building-a-custom-mule-connector
CC-MAIN-2018-47
en
refinedweb
Are you sure? This action might not be possible to undo. Are you sure you want to continue? Human Development China’s Pension System A Vision Mark C. Dorfman, Robert Holzmann, Philip O'Keefe, Dewen Wang, Yvonne Sin, and Richard Hinz China’s Pension System China’s Pension System A Vision Mark C. Dorfman, Robert Holzmann...
https://www.scribd.com/doc/127535186/China-s-Pension-System
CC-MAIN-2017-51
en
refinedweb
hi, I don't how to generate applet window in wed. This applet window have File to save/load. Would you give me source code or related java class to let me see API please????? thanks wilson^^ i wrote this in JCreator LE: import java.applet.*; public class title extends Applet { public void paint(Grahpics screen) { //cod...
http://forums.devx.com/showthread.php?139972-how-to-generate-applet-window&p=414304
CC-MAIN-2017-51
en
refinedweb
Are you sure? This action might not be possible to undo. Are you sure you want to continue? Impossible to Possible 2008 Edition Published by Korean Culture and Information Service Ministry of Culture, Sports and Tourism 15, Hyojaro, Jongno-gu, Seoul, Republic of Korea Telephone: 82-2-398-1910-9 Printed in Seoul ISBN 97...
https://pt.scribd.com/document/61173671/Korea-Impossible-to-Possible
CC-MAIN-2017-51
en
refinedweb
I'm trying to run some basic openmp examples with MS Visual Studio 2008 SP1 x64. My next step is to install the intel c++ compiler but I'd rather get it working with VS2008 only because then I'm sure I will have problems when I write Matlab MEX files with openMP x64. I start a new Win32 console project with VS2008 SP1....
https://software.intel.com/en-us/forums/intel-moderncode-for-parallel-architectures/topic/293611
CC-MAIN-2017-51
en
refinedweb
Dear Erica, Why would you create an enum with no cases? This is such a great question! No-case enumerations represent a fairly obscure Swift “power tool”, and one that most developers are unaware of. The answer, in a nutshell, is that they enable programmers to establish a mini-namespace with little overhead and an ass...
http://ericasadun.com/2016/07/18/dear-erica-no-case-enums/
CC-MAIN-2017-51
en
refinedweb
IANA Deploying IPv6 190 According to this Wired news article, IANA has begun to "roll out" IPv6. Though it doesn't go into specifics, one assumes this means that the three major IP registries will begin assigning IPv6 addresses. The article mentions another chicken and the egg problem: no IPv6 software (correct me if I...
https://slashdot.org/story/99/07/15/2312205/iana-deploying-ipv6
CC-MAIN-2017-51
en
refinedweb
Hi, everybody! I'm a real newbie to Java programming and I'm sure I've come to the right place for help. Anyways....I have an assignment that reads like so: Create two files using any word processing program or text editor. Write an application that determines whether the two files are located in the same folder. Save ...
http://www.javaprogrammingforums.com/%20whats-wrong-my-code/15190-need-help-javas-paths-class-printingthethread.html
CC-MAIN-2017-51
en
refinedweb
For this assignment you are to write a program that handles text files. The assignment requires three classes (plus library classes); we've given you two - FreqStudy, the driver, and another class, WordCount. FreqStudy.java Code Java: import java.util.*; import java.io.*; public class FreqStudy{ public static void main...
http://www.javaprogrammingforums.com/%20whats-wrong-my-code/27898-java-help-pleaseeeeeeee-printingthethread.html
CC-MAIN-2017-51
en
refinedweb
Hello my friends, I'm Panos and this is my first post here in CBoard Forums :D Take a look to my C++ code: No errors. Let's launch this:No errors. Let's launch this:Code: #include <iostream> #include <string> int main() { std::cout << "What is your name? "; std::string name; std::cin >> name; std::cout << "Hello, " << ...
https://cboard.cprogramming.com/cplusplus-programming/121539-two-name-into-one-string-variable-problem-printable-thread.html
CC-MAIN-2017-51
en
refinedweb
CodePlexProject Hosting for Open Source Software Hi guys, I am using blogEngine.net 1.5 and am having some crazy problem with jQuery that I just cannot figure out. I've tried all of the tips I could find on the net - $j = jQuery.noConflict();, etc, but no luck, it's stressing me out now because I am in a timebox with a...
http://blogengine.codeplex.com/discussions/65443
CC-MAIN-2017-51
en
refinedweb
Anki has been kind enough to let me play with their new Cozmo unit and explore their SDK. Cozmo is a wonderful device, developed by people who understand a lot of core principles about human interaction and engagement. Cozmo is adorable. When it recognizes your face, it wriggles with happiness. It explores its environm...
http://ericasadun.com/2016/12/12/programming-cozmo/
CC-MAIN-2017-51
en
refinedweb
Introduction: Keyfob Deadbolt The Step 1: Mounting Parts I Disclaimer: I am not a programmer and therefore the below code may not be the most efficient. Feel free to improve the code for your own uses if you see any errors or problems. It works for me so I hope it works for you. // turn CW to lock and CCW to unlock //1...
http://www.instructables.com/id/Keyfob-Deadbolt/?download=pdf
CC-MAIN-2017-51
en
refinedweb
.visualization.fa;33 34 import java.util.HashSet ;35 import java.util.Iterator ;36 import java.util.Set ;37 38 /** This class is used to "walk" through an NFA and is used, for example, by the DOTGenerator.39 * It sends "event" to its delegate for each state and transition found.40 */41 42 public class FAWalker {43 44 p...
http://kickjava.com/src/org/antlr/works/visualization/fa/FAWalker.java.htm
CC-MAIN-2017-30
en
refinedweb
READLINK(2) Linux Programmer's Manual READLINK(2) readlink, readlinkat - read(): _XOPEN_SOURCE >= 500 || _POSIX_C_SOURCE >= 200112L || /* Glibc versions <= 2.19: */ _BSD_SOURCE readlinkat(): Since glibc 2.10: _POSIX_C_SOURCE >= 200809L Before glibc 2.10: _ATFILE_SOURCE ); } readlink(1), lstat(2), stat(2), symlink(2), r...
http://man7.org/linux/man-pages/man2/readlink.2.html
CC-MAIN-2017-30
en
refinedweb
Summary Today we released ScalaTest/Scalactic 3.0.0-M11, which includes a significant reorganization inspired by feedback from the 3.0.0-M10 release two weeks ago. Today11" % "test" The main difference between M11 and the previous milestone release is that we got rid of the Safety and Compatibility implicit conversions...
http://www.artima.com/weblogs/viewpost.jsp?thread=375914
CC-MAIN-2017-30
en
refinedweb
Randall Davis: IBM Has No SCO Code 405 Mick Ohrberg writes ?" Wait... (Score:5, Funny) Re:Wait... (Score:5, Funny) We showed over a million lines of code and where it has existed. [Linux creator] Linus Torvalds has told me that the Linux kernel has around 5 million lines of code. This derivative code accounts for 20 pe...
https://news.slashdot.org/story/04/09/17/1818233/randall-davis-ibm-has-no-sco-code
CC-MAIN-2017-30
en
refinedweb
Creating An Asset Pipeline in Python with Paver What's Paver?What's Paver? Lately, I have been looking for a good task runner, something similar to grunt or gulp, but one that I can use with Python to write the tasks. This is where Paver comes in. Paver is a Python library that automates tasks. It has a clean API for c...
https://www.codementor.io/jstacoder/creating-an-asset-pipeline-in-python-with-paver-du107wjs3
CC-MAIN-2017-30
en
refinedweb
131 Neutral About Dragonion - RankMember Dragonion replied to Dragonion's topic in General and Gameplay ProgrammingFair enough, I just updated the question (although one could argue that there really is nothing stopping anyone from calling themselves an expert either) Dragonion posted a topic in General and Gameplay Pr...
https://www.gamedev.net/profile/172255-dragonion/?tab=smrep
CC-MAIN-2017-30
en
refinedweb
This action might not be possible to undo. Are you sure you want to continue? From Toilets to Rivers Experiences, New Opportunities, and Innovative Solutions © 2014 Asian Development Bank All rights reserved. Published in 2014. Printed in the Philippines. ISBN 978-92-9254-460-7 (Print), 978-92-9254-461-4 (PDF) Publicat...
https://www.scribd.com/doc/213479059/From-Toilets-to-Rivers-Experiences-New-Opportunities-and-Innovative-Solutions
CC-MAIN-2017-30
en
refinedweb
# include <Servo.h>int value = 0;Servo m1;void setup () { m1.attach(3); delay(1); m1.write(10); delay(200); m1.write(100); delay(1000); }void loop() { m1.write(10); delay(10); m1.write(80); } Hello,I was playing around with the values in the loop to try and get my motor to do somethingThe noises are a beep beep beep (3...
https://forum.arduino.cc/index.php?PHPSESSID=0l6mpbmp46sqd62gs3pq5h7cl0&topic=463963.msg3185463
CC-MAIN-2017-30
en
refinedweb
As you may already know,. First let's create a directory, initialize npm, and install webpack locally: mkdir webpack-demo && cd webpack-demo npm init -y npm install --save-dev webpack Now we'll create the following directory structure and contents: project webpack-demo |- package.json + |- index.html + |- /src + |- ind...
http://docs.w3cub.com/webpack/guides/getting-started/
CC-MAIN-2018-51
en
refinedweb
beginner A semigroup for some given type A has a single operation (which we will call combine), which takes two values of type A, and returns a value of type A. This operation must be guaranteed to be associative. That is to say that: (a.combine(b)).combine(c) must be the same as a.combine(b.combine(c)) for all possibl...
https://arrow-kt.io/docs/arrow/typeclasses/semigroup/
CC-MAIN-2018-51
en
refinedweb
DSON Importer for Poser 1.0.0.56 is now available! DAZ 3D is pleased to announce the next General Release version of DSON Importer for Poser, version 1.0.0.56! What is new in this version? Do I need to update my copy? The 1.0.0.56 version is a bugfix release. It resolves several issues with the loading and/or handling ...
http://www.daz3d.com/forums/discussion/comment/221003/
CC-MAIN-2017-43
en
refinedweb
All of my production Arduino projects allow some sort of configuration changes. Various operational constants are maintained in EEPROM. When the Arduino is first started, I can change these settings and rewrite them into EEPROM if I have a terminal connected to the Arduino. Generally, I am OK with connecting my laptop ...
https://bigdanzblog.wordpress.com/2015/01/23/linksprite-lcdkeypad-arduino-shield-for-software-configuration/
CC-MAIN-2017-39
en
refinedweb
Opened 7 years ago Closed 7 years ago Last modified 3 years ago #14952 closed Uncategorized (wontfix) New find_commands(management_dir) to support .pyc and .pyo Description In django/core/management/init.py: [] In our environment, We compile all .py to .pyc, and then remove all .py. Then manage.py can't find our comman...
https://code.djangoproject.com/ticket/14952
CC-MAIN-2017-39
en
refinedweb
RANDOM(3) BSD Programmer's Manual RANDOM(3) NAME random, srandom, initstate, setstate - better random number generator; routines for changing generators SYNOPSIS #include <<stdlib.h>> long random(void); void srandom(unsigned seed); char * initstate(unsigned seed, char *state, int()/ srandom() have (almost) the same cal...
http://modman.unixdev.net/?sektion=3&page=setstate&manpath=4.4BSD-Lite2
CC-MAIN-2017-39
en
refinedweb
On Sun, Oct 01, 2000 at 08:31:10AM -0700, Me wrote: > As for the subject, I have noticed that ne2000 card > support was compiled > into gnumach for the 2000-03 hurd tarball, but I can > only get the card > detected if the card is on io=0x300. Is there a place > to change this so > that multiple ne2000 cards could be su...
https://lists.debian.org/debian-hurd/2000/10/msg00025.html
CC-MAIN-2017-30
en
refinedweb
Tim Wilson wrote: > > I'm still a little intimidated by the OOP > features that Python offers. I should probably just bit the bullet and dig > in and learn it. For starts, you might try thinking of a class instance as a Python dictionary. For instance the dictionary: # make a dictionary aFoo = {} # fill dictionary with...
https://mail.python.org/pipermail/tutor/1999-March/000080.html
CC-MAIN-2018-05
en
refinedweb
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location. We recommend using Visual Studio 2017 Class View and Object Browser Icons Visual Studio 2015 The new home for Visual Studio documentation is Visual Studio 201...
https://msdn.microsoft.com/en-us/library/windows/apps/y47ychfe.aspx
CC-MAIN-2018-05
en
refinedweb
Content count384 Joined Last visited Community Reputation1531 Excellent About BaneTrapper - RankMember Personal Information - InterestsDesign Programming Trying to make me first game,any advice appreciated BaneTrapper replied to sergejC's topic in For BeginnersIf you put your mind to it, figure out things you don't kno...
https://www.gamedev.net/profile/200465-banetrapper/?tab=smrep
CC-MAIN-2018-05
en
refinedweb
.masterfs;21 22 import java.io.File ;23 import java.util.Collection ;24 import org.netbeans.api.queries.SharabilityQuery;25 import org.netbeans.spi.queries.SharabilityQueryImplementation;26 import org.netbeans.spi.queries.VisibilityQueryImplementation;27 import org.openide.util.Lookup;28 29 /**30 * Provides implementat...
http://kickjava.com/src/org/netbeans/modules/masterfs/GlobalSharabilityQueryImpl.java.htm
CC-MAIN-2018-05
en
refinedweb
BizTalk Property Schemas in Different Namespaces In BizTalk 2006 R2, I have noticed that sometimes the promoted property fields are not available. This seemed to be a random occurance so I decided to spend a little time investigating. Problem Scenario: The property schema field will not show up in a Receive Shape filte...
https://blog.tallan.com/2010/04/15/biztalk-property-schemas-in-different-namespaces/
CC-MAIN-2018-05
en
refinedweb
TS2339: Property 'slider' does not exist on type 'JQuery<HTMLElement>' I'm using the bootstrap-select I have successfully imported bootstrap-select into my project using: <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href=""> <!-- Latest compiled and minified JavaScript --> <script src=""></script> <...
http://quabr.com/48215786/ts2339-property-slider-does-not-exist-on-type-jqueryhtmlelement
CC-MAIN-2018-05
en
refinedweb
US9390055B2 - Systems, methods and devices for integrating end-host and network resources in distributed memory - Google PatentsSystems, methods and devices for integrating end-host and network resources in distributed memory Download PDF Info - Publication number - US9390055B2US9390055B2 US13890850 US201313890850A US9...
https://patents.google.com/patent/US9390055B2/en
CC-MAIN-2018-51
en
refinedweb
If (xcnt < 2) return; date = x[0]; time = x[1]; What if we decide to add an error message? if (xcnt < 2) printf("Timestamp array is too small\n"); return; date = x[0]; time = x[1]; Indeed, this is the ultimate "safe" program - for valid arrays, it never does anything but return, terminating program execution! The code'...
https://www.brainbell.com/tutors/c/Advice_and_Warnings_for_C/Brace_Yourself.html
CC-MAIN-2018-51
en
refinedweb
Building the Right Environment to Support AI, Machine Learning and Deep Learning Watch→ import java.awt.*; import java.awt.event.*; public class YourClass implements MouseListener { // Your constructors and methods here public void mouseClicked(MouseEvent ev) { int mask = InputEvent.BUTTON1_MASK - 1; int mods = ev.getM...
http://www.devx.com/tips/Tip/12508
CC-MAIN-2018-51
en
refinedweb
RxOdbcData revoscalepy.RxOdbcData(connection_string: str = None, table: str = None, sql_query: str = None, dbms_name: str = None, database_name: str = None, use_fast_read: bool = True, trim_space: bool = True, row_buffering: bool = True, return_data_frame: bool = True, string_as_factors: bool = False, column_classes: d...
https://docs.microsoft.com/en-us/machine-learning-server/python-reference/revoscalepy/rxodbcdata
CC-MAIN-2018-51
en
refinedweb
Java program to check if a matrix is upper triangular matrix or not : In this tutorial, we will learn how to find if a matrix is upper triangular or not. A matrix is called upper triangular if all the elements of the matrix below the main diagonal is 0. Else, it is not an upper triangular matrix. Our Java program will ...
https://www.codevscolor.com/java-check-upper-triangular-matrix
CC-MAIN-2020-40
en
refinedweb
Write a program to convert octal to Binary in Java : In this tutorial, we will learn how to convert one octal number to binary in Java. But before that, let’s check what is octal number and what is its relation with binary. Octal number System : Octal number system is a base-8 number system, i.e. it uses numbers from 0...
https://www.codevscolor.com/java-program-convert-octal-binary
CC-MAIN-2020-40
en
refinedweb
11628/differences-between-composer-network-and-composer-identity I am learning hyperledger these days. I have a doubt. "What is the difference between composer network and composer identity.? For permissions, you can read about the ACLs here -> 'Composer Network' represents the business network entity. 'Composer Identi...
https://www.edureka.co/community/11628/differences-between-composer-network-and-composer-identity?show=11647
CC-MAIN-2020-40
en
refinedweb
Ok - so you have everything set up and now you want to change how a particular Resource looks. For instance, you may want to show a google map for location fields, or even present some values as a graph. You can do this all by writing your custom components. Example of overriding how dashboard looks: AdminBroOptions: c...
https://adminbro.com/tutorial-writing-react-components.html
CC-MAIN-2020-40
en
refinedweb
I want to add two functionalities to my widget. 1 - To launch application by clicking on widget. 2 - To add refresh button on order to update view on the widget which was built with custom rows and list view. This is my widget file: [BroadcastReceiver(Label = "@string/widget_name")] [IntentFilter(new string[] { "androi...
https://forums.xamarin.com/discussion/comment/244015
CC-MAIN-2019-39
en
refinedweb
ASP.NET Core Blazor dependency injection Blazor supports dependency injection (DI). Apps can use built-in services by injecting them into components. Apps can also define and register custom services and make them available throughout the app via DI. DI is a technique for accessing services configured in a central loca...
https://docs.microsoft.com/en-us/aspnet/core/blazor/dependency-injection?view=aspnetcore-3.0&viewFallbackFrom=aspnetcore-2.2
CC-MAIN-2019-39
en
refinedweb
Developing packages & plugins - Package introduction - Developing Dart packages - Developing plugin packages - Adding documentation - Publishing packages - Handling package interdependencies Package introductionPackage introduction Packages enable the creation of modular code that can be shared easily. A minimal packag...
https://flutter.dev/docs/development/packages-and-plugins/developing-packages
CC-MAIN-2019-39
en
refinedweb
A menu bar represents a list of menus which can be added to the top of a top-level window. Each menu is associated with a drop-down list of menu items. The concept of menu bar can be implemented by using three Java classes: JMenuBar, Menu and JMenuitem. A menu bar is represented by the object of class JMenuBar in which...
http://ecomputernotes.com/java/swing/menubar-example
CC-MAIN-2019-39
en
refinedweb
launch a .stl file Hi Ros Users: I have a .stl file and I just would like to launch in a gazebo empty world with a .launch. How con I do that? Thanks a lot ! Hi Ros Users: I have a .stl file and I just would like to launch in a gazebo empty world with a .launch. How con I do that? Thanks a lot ! answered 2015-10-19 08:...
https://answers.ros.org/question/219390/launch-a-stl-file/
CC-MAIN-2019-39
en
refinedweb
I noticed in the TortoiseSVN interface that there is a "switch" repository command. What about using that? I don't know what the command line equivalent would be, but that should be able to let him do what he wants, no? E.g. The following: - Do work on repo - Commit to repo - Make release - switch to alternate repo - M...
https://svn.haxx.se/users/archive-2005-01/1948.shtml
CC-MAIN-2019-39
en
refinedweb
"The." All this sounded very promising, so I embarked on the journey of installing and configuring buildbot for the application that Titus and I will be presenting at our PyCon tutorial later this month. I have to say it wasn't trivial to get buildbot to work, and I was hoping to find a simple HOWTO somewhere on the We...
http://agiletesting.blogspot.com/2006/02/continuous-integration-with-buildbot.html
CC-MAIN-2019-39
en
refinedweb
Closed Bug 783958 Opened 7 years ago Closed 6 years ago b2g email client needs its HTML security implementation reviewed Categories (Firefox OS Graveyard :: General, defect) Tracking (Not tracked) People (Reporter: asuth, Assigned: freddyb) References Details Attachments (1 file) The e-mail client may receive HTML e-ma...
https://bugzilla.mozilla.org/show_bug.cgi?id=783958
CC-MAIN-2019-39
en
refinedweb
Being at JavaOne you learn about new technologies and the first thing when learning about something new is trying to integrate the technology into e4 on JavaFX. This time it’s OpenDolphin I learned about and hacked this morning support to integrate open dolphin into your e4 apps which turned out to be really easy. All ...
https://tomsondev.bestsolution.at/2014/10/01/e4-on-javafx-and-opendolphin/?shared=email&msg=fail
CC-MAIN-2019-39
en
refinedweb
Investors considering a purchase of Mohawk Industries, Inc. (Symbol: MHK) shares, but tentative about paying the going market price of $193.74/share, might benefit from considering selling puts among the alternative strategies at their disposal. One interesting put contract in particular, is the February 2016 put at th...
https://www.nasdaq.com/articles/commit-buy-mohawk-industries-175-earn-63-annualized-using-options-2015-07-28
CC-MAIN-2019-39
en
refinedweb
flutter_parsed_text 1.2.3 🔗 Flutter Parsed text A Flutter package to parse text and extract parts using predefined types like url, phone and Regex. Usage 💻 # To use this package, add flutter_parsed_text as a dependency in your pubspec.yaml file. import 'package:flutter_parsed_text/flutter_parsed_text.dart'; Working ⚙...
https://pub.dev/packages/flutter_parsed_text
CC-MAIN-2019-39
en
refinedweb
Hello I'm using Unity Free 4.3.4 for iOS game. I'm having several plugins for my game: Admob, GameAnalytics, Facebookshare. Then I would like to add In App Purchase and it is Soomla. When I add Soomla to my existing project, the game crash when trying to purchase an item. So I try using the same Implementation and code...
https://answers.unity.com/questions/743519/a-plugin-crash-on-existing-project-but-works-well.html
CC-MAIN-2019-47
en
refinedweb
The Plugins module offers items to integrate platform-specific functionality like social networks, analytics or monetization. Plugins are usually imported with the pattern import Felgo 3.0 in your qml source code, e.g.: import Felgo 3.0 If you want to use a plugin on the Build Server you have to indicate which plugins ...
https://felgo.com/doc/plugins-qmlmodule/
CC-MAIN-2019-47
en
refinedweb
Hi TzuChiao Those are great and fair comments! 1. Kafka utilization. Regarding what is written in link[1], it's correct. More partitions lead to higher throughput and latency. But the number of partitions in one Kafka node is limited to some level in my proposal. It does not increase infinitely as we would add more ser...
http://mail-archives.apache.org/mod_mbox/openwhisk-dev/201806.mbox/%3CCAFEpjOqSShhYR8ULAmRQuUW_Jnx-pqu5sNkmx1yJTCekyfnUYg@mail.gmail.com%3E
CC-MAIN-2019-47
en
refinedweb
Trouble with aopc compiled class being loaded with a factoryJeff Black Jun 7, 2006 11:22 AM We have a bean that we aspectize via "@@org.jboss.cache.aop.AopMarker" using JDK1.4 and JBossCache 1.3.0. This class is included in a jar that is bundled in a war file and deployed to WebLogic 8.1. We then use a factory class to...
https://developer.jboss.org/message/265124
CC-MAIN-2019-47
en
refinedweb
Beginning with XLL+ version 7.0.6, it is possible to shared object handles between XLLs. An object can be constructed in one XLL, and its handle can be passed to a function in a second XLL for use within an add-in function. For a class to be shared between XLLs, a number of conditions must be satisified. exported_GetCa...
http://planatechsolutions.com/xllplus7-online/start_handles9.htm
CC-MAIN-2019-47
en
refinedweb
Hello, I want to test Network Bandwidth. I've seen that CommVaut provide a Workflow for this purpose. So I've download "CvNetworkTestTool Gui" version 11 workflow. When I run this workflow. I had this error message: Error Code: [19:857] Description: com.microsoft.sqlserver.jdbc.SQLServerException: Incorrect syntax near...
http://sso.forum.commvault.com/forums/thread/52890.aspx
CC-MAIN-2019-47
en
refinedweb
marble #include <AbstractWorkerThread.h> Detailed Description The AbstractWorkerThread is a class written for small tasks that have to run multiple times on different data asynchronously. You should be able to use this class for many different tasks, but you'll have to think about Multi-Threading additionally. The Abst...
https://api.kde.org/4.14-api/kdeedu-apidocs/marble/html/classMarble_1_1AbstractWorkerThread.html
CC-MAIN-2019-47
en
refinedweb