text stringlengths 20 1.01M | url stringlengths 14 1.25k | dump stringlengths 9 15 ⌀ | lang stringclasses 4
values | source stringclasses 4
values |
|---|---|---|---|---|
projects
/
ncurses.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
ncurses 5.7 - patch 20101128
[ncurses.git]
/
NEWS
diff --git
a/NEWS
b/NEWS
index 8614a009c98b02bb4602c17dd59ddff116a6e1c9..6a919665159cbdfa4de3e19d16a5d08... | https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff;f=NEWS;h=6a919665159cbdfa4de3e19d16a5d08ecda4ba9e;hp=8614a009c98b02bb4602c17dd59ddff116a6e1c9;hb=82035cb9d3375b8c65b4a5a5d3bd89febdc7e201;hpb=06d92ef542e2ae2f48541e67a02acc50336e981c | CC-MAIN-2021-31 | en | refinedweb |
SSH API Framework
Project description
Korv is an API framework that uses TCP sockets over SSH to exchange JSON data with a REST-like protocol. It's built on top of the
asyncssh module, so it uses
asyncio to manage the sockets and its callbacks. This allows you to build rich APIs with the session security of SSH and wit... | https://pypi.org/project/korv/ | CC-MAIN-2021-31 | en | refinedweb |
simply baby oil
£13.00 – £26.00
our gentle, original baby oil, calming and soothing for sensitive skin
Our calming baby oil which works to protect and moisturise the skin, by combining nourishing argan oil with soothing chamomile, this oil is perfect for sensitive. Fantastic for massaging babies, a lovely way to bond w... | https://simplyargan.co.uk/product/simply-baby-oil | CC-MAIN-2021-31 | en | refinedweb |
Procedural Terrain With Java – part 1
Every year, around Christmas time I always get a hankering to write some 3D terrain rendering code. Not so much the actual rendering engine, that part has already been done with 3D APIs such as OpenGL and Direct X. Its more about rendering a 3D terrain generated by code, more speci... | https://www.andygibson.net/blog/programming/procedural-terrain-with-java-part-1/ | CC-MAIN-2021-31 | en | refinedweb |
On Fri, Jun 28, 2002 at 05:32:37PM -0700, Richard Henderson wrote: > On Tue, Jun 25, 2002 at 05:32:59AM -0700, Aldy Hernandez wrote: > > + case BUILT_IN_ARGS_INFO: > > + case BUILT_IN_STDARG_START: > > + case BUILT_IN_VA_END: > > + case BUILT_IN_VA_COPY: > > + case BUILT_IN_VARARGS_START: > > Feel free to fix these (pl... | https://gcc.gnu.org/pipermail/gcc-patches/2002-June/081123.html | CC-MAIN-2021-31 | en | refinedweb |
SpeechSynthesizer 1.3
When you ask Alexa a question, the SpeechSynthesizer interface returns the appropriate speech response.
For example, if you ask Alexa "What's the weather in Seattle?", your client receives a
Speak directive from the Alexa Voice Service (AVS). This directive contains a binary audio attachment with ... | https://developer.amazon.com/es-ES/docs/alexa/alexa-voice-service/speechsynthesizer.html | CC-MAIN-2021-31 | en | refinedweb |
SciChart® the market leader in Fast WPF Charts, WPF 3D Charts, and iOS Chart & Android Chart Components
Hi,
I have a question concerning multithreaded access to the DataSeries:
We implemented an overview for our chart as described here. This works fine when we load data, add it to the series and then display it.
Now, f... | https://www.scichart.com/questions/tags/overview | CC-MAIN-2019-09 | en | refinedweb |
Failamp is a simple audio & video mediaplayer implemented in Python, using the built-in Qt playlist and media handling features. It is modelled, very loosely on the original Winamp, although nowhere near as complete (hence the fail).
The main window
The main window UI was built using Qt Designer. The screenshot below s... | https://www.twobitarcade.net/article/media-player-python-qt/ | CC-MAIN-2019-09 | en | refinedweb |
Thread: The makers of Programs
On a previous post, we talked about Processes. In this post, we will talk about ‘their offspring’, the Thread!
What are threads?
Threads are squiggly lines:
But to be more realistic we can interpret the name Threads coming from:
- an analogy to the Thread of fabrics: they work together to... | http://fdiez.org/thread-program-makers/ | CC-MAIN-2019-09 | en | refinedweb |
import org.slf4j.LoggerFactory; import ch.qos.logback.classic.Level; import ch.qos.logback.classic.Logger; Logger root = (Logger)LoggerFactory.getLogger(Logger.ROOT_LOGGER_NAME); root.setLevel(Level.DEBUG); //change to debug
Saturday, October 16, 2010
Logback: Change root logger level programmatically
A couple of years... | http://fahdshariff.blogspot.com/2010/10/logback-change-root-logger-level.html | CC-MAIN-2019-09 | en | refinedweb |
Urho.Application Class
Base class for creating applications which initialize the Urho3D engine and run a main loop until exited.
See Also: Application
Syntax
[Preserve(AllMembers=true)]
public class Application : UrhoObject
public class Application : UrhoObject
Remarks
This is the base class that your application shoul... | https://developer.xamarin.com/api/type/Urho.Application/ | CC-MAIN-2019-09 | en | refinedweb |
The wrapper itself is autogenerated by a tool i wrote, and so i hope to be able to keep up with updates extremely quickly.
Not every part of the wrapper is covered by unit tests yet, but what i have used works flawlessly (mainly loading, playing rewinding etc.).
Usage is straight forward, e.g:
Code: Select all
PM> Ins... | http://www.warmplace.ru/forum/viewtopic.php?f=3&t=4297 | CC-MAIN-2019-09 | en | refinedweb |
iGenMeshAnimationControlState Struct Reference
[Mesh plugins]
This interface describes the API for setting up the animation control as implemented by the 'gmeshanim' plugin. More...
#include <imesh/gmeshanim.h>
Inheritance diagram for iGenMeshAnimationControlState:
Detailed Description
This interface describes the API ... | http://crystalspace3d.org/docs/online/api/structiGenMeshAnimationControlState.html | CC-MAIN-2016-50 | en | refinedweb |
I have a activity A in which I have a fragment.
In this activity Fragment changes to fragment A(default when activity A is called) or fragment B based on user input in activity A.
In both fragments A & B I have a button with on click listener. but this button works only for the first time when activity A is started.
wh... | https://codedump.io/share/EXNeBlAMUTHQ/1/onclick-event-in-fragment-activity-not-working | CC-MAIN-2016-50 | en | refinedweb |
. The receive location using the AX Adapter is using the default xml receive pipeline, and the “Pass Through” property of the adapter is set to ‘False’.”.
RESOLUTION:
You can resolve this issue by installing an AX 2009 Kernel Hotfix, see this blog post for more details.
WORKAROUND:
We were able to workaround the issue ... | https://blogs.msdn.microsoft.com/emeadaxsupport/2009/09/17/you-get-the-following-warning-message-in-biztalk-server-2006-r22009-the-message-does-not-contain-a-body-part-part-1/ | CC-MAIN-2016-50 | en | refinedweb |
djangosnippets.org: Latest snippets tagged with 'queries' printer coroutine2009-04-25T11:49:30-05:00fnl<p>If you would like to see the latest queries you have done when running a unittest, this is not so easy. You have to initialize the queries list and set DEBUG to True manually. Then you have to figure out a way to p... | https://djangosnippets.org/feeds/tag/queries/ | CC-MAIN-2016-50 | en | refinedweb |
[Courtesy copy of Usenet posting] [Please Cc; I'm not a regular reader of comp.os.linux.powerpc or subscriber to debian-powerpc] Jean-Philippe Combe <combe@lmt.ens-cachan.fr> wrote: >I 'm very intrested in getting ddd 3.0 (a visual debugger based on gdb) on >my LinuxPPC's box. >However I haven't been able to compile th... | https://lists.debian.org/debian-powerpc/1998/10/msg00042.html | CC-MAIN-2016-50 | en | refinedweb |
Geo::GoogleEarth::Pluggable::Plugin::Default - Geo::GoogleEarth::Pluggable Default Plugin Methods
Methods in this package are AUTOLOADed into the Geo::GoogleEarth::Pluggable::Folder namespace at runtime.);
$folder->LineString(name=>"My Placemark", coordinates=>[ [lat,lon,alt], {lat=>$lat,lon=>$lon,alt=>$alt}, ]);
$fold... | http://search.cpan.org/dist/Geo-GoogleEarth-Pluggable/lib/Geo/GoogleEarth/Pluggable/Plugin/Default.pm | CC-MAIN-2016-50 | en | refinedweb |
HierMenus CENTRAL: HierMenus In Progress. HierMenus 5.3 Release Notes (5/7)
dir="rtl" Implementation Notes
As we worked through the various HM behavior problems that we saw in pages where directionality was set specifically to rtl, we discovered a number of cross-browser JavaScript/DOM quirks that may be of interest to... | http://www.webreference.com/dhtml/hiermenus/inprogress/9/5.html | CC-MAIN-2016-50 | en | refinedweb |
[
]
Dan Checkoway commented on NET-306:
-----------------------------------
Rory, can you please help me find a build that includes the fix? Not sure what "ages" means,
but I poked around on and wasn't able to find much...the nightly
builds link on this page is broken:
I also found it odd that the svn tree for commons-... | http://mail-archives.apache.org/mod_mbox/commons-issues/201003.mbox/%3C492242906.130961268033847482.JavaMail.jira@brutus.apache.org%3E | CC-MAIN-2016-50 | en | refinedweb |
User account creation filtered due to spam.
When I compile the attached source file, the s2_multiway_merge function gets apparently miscompiled. The do loop near the end of this function loses both of its terminating conditions and it is compiled to:
.L101:
addl $1, %esi
.L53:
movl -76(%ebp), %edi
movl -92(%ebp), %eax
... | https://gcc.gnu.org/bugzilla/show_bug.cgi?id=33262 | CC-MAIN-2016-50 | en | refinedweb |
How to create your first app for Windows Phone 8
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
This topic provides step-by-step instructions to help you create your first app for Windows Phone. You’re going to create a basic web browser. This simp... | https://msdn.microsoft.com/en-us/library/ff402526(v=vs.105).aspx | CC-MAIN-2016-50 | en | refinedweb |
In today’s Programming Praxis exercise, our goal is to calculate the number of ways a number can be expressed as a McNugget number. Let’s get started, shall we?
A quick import:
import Control.Monad.Identity
We use the same basic technique of building up a table of numbers where each number is the sum of the number abov... | http://bonsaicode.wordpress.com/2012/04/13/programming-praxis-mcnugget-numbers-revisited/ | CC-MAIN-2014-35 | en | refinedweb |
Using VSS Automated System Recovery for Disaster Recovery
A VSS backup-and-recovery application that performs disaster recovery (also called bare-metal recovery) can use the Automated System Recovery (ASR) writer together with Windows Preinstallation Environment (Windows PE) to back up and restore critical volumes and ... | http://msdn.microsoft.com/en-us/library/aa384630(VS.85).aspx | CC-MAIN-2014-35 | en | refinedweb |
Document Object Model Prototypes, Part 2: Accessor (getter/setter) Support
As of December 2011, this topic has been archived. As a result, it is no longer actively maintained. For more information, see Archived Content. For information, recommendations, and guidance regarding the current version of Internet Explorer, s... | http://msdn.microsoft.com/en-us/library/dd229916(v=vs.85).aspx | CC-MAIN-2014-35 | en | refinedweb |
Generates random test problems for TSQR. More...
#include <TsqrRandomizer.hpp>
Generates random test problems for TSQR.
Randomizer knows how to fill in an instance of the given MultiVector class MV with a (pseudo)random test problem, using a generator of type Gen.
Definition at line 58 of file TsqrRandomizer.hpp.
Fill ... | http://trilinos.sandia.gov/packages/docs/r10.8/packages/anasazi/doc/html/classTSQR_1_1Trilinos_1_1Randomizer.html | CC-MAIN-2014-35 | en | refinedweb |
my ]
The solution is to recode your CGI to display a "you are logged out" message (which is good form anyway) instead of a redirect. Then you CAN pass the cookie, and all will be right with the world.
Gary Blackburn
Trained Killer
First,.
####.
as you can see, the cookie is the same...
Perhaps the problem is that $in{u... | http://www.perlmonks.org/index.pl?node_id=72691 | CC-MAIN-2014-35 | en | refinedweb |
01 March 2011 13:50 [Source: ICIS news]
LONDON (ICIS)--SABIC’s proposed elastomers and carbon black joint venture (JV) with ExxonMobil in ?xml:namespace>
The companies have selected
This followed a comprehensive evaluation of numerous factors, including integration opportunities with their existing petrochemical JV at ... | http://www.icis.com/Articles/2011/03/01/9439847/sabic-exxonmobil-saudi-elastomers-jv-at-engineering-design-stage.html | CC-MAIN-2014-35 | en | refinedweb |
07 September 2011 09:32 [Source: ICIS news]
SINGAPORE (ICIS)--?xml:namespace>
The exact date of shutdown of the 300,000 tonne/year facility was not disclosed by the source.
The lack of catalyst affected the company’s HDPE production, while the lack of butane-1 hit Jam Petrochemical’s LLDPE output, the source said.
The ... | http://www.icis.com/Articles/2011/09/07/9490595/irans-jam-halts-hdpelldpe-swing-plant-ops-on-feedstock.html | CC-MAIN-2014-35 | en | refinedweb |
Reduce-and-Broadcast (RB) version of DistTsqr. More...
#include <Tsqr_DistTsqrRB.hpp>
Reduce-and-Broadcast (RB) version of DistTsqr.
Reduce-and-Broadcast (RB) version of DistTsqr, which factors a vertical stack of n by n R factors, one per MPI process. Only the final R factor is broadcast; the implicit Q factor data st... | http://trilinos.sandia.gov/packages/docs/r10.6/packages/anasazi/doc/html/classTSQR_1_1DistTsqrRB.html | CC-MAIN-2014-35 | en | refinedweb |
@ Page
Defines page-specific (.aspx file) attributes used by the ASP.NET page parser and compiler.
Attributes
- AspCompat
- When set to true, this allows the page to be executed on a single-threaded apartment (STA) thread. This allows the page to call STA components, such as a component developed with Microsoft Visual ... | http://msdn.microsoft.com/en-us/library/ydy4x04a(vs.71).aspx | CC-MAIN-2014-35 | en | refinedweb |
Thanks again - one quick question about lazy pattern matching below! On 01/03/2009 23:56, "Daniel Fischer" <daniel.is.fischer at web.de> wrote: > > No, it's not that strict. If it were, we wouldn't need the bang on newStockSum > (but lots of applications needing some laziness would break). > > The Monad instance in Con... | http://www.haskell.org/pipermail/haskell-cafe/2009-March/056946.html | CC-MAIN-2014-35 | en | refinedweb |
.46
eFTE
eFTE is a lightweight, extendable, folding text editor geared toward the programmer. eFTE is a fork of FTE with goals of taking FTE to the next step, hence, Enhanced FTE
pascal-webdev
Old downloads stored here.11 weekly downloads
Knave Bridge Scorer
Duplicate bridge scoring software.8
Imager (perl)
Imager is a... | http://sourceforge.net/directory/developmentstatus:production/os:windows/os:os_portable/license:artistic/ | CC-MAIN-2014-35 | en | refinedweb |
This article is a demo on developing MVVM Application Without any Frameworks.
The new framework to hit WPF world is the MVVM framework. MVVM stands for Model - View - ViewModel. I will not explain the theory stuff here, for that you can refer this article. We will build this MVVM application WITHOUT using any framework... | http://www.codeproject.com/Articles/391783/An-Address-Book-Application-Made-in-MVVM-For-Metro?fid=1720626&df=90&mpp=10&sort=Position&tid=4262903 | CC-MAIN-2014-35 | en | refinedweb |
30 March 2012 11:41 [Source: ICIS news]
SINGAPORE (ICIS)--East China’s isomer-grade xylene (IX) inventory has dropped since the middle of March amid improved demand from the paraxylene (PX) sector, traders in east ?xml:namespace>
The IX inventory held by traders decreased from 70,000 tonnes on 15 March to 50,000 tonnes... | http://www.icis.com/Articles/2012/03/30/9546250/east-china-isomer-grade-xylenes-stock-down-by-20000-tonnes.html | CC-MAIN-2014-35 | en | refinedweb |
This is a kind of 'diary' of my experiences converting my Ant-based build system into scons. You'll see that it is a combination of emails from the mailing list and some extra notes and bits of code that I tried.
John Arrizza
I am (still) new to scons. I've tried it on a couple of small projects and it seems to work we... | http://www.scons.org/wiki/ExtendedExample?highlight=GetFiles | CC-MAIN-2014-35 | en | refinedweb |
Very often I see one question flooding in all forums, “How to upload a File using WCF REST Service? “, so I thought let me write a post on the same.
Essentially, there is nothing specific to do to upload file, but the below steps
1. Create a service with Post operation
2. Pass file data as Input Stream
3. Pass name of ... | http://debugmode.net/2011/05/01/uploading-file-to-server-from-asp-net-client-using-wcf-rest-service/ | CC-MAIN-2014-35 | en | refinedweb |
Answered by:
Windows 8.1 Preview GetVersionEx reports 6.2.9200
Can anyone comment on why the GetVersionEx API on Windows 8.1 Preview reports 6.2.9200 instead of 6.3.x?
C:\>getversionex.exe
6.2.9200 N/A Build 9200
systeminfo.exe obtains the version information through WMI: Win32_OperatingSystem and reports the "correct"... | http://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/c471de52-611f-435d-ab44-56064e5fd7d5/windows-81-preview-getversionex-reports-629200?forum=windowssdk | CC-MAIN-2014-35 | en | refinedweb |
Compiler Construction/Lexical analysis
Lexical Analysis
Lexical analysis is the process of analyzing a stream of individual characters (normally arranged as lines), into a sequence of lexical tokens (tokenization. for instance of "words" and punctuation symbols that make up source code) to feed into the parser. Roughly... | http://en.wikibooks.org/wiki/Compiler_Construction/Lexical_analysis | CC-MAIN-2014-35 | en | refinedweb |
SC_Client_CreateRankingController()
Creates a ranking controller, which can be used to retrieve a rank.
Synopsis:
#include <scoreloop/sc_client.h>
SC_DEPRECATED SC_PUBLISHED SC_Error_t SC_Client_CreateRankingController(SC_Client_h self, SC_RankingController_h *pRankingController, SC_RequestControllerCompletionCallback_... | http://developer.blackberry.com/native/reference/core/com.qnx.doc.scoreloop.lib_ref/topic/sc_client_createrankingcontroller.html | CC-MAIN-2014-35 | en | refinedweb |
Chapter 8. Adding the Red Hat Ceph Storage Dashboard to an overcloud deployment
Red Hat Ceph Storage Dashboard is disabled by default but you can now enable it in your overcloud with the Red Hat OpenStack Platform director. The Ceph Dashboard is a built-in, web-based Ceph management and monitoring application to admini... | https://access.redhat.com/documentation/en-us/red_hat_openstack_platform/16.0/html/deploying_an_overcloud_with_containerized_red_hat_ceph/adding-ceph-dashboard | CC-MAIN-2020-50 | en | refinedweb |
How to program CYW954907EVAL-1F for data transfer between two modules using 802.11?HaTr_4568521 May 2, 2020 1:06 AM
I'm having a pair of CYW954907EVAL-1F boards and need to program them so that files stored on the SD card of one such module can be transferred to another such module using 802.11 protocol (802.11ac to be... | https://community.cypress.com/thread/54374 | CC-MAIN-2020-50 | en | refinedweb |
Jira integrations
Introduction
GitLab Issues are a tool for discussing ideas and planning and tracking work. However, your organization may already use Jira for these purposes, with extensive, established data and business processes they rely on.
Although you can migrate your Jira issues and work exclusively in GitLab,... | https://docs.gitlab.com/ee/user/project/integrations/jira_integrations.html | CC-MAIN-2020-50 | en | refinedweb |
Working with SQLite as your database in Xamarin.Forms is not difficult but it does involve some specific steps:
- Add the SQLite-.Net PCL library to all three projects
- Create the ISQLite interface
- Add a singleton to your app class
- Open your database in the appropriate directory and use DependencyService to access... | http://jesseliberty.com/2015/10/06/52-weeks-of-xamarin-week-9-databases-part-1/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+JesseLiberty-SilverlightGeek+%28Jesse+Liberty%29 | CC-MAIN-2020-50 | en | refinedweb |
1 //2 //Informa -- RSS Library for Java3 //Copyright (c) 2002-2003 package de.nava.informa.utils;26 27 /**28 * Handy Dandy Test Data generator. There are two ways of using this. By calling 'generate()' we29 * just generate a stream of different rss urls to use for testing. The stream wraps around30 * eventually. Callin... | http://kickjava.com/src/de/nava/informa/utils/RssUrlTestData.java.htm | CC-MAIN-2020-50 | en | refinedweb |
Hi,
I would like to use #stardist (3D) for the segmentation of a large (290, 1024, 1024) (z, y, x) confocal microscope image, but during the prediction the #jupyter kernel of the notebook crashes without any error message.
What I did so far:
I started to used an edged detection method (LoG) to create an initial data. D... | https://forum.image.sc/t/stardist-prediction-kernel-dies/34798 | CC-MAIN-2020-50 | en | refinedweb |
Host callback types needed by the service discovery procedure. More...
#include <ServiceDiscovery.h>
Host callback types needed by the service discovery procedure.
This class is also an interface that may be used in vendor port to model the service discovery process. This interface is not used in user code.
Definition ... | https://os.mbed.com/docs/mbed-os/v6.1/mbed-os-api-doxy/class_service_discovery.html | CC-MAIN-2020-50 | en | refinedweb |
RichText control¶
This control provides rich text editing and display capability.
How to use this control in your solutions¶
- Check that you installed the
@pnp/spfx-controls-reactdependency. Check out the getting started page for more information about installing the dependency.
- Import the following modules to your ... | https://pnp.github.io/sp-dev-fx-controls-react/controls/RichText/ | CC-MAIN-2020-50 | en | refinedweb |
I like to develop small proof of concept applications. Although just validating, some security stuff may be necessary sometimes. Most often than not I also want to have 2 or more users...
So if you're using Spring and Thymeleaf, for the most basic and quick setup for a Spring MVC web app, just do:
Add the
pom.xml depen... | https://dev.to/brunodrugowick/the-most-basic-security-for-spring-boot-with-thymeleaf-339h | CC-MAIN-2020-50 | en | refinedweb |
A simple way to approach this problem would be to consider all ranges of the input array and determine the largest number that can be produced in that range. However, most ranges aren't actually interesting as they could never be combined into one.
To see this it helps to look at the equivalent problem where each of th... | http://usaco.org/current/data/sol_262144_platinum_open16.html | CC-MAIN-2018-17 | en | refinedweb |
TypeScript 2.8 is here and brings a few features that we think you’ll love unconditionally!
If you’re not familiar with TypeScript, it’s a language that adds optional static types to JavaScript. Those static types help make guarantees about your code to avoid typos and other silly errors. They can also help provide nic... | https://blogs.msdn.microsoft.com/typescript/2018/03/27/announcing-typescript-2-8/ | CC-MAIN-2018-17 | en | refinedweb |
Testing deployment of pre-built .war to various web serversJonathan Fuerth Apr 18, 2012 10:53 AM
Hi testing enthusiasts,
I'm itching to automate deployment testing of several Errai quickstart projects. Here's what we're doing by hand:
* Launch in Dev Mode and poke at the app (this can be handled already by the tooling ... | https://developer.jboss.org/thread/198551?tstart=0 | CC-MAIN-2018-17 | en | refinedweb |
Concurrency handling is a technique that allows you to detect and resolve conflicts that arise out of two concurrent requests to the same resource..
Interdependent transactions – a real life example
Imagine a situation in which you were to transfer funds from your bank account to your friend’s account. Now at the time ... | https://www.developerfusion.com/article/84418/concurrency-handling-techniques-in-adonet/ | CC-MAIN-2018-17 | en | refinedweb |
Continued from page 1.
Using the Cloud Foundry CLI you can get details about your app and any services bound to it. In this case, we’re interested in the ie-traffic service. More specifically we need to run cf env <my-predix-current-app> to retrieve the url and Predix-Zone-Id.
"ie-traffic": [ { "credentials": { "url": ... | https://www.programmableweb.com/news/how-ge-current-apis-power-smart-city-applications/sponsored-content/2016/07/21?page=2 | CC-MAIN-2018-17 | en | refinedweb |
Currently, the FreeBSD ports make the following change when building python:
Advertising
--- src/pl/plpython/Makefile.orig Fri Nov 19 20:23:01 2004 +++ src/pl/plpython/Makefile Tue Dec 28 23:32:16 2004 @@ -9,7 +9,7 @@ # shared library. Since there is no official way to determine this # (at least not in pre-2.3 Python),... | https://www.mail-archive.com/pgsql-hackers@postgresql.org/msg83911.html | CC-MAIN-2018-17 | en | refinedweb |
Error adding a Menu in QML
I have the following code:
import QtQuick 2.4 import QtQuick.Window 2.2 import QtQuick.Dialogs 1.2 import QtQuick.Controls 1.4 ApplicationWindow { title: qsTr("Hello World!") width: 640 height: 480 visible: true menuBar: MenuBar { id: menuBar } MouseArea { anchors.fill: parent onClicked: { me... | https://forum.qt.io/topic/57948/error-adding-a-menu-in-qml | CC-MAIN-2018-17 | en | refinedweb |
Session;
Let’s have a look into a quick example where I will show how you can change the session state based on the different member types of your web site. Let’s say you have 3 different types of member (Gold, Silver and Platinum) and You want for Platinum member you want to maintain the session for some specific page... | https://abhijitjana.net/2011/01/15/programmatically-changing-session-state-behavior-in-asp-net-4-0/ | CC-MAIN-2018-17 | en | refinedweb |
Generate wsdl from JSR 181 POJODan Smith Feb 12, 2007 11:38 AM
Is it possible to generate the WSDL file from a JSR-181 POJO endpoint using wstools or some other tool?
I was able to do this using Suns wsgen tool, but when I use the client based on that generated WSDL I get a org.jboss.ws.jaxb.UnmarshalException thrown f... | https://developer.jboss.org/thread/101743 | CC-MAIN-2018-17 | en | refinedweb |
Durable messages getting stuck in Queue.Gurvinderpal Narula Jul 10, 2012 4:36 PM
Hello all,
We are running 2.2.5.Final (HQ_2_2_5_FINAL_AS7, 121) integrated with Jboss AS 5.1.0-Final. This configuration has been running since about 3-4 weeks now. However, we're run into a problem where we're now seeing serveral ( > 2500... | https://developer.jboss.org/thread/202426 | CC-MAIN-2018-17 | en | refinedweb |
configure your Tomcat environment in the Elastic Beanstalk console
Open the Elastic Beanstalk console.
Navigate to the management page for your environment.
Choose Configuration.
On the Software configuration card, choose Modify. endpoint = System.getProperty("API_ENDPOINT");
See Environment Properties and Other Softw... | https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/java-tomcat-platform.html | CC-MAIN-2018-17 | en | refinedweb |
In this article I will explain you how to use ADO.NET technology to connect .NET console application and MS Access 2007 database.
Step 1: Create a Console Application in your .NET Framework. Select File -> New Project as shown in figure.
The application uses OleDb data providers to work with Microsoft Access database.
... | https://www.c-sharpcorner.com/uploadfile/puranindia/ado-net-application-using-ms-access-2007-database/ | CC-MAIN-2018-17 | en | refinedweb |
Prevent BOBJ data loss when Business user leaves
When a business user leaves the company the HR systems will trigger user deletion process which will eventually lock or remove the SAP user accounts in SAP ERP systems. Business Objects systems whose authentication is set to SAP will have only SAP aliases in BOBJ. This b... | https://blogs.sap.com/2017/10/02/prevent-bobj-data-loss-when-business-user-leaves/ | CC-MAIN-2018-17 | en | refinedweb |
I am using the October CMS () that is based on the Laravel Framework for my web app.
Explanation:
First I am calling an external server and getting an XML array which I translate and insert into my local database. Then I pull these values from my local database and try to display them on the front-end. The issue is, th... | https://codedump.io/share/gYeJ0Uh5gv5n/1/translate-dynamic-valuestring-from-database-twig-laravel | CC-MAIN-2018-17 | en | refinedweb |
- Looping
- Difference between preprocessor and namespace
- How come I can use strcmp without including <cstring> ?
- Need help with time
- Difference between Structure and Class
- I have some problems about AVL tree...Please help me....
- Another problem with ftream
- Problems using ostringstreams
- Need help with rea... | http://cboard.cprogramming.com/sitemap/f-3-p-427.html?s=89c27c61047bae59d290dfa73dcce39a | CC-MAIN-2015-35 | en | refinedweb |
Spring for Apache Hadoop provides for each Hadoop interaction type, whether it is vanilla Map/Reduce, Cascading, Hive or Pig, a runner, a dedicated class used for declarative (or programmatic) interaction. The list below illustrates the existing runner classes for each type, their name and namespace element.
While most... | http://docs.spring.io/spring-data/hadoop/docs/2.0.0.M1/reference/html/runners.html | CC-MAIN-2015-35 | en | refinedweb |
- Windows (129)
- Linux (127)
- Mac (104)
- Grouping and Descriptive Categories (80)
- Modern (31)
- BSD (24)
- Other Operating Systems (9)
Site Management Software
VertrigoServ WAMP
Complete WAMP Server - PHP Apache MySQL for Windows.2,662 weekly downloads
CMS Pro Web Shop
Online shopping cms, Website template, websit... | http://sourceforge.net/directory/internet/www/sitemanagement/license:php-license/license:osi/ | CC-MAIN-2015-35 | en | refinedweb |
I am looking for a open source of free tool that I could execute from the command line. It should take a screen shot of the screen and save it to a file. Operating system is Windows. Something like this:
C:\>screenshot.exe screen1.png
Download imagemagick. Many command line image manipulation tools are included. import... | http://superuser.com/questions/75614/take-a-screen-shot-from-command-line-in-windows | CC-MAIN-2015-35 | en | refinedweb |
NAME
unshare - disassociate parts of the process execution context
SYNOPSIS
#define _GNU_SOURCE #include <sched.h> int unshare(int flags);
DESCRIPTION
unshare() allows a process to disassociate parts of its execution context that are currently being shared with other processes. Part of the execution context, such as th... | http://manpages.ubuntu.com/manpages/hardy/man2/unshare.2.html | CC-MAIN-2015-35 | en | refinedweb |
UIConfig
Since: BlackBerry 10.3.0
#include <bb/cascades/UIConfig>
Provides UI configuration properties for a UiObject.
This class provides functions for converting design units into pixels and for exposing the ui palette used within the current context.
Design units are device-independent values that are converted into... | http://developer.blackberry.com/native/reference/cascades/bb__cascades__uiconfig.html | CC-MAIN-2015-35 | en | refinedweb |
Hi. Apologies for not answering earlier, this got buried in my inbox. I think you are right; we are expecting qsort() to be stable - the built-in comparison functions go to extra work to make the results be stable. The test should probably be enhanced to something like: function comp_val_num(s1, v1, s2, v2, num) { num ... | http://lists.gnu.org/archive/html/bug-gawk/2011-07/msg00025.html | CC-MAIN-2015-35 | en | refinedweb |
"getopt" is a familiar function in C programming on UNIX-like operating systems, but outside of that (i.e., Windows, Mac OS), it is nearly non-existent. The purpose of getopt is to help the programmer parse options and their arguments when passed to the application via the command line.
CpGetOpt is the name of this lit... | http://www.codeproject.com/Articles/26502/GetOpt-for-NET?fid=1364246&df=90&mpp=10&noise=1&prof=True&sort=Position&view=Expanded&spc=None | CC-MAIN-2015-35 | en | refinedweb |
Excellent that kind of makes sense now thanks alot.
Excellent that kind of makes sense now thanks alot.
ok in a essenses a constructors allows you initalise a variable with different values?
public class User {
private String Name;
public User(String name) { // constructor
...
Ok so I think I get waht your saying could... | http://www.javaprogrammingforums.com/search.php?s=3a66fbe96d32739885e522b16636ba4b&searchid=1724741 | CC-MAIN-2015-35 | en | refinedweb |
- Author:
- nstrite
- Posted:
- March 23, 2007
- Language:
- Python
- Version:
- .96
- templatetag ifnotequal ifequal template if conditional tag
- Score:
- 12 (after 12 ratings).
More like this
- Showell markup--DRY up your templates by showell 5 years, 9 months ago
- testdata tag for templates by showell 6 years, 3 m... | https://djangosnippets.org/snippets/130/ | CC-MAIN-2015-35 | en | refinedweb |
Created on 2010-08-27.03:18:49 by esatterwhite, last changed 2014-05-10.05:44:53 by zyasoft.
the data structure deque from the collections module is documented as allowing a maxlen argument.
code:
from collections import deque
d = deque([], 5)
results in:
deque() takes at most 1 arguments (2 given)
deque([], maxlen=5)
... | http://bugs.jython.org/issue1650 | CC-MAIN-2015-35 | en | refinedweb |
{-# LANGUAGE ScopedTypeVariables , UndecidableInstances, FlexibleInstances #-} module Data.TCache.IResource where import Data.Typeable import System.IO.Unsafe import Control.Concurrent.STM import Control.Concurrent import System.Directory import Control.Exception as Exception import System.IO import System.IO.Error imp... | http://hackage.haskell.org/package/TCache-0.8.0.1/docs/src/Data-TCache-IResource.html | CC-MAIN-2015-35 | en | refinedweb |
# SoapUI Open Source 5.2
xop:Include href
testrunner.batfrom another directory
Proxy settings can now be auto-detected (SOAP-454)
Please see for an overview of all the new great features and more details on fixes in the final release!
Major New Features: - Test Debugging (Pro) - Assertion TestSteps (Pro) - Message Cont... | http://sourceforge.net/projects/soapui/files/ | CC-MAIN-2015-35 | en | refinedweb |
0
Hi, I am given this assignment that should be run in Jython. The assignment says that the program consists of a Java application with a canvas and a textarea for turtle code. I need to create a Jython application that takes turtle code from the Java application, parses it with regular expressions and calls setPixel(x... | https://www.daniweb.com/software-development/python/threads/447560/how-to-draw-a-rectangle-in-jython | CC-MAIN-2015-35 | en | refinedweb |
I had an idea for a feature that I believe will allow more elegant multi-directory Makefiles to be written. An alternate include directive, rinclude' (for relative include) that treats all targets described in the included makefile as relative to the included path. [ Note: in this email, code samples are bracketed in <... | http://lists.gnu.org/archive/html/bug-make/2011-02/msg00005.html | CC-MAIN-2015-35 | en | refinedweb |
I am a high school student doing a summer project in AI. I am not experienced in Linked Lists, and I need your help to put some values into the linked list.
I would like to make 4 linked lists (superarrays). Can I use this one function below for all 4 linked lists?
What is the headRef variable for? Does it contain the ... | http://cboard.cprogramming.com/cplusplus-programming/22947-how-use-linked-list-printable-thread.html | CC-MAIN-2015-35 | en | refinedweb |
Type: Posts; User: emmanuel1400
I wrote the following code:
columnaProducto = new CType(dataGridViewDetalle.Columns[0], new DataGridViewComboBoxColumn());
The type or namespace name 'CType' could not be found (are you missing...
Hi... is this code functional in C#? Hope someone can help me, I've been google-ing for ove... | http://forums.codeguru.com/search.php?s=40d1357b50f817e79c9d6860c9d08a68&searchid=7648371 | CC-MAIN-2015-35 | en | refinedweb |
The following module functions all construct and return iterators. Some provide streams of infinite length, so they should only be accessed by functions or loops that truncate the stream.
def chain(*iterables): # chain('ABC', 'DEF') --> A B C D E F for it in iterables: for element in it: yield element
def count(n=0): #... | http://wingware.com/psupport/python-manual/2.5/lib/itertools-functions.html | CC-MAIN-2015-35 | en | refinedweb |
A specialized TFileCacheRead object for a TTree.
This class acts as a file cache, registering automatically the baskets from the branches being processed (TTree::Draw or TTree::Process and TSelectors) when in the learning phase. The learning phase is by default 100 entries. It can be changed via TTreeCache::SetLearnEnt... | https://root.cern.ch/doc/v614/classTTreeCache.html | CC-MAIN-2022-21 | en | refinedweb |
Integrating data using ingest and BBKNN¶
The following tutorial describes a simple PCA-based method for integrating data we call ingest and compares it with BBKNN [Polanski19]. BBKNN integrates well with the Scanpy workflow and is accessible through the bbknn function.
The ingest function assumes an annotated reference... | https://scanpy-tutorials.readthedocs.io/en/multiomics/integrating-data-using-ingest.html | CC-MAIN-2022-21 | en | refinedweb |
FitPara-INI
The Levenberg-Marquardt iterative algorithm requires initial values to start the fitting procedure. Good parameter initialization results in fast and reliable model/data convergence. When defining a fitting function in the Function Organizer, you can assign the initial values in the Parameter Settings box, ... | http://cloud.originlab.com/doc/en/Origin-Help/FitPara-INI | CC-MAIN-2022-21 | en | refinedweb |
One of the benefits of adopting a message-based design is being able to easily layer functionality and generically add value to all Services, we've seen this recently with Auto Batched Requests which automatically enables each Service to be batched and executed in a single HTTP Request. Similarly the new Encrypted Mess... | https://docs.servicestack.net/encrypted-messaging | CC-MAIN-2022-21 | en | refinedweb |
RösHTTP alternatives and similar packages
Based on the "HTTP" category.
Alternatively, view RösHTTP alternatives based on common mentions on social networks and blogs.
Http4s9.4 10.0 RösHTTP VS Http4sA minimal, idiomatic Scala interface for HTTP
Spray9.4 0.0 RösHTTP VS SprayA suite of scala libraries for building and c... | https://scala.libhunt.com/roshttp-alternatives | CC-MAIN-2022-21 | en | refinedweb |
On Tue, Jan 20, 2009 at 4:32 PM, Anders Backman <andersb@cs.umu.se> wrote: > > > On Tue, Jan 20, 2009 at 7:07 PM, Ariel Manzur <puntob@gmail.com> wrote: >> >> Hi. >> >> On Tue, Jan 20, 2009 at 11:13 AM, Anders Backman <andersb@cs.umu.se> >> wrote: >> > - LuaBind >> [...] >> > * Full support of virtual methods >> >> do ... | http://lua-users.org/lists/lua-l/2009-01/msg00376.html | CC-MAIN-2022-21 | en | refinedweb |
In this Python tutorial, we will learn about Fractal Python Turtle and we will also cover different examples related to fractal turtles. And, we will cover these topics.
- Fractal python turtle
- Fractal tree python turtle
- Fractal recursion python turtle
- Fractal drawing turtle
Fractal python turtle
In this section,... | https://pythonguides.com/fractal-python-turtle/ | CC-MAIN-2022-21 | en | refinedweb |
Linux
2017-09-15
NAME
sem_init - initialize an unnamed semaphore
SYNOPSIS
#include <semaphore.h>
int sem_init(sem_t *sem, int pshared, unsigned int value);
Link), and so on.
Initializing a semaphore that has already been initialized results in undefined behavior.
RETURN VALUE
sem_init() returns 0 on success; on error, ... | https://reposcope.com/man/en/3/sem_init | CC-MAIN-2022-21 | en | refinedweb |
README
jupyterlab-vega2Requirements
- JupyterLab >= 3.0
InstallInstall
pip install jupyterlab-vega2
UsageUsage
To render Vega 2 or Vega-lite 1 output in IPython:
from IPython.display import display display({ "application/vnd.vegalite.v1"} } } }, raw=True)
To render a
.vg,
.vl,
.vg.json,
.vl.json file, simply open it.-v... | https://www.skypack.dev/view/@jupyterlab/vega2-extension | CC-MAIN-2022-21 | en | refinedweb |
Couchbase Lite is a full-featured NoSQL database that runs locally on mobile devices. The Offline Storage plugin, built and maintained by Ionic as part of Ionic Native, makes it easy to take advantage of the Couchbase Lite database to create your application using an offline-first architecture. This allows you to offer... | https://ionicframework.com/blog/build-secure-offline-apps-with-ionic-couchbase-lite/ | CC-MAIN-2022-21 | en | refinedweb |
Step by step example how to add Redux to Create React App
In a previous article I wrote about how to use React state by building a simple cat application.
When the application is small its relatively easy to maintain React state.
But as the application grows the React state tree gets messier, unmanageable, and more com... | https://linguinecode.com/post/step-by-step-example-how-to-add-redux-to-create-react-app | CC-MAIN-2022-21 | en | refinedweb |
MASM32 Downloads
interesting...(2^N-1)&X = Mod(X/2^N)
I was looking for a method in which I could use - Bidirectional-Associative-memory -
Quote from: LiaoMi on January 10, 2022, 09:06:21 PMI was looking for a method in which I could use - Bidirectional-Associative-memory - A.I. with Hopfield? To restore damaged images... | https://masm32.com/board/index.php?topic=9754.0 | CC-MAIN-2022-21 | en | refinedweb |
Floating Point Support
You may ask yourself "Why should an RTOS care about floating point?" Indeed, the Nut/OS kernel doesn't use any floating point operations. And as long as the supported CPUs don't provide any floating point hardware, the kernel is not involved. However, Nut/OS is more than just a kernel and offers ... | http://www.ethernut.de/en/documents/ntn-4_floats.html | CC-MAIN-2022-21 | en | refinedweb |
Code splitting routers with React Lazy and Suspense
Are you wondering if you should lazy load React components? Does it improve your application performance?
React is fast. But before it becomes fast, your browser has to do a lot of work before it serves your fast React application.
One of the bottlenecks for React is ... | https://linguinecode.com/post/code-splitting-react-router-with-react-lazy-and-react-suspense | CC-MAIN-2022-21 | en | refinedweb |
GREPPER
SEARCH
WRITEUPS
DOCS
INSTALL GREPPER
All Languages
>>
Shell/Bash
>>
source.list kali linux
“source.list kali linux” Code Answer’s
source.list kali linux
shell by
Lunox
on Nov 15 2020
Donate
Comment
3
Try this: sudo apt-get update --fix-missing
kali repo
shell by
Helpful Hamster
on Jul 03 2020
Comment
3
echo "de... | https://www.codegrepper.com/code-examples/shell/source.list+kali+linux | CC-MAIN-2022-21 | en | refinedweb |
?
I took a look at the laser. It is probably the LD TEC (DTEC) failure.
As the temperature of the LD (DTMP) gradually deviated from 25degCish,
the DTEC voltage also went up from 2Vish to 2.1, 2.2...
When DTEC reaches 3V, it stopped lasing. This cools the diode a bit, and
it start lasing but repeat the above process.
I ... | http://nodus.ligo.caltech.edu:8080/40m/?id=8259 | CC-MAIN-2022-21 | en | refinedweb |
ToasterToaster
Android-like toast with very simple interface. (formerly JLToast)
ScreenshotsScreenshots
FeaturesFeatures
- Queueing: Centralized toast center manages the toast queue.
- Customizable: See the Appearance section.
- String or AttributedString: Both supported.
- UIAccessibility: VoiceOver support.
At a Glan... | https://cocoapods.org/pods/Toaster | CC-MAIN-2022-21 | en | refinedweb |
LED blink
Now it’s time for your first project! Let’s start by learning how to use the most basic and commonly used component: the LED. It’s everywhere in life, for lighting, indication, or decoration...
For those coming from the software programming world, you may be familiar with the traditional “hello world” program... | https://docs.madmachine.io/tutorials/swiftio-circuit-playgrounds/modules/led | CC-MAIN-2022-21 | en | refinedweb |
Slides of structure 2: Modern C++ for Computer Vision Lecture 2: C++ Basic Syntax (uni-bonn.de)
This part mainly introduces the keywords, entities, entity declarations and definitions, types, variables, naming rules of identifiers, expressions, if else structures, switch structures, while loops, for loops, arithmetic e... | https://programmer.ink/think/modern_cpp_3-c-basic-syntax.html | CC-MAIN-2022-21 | en | refinedweb |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.