text
stringlengths
20
1.01M
url
stringlengths
14
1.25k
dump
stringlengths
9
15
lang
stringclasses
4 values
source
stringclasses
4 values
: Hey Alex, Aren't unidirectional associations similar to aggregation. How can be differentiate them. The parent in an aggregation owns the relationship with the child. If the parent dies, the children die too. In an association, this isn't true. in the doctor patient example, if we delete doctor james, then let the pr...
https://www.learncpp.com/cpp-tutorial/10-4-association/comment-page-1/
CC-MAIN-2019-13
en
refinedweb
I'd like to define a general function foo that takes data, perhaps manipulates underlying class variables, and returns an int. However, when I attempt to create a separate function that takes a vector of foo objects, the compiler fails to deduce the template parameter. The following illustrates what I've tried: #includ...
http://databasefaq.com/index.php/answer/46168/c-templates-vector-passing-vector-of-derived-templated-class
CC-MAIN-2019-13
en
refinedweb
tag:blogger.com,1999:blog-24080016269578604432018-12-05T11:08:54.396+00:00Thoughts.In descending chronological order.Adam Creeger Grails developers can learn from the Github/Rails Mass Assignment Vulnerability<div style="padding:5px; background-color: rgba(165, 175, 200, .2);"><strong>In short:</strong> Github's securi...
http://feeds.feedburner.com/adamcreeger/thoughts
CC-MAIN-2019-13
en
refinedweb
Programming multicore microcontrollers Contents Introduction Microcontroller until now were mostly single cores based, but XMOS introduced a microcontroller where multiple processes can run at once. This can be a great advantage where time critical processes can be handled simultaneously. If you want to do that on a si...
https://ackspace.nl/w/index.php?title=Programming_multicore_microcontrollers&oldid=6154
CC-MAIN-2019-13
en
refinedweb
I am sure that I have seen someone have a part of their prompt aligned to the right in their terminal window and then have the actual cursor start on a second line. I know that I can achieve the second line with a "\n" in the PS1, but I cannot figure out how to align part of it to the right. Was what I saw just whitesp...
https://superuser.com/questions/187455/right-align-part-of-prompt/1203400
CC-MAIN-2020-05
en
refinedweb
Provided by: libacl1-dev_2.2.53-4_amd64 NAME acl_get_entry — get an ACL entry LIBRARY Linux Access Control Lists library (libacl, -lacl). SYNOPSIS #include <sys/types.h> #include <sys/acl.h> int acl_get_entry(acl_t acl, int entry_id, acl_entry_t *entry_p); DESCRIPTION descriptors that refer to entries within the ACL co...
http://manpages.ubuntu.com/manpages/disco/man3/acl_get_entry.3.html
CC-MAIN-2020-05
en
refinedweb
We're at the point we need to do something with the Story we're displaying. Or the job. Either one. My thoughts on this is to have two actions. A tap and a swipe. The swipe is going to require a change in the list itself (I think). A tap is pretty easy, we'll do that first. Part of this task is going to be to build a n...
https://quinngil.com/2017/07/30/android-hacker-news-ineractive-item/
CC-MAIN-2020-05
en
refinedweb
Error on empty date cell Excel allows setting the number format of an empty cell. If the cell is set to the date format, the value is None, and the attempt to read the value raises a Type Error, as it can't add the calendar offset to None. Not sure I understand the from_excel() function in date_time.init fully - would ...
https://bitbucket.org/openpyxl/openpyxl/issues/380/error-on-empty-date-cell
CC-MAIN-2020-05
en
refinedweb
Intro These days i have been working on my library, mainly on improve log. But in adition i had work on integration with azure and and serverless functions. This will be a short post, because microsoft tutorials are really good and library integration has no breaking changes. So here is a how-to use both. Local server ...
https://practicaldev-herokuapp-com.global.ssl.fastly.net/mandrewcito/signalr-core-python-client-vii-azure-18ma
CC-MAIN-2021-31
en
refinedweb
I am trying to loop over a set of graphs as shown in the snippet from the main script below: import pickle for timeOfDay in range(1440): # total number of minutes in a day=1440 with open("G_" + timeOfDay +'.pickle', 'rb') as handle: G = pickle.load(handle) ## do something with G I could load all the Graphs G_1.pickle t...
https://askpythonquestions.com/2021/05/18/how-to-create-a-data-loader-which-populates-a-dictionary-in-background/
CC-MAIN-2021-31
en
refinedweb
Originally posted on dev. When we start building a Python project that goes beyond simple scripts, we tend to start using third-party dependencies. When working on a larger project, we need to think about managing these dependencies in an efficient manner. And when installing dependencies, we always want to be inside v...
https://learningactors.com/managing-python-dependencies-using-virtual-environments/
CC-MAIN-2021-31
en
refinedweb
Writing and Using Higher-Order and Anonymous Functions in Scala The hands-on lab is part of this learning path Ready for the real environment experience? Description When you use the functional programming paradigm, the function is the core component you need to focus on and use. It can be used as a value, so you can s...
https://cloudacademy.com/lab/writing-using-higher-order-anonymous-functions-scala/
CC-MAIN-2021-31
en
refinedweb
cfree — free allocated memory #include <stdlib.h> /* In SunOS 4 */ /* In glibc or FreeBSD libcompat */ /* In SCO OpenServer */ /* In Solaris watchmalloc.so.1 */ This function should never be used. Use free(3) instead. In glibc, the function cfree() is a synonym for free(3), "added for compatibility with SunOS". Other s...
https://man.linuxexplore.com/htmlman3/cfree.3.html
CC-MAIN-2021-31
en
refinedweb
Introduction In this article I will show you how you can build an application using Flutter with Supabase as a backend. Supabase is a Firebase alternative which uses Postgres, so that's something different and that's even amazing. Postgres is also a relational database which is also open source and a powerful tool. We ...
https://practicaldev-herokuapp-com.global.ssl.fastly.net/carlomigueldy/building-a-simple-grocery-app-in-flutter-with-supabase-5fad
CC-MAIN-2021-31
en
refinedweb
NAME¶isympy - interactive shell for SymPy SYNOPSIS¶ isympy [-c | --console] [-p ENCODING | --pretty ENCODING] [-t TYPE | --types TYPE] [-o ORDER | --order ORDER] [-q | --quiet] [-d | --doctest] [-C | --no-cache] [-a | --auto] [-D | --debug] [ -- | PYTHONOPTIONS] isympy [ {-h | --help} | {-v | --version} ] DESCRIPTION¶i...
https://manpages.debian.org/buster/isympy-common/isympy.1.en.html
CC-MAIN-2021-31
en
refinedweb
Class defining default implementations for some spherical geometry methods. More... #include <StelSphereGeometry.hpp> All methods are reentrant. This method is heavily used and therefore needs to be very fast. The returned SphericalCap doesn't have to be the smallest one, but smaller is better. Reimplemented from Spher...
http://stellarium.org/doc/0.17/classSphericalPolygon.html
CC-MAIN-2019-13
en
refinedweb
Is it possible to write a single method total to do a sum of all elements of an ArrayList, where it is of type <Integer> or <Long>? I cannot just write public long total(ArrayList<Integer> list) and public long total(ArrayList<Long> I have POJO class Student like this class Student { private int score; private String ...
http://www.dskims.com/tag/arraylist/
CC-MAIN-2019-13
en
refinedweb
Obviously we are going to need our conversion routine more than once so it makes sense to convert it into a function that returns a function that approximates the data. However there are a few small changed that are worth making. The first is that the plot is from 0 to n-1 which depends on the number of points in the d...
https://www.i-programmer.info/projects/119-graphics-and-games/5735-how-to-draw-einsteins-face-parametrically.html?start=2
CC-MAIN-2019-13
en
refinedweb
I would like to create a simple Calculator service that has a single method to add numbers. This Add async public class RateLimitingCalculator { public async Task<int> Add(int a, int b) { //... } } I don't think using Rx makes sense here, unless you can rewrite your method into something like public IObservable<int> Ad...
https://codedump.io/share/KMf3BQ3O8o9o/1/how-to-build-a-rate-limiting-api-with-observables
CC-MAIN-2017-17
en
refinedweb
Accessing a Remote Namespace The main purpose of the IWMIExtension interface is to provide developers with access to a remote namespace through ADSI. By using ADSI, developers can query Active Directory for more information about directory structure and computer network location. After Active Directory returns the loca...
https://msdn.microsoft.com/en-us/library/windows/desktop/aa384706(v=vs.85).aspx
CC-MAIN-2017-17
en
refinedweb
Forward and inverse kinematics calculations using Tekkotsu output indices. More... #include <Kinematics.h> Forward and inverse kinematics calculations using Tekkotsu output indices.. Wherever a reference frame index is requested, you can simply supply one of the output indexes in the usual manner: kine->link->linkToBas...
http://tekkotsu.org/dox/classKinematics.html
CC-MAIN-2017-17
en
refinedweb
interface for notifications from Wireless More... #include <SocketListener.h> interface for notifications from Wireless Definition at line 5 of file SocketListener.h. List of all members. . Referenced by Wireless::pollProcess().
http://tekkotsu.org/dox/classSocketListener.html
CC-MAIN-2017-17
en
refinedweb
This was a quite nice challenge about elliptic curves, giving 40 points. The problem is stated as follows: Ed25519-sign the flag with the same private key and implementation flaw used to sign the messages below. The flag is the base64 representation of the signature. Public key: sctf.io Signature: 2016 Q1 Signature: OK...
https://grocid.net/2016/04/14/sctf-ed25519/
CC-MAIN-2017-17
en
refinedweb
! With input from client experts and industry partners, Integrated Informatics Inc. developed the Geodetics Toolkit, a commercial product. With this toolkit, their users can load, analyze, map, audit, and generate reports for seismic and well surveys. The tools in the toolbox take text and binary data formatted accordi...
http://resources.arcgis.com/en/communities/python/01r500000005000000.htm
CC-MAIN-2017-17
en
refinedweb
WebSocket is a recent technology that provides two-way communication over a TCP connection. This allows us to create real-time web apps where servers can push data to clients. In this blog post, I’ll demonstrate how this can be done by building a simple chat app using ASP.NET WebAPI and ASP.NET’s new support for WebSoc...
https://blogs.msdn.microsoft.com/youssefm/2012/07/17/building-real-time-web-apps-with-asp-net-webapi-and-websockets/
CC-MAIN-2017-17
en
refinedweb
On Sun, Aug 11, 2013 at 07:16:30AM +0200, Michael Haggerty wrote: > On 08/11/2013 01:20 AM, Fredrik Gustafsson wrote: > > [...] > > It would be very hard to do a tool such as you describe, the reason is > > that there's no sane way to order your tags. Git today show tags > > alphabetically, all versions does not have a...
https://www.mail-archive.com/git@vger.kernel.org/msg33852.html
CC-MAIN-2017-17
en
refinedweb
tst man page tst — ternary search trie functions Synopsis #include <inn/tst.h> struct tst; struct tst *tst_init(int node_line_width); void tst_cleanup(struct tst *tst); int tst_insert(struct tst *tst, const unsigned char *key, void *data, int option, void **exist_ptr); void *tst_search(struct tst *tst, const unsigned c...
https://www.mankier.com/3/tst
CC-MAIN-2017-17
en
refinedweb
Microsoft Store Services SDK launches support for interstitial banner ads We are excited to announce the launch of interstitial banner ads support in the Microsoft Store Services SDK. Interstitial banner ads have been one of the top Windows Dev Center feature requests since we introduced support for interstitial video ...
https://blogs.windows.com/buildingapps/2017/03/27/microsoft-store-services-sdk-launches-support-interstitial-banner-ads/
CC-MAIN-2017-17
en
refinedweb
On Tuesday 04 November 2003 01:02 am, Delaney, Timothy C (Timothy) wrote: > > From: Alex Martelli [mailto:aleaxit at yahoo.com] > > > > BTW, when we do come around to PEP 318, I would suggest the 'as' > > clause on a class statement as the best way to specify a metaclass. > > I just realised what has been bugging me ab...
https://mail.python.org/pipermail/python-dev/2003-November/039941.html
CC-MAIN-2017-17
en
refinedweb
ping_iterator_get_info - Receive information about a host #include <oping.h> int ping_iterator_get_info (pingobj_iter_t *iter, int info, void *buffer, size_t *buffer_len);.h" and. The buffer argument is a pointer to an appropriately sized area of memory where the result of the call will be stored. The buffer_len value ...
http://huge-man-linux.net/man3/ping_iterator_get_info.html
CC-MAIN-2017-17
en
refinedweb
.... Printable View .... Code: #include <stdio.h> #include <stdlib.h> /* self referential structure */ struct listNode { char data; /* each listNode contains a character */ struct listNode *nextPtr; /* pointer to the next node */ struct listNode *prevPtr; /* pointer to previous node */ }; /* end structure listNode */ t...
https://cboard.cprogramming.com/c-programming/108647-modify-make-doubly-linked-list-printable-thread.html
CC-MAIN-2017-17
en
refinedweb
Hello, I've got a function that returns a memory addres of an array. However making the char * static seems to be the only solution. However it since its static it doesnt get cleaned out so everything is kept. #include <iostream> // cout << endl ... #include <fstream> // for reading in the file ... #include <cstring> /...
https://www.daniweb.com/programming/software-development/threads/39428/code-bug
CC-MAIN-2017-17
en
refinedweb
One of the routine tasks in many Java applications is to convert a string to a number. For instance, you may have a form where user submits his or her age. The input will come to your Java application as a String but if you need the age to do some calculation you need to convert that String into a number. Like, int age...
http://zparacha.com/best-way-to-check-if-a-java-string-is-a-number/
CC-MAIN-2017-17
en
refinedweb
an attribute that can be put on methods of NetworkBehaviour classes to allow them to be invoked on clients from a server. [ClientRPC] functions are called by code on Unity Multiplayer servers, and then invoked on corresponding GameObjects on clients connected to the server. The arguments to the RPC call are serialized...
https://docs.unity3d.com/ScriptReference/Networking.ClientRpcAttribute.html
CC-MAIN-2017-17
en
refinedweb
Deploy your Django project as directory This method of deployment is convenient if you have a non wildcard SSL certificate for your domain. This way, you can add another application to your domain in a new directory (eg. example.com/foo/). The first step is to set up nginx to pass SCRIPT_NAME to your app: location /foo...
https://medium.com/@sraimbault/deploy-your-django-project-as-directory-3689023d9f1b?source=user_profile---------1-----------
CC-MAIN-2017-17
en
refinedweb
24 August 2012 10:42 [Source: ICIS news] SINGAPORE (ICIS)--Lucite International is planning to shut its 120,000 tonne/year methyl methacrylate (MMA) plant at ?xml:namespace> The company will shut the plant for around three weeks and will begin production early to mid-October. The company uses ethylene, carbon monoxide ...
http://www.icis.com/Articles/2012/08/24/9589684/lucite-to-shut-singapore-mma-unit-end-sept-for-maintenance.html
CC-MAIN-2015-06
en
refinedweb
I’ve been tracking the Rich Internet Application (RIA) framework technology scene lately. That’s a broad category. As the technology is put to use, its applicability grows into other domains. Mobile or otherwise-embedded devices, set-top boxes or game consoles, tables, and stand-alone or kiosk applications are all targ...
http://spin.atomicobject.com/2007/06/01/rich-internet-application-platform-shoot-out/
CC-MAIN-2015-06
en
refinedweb
. Guys I am working with millions of lines of data that "should" all be in the same format, however I am finding hundreds of lines that are not. A line may have ~10 fields space delimited. Suppose I am splitting the line into scalars that I can work with, and perform math on. Suppose fields 6-8 are supposed to be numer...
http://www.perlmonks.org/?next=10;node_id=479
CC-MAIN-2015-06
en
refinedweb
Tutorial for: Dajax Requirements: Dajax enables you to build web applications using only Python code and HTML, with little to no JavaScript required. This is the third and final tutorial in the Django and AJAX set. This tutorial will focus on building a simple application which uses Dajax to load data from a model and ...
http://pythondiary.com/tutorials/django-and-ajax-dajax.html
CC-MAIN-2015-06
en
refinedweb
On Wed, Aug 02, 2006 at 05:20:40PM +0200, Rolf Eike Beer wrote:> As suggested by Muli Ben-Yehuda this function is moved to generic code as> may be useful for all archs.I like it, but ...> diff --git a/include/asm-x86_64/dma-mapping.h b/include/asm-x86_64/dma-mapping.h> index b6da83d..10174b1 100644> --- a/include/asm-x...
http://lkml.org/lkml/2006/8/2/191
CC-MAIN-2015-06
en
refinedweb
Answered: Call Controller function outside Ext namespace Answered: Call Controller function outside Ext namespace Hello, everyone. I want to call controller method in <script> section in index.html. Can I do it and how? Thanks for advice Resolved (by using gloval variable App) Resolved (by using gloval variable App) Ca...
http://www.sencha.com/forum/showthread.php?242243-Call-Controller-function-outside-Ext-namespace&p=901283
CC-MAIN-2015-06
en
refinedweb
#include <qgscrscache.h> Definition at line 24 of file qgscrscache.h. Definition at line 35 of file qgscrscache.cpp. Definition at line 31 of file qgscrscache.cpp. Referenced by instance(). Returns the CRS for authid, e.g. 'EPSG:4326' (or an invalid CRS in case of error) Definition at line 40 of file qgscrscache.cpp. R...
http://qgis.org/api/1.8/classQgsCRSCache.html
CC-MAIN-2015-06
en
refinedweb
. Memoization The word memoization was coined by Donald Michie, a British artificial-intelligence researcher, to refer to function-level caching for repeating values. Today, memoization is common in functional programming languages, either as a built-in feature or as one that's relatively easy to implement. Memoization...
http://www.ibm.com/developerworks/library/j-jn12/
CC-MAIN-2015-06
en
refinedweb
30 March 2010 10:02 [Source: ICIS news] By Mahua Chakravarty SINGAPORE (ICIS news)--Benzene prices in Asia hit a two-month high on Tuesday and may rise further in the next few weeks on the back of bullish aromatics markets in the US and Europe and strong crude values, said traders and producers. Spot benzene prices bre...
http://www.icis.com/Articles/2010/03/30/9346879/asian-benzene-prices-hit-two-month-high-may-strengthen-further.html
CC-MAIN-2015-06
en
refinedweb
Blog Map Data-bound content controls are a powerful and convenient way to separate the semantic business data from the markup of an Open XML document. After binding content controls to custom XML, you can query the document for the business data by looking in the custom XML part rather than examining the markup. Queryi...
http://blogs.msdn.com/b/ericwhite/archive/2008/10/19/creating-data-bound-content-controls-using-the-open-xml-sdk-and-linq-to-xml.aspx?PageIndex=1
CC-MAIN-2015-06
en
refinedweb
Teleconference.2008.06.18/Agenda From OWL Revision as of 16:37, 18 June 2008 by RinkeHoekstra (Talk | contribs) Contents Call in details When joining please don't identify yourself verbally; instead, Identify Yourself to ZAKIM on IRC - Date of Call: Wednesday June 18,: Peter F. Patel-Schneider (Scribe List) - Link to A...
http://www.w3.org/2007/OWL/wiki/index.php?title=Teleconference.2008.06.18/Agenda&oldid=8722
CC-MAIN-2015-06
en
refinedweb
Python Code Indentation Python uses whitespace (eg spaces and tabs) to group together lines of code that belong together. Any time a line ends with a colon, you are telling Python "hey, a block of code follows" and Python expects to see some indented code. Example if x = 1: call_functionA() call_functionB() next_functi...
https://reference.codeproject.com/python3/structures/python-indentation
CC-MAIN-2021-43
en
refinedweb
UK High Altitude Society There are two peripheral libraries which can be used. Firstly is the official ST libraries, or alternately libopencm3. There are more examples available for the ST libraries, however libopencm3 is nicer to use, but still in development. STM32 Intro (Jon) slides here: stm32_intro_ukhas14.pdf Ide...
https://ukhas.org.uk/guides:stm32toolchain
CC-MAIN-2021-43
en
refinedweb
Getting a Document The first task in any process involving JDOM is to obtain a JDOM Document object. The Document object in JDOM is the core class that represents an XML document. Note Like all other objects within the JDOM model, the org.jdom.Document class is detailed in Appendix A, and all its method signatures are ...
https://www.oreilly.com/library/view/java-and-xml/0596000162/ch08s03.html
CC-MAIN-2021-43
en
refinedweb
tensorflow:: ops:: SparseConcat #include <sparse_ops.h> Concatenates a list of SparseTensor along the specified dimension. Summary Concatenation is with respect to the dense versions of these sparse tensors. It is assumed that each input is a SparseTensor whose elements are ordered along increasing dimension number. Al...
https://www.tensorflow.org/versions/r2.3/api_docs/cc/class/tensorflow/ops/sparse-concat?hl=nb-NO
CC-MAIN-2021-43
en
refinedweb
Hi Flavio, On an unrelated note, you will be happy to know that wxagg will be included in the next release, probably early next week. It's currently in CVS if you want to get started right away. font support has been thoroughly revised and improved by Paul Barrett, and these changes are not currently documented, so be ...
https://discourse.matplotlib.org/t/equation-box/503
CC-MAIN-2021-43
en
refinedweb
avatica alternatives and similar packages Based on the "Relational Databases" category. Alternatively, view avatica alternatives based on common mentions on social networks and blogs. go-sql-driver/mysql9.8 5.7 avatica VS go-sql-driver/mysqlGo MySQL Driver is a MySQL driver for Go's (golang) database/sql package sqlx9....
https://go.libhunt.com/avatica-alternatives
CC-MAIN-2021-43
en
refinedweb
The CData Python Connector for SharePoint enables you to create ETL applications and pipelines for SharePoint data in Python with petl. The rich ecosystem of Python modules lets you get to work quickly and integrate your systems more effectively. With the CData Python Connector for SharePoint and the petl framework, yo...
https://www.cdata.com/kb/tech/sharepoint-python-petl.rst
CC-MAIN-2021-43
en
refinedweb
Do you often ask yourself... I have built an ASP.NET Core Web Application, now what? How do I take it to the next level using tools and platforms like GitHub, Docker, CI/CD and Microsoft Azure with my application? If YES!! You are at the right place!. So, stay with me, there is a lot to cover. Let's get started! Three ...
https://www.codeproject.com:443/Articles/3239411/Build-and-Deploy-an-ASP-NET-Core-Web-Application-a?msg=5674815&PageFlow=FixedWidth
CC-MAIN-2021-43
en
refinedweb
Not Enough Standards is a modern header-only C++17 and C++20 library that provides platform-independent utilities. The goal of this library is to extend the standard library with recurent features, such as process management, shared library loading or thread pools. To reach that goal the library is written in a very st...
https://awesomeopensource.com/project/Alairion/not-enough-standards
CC-MAIN-2021-43
en
refinedweb
HTTP Since Camel 2.3 Only producer is supported The HTTP component provides HTTP based endpoints for calling> URI format http:hostname[:port][/resourceUri][?options] Will by default use port 80 for HTTP and 443 for. Using System Properties When setting useSystemProperties to true, the HTTP Client will look for the foll...
https://camel.apache.org/components/latest/http-component.html
CC-MAIN-2021-43
en
refinedweb
Scala Driver for ArangoDB Profig was a file @darkfrog26 ; Hi, Would You give any idea to process this?, Please. I had not used circe before and I have some troubles to make it work my project. I have this error: could not find implicit value for parameter e: io.circe.Encoder[types_scarango.Recipe] ompile / compileIncre...
https://gitter.im/outr/scarango?at=608d813d20d4f0263197428a
CC-MAIN-2021-43
en
refinedweb
First, let's have a look at the problem CSS isolation is intended to mitigate. As you build a web application, you will generally place CSS styles in a global style sheet that is referenced in the main layout file. That way, the declarations within the style sheet are available to all pages that make use of the styles,...
https://www.mikesdotnetting.com/article/355/css-isolation-in-razor-pages
CC-MAIN-2021-43
en
refinedweb
Important: Please read the Qt Code of Conduct - pyside2 qPushButton shape i downloaded an image black and white and hollow from middle i want yo use that as my button but when i use QIcon or QPixmap, none of the permutations seem to work can any one suggest a way i am using this for my proj - KazuoAsano Qt Champions 20...
https://forum.qt.io/topic/98025/pyside2-qpushbutton-shape
CC-MAIN-2021-43
en
refinedweb
DecodingFailure(CNil, List(DownArray))when decoding a list of sealed trait elements. Any thoughts? could not find implicit value for evidence parameter of type sttp.tapir.Schema[ Endpoints and then interpret them (to a server, say). Or is the idea to interpret Endpoints separately and combine them using the capabilitie...
https://gitter.im/softwaremill/tapir?at=5fe1fedb69ee7f0422b910a4
CC-MAIN-2021-43
en
refinedweb
OutlinedInput API API documentation for the React OutlinedInput component. Learn about the available props and the CSS API. Import You can learn about the difference by reading this guide on minimizing bundle size. import OutlinedInput from '@mui/material/OutlinedInput'; // or import { OutlinedInput } from '@mui/materi...
https://mui.com/api/outlined-input/
CC-MAIN-2021-43
en
refinedweb
Hi All, I've just joined the project and as a start I've took a look at some reported bugs whether I can fix some. So I've picked this one: - Dir not decorated when file is deleted The problem is that when a resource stored in svn is being deleted, to mark parent directories as dirty, the resource cannot be deleted dir...
https://svn.haxx.se/subdev/archive-2005-06/0007.shtml
CC-MAIN-2021-43
en
refinedweb
Detection of Trojan control channels Last Updated: 2008-11-16 09:22:41 UTC by Maarten Van Horenbeeck (Version: 1) Recently I was working with an organization whose network had been deeply compromised by a persistent threat agent: they had very little remaining trust in the network. A full rebuild of the network was not...
https://dshield.org/diary/Detection+of+Trojan+control+channels/5345
CC-MAIN-2021-43
en
refinedweb
So is there a sort of ETA on when this will be part of Guile? On Fri, Aug 20, 2010 at 4:30 PM, Andy Wingo <address@hidden> wrote: > Hello, Mr. Lucy! > > At some point I might escape the need to apologize at every mail I send, > but until then: sorry for the late response! > > On Thu 05 Aug 2010 23:40, Michael Lucy <add...
https://lists.gnu.org/archive/html/guile-devel/2010-08/msg00058.html
CC-MAIN-2021-43
en
refinedweb
In the previous article, we have discussed about C++ Programming Tutorial for Beginners. Let us learn About Multithreading Tutorial PDF in C++ Program. Excited to learn more about Multithreading in C++? Viewing BTech Geeks best & free online C++11 Multithreading Tutorial can be your savior in providing better learnings...
https://btechgeeks.com/cpp11-multithreading-tutorial/
CC-MAIN-2021-43
en
refinedweb
Alexa.PlaybackController Interface (VSK Fire TV) When users make transport control utterances (e.g., Stop, Rewind, Play, etc.), the Alexa.PlaybackController interface sends transport control directives ( Pause, Play, Stop, Resume, FastForward, Rewind, StartOver) to provide instructions for controlling media. PlaybackCo...
https://www.developer.amazon.com/zh/docs/video-skills-fire-tv-apps/playbackcontroller.html
CC-MAIN-2021-43
en
refinedweb
React Hooks While I was learning React while in The Flatiron School’s Software Engineering bootcamp I learned about creating components by using class components only. We learned about some lifecycle methods in general and state was to be managed with a constructor. Once we were encouraged to check out functional compo...
https://adamadolfo8.medium.com/react-hooks-b259ee985b5d
CC-MAIN-2021-43
en
refinedweb
Async I/O and ThreadPool Deadlock (Part 2) Async I/O and ThreadPool Deadlock (Part 2) Join the DZone community and get the full member experience.Join For Free Sensu is an open source monitoring event pipeline. Try it today. Parallel Execution Now, let’s complicate our lives with some concurrency, shall we? If we are t...
https://dzone.com/articles/async-io-and-threadpool-0
CC-MAIN-2018-51
en
refinedweb
Inko 0.3.0 released Inko 0.3.0 has been released. Noteworthy changes in 0.3.0 - Foreign Function Interface - Process Pinning - Seconds are now the base unit for timeouts - More specific platform names - VM instruction changes - musl executables are no longer provided The full list of changes can be found in the CHANGEL...
https://inko-lang.org/news/inko-0-3-0-released/
CC-MAIN-2018-51
en
refinedweb
exportar olm a pst olm in pst konvertieren olm to pst convertor converter olm para pst covert pst to olm convert olm naar pst convert olm file in pst olm datei in pst konvertieren export ost database to pst utility for export pst from edb file Convert OLM file with Export OLM to PST converter tool and convert MAC OLM f...
http://freedownloadsapps.com/s/export-olm-to-pst/1/
CC-MAIN-2018-51
en
refinedweb
Listener and Adapters are two different way to accomplish the event handling in java. all the event sources have different type of class support. There are mouse and key events, window and focus events, srcoll bar and checkboxes event and many more. Events Handling is a powerful aspect of Java language. It allows you t...
http://www.examsmyantra.com/article/70/java/event-handling-in-java-using-listener-and-adapters
CC-MAIN-2018-51
en
refinedweb
import itertools def overlap(a, b, min_length=3): """ Return length of longest suffix of 'a' matching a prefix of 'b' that is at least 'min_length' characters long. If no such overlap exists, return 0. """ start = 0 # start all the way at the left while True: start = a.find(b[:min_length], start) # look for b's suffx i...
http://nbviewer.jupyter.org/github/BenLangmead/comp-genomics-class/blob/master/notebooks/CG_SCS.ipynb
CC-MAIN-2018-51
en
refinedweb
import bb.cascades 1.0 Page { content: Button { text: "Rotate!" onClicked: { rotationZ = 155; } } } Implicit animations An implicit animation occurs when a visual property of a control changes while your app is running. When you change a property that can be animated, the control doesn't update its appearance immediate...
https://developer.blackberry.com/native/documentation/ui/animations/implicit_animations.html
CC-MAIN-2018-51
en
refinedweb
With DataFrames giving us the opportunity to store huge grids of data, we will sometimes want to group particular parts of our data set for analysis. Pandas’ ‘groupby’ method gives us an easy way to do so. Let’s put together a DataFrame of a team’s recent results with a dictionary: import pandas as pd #data is in a dic...
http://fcpython.com/data-analysis/grouping-data
CC-MAIN-2018-51
en
refinedweb
Stochastic gradient Hamiltonian Monte Carlo package Project description sghmc has sghmc, hmc, U, gradU #!/usr/bin/env python from sghmc import sghmc from sghmc import hmc from sghmc import U from sghmc import gradU sghmc(gradU, eta, L, alpha, x, V) hmc(U, gradU, m, dt, nstep, x, MH) gradU(data, minibatch, beta) U(data,...
https://pypi.org/project/sghmc/
CC-MAIN-2018-51
en
refinedweb
Standard C++ Library Copyright 1998, Rogue Wave Software, Inc. divides - Returns the result of dividing its first argument by its second. #include <functional> template <class T> struct divides; divides is a binary function object. Its operator() returns the result of dividing x by y. You can pass a divides object to a...
http://docs.oracle.com/cd/E19205-01/820-4180/man3c++/divides.3.html
CC-MAIN-2016-40
en
refinedweb
I'm looking to try out monotone, but can't seem to get it compiled on OpenBSD 4.0. Here are the steps I've taken: Build boost according to instructions in INSTALL, then copy includes and libs to /usr/local. ./configure --enable-boost-static --disable-nls (this finds and tests boost ok) Then I issue "gmake" and here is ...
http://lists.gnu.org/archive/html/monotone-devel/2006-10/msg00446.html
CC-MAIN-2016-40
en
refinedweb
READDIR(3) Linux Programmer's Manual READDIR(3) readdir - read a directory #include <dirent.h> struct dirent *readdir(DIR *dirp);:.. EBADF Invalid directory stream descriptor dirp. For an explanation of the terms used in this section, see attributes(7). ┌──────────┬───────────────┬──────────────────────────┐ │Interface...
http://man7.org/linux/man-pages/man3/readdir.3.html
CC-MAIN-2016-40
en
refinedweb
CFD Online Discussion Forums ( ) - FLUENT ( ) - - Continuing User Defined Real Gas Model issues ( ) aeroman October 19, 2010 23:00 Continuing User Defined Real Gas Model issues I am trying to model a gun blast in fluent. I am not modeling the round, rather I am patching the barrel to known internal pressure, temperatur...
http://www.cfd-online.com/Forums/fluent/81208-continuing-user-defined-real-gas-model-issues-print.html
CC-MAIN-2016-40
en
refinedweb
computertemp crashed with OSError in listdir()/ ProcEnviron: LANG=en_US.UTF-8 PATH=/ SHELL=/bin/bash PythonArgs: ['/usr/ SourcePackage: computertemp Title: computertemp crashed with OSError in listdir() Uname: Linux 2.6.27-3-generic i686 UserGroups: adm admin cdrom dialout fuse lpadmin plugdev sambashare vboxusers Upgr...
https://bugs.launchpad.net/ubuntu/+source/computertemp/+bug/272326
CC-MAIN-2016-40
en
refinedweb
Combining Silverlight and Windows Azure projects Standard Silverlight applications require that they be hosted on HTML pages, so that they can be loaded in a browser. Developers who work with the .Net framework will usually host this page within an ASP.Net website. The easiest way to host a Silverlight application on A...
https://www.packtpub.com/books/content/combining-silverlight-and-windows-azure-projects
CC-MAIN-2016-40
en
refinedweb
Working on my connector sandbox I've been trying to run stuff in pax-exam and in unmodified karaf. I ran into some rather hard to diagnose problems due to package versioning. Our stax 1.2 api bundle includes the javax.xml.namespace package and it apparently matches the same packages as implemented in java 5 and java 6....
http://mail-archives.apache.org/mod_mbox/geronimo-dev/201103.mbox/%3C735E8CD7-9C1E-4C1C-8B19-88C26576ABE8@yahoo.com%3E
CC-MAIN-2016-40
en
refinedweb
For many applications, the SQL Server database doesn't only hold business data. There is a good chance that the sys.messages table holds custom messages for the application and that another table may be used for application wide defaults. These repositories for messages, defaults, and so on help the developer to mainta...
http://www.codeproject.com/Articles/14321/Automatically-generate-classes-and-enums-from-SQL-
CC-MAIN-2016-40
en
refinedweb
Color Chooser: System Color - Online Code Description This is a code which chooses the color but it have another additional functionality of providing the System Colors viz. Windows Default Color, Control Shadow, etc. Source Code import java.awt.BorderLayout; import java.awt.Color; import java.awt.Component; import jav...
http://www.getgyan.com/show/1133/Color_Chooser%3A_System_Color
CC-MAIN-2016-40
en
refinedweb
parsimonious 0.7.0 (Soon to be) the fastest pure-Python PEG parser I could muster. Goals - Speed - Frugal RAM use - Minimalistic, understandable, idiomatic Python code - Readable grammars - Extensible grammars - Complete test coverage - Separation of concerns. Some Python parsing kits mix recognition with instructions ...
https://pypi.python.org/pypi/parsimonious
CC-MAIN-2016-40
en
refinedweb
Last chance to post a question for Frank Wierzbicki...the "Ask Frank" question and answer session for Jython Monthly will come to a close this Friday, July 11. If you are interested in posting a question for Frank to answer, please visit the following URL or send email to me at the address below. Thanks to Frank and t...
https://sourceforge.net/p/jython/mailman/jython-users/?viewmonth=200807&viewday=8
CC-MAIN-2016-40
en
refinedweb
Download it from: Screenshots: For those who never heard of spe: Stani's Python Editor (spe) An attempt for a plausible Python IDE for Blender and abroad. (c) 2003 Installation: Type 'python setup.py install' (For more details see README.txt in distribution.) Requirements: Python22 wxPython-2.4.0.7u Blender 2.27 Conten...
https://www.blender.org/forum/viewtopic.php?p=9652
CC-MAIN-2016-40
en
refinedweb
Generating RFC 822-style Date Strings Fredrik Lundh | June 2003 | Originally posted to online.effbot.org The RSS 2.0 (dead link) specification uses RFC 822-style date strings to store publication dates and build dates. Here’s a snippet from my publishing tool that takes an “yyyymmdd” or “yyyymmddhhmmss” string, and gen...
http://effbot.org/zone/generating-rfc822-dates.htm
CC-MAIN-2016-40
en
refinedweb
Alexandru Popescu ? wrote: > ... >). > ... Backwards compatibility was a goal for JSR-283. Making XPath optional breaks that in a big way, and I personally hope that public review will show that people do not like that. So, instead of opening pandora's box even wider, let's try to close it :-). Because, *if* backwards ...
http://mail-archives.apache.org/mod_mbox/jackrabbit-users/200707.mbox/%3C46A0FD4F.1080503@gmx.de%3E
CC-MAIN-2016-40
en
refinedweb
If I define the type in C# as a public class instead of as a struct, I still get a compile error on the same line as before in VB6. This time the error message is: “Only user-defined types defined in public object modules can be coerced to or from a variant or passed to late-bound functions”. Cool. Not. user defined ty...
https://blogs.msdn.microsoft.com/jblizzard/2003/08/04/com-interop-c-type-consumed-by-vb6-program-part-2-still-searching/
CC-MAIN-2016-40
en
refinedweb
>>.'" So? (Score:2, Insightful) Re:Perfect example (Score:4, Insightful) There's no IP. There is copyright, patents and trademarks. This sounds like a trademark thing, so no need to confuse the issue. Re:Non-issue (Score:3, Insightful) Re:So? (Score:5, Insightful) Some things are ethically questionable even when there ...
https://developers.slashdot.org/story/09/11/12/1256234/Google-Under-Fire-For-Calling-Their-Language-Go/insightful-comments
CC-MAIN-2016-40
en
refinedweb
). Activity - All - Work Log - History - Activity - Transitions Is this not a problem whenever the target portlet method loads resources via the classloader – config files, images, etc.? I think it's important for code running in the target portlet (edit: or container) to be able to rely on the context classloader bein...
https://issues.apache.org/jira/browse/PLUTO-553
CC-MAIN-2016-40
en
refinedweb
Opened 7 years ago Closed 4 years ago Last modified 4 years ago #6845 closed defect (wontfix) RequestDone not allowed in INagivationContributor Description Testing on Trac 0.11.7, it appears that redirect() in an INagivationContributor will cause problems because the RequestDone exception is not handled and will result...
https://trac-hacks.org/ticket/6845
CC-MAIN-2016-40
en
refinedweb
This action might not be possible to undo. Are you sure you want to continue? \ Part I: Using OpenLDAP on Debian Woody to serve Linux and Samba Users Note on Debian Sarge: Please check out Part II: OpenLDAP on Debian Pre-Sarge below for some information on LDAP with a pre-release version of Debian 3.1, aka "Debian Sarg...
https://www.scribd.com/document/48146940/debian-ldap
CC-MAIN-2016-40
en
refinedweb
/* Data structures associated with tracepoints in GDB. Copyright 1997, (TRACEPOINT_H) #define TRACEPOINT_H 1 /* The data structure for an action: */ struct action_line { struct action_line *next; char *action; }; /* The data structure for a tracepoint: */ struct tracepoint { struct tracepoint *next; int enabled_p; #if ...
http://opensource.apple.com/source/gdb/gdb-1344/src/gdb/tracepoint.h
CC-MAIN-2016-40
en
refinedweb
Do you use bootstrap and Django together? If so, I have 2 powerful templatetags which may come in handy when developing your bootstrap enabled project. One filter turns a BooleanField result into a compatible bootstrap icon. The other filter can be used to display a specific amount of stars or any icon you can think of...
http://pythondiary.com/blog/Aug.24,2012/bootstrap-template-filters-django.html
CC-MAIN-2016-40
en
refinedweb
QOTW: "Python the language doesn't try to satisfy all tastes in language design equally." - Guido van Rossum Is it really necesary to explicitely close open files? Tips for using Unicode text (specially with non-Latin alphabets): How are class attributes exactly inherited, and how they relate to instance attributes: Au...
https://mail.python.org/pipermail/python-list/2009-September/551915.html
CC-MAIN-2016-40
en
refinedweb
Add Geronimo plan to JSR-77 API for deployed modules/configurations ------------------------------------------------------------------- Key: GERONIMO-1522 URL: Project: Geronimo Type: Improvement Components: management Versions: 1.0 Reporter: Aaron Mulder Fix For: 1.1 The basic JSR-77 API lets you load the J2EE deploym...
http://mail-archives.apache.org/mod_mbox/geronimo-dev/200601.mbox/%3C664381717.1137870401973.JavaMail.jira@ajax.apache.org%3E
CC-MAIN-2016-40
en
refinedweb
Opened 11 years ago Closed 7 years ago Last modified 3 years ago #694 closed enhancement (wontfix) [patch] TEMPLATE_DIRS should allow project root relative paths Description (last modified by ) Many people develop their projects on one machine and deploy on another. The two (or more) different computers may not have th...
https://code.djangoproject.com/ticket/694
CC-MAIN-2016-40
en
refinedweb
I have a class called ArrayLinearList public class ArrayLinearList implements LinearList { protected Object [] element; protected int size; I have made a subclass of ArrayLinearList public class ArrayEventsList extends ArrayLinearList { } A screen will come up asking the user what option they want. For example: Press '...
http://www.javaprogrammingforums.com/java-theory-questions/18387-arraylinearlist-itss-sub-class-help.html
CC-MAIN-2013-20
en
refinedweb