text
stringlengths
20
1.01M
url
stringlengths
14
1.25k
dump
stringlengths
9
15
lang
stringclasses
4 values
source
stringclasses
4 values
The new SQL Native Client is a single dynamic link library (DLL) that can be used in OLE DB and ODBC interfaces because it includes both data providers. By using SQL Native Client, applications can use the new SQL Server 2005 features. Some new SQL Server 2005 features that require SQL Native Client are XML Datatype Su...
https://flylib.com/books/en/3.166.1.52/1/
CC-MAIN-2021-43
en
refinedweb
The libsdl direct media library is open source and cross-platform. It helps that it’s also part of Linux already. You can see this if you open a terminal and do a apt-cache search libsdl2 | grep dev This will show you what libraries are available david@david-VM-PC9:~$ apt-cache search libsdl2 | grep dev libsdl2-dev - S...
https://learncgames.com/tutorials/how-to-install-sdl-on-linux/
CC-MAIN-2021-43
en
refinedweb
The NoImplicitPrelude GHC extension is used to disable the prelude.For other ways to disable the prelNoImplicitPreludeude, see Disabling the prelude GHC normally includes the Prelude as an implicit import, both in GHCi and in compilation. This is sometimes what you want; it gives you access to a collection of types, ty...
https://typeclasses.com/ghc/no-implicit-prelude
CC-MAIN-2021-43
en
refinedweb
When I develop a python program in the eclipse Pydev project, I need to import a package pymongo into this python program like the below source code. import pymongo if __name__ == '__main__': pass But it shows an error message Unresolved import: pymongo in the source code, you can see this error message when you move y...
https://www.dev2qa.com/how-to-change-python-interpreter-in-eclipse-pydev-project-to-use-different-python-virtual-environment-library/
CC-MAIN-2021-43
en
refinedweb
Let’s talk about Recursion. Recursion. What is it? It is where a solution to a problem depends on solutions to smaller instances of the same problem. Let’s use the Fibonacci Sequence for this article. What is the Fibonacci Sequence? In a Fibonacci sequence a number is the sum of its two preceding numbers. For example, ...
https://alexduterte.medium.com/lets-talk-about-recursion-dae3857fc88d?source=post_page-----dae3857fc88d--------------------------------
CC-MAIN-2021-43
en
refinedweb
How do I add multiple attachments to Mailboxer? I am using the Mailboxer gem. I have enabled multiple file uploads for the attachment field. What is the best way to set up my controller so it saves all the attachments? Would making a new model called "message_attachment" be a good idea? In that case, how do I set up th...
https://gorails.com/forum/how-do-i-add-multiple-attachments-to-mailboxer
CC-MAIN-2021-43
en
refinedweb
New in Symfony 2.4: Namespaces auto-discovery in DowCrawler Contributed by Jakub Zalas in #6650. When crawling an XML document with the DomCrawler component, you might retrieve documents with more than one namespaces: Note The DomCrawler component is used by the Symfony HTTP client, but also by some Behat drivers. As o...
https://symfony.com/blog/new-in-symfony-2-4-namespaces-auto-discovery-in-dowcrawler
CC-MAIN-2021-43
en
refinedweb
Warning: You are browsing the documentation for Symfony 4.2, which is no longer maintained. Read the updated version of this page for Symfony 5.3 (the current stable version)./: // src/Utils/Slugger.php namespace App\Utils; class Slugger { public function slugify(string $value): string { // ... } } If you’re using the ...
https://symfony.com/doc/4.2/best_practices/business-logic.html
CC-MAIN-2021-43
en
refinedweb
May 28, 2009 08:26 PM|j3rich0|LINK Hello, I'm following a screencast on the WCF Starter Kit and this one involves building a bookmark service, anyway at point he opens up the definition for ICollectionService<Bookmark> and that opens up Service.base.svc.cs which he edits and so on. Well that doesn't happen with me, ins...
https://forums.asp.net/t/1428862.aspx
CC-MAIN-2021-43
en
refinedweb
Python 3.1 also includes several changes to the standard library, described below. The major new addition is an ordered dictionary class, which got its own PEP. When you iterate over an ordered dict, you get a list of keys and values in the same order in which they were inserted, which is often desirable. As an illustr...
https://www.devx.com/opensource/Article/42659/0/page/3
CC-MAIN-2021-43
en
refinedweb
Basics of Dapper Working with databases using Open Source Somewhere between an Object Relational Mapper (ORM) and ADO.NET sits a niche many developers have begun to embrace. MicroORMs provide some of the best features of ORMs but without the drawbacks associated with object tracking. Some of these features include conn...
https://www.jetbrains.com/dotnet/guide/tutorials/basics/dapper/
CC-MAIN-2021-43
en
refinedweb
Stops gradient computation. View aliases Compat aliases for migration See Migration guide for more details. tf.compat.v1.stop_gradient tf.stop_gradient( input, name=None ) Used in the notebooks. For example, the softmax function for a vector x can be written as def softmax(x): numerator = tf.exp(x) denominator = tf.red...
https://www.tensorflow.org/api_docs/python/tf/stop_gradient?hl=iw
CC-MAIN-2021-43
en
refinedweb
Join the community to find out what other Atlassian users are discussing, debating and creating. Hello guys! I would like to call a python script via bamboo task (inline script) This python script load variables from yaml file like this: parser.add_argument( '--config_path', default='config.yaml', help='path of the con...
https://community.atlassian.com/t5/Bamboo-questions/Bamboo-variables-in-yaml-file-not-bamboo-specs-yaml/qaq-p/1305233
CC-MAIN-2021-43
en
refinedweb
Useful SAP Notes for VSN 4.0 (XX-PART-NKS-VSN) This document contains useful SAP Notes relevant to VSN 4.0 applications (for VSN 4.1, see this document, for VSN 4.3, see this document). Please feel free to amend it as new SAP Notes are released. Note: There was no 4.2 release. (includes OSS notes released up until 11th...
https://blogs.sap.com/2013/05/09/useful-sap-notes-for-vsn-40-xx-part-nks-vsn/
CC-MAIN-2021-43
en
refinedweb
Trying to serve files that are in a byte array to my details view in an ASP.NET Core 2 MVC web app - asp.net Currently I have a database with two tables, one table is for products and the other is for file attachments for these products. hen I edit my product, I have an upload form to attach a file. It is uploading to ...
https://html.developreference.com/article/10000090/Trying+to+serve+files+that+are+in+a+byte+array+to+my+details+view+in+an+ASP.NET+Core+2+MVC+web+app
CC-MAIN-2021-43
en
refinedweb
IFRS17 CSM Waterfall Chart Notebook¶ To run this notebook and get all the outputs below, Go to the Cell menu above, and then click Run All. About this notebook¶ This noteook demonstrates the usage of ifrs17sim project in lifelib, by building and running a model and drawing a waterfall graph of CSM amortization on a sin...
https://lifelib.io/projects/notebooks/ifrs17sim/ifrs17sim_csm_waterfall.html
CC-MAIN-2021-43
en
refinedweb
The Service Bus team has released an updated client assembly on nuget for Service Bus for Windows Server 1.1. This update addresses a SAS feature that was added to the Azure Service Bus client in the 2.4 release: the ability to create a connection to Service Bus using only a token and not SAS Key. This enables scenario...
https://blogs.msdn.microsoft.com/servicebus/2014/09/10/updated-service-bus-1-1-for-windows-server-1-0-4-client-assembly/
CC-MAIN-2017-34
en
refinedweb
A quick job board with React, Meteor and Material UI I recently wrote a mini-tutorial “How to write a job app in 48 lines of code” — and here it is again, but using React JS: Facebook’s javascript love-child. This is slightly longer than 48 lines of code, but mainly because I also integrated a Material UI interface. I ...
https://medium.com/@derrybirkett/how-to-code-a-quick-job-board-with-react-meteor-and-material-ui-d4ab3b619ec3
CC-MAIN-2017-34
en
refinedweb
looking for a kind of wildcard on selectBy statement Let's see this clarifying example: class Person(SQLObject): name = StringCol() age = IntCol() gender = StringCol() def personFilter(nameFilter=**wildcard**, ageFilter=**wildcard**, genderFilter=**wildcard**): persons = Person.selectBy(name=nameFilter, age=ageFilter,...
https://sourceforge.net/p/sqlobject/mailman/message/12289775/
CC-MAIN-2017-34
en
refinedweb
Source:NetHack 3.6.0/src/write.c From NetHackWiki (Redirected from Source:Write.c) Below is the full text to write.c from the source code of NetHack 3.6.0. To link to a particular line, write [[Source:NetHack 3.6.0/src/write.c. Top of file /* NetHack 3.6 write.c $NHDT-Date: 1446078770 2015/10/29 00:32:50 $ $NHDT-Branch...
https://nethackwiki.com/wiki/Source:Write.c
CC-MAIN-2017-34
en
refinedweb
Quick Tip: Make IndexedDB a Breeze With LocalForage IndexedDB is a local NoSQL database that allows developers to safely store data in the browser. It has great cross-platform support, works with any type of data, and is powerful enough for building apps that work offline. Although it is probably the best solution for ...
https://tutorialzine.com/2017/05/quick-tip-make-indexed-db-a-breeze-with-local-forage
CC-MAIN-2017-34
en
refinedweb
hi Sushant, Thanks for the code for socket programming.. i tried in the same way u have mentioned, except for changing the IP address(in my system it is 10.0.2.15).. but when i execute the code & send a message from client – I’m getting “Error 3” in client side android window. Please do suggest me to how to get over th...
http://www.edumobile.org/android/socket-programming/
CC-MAIN-2017-34
en
refinedweb
3-D Graphics Programming with Irrlicht There's something about 3-D graphics that just draws you in. Even though I have a degree in Mathematics, I've always had the impression that programming in 3-D would be difficult. I've recently discovered though, that it's really not very hard. In fact, it's almost easy and a lot ...
http://www.linuxjournal.com/magazine/3-d-graphics-programming-irrlicht
CC-MAIN-2014-52
en
refinedweb
Complete Hibernate 3.0 and Hibernate 4 Tutorial Author Struts Hibernate Integration Tutorial NEW... of the tutorial, the author outlines the basic features of the Hibernate environment...Complete Hibernate 3.0 and Hibernate 4 Tutorial   Complete Hibernate 4.0 Tutorial This section contains the Complete Hibernate 4.0 Tu...
http://www.roseindia.net/tutorialhelp/comment/13279
CC-MAIN-2014-52
en
refinedweb
New lower price for Axon II ($78) and Axon Mote ($58). 0 Members and 1 Guest are viewing this topic. #include <avr/io.h>#include <util/delay.h>void main(void){ DDRB = 0xFF; while (1) { PORTB = 0xFF; _delay_us(1500); //Also tried _delay_ms(1.5); PORTB = 0x00; _delay_ms(20); // Tried from 10 ms to 20 ms, but still result...
http://www.societyofrobots.com/robotforum/index.php?topic=14198.0
CC-MAIN-2014-52
en
refinedweb
About | Projects | Docs | Forums | Lists | Bugs | Get Gentoo! | Support | Planet | Wiki -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Steve B. wrote: |? Hardened sources are built with a different thing in mind, security, and stability. These are the primary objectives of hardened, and they do in some instances make a ...
http://archives.gentoo.org/gentoo-security/msg_a32b9534cb7bc26be6aba9cbb8bd91ee.xml
CC-MAIN-2014-52
en
refinedweb
Integration with the ERP system is a very simple case of drag and drop of fields into the document structure using the standard TaskCentre drag and drop functionality. When you are creating an EDI file that you want to send, you create a query in the standard drag and drop query generator in TaskCentre. This produces a...
http://dimensionsoftware.dk/solutions/ediview-for-taskcentre/integration-with-erp-system.aspx
CC-MAIN-2014-52
en
refinedweb
. /*- * Copyright (c) 1999 Michael Sm/dev/mlx/mlxvar.h,v 1.5.2.3 2001/06/25 04:37:51 msmith Exp $ * $DragonFly: src/sys/dev/raid/mlx/mlxvar.h,v 1.4 2004/05/19 22:52:47 dillon Exp $ */ /* * Debugging levels: * 0 - quiet, only emit warnings * 1 - noisy, emit major function points and things done * 2 - extremely noisy, em...
http://www.dragonflybsd.org/cvsweb/src/sys/dev/raid/mlx/mlxvar.h?f=h;rev=1.4
CC-MAIN-2014-52
en
refinedweb
24 October 2012 05:01 [Source: ICIS news] SINGAPORE (ICIS)--?xml:namespace> FPCC plans to raise its Mailiao crackers operating rates to 90% from 1 November, up by ten percentage points from October rates. Two weeks ago, FPCC bought at least 30,000 tonnes of spot naphtha at a premium at below $10/tonne (€7.70/tonne) to ...
http://www.icis.com/Articles/2012/10/24/9606647/Taiwans-FPCC-plans-to-buy-first-half-December-spot.html
CC-MAIN-2014-52
en
refinedweb
Top Apps - Audio & Video - Business & Enterprise - Communications - Development - Home & Education - Games - Graphics - Science & Engineering - Security & Utilities - System Administration Showing page 3 of 5. Binary Bit Net CMS An open source Web Portal Framework / Content Management System application written in ASP....
http://sourceforge.net/directory/natlanguage%3Ajapanese/language%3Acsharp/?sort=rating&page=3
CC-MAIN-2014-52
en
refinedweb
Compose started at Mon Nov 29 18:45:41 UTC 2010 New package bakefile A cross-platform, cross-compiler native makefiles generator New package python-asyncmongo An asynchronous Python MongoDB library New package python-pbs PBS/Torque python module Removed package stapitrace Updated Packages: translate-toolkit-1.8.1-1.el6...
http://www.redhat.com/archives/epel-devel-list/2010-November/msg00121.html
CC-MAIN-2014-52
en
refinedweb
Concept Of Market Efficiency And Its Importance Finance Essay Eugene Fama is generally considered to be the father of the efficient market hypothesis from his work in 1970, I look at the evidence for and against this theory and go on to show how behavioural finance works against an efficient market with real life examp...
http://www.ukessays.com/essays/finance/concept-of-market-efficiency-and-its-importance-finance-essay.php
CC-MAIN-2014-52
en
refinedweb
In this Quick Tip article, we will run through the necessary steps required to implement a frame animation in an Android application. Of the three types of animation you can implement in Android apps, frame animations, also known as drawable animations, are by far the simplest to code. Property and tween animations bot...
http://code.tutsplus.com/tutorials/android-sdk-quick-tip-creating-frame-animations--mobile-15044
CC-MAIN-2014-52
en
refinedweb
This chapter contains the following sections: A RowSet is an object that encapsulates a set of rows from either java Database Connectivity (JDBC) result sets or tabular data sources. RowSets support component-based development models like JavaBeans, with a standard set of properties and an event notification mechanism....
http://docs.oracle.com/cd/B28359_01/java.111/b31224/jcrowset.htm
CC-MAIN-2014-52
en
refinedweb
------------------------------------------------------------------------------- -- Copyright (c) 1998: NEWS,v 1.1320 2008/11/02 00:56:22 tom Exp $ ------------------------------------------------------------------------------- This is a log of changes that ncurses has gone through since Zeyd started working with Pavel ...
http://opensource.apple.com/source/ncurses/ncurses-27/ncurses/NEWS
CC-MAIN-2014-52
en
refinedweb
// $Id: readme.dox 30 2007-08-20 11:15:18Z tb $ /** \file readme.dox Contains main doxygen example explanation page. */ /** \mainpage \section sec_summary Summary This %example shows how to use both Flex and Bison in C++ mode. This way both lexer and parser code and data is encapsulated into classes. Thus the lexer and...
http://panthema.net/2007/flex-bison-cpp-example/flex-bison-cpp-example-0.1/src/readme.dox
CC-MAIN-2014-52
en
refinedweb
Ben Collins-Sussman wrote: > > On Jan 12, 2005, at 4:50 PM, Ben Collins-Sussman wrote: > >> >> I'm not sure what to do but throw up my hands and write it off as a >> nasty wart. >> > > Talked to gstein on IM, and here's a better solution: > > * have the svn client add an extra subversion namespace or attribute > to the...
http://svn.haxx.se/dev/archive-2005-01/0451.shtml
CC-MAIN-2014-52
en
refinedweb
Wrapper class Subrata Saha Greenhorn Joined: Jun 10, 2005 Posts: 19 posted Mar 16, 2006 03:58:00 0 Well i do understand what is wrapper ?? i.e just OO view . int(primitive) --> Integer (wrapper) But i heard some body saying that build a wraaper class then do ..... So what exactly this wrapper class?? satishkumar janak...
http://www.coderanch.com/t/379421/java/java/Wrapper-class
CC-MAIN-2014-52
en
refinedweb
09 November 2006 18:01 [Source: ICIS news] ?xml:namespace> ?xml:namespace> This was been followed by a 40,000 tonnes/year closure of PS capacity by Total in Gonfreville and the largest closure, that of Nova Innovene’s 180,000 tonnes/year plant in the UK, finally shut down at the end of last month. The latest announceme...
http://www.icis.com/Articles/2006/11/09/1104873/europe-ps-output-cut-by-350000-tyr-since-2005.html
CC-MAIN-2014-52
en
refinedweb
Visual Basic 2005: A Developer's Notebook/Visual Studio From WikiContent The new features of Visual Basic 2005 are actually provided by three separate components: the enhanced Visual Studio 2005 IDE, a new version of the VB compiler (vbc.exe), and the revamped .NET 2.0 Framework. In this chapter, you'll start by taking...
http://commons.oreilly.com/wiki/index.php?title=Visual_Basic_2005:_A_Developer's_Notebook/Visual_Studio&direction=prev&oldid=9292
CC-MAIN-2014-52
en
refinedweb
On Tue, 06 May 2008 09:56:22 -0400, Curt <curtferguson at cfl.rr.com> wrote: >Ok, first, I'm a true newbie, I've been playing with twisted, and python >for that matter, for about 3 days. I've been trying to get this script >to work, and I *know* I've got to be doing something simple wrong. All >it is, is a slap-togethe...
http://twistedmatrix.com/pipermail/twisted-python/2008-May/017648.html
CC-MAIN-2014-52
en
refinedweb
09 October 2009 11:45 [Source: ICIS news] LONDON (ICIS news)--European polyethylene terephthalate (PET) customers have been reassured of continued PET supply despite the financial health of domestic producers and an EU investigation into anti-dumping, speakers at a PET industry forum said late on Thursday. Industry pla...
http://www.icis.com/Articles/2009/10/09/9253960/Europe-PET-supply-to-continue-to-rely-on-imports-GSI.html
CC-MAIN-2014-52
en
refinedweb
15 March 2012 15:24 [Source: ICIS news] LONDON (ICIS)--?xml:namespace> The parliament, in a non-binding resolution adopted on Thursday, said that in order to further cut CO2 emissions the EU should improve its Emissions Trading System (ETS) through measures such as “a possible set aside of pollution permits.” Frankfurt...
http://www.icis.com/Articles/2012/03/15/9542053/germany-trade-group-slams-eu-parliament-move-to-curb-co2-permits.html
CC-MAIN-2014-52
en
refinedweb
06 July 2012 07:40 [Source: ICIS news] SINGAPORE (ICIS)--?xml:namespace> The producer started preparing for the restart since 27 June. The No 3 VCM line has been shut since an explosion occurred at the adjacent No 2 VCM line on 13 November 2011. The company restarted its 250,000 tonne/year No 1 VCM line at the same sit...
http://www.icis.com/Articles/2012/07/06/9575866/japans-tosoh-to-restart-no-3-vcm-line-in-nanyo-on-7.html
CC-MAIN-2014-52
en
refinedweb
This is a homework assignment that have been unable to complete. I've been working on it for 6 days with no success. Everything I try causes the code to fail. The code I'm working on is a test program to run against this code. Code java: // method factorial // computes the factorial for 01 to 12! using a table lookup /...
http://www.javaprogrammingforums.com/%20whats-wrong-my-code/35948-factorial-test-program-printingthethread.html
CC-MAIN-2014-52
en
refinedweb
About collections About data provider components Specifying data providers in MXML applications Setting a data provider in ActionScript Example: Using a collection Data provider components require data for display or user interaction. To provide this data, you assign a collection, which is usually an ArrayCollection, A...
http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7b6b.html
CC-MAIN-2014-52
en
refinedweb
Java Persistence/ManyToOne ManyToOneEdit A ManyToOne relationship in Java is where the source object has an attribute that references another object, the target object. I.e. the rather typical Java case that one object holds a reference to another object. A ManyToOne relationship can be specified unidirectional. Howeve...
https://en.m.wikibooks.org/wiki/Java_Persistence/ManyToOne
CC-MAIN-2021-21
en
refinedweb
I am trying to use a GPS Parallax 28146 for a project. I’m just doing some testing on Arduino to make sure it works and is accurate. I’m new to Arduino and I’m having a hard time figuring out what’s wrong with my code. When I run the code, the only thing my GPS.read() is picking up is a value of -1. The GPS has acquire...
https://forum.arduino.cc/t/gps-read-only-reading-1/87925
CC-MAIN-2021-21
en
refinedweb
Get a unique identifierTag(s): String/Number Thread Varia Using java.rmi.dgc.VMIDjava.rmi.dgc.VMID can generate an identifier. Each new VMID is unique for all Java virtual machines under the following conditions: - The conditions for uniqueness for objects of the class java.rmi.server.UID are satisfied -. - An address ...
https://rgagnon.com/javadetails/java-0518.html
CC-MAIN-2021-21
en
refinedweb
GREPPER SEARCH SNIPPETS USAGE DOCS INSTALL GREPPER All Languages >> Javascript >> linear gradient react native “linear gradient react native” Code Answer’s react native liner granding javascript by Tense Tarantula on Apr 07 2020 Donate 1 yarn add react-native-linear-gradient Source: github.com linear gradient react nat...
https://www.codegrepper.com/code-examples/javascript/linear+gradient+react+native
CC-MAIN-2021-21
en
refinedweb
SB-Messaging Adapter The Service Bus (SB-Messaging) adapter is used to receive and send from Service Bus entities like Queues, Topics, and Relays. You can use the SB-Messaging adapter to connect your on-premises BizTalk Server to Azure. Starting with BizTalk Server 2016 Feature Pack 2, Service Bus Premium is supported....
https://docs.microsoft.com/en-us/biztalk/core/sb-messaging-adapter?redirectedfrom=MSDN
CC-MAIN-2019-47
en
refinedweb
Spring Boot, Jersey, and Swagger: Always Happy Together Spring Boot, Jersey, and Swagger: Always Happy Together See how Spring Boot, Jersey, and Swagger help create, document, and monitor the infrastructure of API applications more easily. Join the DZone community and get the full member experience.Join For Free We are...
https://dzone.com/articles/spring-boot-jersey-and-swagger-always-happy-togeth
CC-MAIN-2019-47
en
refinedweb
import "github.com/hyperledger/fabric/orderer/consensus" type Chain interface { // Order accepts a message which has been processed at a given configSeq. // If the configSeq advances, it is the responsibility of the consenter // to revalidate and potentially discard the message // The consenter may return an error, ind...
https://godoc.org/github.com/hyperledger/fabric/orderer/consensus
CC-MAIN-2019-47
en
refinedweb
Nash Nash (or Nash shell) is a minimalist yet powerful shell with focus on readability and security of scripts. It is inspired by Plan9 rc shell and brings to Linux a similar approach to namespaces(7) creation. There is a nashfmt program to correctly format nash scripts in a readable manner, much like the Golang gofmt ...
https://wiki.archlinux.org/index.php?title=Nash&printable=yes
CC-MAIN-2019-47
en
refinedweb
#include <xf86drm.h> The Direct Rendering Manager (DRM) is a framework to manage Graphics Processing Units (GPUs). It is designed to support the needs of complex graphics devices, usually containing programmable pipelines well suited to 3D graphics acceleration. Furthermore, it is responsible for memory management, int...
https://man.linuxreviews.org/man7/drm.7.html
CC-MAIN-2019-47
en
refinedweb
33742/polling-the-queue-in-amazon-sqs This the scenario. I want to send a bunch of notification emails to customers. And am planning to use my web app(s) and other applications to "send" emails. The plan is to have a method, that generates a chunk of XML representing the email to be sent and adds them to the Amazon SQS...
https://www.edureka.co/community/33742/polling-the-queue-in-amazon-sqs
CC-MAIN-2019-47
en
refinedweb
Adding Search to your Eleventy Static Site with Lunr I recently came back from connect.tech (one of my favorite conferences). I had the honor of giving not one, but two different talks. One of them was on static sites, or the JAMstack. This is a topic I’ve covered many times in the past, but it had been a while since I...
https://www.raymondcamden.com/2019/10/20/adding-search-to-your-eleventy-static-site-with-lunr?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+ColdfusionbloggersorgFeed+%28coldfusionBloggers.org+Feed%29
CC-MAIN-2019-47
en
refinedweb
UTF-8. Consider the following string literal expressions, all of which encode U+0123, LATIN SMALL LETTER G WITH CEDILLA: The UTF-8, UTF-16, and UTF-32 string literals have well-defined and portable sequences of code unit values. The ordinary and wide string literal code unit sequences depend on the implementation defi...
http://www.open-std.org/JTC1/SC22/wg21/docs/papers/2018/p0482r5.html
CC-MAIN-2019-47
en
refinedweb
Django utility for a memoization decorator that uses the Django cache framework. Project description Django utility for a memoization decorator that uses the Django cache framework. Key Features - Memoized function calls can be invalidated. - Works with non-trivial arguments and keyword arguments - Insight into cache h...
https://pypi.org/project/django-cache-memoize/
CC-MAIN-2018-22
en
refinedweb
Interface to connect the parser with the registry and more. More... #include "clang/ASTMatchers/Dynamic/Parser.h" Interface to connect the parser with the registry and more. The parser uses the Sema instance passed into parseMatcherExpression() to handle all matcher tokens. The simplest processor implementation would s...
http://clang.llvm.org/doxygen/classclang_1_1ast__matchers_1_1dynamic_1_1Parser_1_1Sema.html
CC-MAIN-2018-22
en
refinedweb
Represents a 'co_return' statement in the C++ Coroutines TS. More... #include "clang/AST/StmtCXX.h" Represents a 'co_return' statement in the C++ Coroutines TS. This statament models the initialization of the coroutine promise (encapsulating the eventual notional return value) from an expression (or braced-init-list), ...
https://clang.llvm.org/doxygen/classclang_1_1CoreturnStmt.html
CC-MAIN-2018-22
en
refinedweb
To wit: Notepad is opened, the font selected as "Arial, Size 11", the words "this is just a test" carefully entered, a screenshot taken: The following Python code is entered and run: import ImageFont, ImageDraw, Image im = Image.open("c:/textimg.png") #the above image pilfont = ImageFont.truetype("arial.ttf", 11) compi...
https://codedump.io/share/Mr0jD6DYKI64/1/why-is-my-truetype-font-of-size-11-rendering-different-than-windows
CC-MAIN-2018-22
en
refinedweb
A dart package with many country flag icons This packages gives you the ability to use the icons via new Image.asset('icons/flags/xx.png', package: 'country_icons'); Flags are used from hjnilsson Repo: Homepage: Add this to your package's pubspec.yaml file: dependencies: country_icons: "^0.0.2" You can install packages...
https://pub.dartlang.org/packages/country_icons
CC-MAIN-2018-22
en
refinedweb
ZeroVM theme for Sphinx Project description This package bundles the ZeroVM theme for Sphinx. Install the package and add this to your conf.py: import zerovm_sphinx_theme html_theme_path = [zerovm_sphinx_theme.theme_path] html_theme = 'zerovm' That will configure the theme path correctly and activate the theme. Changel...
https://pypi.org/project/zerovm-sphinx-theme/
CC-MAIN-2018-22
en
refinedweb
Hey C++ Programmers... I am by classes and now i have an question yet.... here comes my question: - How do i import classes from another folder scripts or another script into an main script ?... This is my first stript, called Main.cpp (from an "Dev C++ Project File (not source file))": Script: Module WhileLoops / Main...
http://forums.devshed.com/programming/980564-dev-project-file-multiple-scripts-import-post2985347.html
CC-MAIN-2018-22
en
refinedweb
I. Objective: Simple 1-layer multi layer perceptron (MLP). f is the activation function and introduces the non-linearity to our system. II. Linear Model: A simple linear model with a softmax layer on top. The main difference here is the lack of a non-linear activation function (ReLU, tanh, etc.). Thanks to Karpathy for...
https://theneuralperspective.com/2016/10/02/03-vanilla-neural-network/
CC-MAIN-2018-22
en
refinedweb
Details Description I have a template that references a List returned by a method on an Enum. The method is defined as an abstract member of the enum. This used to work on 1.4, but doesn't work on 1.6.1 I'm able to get it to work on 1.6.1 by changing the abstract method to a regular method of the Enum, which is then ov...
https://issues.apache.org/jira/browse/VELOCITY-701
CC-MAIN-2015-48
en
refinedweb
Some. For each test case output whether the permutation is ambiguous or not. Adhere to the format shown in the sample output. 4 1 4 3 2 5 2 3 4 5 1 1 1 0 ambiguous not ambiguous ambiguous when i press submit button its giving the requested page could not be found...... whats wrong??? the submit page is stilll not found...
https://www.codechef.com/problems/PERMUT2/
CC-MAIN-2015-48
en
refinedweb
Building a Photo Gallery with Python and WSGI If you wanted to write a Python web application a few years ago, you'd be faced with quite a glut of choices. You'd have to choose among a bunch of great web frameworks, and then figure out a reasonable way to deploy the application in production. It became a running joke t...
http://www.developer.com/open/article.php/3734416/Building-a-Photo-Gallery-with-Python-and-WSGI.htm
CC-MAIN-2015-48
en
refinedweb
MMA7361 Triple Axis Accelerometer Breakout Introduction This is a breakout for freescale mma7361l analog three axis accelerometer. Features - Low Voltage Operation: 2.2 V – 3.6 V - High Sensitivity (800 mV/g @ 1.5g) - Selectable Sensitivity (±1.5g, ±6g) - Fast Turn On Time (0.5 ms Enable Response Time) - Self Test for ...
http://www.geeetech.com/wiki/index.php/MMA7361_Triple_Axis_Accelerometer_Breakout
CC-MAIN-2015-48
en
refinedweb
#include <ggi/internal/triple-int.h> int sign_3(unsigned x[3]); int bits_3(unsigned x[3]); int eq0_3(unsigned x[3]); int gt0_3(unsigned x[3]); int ge0_3(unsigned x[3]); int lt0_3(unsigned x[3]); int le0_3(unsigned x[3]); bits_3 counts the number of significant bits of x. I.e. leading zeros in a positive value and leadi...
http://www.makelinux.net/man/3/G/ggidev-bits_3
CC-MAIN-2015-48
en
refinedweb
(For more resources on .NET, see here.)ASP.NET MVC Web Application template to create a new web application using this template. first project is a web project where you'll implement your application. The second is a testing project that you can use to write unit tests against. first create some ASPX pages in the Views...
https://www.packtpub.com/books/content/aspnet-mvc-framework
CC-MAIN-2015-48
en
refinedweb
Specifies the name of the entity. call-property, default-resource-principal, stub-property (sun-web.xml, sun-ejb-jar.xml, sun-application-client.xml); enterprise-beans, principal, property (with subelements) (sun-ejb-jar.xml) none - contains data Specifies the name of one independent fetch group. All the fields and rel...
http://docs.oracle.com/cd/E19501-01/819-3660/6n5s7klq3/index.html
CC-MAIN-2015-48
en
refinedweb
std::to the variable, or you can use the usingkeyword like: using namespace std;or using std::cout;. std::cout;. I don't use: using namespace std;because std is huge and it brings in many functions that I don't need. It causes the potential for naming conflicts. ::std::coutin case someone creates their own namespace ca...
http://www.cplusplus.com/forum/general/110715/
CC-MAIN-2015-48
en
refinedweb
the Oracle database need to understand the Globalization Support architecture of the database, including the properties of the different character sets, territories, languages and linguistic sort definitions. They also need to understand the globalization functionality of their middle-tier programming environment, and...
http://docs.oracle.com/cd/B19306_01/server.102/b14225/ch8gdk.htm
CC-MAIN-2015-48
en
refinedweb
.util; 32 33 34 /*** 35 * An exception to indicate an error parsing a date string. 36 * 37 * @see DateUtil 38 * 39 * @author Michael Becke 40 */ 41 public class DateParseException extends Exception { 42 43 /*** 44 * 45 */ 46 public DateParseException() { 47 super(); 48 } 49 50 /*** 51 * @param message the exception mes...
http://hc.apache.org/httpclient-legacy/xref/org/apache/commons/httpclient/util/DateParseException.html
CC-MAIN-2015-48
en
refinedweb
Opened 6 years ago Closed 5 years ago Last modified 3 years ago #11877 closed Uncategorized (fixed) Document that request.get_host() fails when behind multiple reverse proxies Description We run django behind several layers of proxies (please excuse ASCII art): Client | | Apache (handling SSL connections, mod_proxy) | ...
https://code.djangoproject.com/ticket/11877
CC-MAIN-2015-48
en
refinedweb
Java Access to SQL Azure via the JDBC Driver for SQL Server The Cloud Zone is brought to you in partnership with Iron.io. Discover how Microservices have transformed the way developers are building and deploying applications in the era of modern cloud infrastructure. I’ve written a couple of posts (here and here) about...
https://dzone.com/articles/java-access-sql-azure-jdbc?mz=62447-cloud
CC-MAIN-2015-48
en
refinedweb
Web consultancy based in Tel Aviv, Israel, and Berlin, Germany. We're hiring. Read our blog. Simple database and filesystem backups with S3 and Rackspace Cloud Files support (with optional encryption) We needed a backup solution that will satisfy the following requirements: And since we didn't find any, we wrote our ow...
http://astrails.com/opensource/astrails-safe
CC-MAIN-2015-48
en
refinedweb
Logbook query program Started: Monday, January 14; Due: Friday, January 18, at 9:00 am Overview This is your first graded lab. You will work on this lab together with a partner, being sure that it accomplishes all of the tasks that I set forth below. You should decide on your teams and inform me on Monday. In grading t...
http://homepages.gac.edu/~mc38/2013J/labs/lab7.php
CC-MAIN-2015-48
en
refinedweb
Code: using System; using System.Collections.Generic; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Drawing; public partial class _Default : System.Web.UI.Page { protected void Button1_Click(object sender, EventArgs e) { //get the path to the image string path = Server.MapPath(Im...
http://www.codingforums.com/asp-net/298391-image-rotate-almost-working.html?s=97bb8dcb5f2f079c61386bcac209c766
CC-MAIN-2015-48
en
refinedweb
Closed Bug 440932 Opened 14 years ago Closed 14 years ago toolkit dlmgr should be buildable by suite Categories (Toolkit Graveyard :: Build Config, defect) Tracking (Not tracked) People (Reporter: Callek, Assigned: Callek) References Details Attachments (2 files, 2 obsolete files) +++ This bug was initially created as ...
https://bugzilla.mozilla.org/show_bug.cgi?id=440932
CC-MAIN-2022-33
en
refinedweb
Solcast API Project description pysolcast Solcast API Client library for interacting with the Solcast API Basic Usage from pysolcast import RooftopSite site = RooftopSite(api_key, resource_id) forecasts = site.get_forecasts() Full API Documentation. History 1.0.2 (2020-04-14) - Release to pypi 1.0.0 (2020-04-10) - Firs...
https://pypi.org/project/pysolcast/1.0.3/
CC-MAIN-2022-33
en
refinedweb
Spring integration Java DSL 1.1 M1 is available Dear Spring community, We are pleased to announce that the Spring Integration Java DSL 1.1 Milestone 1 is now available. Use the Milestone Repository with Maven or Gradle to try it in early access. compile "org.springframework.integration:spring-integration-java-dsl:1.1.0...
https://spring.io/blog/2015/04/15/spring-integration-java-dsl-1-1-m1-is-available
CC-MAIN-2022-33
en
refinedweb
12+ Factors for Containerized UI Microservices 11 min read Software application projects can sometimes end with monolithic user interfaces, even when using a microservices architecture. This monolithic UI can lead to unnecessary complexity and can often result in scaling difficulties, performance issues, and other prob...
https://www.ibm.com/cloud/blog/12-plus-factors-for-containerized-ui-microservices
CC-MAIN-2022-33
en
refinedweb
Allocates and deallocates a channel for an Ethernet device handler. #include <sys/device.h> int entmpx (devno, chanp, channame) dev_t devno; int *chanp; char *channame; The entmpx entry point allocates and deallocates a channel for an Ethernet device handler. This entry point is not called directly by a user. The kerne...
http://ps-2.kev009.com/tl/techlib/manuals/adoclib/libs/ktechrf2/entmpx.htm
CC-MAIN-2022-33
en
refinedweb
go to bug id or search bugs for New/Additional Comment: Description: ------------ Target Manual page is "List of Keywords" (reserved.keywords.html). First, the link of "use" Keyword should not be to "Namespaces" (language.namespaces.html) : almost meanless, but strictly, to "Using namespaces: Aliasing/Importing" (langu...
https://bugs.php.net/bug.php?id=80635&edit=1
CC-MAIN-2022-33
en
refinedweb
<< Kayondo Martin7,481 Points ./FlightActivity.java:15: error: cannot find symbol intent.getStringExtra("FUEL_LEVEL"); I can't figure out why the getStringExtra method can't be resolved...Some help please? import android.content.*;"); } } 1 Answer Seth Kroger56,404 Points One thing you should keep in mind is that the f...
https://teamtreehouse.com/community/flightactivityjava15-error-cannot-find-symbol-intentgetstringextrafuellevel
CC-MAIN-2022-33
en
refinedweb
In the world of computer science, file handling is a very important concept. A file is a type of portable storage that is used to store any type of data. Before a programmer applies any algorithm on a particular file, they need to open that file using the fopen() command. fopen() only has 2 parameters passed into it: F...
https://www.educative.io/answers/fopen-in-cpp
CC-MAIN-2022-33
en
refinedweb
toString() is an instance method of the BitSet class that returns the string representation of the BitSet object. The string representation includes the decimal representation of every index for which the BitSet object has a bit in the set state. These indices are given in ascending order, separated by ", " (a comma an...
https://www.educative.io/answers/what-is-bitsettostring-in-java
CC-MAIN-2022-33
en
refinedweb
🔼 Module Initializers In this latest version of C # 9.0, the [ModuleInitializer] attribute is used to specify a method that we can invoke before any code in the module, the destination method must be static, without any type of parameter and returned empty. using system; using System.Runtime.CompilerServices; class P...
https://practicaldev-herokuapp-com.global.ssl.fastly.net/dotnetsafer/c-9-0-features-and-expectations-of-c-10-n7c
CC-MAIN-2022-33
en
refinedweb
Section 4.13 Structs The second aggregate data type in C that we consider is the struct. Structs are also commonly referred to as record. A struct has \(n\) fields of possibly distinct types \(T_1,\dots, T_n\text{.}\) A container for a struct is the combination of containers for the \(n\) fields. For an example, consid...
https://prog2.de/book/sec-c-structs.html
CC-MAIN-2022-33
en
refinedweb
Available with Spatial Analyst license. Available with Image Analyst license. Summary Performs a Boolean Exclusive Or operation on the cell values of two input rasters. Illustration . The operator with the highest precedence value will be executed first. For more information, see the operator precedence table in Work w...
https://pro.arcgis.com/en/pro-app/latest/arcpy/image-analyst/boolean-xor-operator.htm
CC-MAIN-2022-33
en
refinedweb
Announcing Fitbit OS SDK 4.0 Fitbit OS SDK 4.0 We're proud to announce the latest version of the software development kit for Fitbit OS. SDK 4.0 adds support for the new Fitbit Versa 2, a comprehensive update to the Cryptography API, multi-view SVG support, and much more. SDK 4.0 support will require the new Fitbit OS ...
https://dev.fitbit.com/blog/2019-10-29-announcing-fitbit-os-sdk-4.0/
CC-MAIN-2022-33
en
refinedweb
sl_se_key_descriptor_t Struct Reference Contains a full description of a key used by an SE command. #include <sl_se_manager_types.h> Contains a full description of a key used by an SE command. Field Documentation ◆ type Key type. ◆ size Key size, applicable if key_type == SYMMETRIC. ◆ flags Flags describing restriction...
https://docs.silabs.com/gecko-platform/3.2/service/api/structsl-se-key-descriptor-t
CC-MAIN-2022-33
en
refinedweb
The purpose of this article is to make everyone (especially C programmers) say: “I do not know C”. I want to show that the dark corners of C are much closer than it seems, and even trivial code lines may contain undefined behavior. The article is organized as a set of questions and answers. All the examples are separat...
https://kukuruku.co/hub/programming/i-do-not-know-c
CC-MAIN-2022-33
en
refinedweb
I am having trouble getting an iframe to display correctly on my private Streamlit Cloud deployed app. Locally, the iframe works, but it remains blank on my deployed app. The iframe is a Metabase Dashboard that I have enabled sharing on. I tried the following code to embed this iframe in my app import streamlit as st i...
https://discuss.streamlit.io/t/streamlit-cloud-iframe-is-blank/27517
CC-MAIN-2022-33
en
refinedweb
#include <opencv2/line_descriptor/descriptor.hpp> struct for drawing options Output image matrix will be created (Mat::create), i.e. existing memory of output image may be reused. Two source images, matches, and single keylines will be drawn. Output image matrix will not be created (using Mat::create). Matches will be ...
https://docs.opencv.org/3.4/d8/d6f/structcv_1_1line__descriptor_1_1DrawLinesMatchesFlags.html
CC-MAIN-2022-33
en
refinedweb
Hello everyone, i've installed Renderman 22.5 for Houdini 17.5 and set up the houdini.env file as written in the Renderman Documentation. If I start Houdini, I always get this message in the console: Unable to find libprman. Resorting to backup string table. Rendering will error Error running pythonrc.py: Traceback (mo...
https://www.sidefx.com/forum/topic/66157/
CC-MAIN-2019-35
en
refinedweb
In this article we will learn two operator in c#.NET , they are "is" and "as". Basically those two operator is useful when we want to compare two object and try to convert one object into another one. Let’s see with example. It is useful when we want to check whether one object belongs to particular class or not?. Have...
http://www.dotnetfunda.com/articles/show/2577/is-and-as-operator-in-csharp
CC-MAIN-2019-35
en
refinedweb