text stringlengths 20 1.01M | url stringlengths 14 1.25k | dump stringlengths 9 15 ⌀ | lang stringclasses 4
values | source stringclasses 4
values |
|---|---|---|---|---|
Feature #6983
Add option to compress log files
0%
Description
The <entry>.info.log files compress from 100MB down to about 5MB. We run on SAN based VM's where disk isn't free so it would be really nice if glideinwms would compress the log file when it rotates them. We'd like to keep a long period of log files for debug... | https://cdcvs.fnal.gov/redmine/issues/6983 | CC-MAIN-2020-34 | en | refinedweb |
.
Cargo is the Rust package manager. Cargo downloads your Rust package’s dependencies, compiles your packages, makes distributable packages, and uploads them to crates.io, the Rust community’s package registry. You can contribute to this book on GitHub.
Sections
Getting Started
To get started with Cargo, install Cargo ... | https://it.scribd.com/document/443400983/The-Cargo-Book-pdf | CC-MAIN-2020-34 | en | refinedweb |
Alright, time to have some fun exploring efficient negative sampling implementations in NumPy…
Negative sampling is a technique used to train machine learning models that generally have several order of magnitudes more negative observations compared to positive ones. And in most cases, these negative observations are n... | https://tech.hbc.com/2018-03-23-negative-sampling-in-numpy.html | CC-MAIN-2019-35 | en | refinedweb |
import updates server 2016
Please fix the broken link when importing updates into WSUS in Server 2016 from the update catalog.
The issue is that the link contains a protocol version 1.20 at the end but the correct version is 1.80!
1 vote
Karl Wester-Ebbinghaus (@tweet_alqamar) commented
still not fixed | https://windowsserver.uservoice.com/forums/304618-installation-and-patching/suggestions/34807510-import-updates-server-2016 | CC-MAIN-2019-35 | en | refinedweb |
Set free your inner geek! Make fridge magnets from old keyboard keys!
My!
Teacher Notes
Teachers! Did you use this instructable in your classroom?
Add a Teacher Note to share how you incorporated it into your lesson.
Step 1: Obtain the Necessary Tools and Supplies
Here are the things you'll need...
.
Step 2: Disassembl... | https://www.instructables.com/id/Keyboard-Refrigerator-Magnets---New-Method/ | CC-MAIN-2019-35 | en | refinedweb |
.[Read More]
March 23, 2017Marion Desmazieres
By Sam Morgan, Head of Education at Makers Academy
Editor’s note: This is part one of our Makers Academy series for Ruby developers. Learn more about this free training on the Alexa Skills Kit in this blog post.
Welcome to the first module of Makers Academy's short course o... | https://developer.amazon.com/ja/blogs/alexa/?page=60 | CC-MAIN-2019-35 | en | refinedweb |
You need to sign in to do that
Don't have an account?
Trigger to update lead status when activity is logged
trigger changeLeadStatus on Task (before insert, before update) {
String desiredNewLeadStatus = 'Working';
List<Id> leadIds=new List<Id>();
for(Task t:trigger.new){
if(t.Status=='Completed'){
if(String.valueOf(t.... | https://developer.salesforce.com/forums?communityId=09aF00000004HMGIA2 | CC-MAIN-2019-35 | en | refinedweb |
Top Answers to Salesforce Interview Questions
Here are some of the top benefits of Salesforce CRM:
- Ensuring faster and better sales opportunity
- Deploying an analytical approach to customer acquisition
- Reducing cost and improving customer satisfaction
- Automation of repetitive and less important tasks
- Improved ... | https://intellipaat.com/blog/interview-question/salesforce-interview-questions/ | CC-MAIN-2019-35 | en | refinedweb |
Using the power of .NET and the power of COM InterOperability through WithClass 2000, you can view the System.Drawing library in a rough UML diagram.
Tools Used Visual C# .NET, WithClass 2000 Enterprise(Trial Version) Using the power of .NET and the power of COM InterOperability through WithClass 2000, you can view the... | https://www.c-sharpcorner.com/article/using-reflection-and-with-class2000-to-view-the-net-system/ | CC-MAIN-2019-35 | en | refinedweb |
Class SharableParticipants
- java.lang.Object
- org.eclipse.ltk.core.refactoring.participants.SharableParticipants
public class SharableParticipants extends ObjectAn opaque list to manage sharable participants.
The list is managed by the refactoring itself. Clients typically only pass the list to the corresponding meth... | http://help.eclipse.org/2019-03/nftopic/org.eclipse.platform.doc.isv/reference/api/org/eclipse/ltk/core/refactoring/participants/SharableParticipants.html | CC-MAIN-2019-35 | en | refinedweb |
wifi_get_scan_result_ssid()
Get the Service Set Identifier (SSID) for a Wi-Fi scan result entry.
Synopsis:
#include <wifi/wifi_service.h>
WIFI_API wifi_result_t wifi_get_scan_result_ssid(wifi_scan_results_t *scan_results, int entry_number, char *ssid)
Since:
BlackBerry 10.2.0
Arguments:
- scan_results
The scan result l... | https://developer.blackberry.com/native/reference/core/com.qnx.doc.wifi_service.lib_ref/topic/wifi_get_scan_result_ssid.html | CC-MAIN-2019-35 | en | refinedweb |
Let’s work off the previous Todo tutorial and add a way to filter those Todos using just Stimulus.
We will only need to work on the
todos/index.html file, and to add one Javascript controller. This example will highlight how Stimulus enhances your server rendered HTML, without the need to build complicated constellatio... | https://johnbeatty.co/2018/03/15/stimulus-js-tutorial-how-do-i-filter-data-in-a-list-or-table/ | CC-MAIN-2019-35 | en | refinedweb |
In this article we will:
- Learn why stateful packages challenge stability
- See an example of a stateful package
- Identify CanJS’s stateful packages
- Provide strategies that minimize the problems with stateful packages
With the elimination of side effects, it becomes possible to use multiple versions of the same pac... | https://www.bitovi.com/blog/coping-with-stateful-code | CC-MAIN-2019-35 | en | refinedweb |
import os import sys import ConfigParser # Part I. This works: 'first run:', base_dir, template_file # Part II. This fails: def parseConfig(): base_dir, template_file return base_dir, www_base, contact_address, template_file parseConfig() print 'second run:', base_dir, template_file
# Excerpt from ini file [Main] base_... | https://www.experts-exchange.com/questions/26558498/Accessing-python-ConfigParser-option-values.html | CC-MAIN-2019-35 | en | refinedweb |
Given a text txt[0..n-1] and a pattern pat[0..m-1], write a function that prints all occurrences of pat[] in txt[]. You may assume that n > m.
Examples:
Input : txt[] = "geeks for geeks" pat[] = "geeks" Output : Pattern found at index 0 Pattern found at index 10 Input : txt[] = "aaaa" pat[] = "aa" Output : Pattern foun... | http://linksoftvn.com/pattern-searching-using-c-library/ | CC-MAIN-2019-43 | en | refinedweb |
Download source code for Custom CacheManager Implementation for Windows/Console applications
Introduction
Mainly the term caching is used in web applications environments to store commonly used database values. By caching this information rather than relying on repeated database calls, decreases the demand on the Web s... | http://www.dotnetfunda.com/articles/show/602/custom-cachemanager-implementation-for-windowsconsole-applications | CC-MAIN-2019-43 | en | refinedweb |
Problem: by injection of ResourceInfo in resource class or in provider in OSGi environment CXF throws following exception:
Caused by: java.lang.IllegalArgumentException: interface org.apache.cxf.jaxrs.impl.tl.ThreadLocalProxy is not visible from class loader at java.lang.reflect.Proxy.getProxyClass0(Proxy.java:487)[:1.... | https://issues.apache.org/jira/browse/CXF-6005 | CC-MAIN-2019-43 | en | refinedweb |
Components and supplies
Apps and online services
About this project
This project is basically what it sounds like - a smart outlet. This smart outlet can apply to any device that has a plug FOR 120V only! (Targeted mainly at lamps using low amps.) This outlet is an outlet controlled by a 1-channel relay. This project a... | https://create.arduino.cc/projecthub/xXarduino_11Xx/smart-plug-7b3e6a | CC-MAIN-2019-43 | en | refinedweb |
Update Status bar from inside a script
On 23/07/2016 at 08:29, xxxxxxxx wrote:
How can I update the status bar with c4d.StatusSetBar() and make it show the progress from inside a script?
Even if I place c4d.EventAdd() commands inside my loop, the status bar doesn't update.
On 23/07/2016 at 10:32, xxxxxxxx wrote:
You ne... | https://plugincafe.maxon.net/topic/9608/12905_update-status-bar-from-inside-a-script/10 | CC-MAIN-2019-43 | en | refinedweb |
We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hi, I have an issue with Geomerative. I'd like to switch from text to text using this library according to a time schedule. It works but when switching to a shorter text I still see the previous text! How can I sw... | https://forum.processing.org/two/discussion/28017/how-to-switch-from-one-text-to-another-according-to-time-with-the-geomerative-library | CC-MAIN-2019-43 | en | refinedweb |
Author: mikemccand
Date: Thu Jan 29 14:13:35 2009
New Revision: 738862
URL:
Log:
LUCENE-1487: improve javadoc for FieldCacheTermsFilter
Modified:
lucene/java/trunk/src/java/org/apache/lucene/search/FieldCacheTermsFilter.java
Modified: lucene/java/trunk/src/java/org/apache/lucene/search/FieldCacheTermsFilter.java
URL:
=... | http://mail-archives.apache.org/mod_mbox/lucene-java-commits/200901.mbox/%3C20090129141335.B5F99238896B@eris.apache.org%3E | CC-MAIN-2019-43 | en | refinedweb |
On demand data in Python, Part 1
Python iterators and generators
Learn how to process data in Python efficiently, on demand rather than pre-emptively
Content series:
This content is part # of # in the series: On demand data in Python, Part 1
This content is part of the series:On demand data in Python, Part 1
Stay tuned... | https://www.ibm.com/developerworks/library/ba-on-demand-data-python-1/index.html | CC-MAIN-2019-43 | en | refinedweb |
import "mime/multipart"
Package multipart implements MIME multipart parsing, as defined in RFC 2046.
The implementation is sufficient for HTTP (RFC 2388) and the multipart bodies generated by popular browsers.
formdata.go multipart.go writer.go
ErrMessageTooLarge is returned by ReadForm if the message form data is too ... | https://godoc.org/mime/multipart | CC-MAIN-2019-43 | en | refinedweb |
sbt-assemblysbt-assembly
Deploy fat JARs. Restart processes.
sbt-assembly is a sbt plugin originally ported from codahale's assembly-sbt, which I'm guessing was inspired by Maven's assembly plugin. The goal is simple: Create a fat")
(You may need to check this project's tags to see what the most recent release is.):
la... | https://index.scala-lang.org/sbt/sbt-assembly/sbt-assembly/0.15.0?target=_2.12_1.0 | CC-MAIN-2020-45 | en | refinedweb |
getpriority, setpriority - get/set program scheduling priority
#include <sys/time.h>
#include <sys/resource.h>
int
getpriority(int which, id_t who);
int
setpriority(int which, id. Priority values outside the range -20 to 20 are
truncated to the
appropriate limit. Only the superuseruser attempted to lower a process
prio... | https://nixdoc.net/man-pages/OpenBSD/man2/setpriority.2.html | CC-MAIN-2020-45 | en | refinedweb |
Rendering a ContentFolder as a Block to List Assets
Update: I'm an idiot. Fixed it up.
For content-heavy clients, we get the occasional request for listing file assets on the site for download. From what I can tell, there are a couple of options that require a bit of author effort, but I really wanted to provide someth... | https://world.episerver.com/blogs/egandalf/dates/2016/10/rendering-a-contentfolder-as-a-block-to-list-assets/ | CC-MAIN-2020-45 | en | refinedweb |
0,5
Can be extended to negative numbers by defining a(-n) = -a(n).
Based on the product rule for differentiation of functions: for functions f(x) and g(x), (fg)' = f'g + fg'. So with numbers, (ab)' = a'b + ab'. This implies 1' = 0. - Kerry Mitchell, Mar 18 2004
The derivative of a number x with respect to a prime numbe... | http://oeis.org/A003415 | CC-MAIN-2020-45 | en | refinedweb |
The npm package angular-archwizard receives a total of 9,336 downloads a week. As such, we scored angular-archwizard popularity level to be Small.
Based on project statistics from the GitHub repository for the npm package angular-archwizard, we found that it has been starred 256-archwizard is missing a security policy.... | https://snyk.io/advisor/npm-package/angular-archwizard | CC-MAIN-2020-45 | en | refinedweb |
PMHTTPNEWCLIENT(3) Library Functions Manual PMHTTPNEWCLIENT(3)
pmhttpNewClient, pmhttpFreeClient, pmhttpClientFetch - simple HTTP client interfaces
#include <pcp/pmapi.h> #include <pcp/pmhttp.h> struct http_client *pmhttpNewClient(void); void pmhttpFreeClient(struct http_client *client); int pmhttpClientFetch(struct ht... | https://man7.org/linux/man-pages/man3/pmhttpnewclient.3.html | CC-MAIN-2020-45 | en | refinedweb |
SAP Labs came for on campus internship recruitment (2 months) at Delhi Technological University on 26th July, 2018 for B.Tech students.
There were a total of 4 rounds –
- Online round on Hackerrank – 1 hour duration
The round consisted of around 20 MCQ questions and 2 simple coding problems.
MCQs were a mix of output p... | https://www.geeksforgeeks.org/sap-labs-interview-experience-set-36-for-2-months-internship/?ref=lbp | CC-MAIN-2020-45 | en | refinedweb |
Important: Please read the Qt Code of Conduct -
#include repost
Since my original post DID NOT get solved I am taking the liberty t repost with additional info.
I am trying not to reinvent the wheel and putting two WORKING application under one roof.
My task is to add existing files of btscanner apprication into tab di... | https://forum.qt.io/topic/117793/include-repost | CC-MAIN-2020-45 | en | refinedweb |
The ServiceLocationHelper has some extension methods (in namespace EPiServer I think) that make it easier to get e.g. a content repository. The class is very thin and basically exists only to make it possible to add these extension methods, so it should be cheap to instantiate.
There should be no difference in the cont... | https://world.episerver.com/forum/developer-forum/-Episerver-75-CMS/Thread-Container/2014/8/InitializationModule-contextLocateAdvanced-vs-ServiceLocatorCurrent/ | CC-MAIN-2020-45 | en | refinedweb |
There is quite a lot of talk around gRPC lately. This article will introduce you to gRPC, what it actually is, how does it compare to REST Protocol, and really when to use it, some concepts on Protocol Buffers. Further, we will also go through a demonstration of working with gRPC in ASP.NET Core to get a complete pictu... | https://www.codewithmukesh.com/blog/grpc-in-aspnet-core-getting-started/ | CC-MAIN-2020-45 | en | refinedweb |
Available items
The developer of this repository has not created any items for sale yet. Need a bug fixed? Help with integration? A different license? Create a request here:
sgqlc- Simple GraphQL Client ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. image:: :target:
.. image:: :target:
This package offers an easy to use
GraphQL_ c... | https://xscode.com/profusion/sgqlc | CC-MAIN-2020-45 | en | refinedweb |
#include <genesis/utils/io/gzip_stream.hpp>
Inherits StrictFStreamHolder< StrictIFStream >, and istream.
Input file stream that offers on-the-fly gzip-decompression if needed.
The class accesses an internal std::ifstream. This can be used to open a file and read decompressed data from it.
If
auto_detect is
true (defaul... | http://doc.genesis-lib.org/classgenesis_1_1utils_1_1_gzip_i_f_stream.html | CC-MAIN-2020-45 | en | refinedweb |
Created on 2008-01-28 14:39 by agoucher, last changed 2008-01-28 15:57 by gvanrossum. This issue is now closed.
There are a couple places in unittest where 'issubclass(something,
TestCase)' is used. This prevents you from organizing your test code via
class hierarchies. To solve this problem, issubclass should be looki... | https://bugs.python.org/issue1955 | CC-MAIN-2020-45 | en | refinedweb |
libpfm_intel_ivbep_unc_ubo — support for Intel Ivy Bridge-EP U-Box uncore PMU
Synopsis
#include <perfmon/pfmlib.h> PMU name: ivbep_unc_ubo PMU desc: Intel Ivy Bridge-EP U-Box uncore PMU
Description
The library supports the Intel Ivy Bridge system configuration unit (U-Box) uncore PMU. This PMU model only exists on Ivy ... | https://dashdash.io/3/libpfm_intel_ivbep_unc_ubo | CC-MAIN-2020-45 | en | refinedweb |
Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
INPUTS
Values
values = "10,3,4,7" # You can change these.
Weights
weights = "2,5,1,3" # You can change these.
Knapsack total capacity
capacity = 10
ALGORITHM
def fractional_knapsack(va... | https://tech.io/playgrounds/53440/fractional-knapsack | CC-MAIN-2020-45 | en | refinedweb |
Fl_Widget | +----Fl_Clock_Output | +----Fl_Clock
#include <FL/Fl_Clock.H>
This widget can be used to display a program-supplied time. The time shown on the clock is not updated. To display the current time, use Fl_Clock instead.
The third form of value returns the displayed time in seconds since the UNIX epoch (January... | http://www.fltk.org/doc-1.1/Fl_Clock_Output.html | crawl-001 | en | refinedweb |
a simple wiki application using the classic Model-View-Controller pattern
Document options requiring JavaScript are not displayed
Sample code
Help us improve this content
Level: Intermediate
Brandon J.W. Smith (brandon+dW@16cards.com), Software Engineer, IBM Hanumanth R. Kanthi (kanthi@us.ibm.com), IT Architect,
IBM
0... | http://www.ibm.com/developerworks/web/library/wa-pz-wiki/ | crawl-001 | en | refinedweb |
#include <linbox/blackbox/diagonal.h>
Random diagonal matrices are used heavily as preconditioners.
This is a class of n by n diagonal two template parameters. The first is the field in which the arithmetic is to be done. The second is the vector trait indicating dense or sparse vector interface, dense by default. This... | http://www.linalg.org/linbox-html/classLinBox_1_1Diagonal.html | crawl-001 | en | refinedweb |
Duncan Mackenzie writes about the issue of Categories vs Tags..
Way back when I announced the first Roadmap for Subtext, I stated that Subtext would remove the multiple blogs feature and only support a single blog. Fortunately I was persuaded by many commenters to abandon that change and continue to support multiple b... | http://haacked.com/archive/2006/09.aspx | crawl-001 | en | refinedweb |
Via Dare's blog, I found this interesting post on Random Number Generation on Michael Brundage's website. My undergrad thesis was on the topic of pseudorandom number generation so I thought I'd take the two classes he provided for a quick spin.
Unfortunately, the C# samples did not compile as is. In his post he discuss... | http://haacked.com/archive/2005/02.aspx | crawl-001 | en | refinedweb |
inet_addr()
Convert a string into a numeric Internet address
Synopsis:
#include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> in_addr_t inet_addr( const char * cp );
Since:
BlackBerry 10.0.0
Arguments:
- cp
- A pointer to a string that represents an Internet address.
Description:
The inet_addr() routine... | http://developer.blackberry.com/native/reference/core/com.qnx.doc.neutrino.lib_ref/topic/i/inet_addr.html | CC-MAIN-2016-50 | en | refinedweb |
I am working on a text-based RPG, and I am trying to create magic spells that affect stats such as base attack, turn order, etc. I am using various classes for the spells in the format:
class BuffSpell(object):
def __init__(self, **kwargs):
self.__dict__.update(kwargs)
bardSpells = {
1: BuffSpell(name= "Flare", level= ... | https://codedump.io/share/9mWocLK085wk/1/python-how-do-i-create-effects-that-apply-to-variables-in-classes | CC-MAIN-2016-50 | en | refinedweb |
Set-NetIsatapConfiguration
Set-NetIsatapConfiguration
Syntax
Parameter Set: ByName Set-NetIsatapConfiguration [[-State] <State> {Default | Automatic | Enabled | Disabled} ] [[-Router] <String> ] [[-ResolutionState] <State> {Default | Automatic | Enabled | Disabled} ] [[-ResolutionIntervalSeconds] <UInt32> ] [-CimSessio... | https://technet.microsoft.com/en-us/library/jj613704.aspx | CC-MAIN-2016-50 | en | refinedweb |
Timeline
02/12/07:
- 20:49 Changeset [19595] by
- 7 edits in trunk/WebCore
- 2 edits in trunk/WebKit
- 118 edits8 deletes in trunk
Rolling out r19588 as it caused a build failure and a hang in layout tests after the obvious build fix was applied.
- 17:37 Changeset [19592] by
- 1 edit in tags/Safari-521.34.1/WebKit/Info... | http://trac.webkit.org/timeline?from=2007-02-12T15%3A36%3A34-0800&precision=second | CC-MAIN-2016-50 | en | refinedweb |
Hi,
I'm developing a DirectX 9.0c 2D game engine now code named: "X-Caliber Engine"...
What is the best method to limit Frames Per Second?
I am currently doing this but I don't like it:
#include <mmsystem.h> //... static DWORD LastFrameTime = 0; DWORD FPSLimit = 60; //... //-MAIN-LOOP-----------------------------------... | http://www.gamedev.net/topic/649599-directx-9-best-method-to-limit-fps/ | CC-MAIN-2016-50 | en | refinedweb |
0
I began teaching myself programming 3 weeks ago. Its hard (for me) i'm trying to include some date validating within a program i am writing.
this is what i have so far, but invalid dates are validated unfortunately.
eg. November 31 2010
or february 30 2012
have a look and help me out please
#include <iostream.h> #inc... | https://www.daniweb.com/programming/software-development/threads/277586/date-validating | CC-MAIN-2016-50 | en | refinedweb |
How to Convert AVI to iMovie on Mac
Problems while importing AVI to iMovie:.
How to Convert AVI to iMovie?.
How to use AVI to iMovie Converter for Mac?
This is a guide for Mac users. If you are a Windows user, you can go to the Video Converter guide and follow the steps of converting on Windows.
buy video converter mac... | http://www.anddev.org/general-f3/how-to-convert-avi-to-imovie-on-mac-t2167464.html | CC-MAIN-2014-10 | en | refinedweb |
CS::Utility::ImportKit Class ReferenceCrystal Space Import Kit. More...
#include <cstool/importkit.h>
Detailed DescriptionCrystal Space Import Kit.
A class wraps access to loader plugins and mesh factories to allow simple access to mesh data (albeit the returned data is limited compared to what the engine supports).
De... | http://www.crystalspace3d.org/docs/online/api-1.2/classCS_1_1Utility_1_1ImportKit.html | CC-MAIN-2014-10 | en | refinedweb |
2009 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C liability, trademark and document use rules apply. Public Working Draft of W3C XML Schema Definition Language (XSD) 1.1. It is here made available for review by W3C members and the public. XSD 1.1 retains all the essential features of XSD 1.0, but adds several new... | http://www.w3.org/TR/2009/WD-xmlschema11-1-20090130/ | CC-MAIN-2014-10 | en | refinedweb |
).
Since a few crypt(3) extensions allow different values, with different sizes in the salt, it is recommended to use the full crypted password as salt when checking for a password.
A simple example illustrating typical use:
import crypt, getpass, pwd def login(): username = | http://docs.python.org/3.2/library/crypt.html | CC-MAIN-2014-10 | en | refinedweb |
NAME
ng_h4 -- Netgraph node type that is also an H4 line discipline
SYNOPSIS
#include <sys/types.h> #include <netgraph/bluetooth/include/ng_h4.h>
DESCRIPTION
The h4 node type is both a persistent Netgraph node type and a H4 line discipline. It implements a Bluetooth HCI UART transport layer as per chapter H4 of the Blu... | http://manpages.ubuntu.com/manpages/oneiric/man4/ng_h4.4freebsd.html | CC-MAIN-2014-10 | en | refinedweb |
...one of the most highly
regarded and expertly designed C++ library projects in the
world. — Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
The following is an updated version of the article "C++ Type traits" by John Maddock and Steve Cleary that appeared in the October 2000 issue of Dr Dobb's Journal.
Gene... | http://www.boost.org/doc/libs/1_53_0_beta1/libs/type_traits/doc/html/boost_typetraits/background.html | CC-MAIN-2014-10 | en | refinedweb |
In my previous articles on CodeProject.com, I have explained the fundamentals of Windows Communication Foundation (WCF), LINQ, LINQ to SQL, Entity Framework, and LINQ to Entities, including:
All above articles are based on .NET 4.0/Visual Studio 2010, so if .NET 4.0/Visual Studio 2010 are good for you, you can open and... | http://www.codeproject.com/Articles/531332/Implementing-a-Basic-Hello-World-WCF-Service-v4-5?msg=4501416 | CC-MAIN-2014-10 | en | refinedweb |
Python FFI with ctypes and cffiMarch 9th, 2013 at 5:41 am
In a previous post, I demonstrated how to use libffi to perform fully dynamic calls to C code, where "fully dynamic" means that even the types of the arguments and return values are determined at runtime.
Here I want to discuss how the same task is done from Pyt... | http://eli.thegreenplace.net/2013/03/09/python-ffi-with-ctypes-and-cffi/ | CC-MAIN-2014-10 | en | refinedweb |
I run my app for android which I made with flash cs 5.5 and Air 3.0 on my Emulator. Way I see only a black screen on my Emulator?
How are you installing the apk into the emulator?
I have the sdk emulator 5554 android 2.2. I see my app when I choise launcher icon -> settings-> applications -> manage applicatios and I se... | http://forums.adobe.com/message/4344725 | CC-MAIN-2014-10 | en | refinedweb |
Related Titles
- Full Description.
Of course, Pro PHP Programming gives a thorough survey of PHP post-5.3. You'll begin by working through an informative survey and clear guide to object-oriented PHP. Then, you'll be set for the core of the book on modern PHP applications. Now, you'll be able to start with the chapter ... | http://www.apress.com/catalog/product/view/id/4910/s/9781430235606/category/1596/?___SID=U | CC-MAIN-2014-10 | en | refinedweb |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Java to write a blob to disk, does any one have the java to read a blob from disk
Your Java example is used to get data from PL/SQL to disk. If you MUST use java to go the other way, I cannot help. If you want to get from a disk file to a PL/SQL blob there is no nee... | http://www.orafaq.com/maillist/oracle-l/2004/02/26/2692.htm | CC-MAIN-2014-10 | en | refinedweb |
#include <NOX_MultiVector.H>
Inheritance diagram for NOX::MultiVector:. | http://trilinos.sandia.gov/packages/docs/r8.0/packages/nox/doc/html/classNOX_1_1MultiVector.html | CC-MAIN-2014-10 | en | refinedweb |
Mediator pattern is the event-driven pattern, where handlers are registered for specific event and when the event is triggered, event handlers are invoked and the underlying logic is executed. It is highly used with the Microservices architecture which is one of the most demanding architecture for large-scale enterpris... | https://ovaismehboob.com/2018/01/31/implementing-mediator-pattern-in-net-core-using-mediatr/ | CC-MAIN-2020-16 | en | refinedweb |
Secure Your Web Apps Using the Servlet API
Prior to Java Enterprise Edition (Java EE) 7, there were only a couple of ways to secure your servlets. These included HTTP Basic Authentication and oAuth. In either case, a callback mechanism was employed to prompt the user for his or her credentials. If the credentials—defin... | https://www.developer.com/java/ent/secure-your-web-apps-using-the-servlet-api.html | CC-MAIN-2020-16 | en | refinedweb |
do
Contents
Introduction
By getting involved with Phonon, you can choose between three different main tasks.
- Using the Phonon API, which allows you to develop your own multimedia application. This is discussed here.
- Hacking the Phonon library.
- Writing Phonon backend, this consists in writing interfaces that allow... | https://techbase.kde.org/index.php?title=Phonon&diff=cur&oldid=8457 | CC-MAIN-2020-16 | en | refinedweb |
Active Directory
about domains and groups, 1
address Property, 1
configuration properties, 1
defaultrole Property, 1
determining user authorization levels, 1
logdetail Property, 1
overview, 1
port Property, 1
purposes used for, 1
state Property, 1
strictcertmode Property, 1
timeout Property, 1, 2
typical uses, 1
User A... | https://docs.oracle.com/cd/E19469-01/820-1188-12/ix.html | CC-MAIN-2020-16 | en | refinedweb |
Upgrade A Custom Add-on To Plone 5.1¶
Installation Code¶
See PLIP 1340 for a discussion of this change.
From CMFQuickInstallerTool To GenericSetup¶
The add-ons control panel in Plone 5.1 no longer supports installation or uninstallation code
in
Extensions/install.py or
Extensions/Install.py.
If you have such code, you ... | https://docs.plone.org/develop/addons/upgrade_to_51.html | CC-MAIN-2020-16 | en | refinedweb |
Torch compat
A plugin to enable or disable the torch of a device that works both on Android (including Android 4.x) and ioS.
Getting started
1) Dependency setup
First import the library to your project in your
pubspec.yaml:
torch_compat: ^1.0.2
2) Import the library in your Dart code
import 'package:torch_compat/torch_... | https://pub.dev/documentation/torch_compat/latest/index.html | CC-MAIN-2020-16 | en | refinedweb |
pls am new to java and i have a problem with this particular question.... must not be equal to 0.Decimal, getNum and getDen. The getDecimal method returns the decimal value of the current rational number that is stored. If the number 3 / 4 is stored, then getDecimal will return 0.75. Method getNum returns the numerator... | http://www.dreamincode.net/forums/topic/32681-constructors/ | CC-MAIN-2016-50 | en | refinedweb |
In Today’s Programming Praxis problem we have to solve a logic puzzle. The provided solution uses a 182-line logic programming library and then takes 36 lines to solve the problem. I didn’t feel like porting 182 lines from Scheme to Haskell, so I rolled my own solution. It’s going to be a slightly longer one than usual... | https://bonsaicode.wordpress.com/2009/06/16/programming-praxis-who-owns-the-zebra/ | CC-MAIN-2016-50 | en | refinedweb |
Is it possible to set the linestyle in a matplotlib step function to dashed, dotted, etc.?
I've tried:
step(x, linestyle='--'),
step(x, '--')
As of mpl 1.3.0 this is fixed upstream
You have to come at it a bit sideways as
step seems to ignore
linestyle. If you look at what
step is doing underneath, it is just a thin wr... | https://codedump.io/share/A2QsNJtNHUF/1/linestyle-in-matplotlib-step-function | CC-MAIN-2016-50 | en | refinedweb |
Content-type: text/html
setlocale - Changes or queries the program's current locale
Standard C Library (libc.so, libc.a)
#include <locale.h>
char *setlocale(
int category,
const char *locale);
Interfaces documented on this reference page conform to industry standards as follows:
setlocale(): ISO C, XPG4, POSIX.1c
Refer... | http://backdrift.org/man/tru64/man3/setlocale.3.html | CC-MAIN-2016-50 | en | refinedweb |
Ralf Wildenhues <address@hidden> writes: > [ dropping libtool@ ] > > * Ian Lance Taylor wrote on Mon, Nov 01, 2010 at 09:48:03PM CET: >> Ralf Wildenhues <address@hidden> writes: >> >> > We need a bit of new notation for this, and we need to teach automake >> > about languages that shouldn't have renamed objects even in... | http://lists.gnu.org/archive/html/automake/2010-11/msg00015.html | CC-MAIN-2016-50 | en | refinedweb |
XML::MyXML - A simple-to-use XML module, for parsing and creating XML documents
version 0.9403
use XML::MyXML qw(tidy_xml xml_to_object); use XML::MyXML qw(:all); my $xml = "<item><name>Table</name><price><usd>10.00</usd><eur>8.50</eur></price></item>"; print tidy_xml($xml); my $obj = xml_to_object($xml); print "Price ... | http://search.cpan.org/~karjala/XML-MyXML/lib/XML/MyXML.pm | CC-MAIN-2016-50 | en | refinedweb |
> -----Original Message-----
> From: darrell@apache.org [mailto:darrell@apache.org]
> Sent: Thursday, 21 March 2002 8:31 AM
> To: jakarta-ant-cvs@apache.org
> Subject: cvs commit:
> jakarta-ant/proposal/myrmidon/src/testcases/org/apache/myrmidon/componen
> ts/property/test AbstractPropertyResolverTestCase.java
>
> Inde... | http://mail-archives.apache.org/mod_mbox/ant-dev/200203.mbox/%3CCLEMKEJLBJDGBHEDNCPHGEFIEHAA.adammurdoch_ml@yahoo.com%3E | CC-MAIN-2016-50 | en | refinedweb |
The Vaadin Wiki is temporarily in read only mode due to large recent spam attacks.
Adding JPA to the Address Book Demo
Introduction #
The Vaading address book tutorial (the one hour version, that is) does a very good job introducing the different parts of Vaadin. However, it only uses an in-memory data source with rand... | https://vaadin.com/wiki/-/wiki/Main/Adding%20JPA%20to%20the%20Address%20Book%20Demo | CC-MAIN-2016-50 | en | refinedweb |
This content has been marked as final. Show 25 replies
15. Re: JNI sample problem837475 Mar 1, 2011 3:32 PM (in response to EJP)As I know, I define the type of the file that is created when I clean and build the c++/c project using the project properties.
First, on C compiler's properties I add include and win32 direct... | https://community.oracle.com/thread/2184803?tstart=195&start=15 | CC-MAIN-2017-26 | en | refinedweb |
After getting a profile hash from the LinkedIn Ruby Gem, but I'm looking
for a way to get more information from the user, like skills, their
connections, their email, their profile pic, etc. I'm not having any
trouble accessing this info from the currently authenticated user, only
getting this kind of information from ... | http://bighow.org/tags/connected/1 | CC-MAIN-2017-26 | en | refinedweb |
I have taken Problem #12 from Project Euler as a programming exercise and to compare my (surely not optimal) implementations in C, Python, Erlang and Haskell. In order to get some higher execution times, I search for the first triangle number with more than 1000 divisors instead of 500 as stated in the original proble... | http://boso.herokuapp.com/haskell | CC-MAIN-2017-26 | en | refinedweb |
By default, SharePoint folders do not support columns (metadata). They behave very much like Windows explorer folders with limited config options compared to document libraries. However, SharePoint folders exist inside document libraries, and document libraries have full support for columns (also called fields or metad... | https://ehikioya.com/default-column-values-sharepoint-folder/ | CC-MAIN-2018-22 | en | refinedweb |
It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
When executing a custom email listener listener the below error is displayed in the logs and the email is never sent. When I run the preview function, the email is generated correctly. I attemp... | https://community.atlassian.com/t5/Jira-questions/ScriptRunner-error-in-custom-email-listener/qaq-p/318626 | CC-MAIN-2018-22 | en | refinedweb |
Dear NXP users,
I'm having from a few days a problem that I wasn't able to solve, and to which I can't find any solution.
I downloaded, after registering, the following example code from the Micrium uC-OS website: FRDM-K64F_OS3-TCPIP-HTTPs-DHCPc-KSDK-LIB | Micrium
The problem is that the project is already present only... | https://community.nxp.com/thread/465738 | CC-MAIN-2018-22 | en | refinedweb |
Hello, I'm writing this because I've run out of options. I'm trying to write a java application to access a postgresql database here on our system, but I'm getting an error that I don't understand when the application runs. I would appreciate any help that you can give as I am unsure how to solve this. Here is the begi... | https://www.mail-archive.com/pgsql-jdbc@postgresql.org/msg00415.html | CC-MAIN-2018-22 | en | refinedweb |
My solution is quite straightforward. As any pair of two different points can determine a line. So I go through all the points-pairs, get lines of each pair, store lines as the key in HashMap, then store each point into HasSet belongs to a certain line. Finally, count how many points on each line and select the max.
He... | https://discuss.leetcode.com/user/hunter-na | CC-MAIN-2018-22 | en | refinedweb |
Single sign on is a way for users to issue a security token for the first time login, login into multiple applications using one set of credentials i.e security token.
Adding sso to an application will make things easier for users, because they dont need to remember login credentials for multiple applications. User jus... | https://micropyramid.com/blog/django-single-sign-on-sso-to-multiple-applications/ | CC-MAIN-2018-22 | en | refinedweb |
Coding Step 1 - Hello World and Makefiles
Articles in this series:
- Coding Step 0 - Development Environments
- Coding Step 1 - Hello World and Makefiles
- Coding Step 2 - Source Control
- Coding Step 3 - High-Level Requirements
- Coding Step 4 - Design
Step 0 discussed how to install GCC and the make utility with the ... | https://www.embeddedrelated.com/showarticle/740.php | CC-MAIN-2018-22 | en | refinedweb |
Linear velocity of the rigidbody.
The velocity is specified as a vector with components in the X and Y directions (there is no Z direction in 2D physics). The value is not usually set directly but rather by using forces. Disable drag in the Inspector to stop the gradual decay of the velocity.
See Also: AddForce, drag,... | https://docs.unity3d.com/ScriptReference/Rigidbody2D-velocity.html | CC-MAIN-2018-22 | en | refinedweb |
Persistent Variable Setup
Persistent Variables are variables that should not be cleared by the runtime startup code such as during a reset. If you have a variable which you don't want to have initialized upon a Power On Reset (POR), Watch Dog Timer Reset (WDT), or Master Clear Reset (MCLR), define it as Persistent. Thi... | https://microchipdeveloper.com/c:persistent-variables | CC-MAIN-2019-47 | en | refinedweb |
Hi all. Total beginner here taking first baby steps with a Pololu USB AVR programmer 2.1 and Baby Orangutan B-328 controller.
I’ve been going through the various install processes and I believe I have installed things correctly (grab attached). I’ve got the Programmer V2 config utility running (shows “connected”), and ... | https://forum.pololu.com/t/newb-trying-to-run-simple-test-on-usb-avr-2-1-orangutan-h-no-such-file-error/18272 | CC-MAIN-2019-47 | en | refinedweb |
Creating dynamic, reactive UIs for Shopify without React
pbj
・1 min read
There are a ton of sites on the internet which rely upon Shopify to power their e-commerce needs. Almost all of those websites have interactions which are responsible for a handful of UI-based updates. Managing those UI updates between various Jav... | https://practicaldev-herokuapp-com.global.ssl.fastly.net/pbj/creating-dynamic-reactive-uis-for-shopify-without-react-3bn1 | CC-MAIN-2019-47 | en | refinedweb |
public class ProgressEvent extends TypedEvent
ProgressEventis sent by a
Browserto
ProgressListener's when a progress is made during the loading of the current URL or when the loading of the current URL has been completed.
data, display, time, widget
source
getSource
clone, equals, finalize, getClass, hashCode, notify, ... | https://help.eclipse.org/photon/topic/org.eclipse.platform.doc.isv/reference/api/org/eclipse/swt/browser/ProgressEvent.html | CC-MAIN-2019-47 | en | refinedweb |
The.
This article will explore the Razor API and follow the lifetime of a Razor template from text to powerful templating solutions, including examples such as unit testing ASP.NET MVC views and creating a highly-maintainable email generator.
The Razor Template Lifecycle
Figure 1 shows the lifecycle of a Razor template... | https://www.codemag.com/Article/1103081 | CC-MAIN-2019-47 | en | refinedweb |
The.
“It is quite likely that most container runtimes are vulnerable to this flaw, unless they took very strange mitigations beforehand,” explained Aleksa Sarai, a senior software engineer at SUSE and a maintainer for runC, in an email posted on Openwall. Sarai added that the flaw is blocked by the proper implementatio... | https://www.linux.com/news/kubernetes-docker-containerd-impacted-runc-container-runtime-bug/ | CC-MAIN-2019-47 | en | refinedweb |
Configuring Entity Framework Core into Asp.Net Core
Anna
Updated on
・3 min read
Today I'm going to show you how to create configure project with ASP.Net core, Entity framework core and SQLite.
When I was doing this for the first time it was really difficult for me to understand and in my opinion there are not much tuto... | https://dev.to/annadante/configuring-entity-framework-core-into-asp-net-core-3kd4 | CC-MAIN-2019-47 | en | refinedweb |
This tutorial introduces Documents, Corpora, Vectors and Models: the basic concepts and terms needed to understand and use gensim.
import pprint
The core concepts of
gensim are:
Corpus: a collection of documents.
Vector: a mathematically convenient representation of a document.
Model: an algorithm for transforming vect... | https://radimrehurek.com/gensim/auto_examples/core/run_core_concepts.html | CC-MAIN-2019-47 | en | refinedweb |
gomi
Primitive macros in go, micros.
All gomi files should end with
.gomi
gomi introduces 2 features,
simple text replacement micro
#mi
and the
shout keyword, a micro for errors
Declaration of ALL micros should take place at the top of the file, between
package and
import keywords
package main #mi PI 3.14159 #mi obj_ty... | https://golangexample.com/primitive-macros-in-go-micros/ | CC-MAIN-2022-40 | en | refinedweb |
See: Description
---
All classes with the
Cfnprefix in this module (CFN Resources) are always stable and safe to use.
This module is part of the AWS Cloud Development Kit project.
import software.amazon.awscdk.services.kafkaconnect.*;
There are no official hand-written (L2) constructs for this service yet. Here are som... | https://docs.aws.amazon.com/cdk/api/v1/java/software/amazon/awscdk/services/kafkaconnect/package-summary.html | CC-MAIN-2022-40 | en | refinedweb |
This is part two of a tutorial that describes how to use the ASTRA Toolbox to create a 3D reconstruction from 2D projection images that were taken with a cone-beam CT scanner. In part one, I’ve created a synthetic dataset. In this part, I’ll use that dataset to create a reconstruction. Note that, if you start from a re... | https://tomroelandts.com/articles/astra-toolbox-tutorial-reconstruction-from-projection-images-part-2 | CC-MAIN-2022-40 | en | refinedweb |
In this article, we’ll demonstrate how to implement reCAPTCHA v2 in a React application and how to verify user tokens in a Node.js backend.
Jump ahead:
- Prerequisites
- What is CAPTCHA?
- What is reCAPTCHA?
- Implementing reCAPTCHA in React
- Setting up a sample React project
- Using the Reaptcha router
Prerequisites
... | https://blog.logrocket.com/implement-recaptcha-react-application/ | CC-MAIN-2022-40 | en | refinedweb |
As a followup to newpm -time-passes fix (D59366), now adding a similar
functionality to legacy time-passes.
Enhancing llvm::reportAndResetTimings to accept an optional stream
for reporting output. By default it still reports into info-output-file.
Also fixing to actually reset after printing as declared.
Just two inlin... | https://reviews.llvm.org/D59416?id=191476 | CC-MAIN-2022-40 | en | refinedweb |
06-24-2020
11:27 AM
- edited
06-24-2020
12:59 PM
I'm downloading WebEx recordings via the NBR API's DownloadNBRStorageFile call. However, it appears there is no option to stream the response -- instead it returns the entire recording and the other xml data at once. I have some very large recordings (3+hours), so holdin... | https://community.cisco.com/t5/cloud-collaboration/streaming-download-for-large-nbr-recordings/td-p/4108911 | CC-MAIN-2022-40 | en | refinedweb |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.