text
stringlengths
454
608k
url
stringlengths
17
896
dump
stringclasses
91 values
source
stringclasses
1 value
word_count
int64
101
114k
flesch_reading_ease
float64
50
104
From: Douglas Gregor (gregod_at_[hidden]) Date: 2002-02-18 16:36:16 On Monday 18 February 2002 03:48 pm, you wrote: > Consider a "tag expression" to be the expression that is used to rule out a > given candidate type during matching. > In my proposal, a tag expression was simply a tagname, where the equality > test was...
https://lists.boost.org/Archives/boost/2002/02/25360.php
CC-MAIN-2020-40
refinedweb
434
52.09
SQL Joins Persistent touts itself as a database-agnostic interface. How, then, are you supposed to do things which are inherently backend-specific? This most often comes up in Yesod when you want to join two tables together. There are some pure-Haskell solutions that are completely backend-agonistic, but there are also...
https://www.yesodweb.com/book/sql-joins
CC-MAIN-2021-39
refinedweb
1,568
54.83
. initialize the "ArrayList" ArrayList<List> selectedItems; protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_home_page); selectedItems = new ArrayList<List>(); } Please try using following sample code, change xpath/data accordingly List<WebElement...
http://www.w3hello.com/questions/-Adding-to-a-list-box-in-ASP-Net-
CC-MAIN-2018-17
refinedweb
2,927
56.45
LINQ (Language Integrated Query) LINQ is known as Language Integrated Query and it is introduced in .NET 3.5 and Visual Studio 2008. The beauty of LINQ is it provides the ability to .NET languages(like C#, VB.NET, etc.) to generate queries to retrieve data from the data source. For example, a program may get informatio...
https://www.geeksforgeeks.org/linq-language-integrated-query/
CC-MAIN-2019-30
refinedweb
737
64
Components of List comprehensions :- 1. An Input Sequence - From which new sequence is built 2. A variable representing members of the input sequence. 3. An conditional expression [ Optional ] 4. An output expression producing elements of the output list - all elements of input sequence which satisfies conditional expr...
http://www.devinline.com/2016/05/python-list-comprehensions.html
CC-MAIN-2018-51
refinedweb
306
63.59
A grid is a data container that holds a value at every point in a three dimensional lattice. The simplest type of value to hold is a floating point value. In OEChem, these are called OEScalarGrids. OEScalarGrids are inherently cubic. The following fundamental parameters define a grid: Listing 1 demonstrates how to cons...
https://docs.eyesopen.com/toolkits/java/oechemtk/grids.html
CC-MAIN-2017-39
refinedweb
1,145
60.01
Straightforward Rails Authorization with Pundit Free JavaScript Book! Write powerful, clean and maintainable JavaScript. RRP $11.95 This is a second article in the “Authorization with Rails” series. In the previous article, we discussed CanCanCan, a widely known solution started by Ryan Bates and now supported by a gro...
https://www.sitepoint.com/straightforward-rails-authorization-with-pundit/
CC-MAIN-2020-29
refinedweb
2,531
51.55
Created on 2015-12-15 03:38 by abarnert, last changed 2016-01-04 22:25 by abarnert. Example: class MyDict(collections.abc.Mapping): def __init__(self, d): self.d = d def __len__(self): return len(self.d) def __getitem__(self, key): return self.d[key] def __iter__(self): return iter(self.d) d = {1:2, 3:4} m = MyDict({1:...
https://bugs.python.org/issue25864
CC-MAIN-2021-17
refinedweb
3,829
64.3
My original task was to create a .NET wrapper class for an existing native C++ code and expose to web page as in Active X but in .NET and set up an environment in which the web page can communicate with native code and vice-versa. This task isn't finished yet, but I have found a solution for intercommunication between ...
http://www.codeproject.com/Articles/37741/Way-Communication-Between-Embedded-Windows-User?msg=3117265
CC-MAIN-2015-06
refinedweb
907
59.4
Fiddler is a highly-extensible web debugging platform, and you can extend it using any .NET language, or via the built-in FiddlerScript engine. While most major UI extensions are built in C#, you can add simple UI extensions very easily in FiddlerScript. For example, say that you’ve decided that is the coolest site on ...
http://www.telerik.com/blogs/adding-tabs-with-fiddlerscript
CC-MAIN-2017-17
refinedweb
356
58.08
Hey every1, I'm trying to have a Map with a string as key, and a 2 (or more) element array as data. Something likeI'm getting errors when i try to load data into the Map.I'm getting errors when i try to load data into the Map.Code: map <string, int[2]> myMap readin.cpp(23) : error C2106: '=' : left operand must be l-va...
http://cboard.cprogramming.com/cplusplus-programming/46558-maps-ints%5B%5D-printable-thread.html
CC-MAIN-2015-48
refinedweb
192
60.48
Form POST middleware¶ To discover whether your Object Storage system supports this feature, check with your service provider or send a GET request using the /info path. You can upload objects directly to the Object Storage system from a browser by using the form POST middleware. This middleware uses account or containe...
https://docs.openstack.org/swift/latest/api/form_post_middleware.html
CC-MAIN-2022-05
refinedweb
761
50.33
Introduction to Python Programming for the Absolute Beginner So, recently I was talking to one of my colleagues in my office for Python Programming for the Absolute Beginner and stuff. He is a C and Java developer. He was informing me how Java has captured the world and it is used everywhere. Since I love Python Progra...
https://www.educba.com/python-programming-for-the-absolute-beginner/?source=leftnav
CC-MAIN-2020-45
refinedweb
2,454
68.91
inet(7F) inet(7F) NAME inet - Internet protocol family SYNOPSIS #include <<<<sys/types.h>>>> #include <<<<netinet/in.h>>>> DESCRIPTION The internet protocol family is a collection of protocols layered on top of the Internet Protocol (IP) network layer, which utilizes the internet address format. The internet family sup...
http://modman.unixdev.net/?sektion=7&page=inet&manpath=HP-UX-11.11
CC-MAIN-2017-13
refinedweb
230
50.02
DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world Reduce Fractions Function Python A function that reduces/simplifies fractions using the Euclidean Algorithm, in Python. def reducefract(n, d):...
http://www.dzone.com/snippets/reduce-fractions-function
CC-MAIN-2014-10
refinedweb
106
57.87
. Python has excellent built-in file support that works on all platforms supported by Python. Most of the key file-manipulation functions live in the os module and an associated module called os.path. To provide a degree of platform independence, os loads in the right module for your platform. os provides basic file-ha...
https://flylib.com/books/en/1.116.1.22/1/
CC-MAIN-2018-43
refinedweb
6,236
56.76
Parsix. What's the problemHow we solve it Instead of just validating, we should instead parse the input into a shape that makes the compiler aware of what we want to do. In Parsix, the previous example would become: import parsix.core.Parse @JvmInline value class Email(val email: String) val parseEmail: Parse<String, E...
https://reposhub.com/android/kotlin/parsix-parsix.html
CC-MAIN-2022-21
refinedweb
336
53.61
Before continuing with this tutorial please ensure that the following concepts are familiar to you: pointers, vectors, data stacking, classes State management is a great way to keep things organized when certain things happen based on certain occasions. Let's take a game as an example. Games run in a continuous loop an...
https://www.dreamincode.net/forums/topic/118898-state-management/
CC-MAIN-2018-30
refinedweb
692
55.74
13 May 2010 23:06 [Source: ICIS news] (adds Airgas response in paragraphs 11, 12) HOUSTON (ICIS news)--Air Products has nominated three executives to the Airgas board as it continues to pursue its $5.1bn (€4bn) takeover bid for Airgas, the ?xml:namespace> Airgas has a staggered board of nine directors, and if elected b...
http://www.icis.com/Articles/2010/05/13/9359412/air-products-continues-airgas-takeover-bid-nominates-3-to.html
CC-MAIN-2013-48
refinedweb
354
50.97
Much has been said about .NET’s use of XML, and unfortunately, a lot if it is hyperbole. Still, two things are undeniable: .NET puts an integrated set of XML tools into the programmer’s hands, and this is really the first time a Microsoft development platform has had integrated XML support out of the box. This is compl...
http://www.techrepublic.com/article/take-a-guided-tour-of-xml-support-in-net/
CC-MAIN-2017-04
refinedweb
1,082
54.12
<script id="menuTemplate" type="text/html"> <option value="${MenuId}" level="${Level}"> ${Name} //call some js method here? </option> </script> View Complete Post Hi , I want to call Javascript method on Linkbutton click. How i can do this. I m trying this-: StringBuilder sb = new StringBuilder(); sb.Append("<script la...
http://www.dotnetspark.com/links/23127-help-how-to-call-javascript-method-client.aspx
CC-MAIN-2018-05
refinedweb
349
57.16
US6856993B1 - Transactional file system - Google PatentsTransactional file system Download PDF Info - Publication number - US6856993B1US6856993B1 US09/539,233 US53923300A US6856993B1 US 6856993 B1 US6856993 B1 US 6856993B1 US 53923300 A US53923300 A US 53923300A US 6856993 B1 US6856993 B1 US 6856993B1 - Authority - US ...
https://patents.google.com/patent/US6856993B1/en
CC-MAIN-2019-13
refinedweb
1,475
50.06
- NAME - SYNOPSIS - DESCRIPTION - METHODS - SEE ALSO - AUTHOR NAME CLI::Dispatch - simple CLI dispatcher SYNOPSIS * Basic usage In your script file (e.g. script.pl): #!/usr/bin/perl use strict; use lib 'lib'; use CLI::Dispatch; CLI::Dispatch->run('MyScript'); And in your "command" file (e.g. lib/MyScript/DumpMe.pm): pa...
https://metacpan.org/pod/CLI::Dispatch
CC-MAIN-2016-18
refinedweb
898
55.13
Introduction This post is about Intel® Memory Protection Extensions (Intel® MPX) support in Microsoft Visual Studio* 2015; content provided by Gautham Beeraka, George Kuan, and Juan Rodriguez from Intel Corporation. Overview Update 1 for Visual Studio 2015 was announced on November 30, 2015. This update includes experi...
https://blogs.msdn.microsoft.com/vcblog/2016/01/20/visual-studio-2015-update-1-new-experimental-feature-mpx/?replytocom=107081
CC-MAIN-2018-39
refinedweb
3,657
55.13
Problem Statement Problem “Numbers with prime frequencies greater than or equal to k” states that you are given an array of integers size n and an integer value k. All the numbers inside it are prime numbers. The problem statement asks to find out the numbers which appear in the array at least k times and a prime numbe...
https://www.tutorialcup.com/interview/hashing/numbers-with-prime-frequencies-greater-than-or-equal-to-k.htm
CC-MAIN-2021-25
refinedweb
801
70.94
In a limited partnership, a general partner's minimum participation in profits and losses is: 1% 5% 10% 15% A According to tax law, a general partner must have at least a 1% participation in profits and losses for a business to maintain limited partnership status. (20-3 What type of options would be used to hedge a por...
http://quizlet.com/21908511/series-7-qa-8-wrong-answers-flash-cards/
CC-MAIN-2015-06
refinedweb
12,979
59.74
ElasticSearch Interview Questions And Answers What. What is the is use of attributes- enabled, index and store?. What is an Analyzer in ElasticSearch? While indexing data in ElasticSearch, data is transformed internally by the Analyzer defined for the index. Analy. What is Character Filter in Elasticsearch Analyzer? fr...
https://tekslate.com/elasticsearch-interview-questions-answers/
CC-MAIN-2017-51
refinedweb
1,037
58.28
Setup import numpy as np import tensorflow as tf from tensorflow import keras Introduction.". Freezing layers: understanding the trainable attribute [==============================] - 1s 640ms/step - loss: 0.0945 Do not confuse the layer.trainable attribute with the argument training in layer.__call__() (which controls...
https://www.tensorflow.org/guide/keras/transfer_learning/?hl=nb-NO
CC-MAIN-2021-39
refinedweb
933
58.45
Dear valuable contributors, Our company has SAP BusinessObjects BI Platform 4.1 Support Pack 7 Version: 14.1.7.1853. I have downloaded .Net SDK for platform 4.1 and installed on a dev machine with VS 2010. I have downloaded project ViewReport_CS from wssdk_net_samples_12.zip and mofified it. The aim is to connect to ou...
https://answers.sap.com/questions/155357/where-is-namespace-businessobjectsdsws.html
CC-MAIN-2019-13
refinedweb
111
70.29
How to Define Templates and Send Email with Joystick May 13th, 2022 What You Will Learn in This Tutorial How to set up an SMTP service, prepare an email template using Joystick components, and send an email using the email.send() function in @joystick.js/node.: Terminal cd app && joystick start After this, your app sho...
https://cheatcode.co/tutorials/how-to-define-templates-and-send-email-with-joystick
CC-MAIN-2022-27
refinedweb
2,152
64.1
grantpt - grant access to the slave pseudo-terminal device #include <stdlib.h> int grantpt(int fildes); The grantpt() function changes the mode and ownership of the slave pseudo-terminal device associated with its master pseudo-terminal counter part. The fildes argument is a file descriptor that refers to a master pseu...
http://pubs.opengroup.org/onlinepubs/7990989775/xsh/grantpt.html
CC-MAIN-2014-15
refinedweb
142
62.88
I'm being taught to use fflush( stdin ) to clean the buffer, use gets to read strings, etc, etc But it seems these are not the proper methods to read input from keyboard. I've made this functions in order to read the input based on this useful recommendations. So I would like to know if there is any way to improve them...
http://cboard.cprogramming.com/c-programming/126951-best-way-read-characters-strings-numbers-printable-thread.html
CC-MAIN-2015-40
refinedweb
222
64.75
Programming Reference/Librarys Question & Answer Q&A is closed Q&A is closed #include <stdlib.h> unsigned long int strtoul(const char *str, char **endptr, int base); strtoul Converting a string to an unsigned long integer str: the string to be converted endptr: address of a pointer variable that points to the last char...
https://code-reference.com/c/stdlib.h/strtoul?s%5B%5D=string
CC-MAIN-2019-47
refinedweb
158
59.03
Dropdowns on comboboxes not updating properlySOGC Jun 29, 2010 5:07 PM I have been experiencing this problem for some time now - the comboboxes in my Flex 4 application aren't changing to match the comboboxes' dataproviders. In other words, when a dataprovider changes for a combobox, the combobox's dropdown may still d...
https://forums.adobe.com/message/2952677
CC-MAIN-2017-09
refinedweb
926
55.64
README.md The FX C Library This directory contains the sources of the FxLibc Library. See CMakeLists.txt to see what release version you have. The FxLibc is the standard system C library implementation for all Casio fx calculators,. Dependencies FxLibc requires a GCC compiler toolchain the PATH to build for any calcula...
https://gitea.planet-casio.com/Vhex-Kernel-Core/fxlibc/src/commit/dbfefe51727544e0e791a1cd9785716af181a169
CC-MAIN-2022-27
refinedweb
547
57.16
A cron job scheduler for Go ticktock is a cron job scheduler that allows you to define and run periodic jobs written in Golang. ticktock also optionally provides automatic job retry if the job has failed with an error. ticktock supports delayed and repeating jobs. Note: Work in progress, don't use it on prod yet. // Sc...
https://xscode.com/rakyll/ticktock
CC-MAIN-2022-05
refinedweb
567
69.79
Solving the Ising Model using a Mixed Integer Linear Program Solver (Gurobi) I came across an interesting thing, that finding the minimizer of the Ising model is encodable as a mixed integer linear program. The Ising model is a simple model of a magnet. A lattice of spins that can either be up or down. They want to ali...
https://www.philipzucker.com/solving-the-ising-model-using-a-mixed-integer-linear-program-solver-gurobi/
CC-MAIN-2021-39
refinedweb
1,103
59.8
import "golang.org/x/crypto/blake2s" Package blake2s implements the BLAKE2s hash algorithm defined by RFC 7693 and the extendable output function (XOF) BLAKE2Xs. For a detailed specification of BLAKE2s see and for BLAKE2Xs see If you aren't sure which function you need, use BLAKE2s (Sum256 or New256). If you need a sec...
https://godoc.org/golang.org/x/crypto/blake2s
CC-MAIN-2017-51
refinedweb
390
77.03
I've posted two proposals: Advertising Proposes a mechanism for easily using adapters in TALES expressions. I'm not at all clear on how the proposed mechanism is superior to the implementation of path segment prefixes that exists in Zope 2. This differs from the namespace proposal that you cite, in that the object name...
https://www.mail-archive.com/zope-dev@zope.org/msg16501.html
CC-MAIN-2017-51
refinedweb
236
55.44
Join the 85,000 open source advocates who receive our giveaway alerts and article roundups. A programmer’s cleaning guide for messy sensor data A programmer’s cleaning guide for messy sensor data If you have never used Pandas before and know the basics of Python, this tutorial is for you. Get the newsletter In this tut...
https://opensource.com/article/17/9/messy-sensor-data
CC-MAIN-2018-22
refinedweb
1,380
58.48
![if !IE]> <![endif]> FRUITFUL FUNCTIONS The.. Eg: def my_func(): x = 10 print("Value inside function:",x) x = 20 my_func() print("Value outside function:",x) Output: Value inside function: 10 Value outside function: 20 Local Scope and Local Variables A local variable is a variable that is only accessible from within a...
https://www.brainkart.com/article/Fruitful-Functions---Python_35972/
CC-MAIN-2022-40
refinedweb
114
59.3
Data Points - Run EF Core on Both .NET Framework and .NET Core By Julie Lerman | October 2016 | Get the Code: C# VB The technology formerly known as Entity Framework 7 (EF7) was renamed to Entity Framework Core (EF Core) in early 2016. EF Core 1.0.0 introduces some great new capabilities, though overall it does have a ...
https://msdn.microsoft.com/magazine/mt742867
CC-MAIN-2018-51
refinedweb
3,094
65.01
reject Lauren Weinstein's notion that an organization must register its name in every tld. The domain name system works just fine whether delta.com goes to Delta faucets or Delta airlines and consumers are not confused by this. To quote the old chestnut coined by domain name attorney John Berryhill "nobody turns on th...
http://www.economist.com/node/17627815/comments?sort=1
CC-MAIN-2015-11
refinedweb
2,368
68.2
The Samba-Bugzilla – Bug 6280 Linux mknod does not work when syncing fifos and sockets from Solaris Last modified: 2009-04-26 13:49:49 UTC When syncing specials, namely pipes and sockets from a Solaris host, rsync -a prints error 22. Remote version is 2.6.3pre1. sk@noether(~/rsnyc/rsync-3.0.6pre1)> ./rsync -a klein:/tm...
https://bugzilla.samba.org/show_bug.cgi?id=6280
CC-MAIN-2018-51
refinedweb
582
67.86
...I still do not understand how to check a user's input to ensure that it is a numeric character. I want to use the isdigit() function and I read the FAQ regarding the syntax of this function, but either the FAQ is too ambiguous or I'm not grasping the concept. (Probably the latter). I know what the isdigit() function...
http://cboard.cprogramming.com/c-programming/50663-i-read-faq-isdigit-but.html
CC-MAIN-2014-52
refinedweb
167
70.13
» Publishers, Monetize your RSS feeds with FeedShow: More infos (Show/Hide Ads) Most Rails developers are familiar with generating RESTful URLs polymorphically by simply passing an object to one of many helper methods that expects a URL, such as link_to and form_for: # In Routes resources :articles # In View: form_for ...
http://reader.feedshow.com/show_items-feed=203be3724a0e4e3a0edf8038c319b1b1
CC-MAIN-2014-15
refinedweb
5,818
51.48
The bar code was first patented 57 years ago today, a fact unknown to me as I was putting the finishing touches on what I expected to be a fairly obscure post. So when articles started sprouting like mushrooms on the topic it seemed like a good time to get this finished. Maybe you've already had your fill of barcode st...
http://bfo.com/blog/2009/10/07/qr_code_and_other_barcodes/
CC-MAIN-2017-04
refinedweb
632
60.35
In this tutorial, I will show you how to use optical character recognition to extract text from an image using a Raspberry Pi camera and a Raspberry Pi. The Pi camera will capture an image and, using OpenCV and Tesseract, we will extract text from the image. For step-by-step instructions covering how to connect your Pi...
https://maker.pro/raspberry-pi/tutorial/optical-character-recognizer-using-raspberry-pi-with-opencv-and-tesseract
CC-MAIN-2021-10
refinedweb
1,010
56.76
(English) Why to Update Tally.ERP 9 to the Latest Version Sorry, this post is not available in Gujarati For the sake of viewer convenience, the content is shown below in this site default language. You may click one of the links to switch the site language to another available language. in case they haven’t. As Tally, ...
https://blogs.tallysolutions.com/gu/why-to-update-tally-erp9-latest-version/
CC-MAIN-2020-34
refinedweb
2,003
63.7
Join the community to find out what other Atlassian users are discussing, debating and creating. Hi All, Not sure what I'm doing wrong here... I need to write a behavior that will work in the customer portal of ServiceDesk, that will indicate if at least one value in a standard Jira Multiselect field has been chosen. I...
https://community.atlassian.com/t5/Adaptavist-questions/Servicedesk-Scriptrunner-behaviour-when-using-a-multiselect/qaq-p/1203938
CC-MAIN-2021-43
refinedweb
149
57.37
different components depending on the menu item clicked. – There can only be one open tab for a given component. – If a menu item is clicked and a tab with this component already exist, that tab should get focus. – When navigating to a component by URL, this component should be opened in a tab. The finished product wh...
https://technology.amis.nl/frontend/dynamic-tabs-with-angular-6-and-ng-bootstrap/
CC-MAIN-2021-31
refinedweb
1,863
57.67
Hello, I am new to mod_python and am interested in catching python errors with a default error handler. For example, def causeanerror(req): asdlkfj would not barf on the user, it would send the error to my error function or something. <Directory "/home/wwweb/pyblog/htdocs"> SetHandler mod_python PythonHandler mod_pytho...
http://modpython.org/pipermail/mod_python/2005-November/019527.html
CC-MAIN-2017-51
refinedweb
249
58.28
Ctrl+P C# Model to Builder Class is a Visual Studio Code extension that will save you time by automatically generating a builder class from a C# model. Stop wasting time manually writing out builder classes. Define a model and use this extension to generate your builder. The generated file will be saved next to your mo...
https://marketplace.visualstudio.com/items?itemName=FraserCrosbie.csharp-model-to-builder
CC-MAIN-2021-21
refinedweb
223
50.23
Talk:Tag:amenity=toilets Contents category By accessibility I would add wheelchair=yes/no to Extended Usage. Maybe also something to show if a fee is to be paid? --Colin Marquardt 11:25, 22 February 2008 (UTC) Yes, I agree with wheelchair=yes/no and also with fee=yes/no --Stefku 17:02, 19 April 2008 (UTC) There's a pro...
http://wiki.openstreetmap.org/wiki/Talk:Tag:amenity%3Dtoilets
CC-MAIN-2017-04
refinedweb
1,520
63.09
Most computer programs return an exit code to the operating system’s shell. Shell scripting tools can use the exit status of a program to indicate if the program exited normally or abnormally. In either case, the shell script can react depending on the outcome of the child process. Python programs can use os.fork() to ...
https://stonesoupprogramming.com/tag/os-fork/
CC-MAIN-2021-31
refinedweb
485
67.15
This Databricks Machine Learning tutorial gives you the basics of working with Databricks and machine learning. You’ll learn how to create a Databricks cluster and run machine learning algorithms on it. Introduction to Databricks and Machine Learning Databricks is a cloud-based platform for data analytics and machine l...
https://reason.town/databricks-machine-learning-tutorial/
CC-MAIN-2022-40
refinedweb
1,621
61.87
) Aman Singhal(6) Kuppurasu Nagaraj(4) Vinoth Rajendran(3) Gowtham K(3) Sourav Kayal(3) Scott Lysle(3) Akshay Deshmukh(2) Ravi Shankar(2) Pritam Zope(2) Umair Hassan(2) Saineshwar Bageri(2) Nilesh Jadav(2) Vijayaragavan S(2) Rizwan Ali(2) Selva Ganapathy(2) Chetna Solanki(2) Raj Bandi(2) Manish Sharma(2) Zakir Ahamed(1...
http://www.c-sharpcorner.com/tags/stack-panel
CC-MAIN-2017-39
refinedweb
1,510
67.45
With the announcement of the new SDK for Windows Phone Microsoft now really starts to stress the companionship of Windows and Windows Phone, and makes it a lot easier to build apps that run on both platforms. Windows Phone apps now reside under ‘Store Apps’ and although you can still write Windows Phone only apps, it’s...
https://dzone.com/articles/code-sharing-strategies
CC-MAIN-2016-44
refinedweb
1,677
69.82
Pass Channels allow shaders to redirect a color channel to a separate output buffer. These output buffers show up in the Render Options PPGs. 1.1 SPDL 1.1.1 Names and image types 1.2 mental ray shader code Shaders can easily take advantage of the pass channels mechanism. All they need to provide is a string indicating ...
http://softimage.wiki.softimage.com/indexcc2c.html?title=Pass_Channels_%28XSISDK%29
CC-MAIN-2020-10
refinedweb
617
54.12
HOISTED on the shoulders of masked gunmen one day, denouncing Israel as “the Zionist enemy” another, Mahmoud Abbas this week predictably alarmed Israelis. Yet the belligerence betrays his paradoxical weakness. As the heir apparent to the late Yasser Arafat, he will overwhelmingly win the Palestinian presidential electi...
https://www.economist.com/middle-east-and-africa/2005/01/06/from-the-circus-ring-to-the-tightrope
CC-MAIN-2021-21
refinedweb
1,193
57.3
We transform XHTML to LaTeX and BibTeX to allow technical articles to be developed using familiar XHTML authoring tools and techniques. Occasionally a web page turns the corner from a casually drafted idea to an article worthy of publication. Computer science conferences often require submissions using specific LaTeX s...
http://www.w3.org/2004/04/xhlt91/
CC-MAIN-2017-04
refinedweb
851
52.76
Does the World Need Binary XML? 481 sebFlyte writes "One of XML's founders says 'If I were world dictator, I'd put a kibosh on binary XML' in this interesting look at what can be done to make XML better, faster and stronger." Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading! "W...
http://developers.slashdot.org/story/05/01/14/1650206/does-the-world-need-binary-xml
CC-MAIN-2015-06
refinedweb
4,533
62.98
#include <itemcopyjob.h> Detailed Description Job that copies a set of items to a target collection in the Akonadi storage. The job can be used to copy one or several Item objects to another collection. Example: Definition at line 62 of file itemcopyjob.h. Constructor & Destructor Documentation Creates a new item copy ...
https://api.kde.org/kdepim/akonadi/html/classAkonadi_1_1ItemCopyJob.html
CC-MAIN-2019-51
refinedweb
250
52.26
UFDC Home myUFDC Home | Help <%BANNER%> Venture Capital Returns and Public Market Performance Description Standard View MARC View Metadata Usage Statistics PDF VIEWER This item has the following downloads: ( PDF ) Full Text PAGE 1 1 VENTURE CAPITAL RETURNS AND PUBLIC MARKET PERFORMANCE By MELISSA CANNON GUZY A THESIS P...
http://ufdc.ufl.edu/UFE0041483/00001
CC-MAIN-2018-09
refinedweb
21,274
52.49
Opened 9 years ago Closed 9 years ago Last modified 9 years ago #10877 closed (worksforme) search_fields raise TypeError if field names are given as unicode objects. Description If you specify field names in search_fields as unicode objects, when you search you get the following exception: Exception Type: TypeError Exc...
https://code.djangoproject.com/ticket/10877
CC-MAIN-2018-34
refinedweb
218
56.35
See Also edit Description editMJ: In a recent (oct-2006) OO frenzy on the Tcl chatroom resulting in code gems like neo and eos, I decided to write a Self-like extension for Tcl.The resulting C extension can be downloaded from [1].MJ Link is down and I lost the source. If anyone has a copy and can share it here I would ...
http://wiki.tcl.tk/17100
CC-MAIN-2017-26
refinedweb
1,413
60.48
This: Routing Slip and Loading Balancer EIPs Introduction Today’s businesses are not run on single monolithic systems, and most businesses have a full range of disparate systems. There is an ever increasing demand for those systems to integrate and to integrate with external business partners and government systems. Le...
http://www.javabeat.net/routing-slip-and-loading-balancer-eips-in-camel/
CC-MAIN-2014-49
refinedweb
2,885
51.58
On Thu, Nov 24, 2011 at 3:32 PM, PJ Eby <pje at telecommunity.com> wrote: > You're right; I didn't think of this because I haven't moved past Python 2.5 for production coding as yet. ;-) Yeah, there's absolutely no way we could have changed this in 2.x - with implicit relative imports in packages still allowed, there's...
https://mail.python.org/pipermail/import-sig/2011-November/000403.html
CC-MAIN-2019-13
refinedweb
912
64.51
Repeat a scipy csr sparse matrix along axis 0 sort sparse matrix python scipy sparse multiply matrix compressed sparse row format to numpy array scipy csr to csc scipy matrices numpy sparse tensor matlab sparse in python I wanted to repeat the rows of a scipy csr sparse matrix, but when I tried to call numpy's repeat m...
http://thetopsites.net/article/50759652.shtml
CC-MAIN-2020-50
refinedweb
1,507
58.89
I'm trying to use ArcGIS JavaScript map component on the same page with Jodit WYSIWYG HTML editor. Both components use obfuscated JavaScript code. The problem is that the obfuscated code of both components uses the same replacements for functions names, which leads to collision. For example, both codes contain a top le...
https://community.esri.com/thread/231205-js-functions-names-collision
CC-MAIN-2020-40
refinedweb
171
76.22
Todo This is the general, long-term Todo list, with a special emphasis on open jobs for new contributors to tackle. There is also a separate Todo for 3.0 aimed specifically at preparing Eigen 3.0. Contents - 1 Notice to prospective contributors - 2 Parallelization - 3 BLAS and LAPACK backends - 4 BLAS implementation on...
http://eigen.tuxfamily.org/index.php?title=Todo
CC-MAIN-2017-43
refinedweb
2,664
54.22
can anyone tell me how do i insert into existing exe file another exe so that it executes with it? i need it very bad because we will be having our computer lab this coming week. i have no idea how to perform it This is a discussion on insert another exe into exe within the C Programming forums, part of the General Pro...
http://cboard.cprogramming.com/c-programming/14258-insert-another-exe-into-exe.html
CC-MAIN-2014-23
refinedweb
969
81.83
Windows services don’t have any user interface, when we want to create any long running code we create windows services which runs in background. It has the capability to start automatically when computer boots. Example to demonstrate how to create Windows Service and install To create Windows Service open new project ...
https://www.mindstick.com/Articles/99/windows-service
CC-MAIN-2018-34
refinedweb
491
60.41
It looks like you're new here. If you want to get involved, click one of these buttons! I am a novice at C# and C++ but trying to learn some basics. I found a very easy step by step AutoCAD example file for creating an AutoCAD Plug in using C#. I have BricsCad V18 Pro and AutoCAD 2005. I also have VS 2013 (toolset plat...
https://forum.bricsys.com/discussion/comment/35396/
CC-MAIN-2020-45
refinedweb
808
64.51
WinForms Getting Started Guide Installation System.Windows.Forms is part of a standard Mono installation. WinForms Example As there are plenty of great articles and books on Windows Forms programming, the topic will not be covered in-depth. The following is just a simple Winforms program to test with. using System; usi...
http://www.mono-project.com/docs/gui/winforms/getting-started-guide/
CC-MAIN-2018-26
refinedweb
162
63.56
Main conceptsMain concepts in. Another way of running Streamlit is to run it as a Python module. This can be useful when configuring an IDE like PyCharm to work with Streamlit: # Running $ python -m streamlit run your_script.py # is equivalent to: $ streamlit run your_script.py Tip You can also pass a URL to streamlit ...
https://docs.streamlit.io/library/get-started/main-concepts
CC-MAIN-2022-21
refinedweb
1,272
67.86
This chapter introduces the basic threads programming routines from the POSIX threads library, libpthread(3THR). This chapter covers default threads, or threads with default attribute values, which are the kind of threads that are most often used in multithreaded programming. Chapter 3, Thread Create Attributes, explai...
http://docs.oracle.com/cd/E19683-01/806-6867/tlib-12926/index.html
CC-MAIN-2014-35
refinedweb
1,630
50.02
pyNekketsu - 0.02 An arcade soccer game, inspired by "Nintendo World Cup" AKA "Nekketsu Koukou Dodgeball Bu: Soccer Hen". Jmimu (jmimu) Links Releases pyNekketsu 0.10 — 24 Aug, 2011 pyNekketsu 0.15 — 29 Feb, 2012 pyNekketsu 0.02 — 9 Jun, 2011 pyNekketsu 0.04 — 20 Jun, 2011 pyNekketsu 0.12 — 19 Sep, 2011 pyNekketsu 0.05...
http://www.pygame.org/project/1894/3344
CC-MAIN-2017-43
refinedweb
383
76.62
The basic idea behind the XML Web services is to link one system to other independent of the platform. In this article we will see how we can make a simple java client that uses .net web service made in C#. Trust me on this but you only need to write 3 lines of code to actually connect and use the Web Methods of the we...
http://www.gridviewguy.com/Articles/130_Making_a_Java_Client_for_the__NET_WebService.aspx
crawl-001
refinedweb
868
73.78
The GenBank format. More... #include <seqan3/io/sequence_file/format_genbank.hpp> The GenBank format. genbank is the format used in the GenBank sequence database. See this example record at NCBI for more details about the format. The genbank format provides the fields seqan3::field::seq and seqan3::field::id. Both fiel...
https://docs.seqan.de/seqan/3-master-user/classseqan3_1_1format__genbank.html
CC-MAIN-2021-21
refinedweb
141
52.05
When indexing a field in Lucene, you have two index option choices about how the field value is indexed: analyzed and not analyzed. They both useful and serves different purposes, so make sure you know the differences between them and use them correctly. The ANALYZED and NOT_ANALYZED, are enum type values defined in Fi...
http://makble.com/lucene-index-option-analyzed-vs-not-analyzed
CC-MAIN-2018-09
refinedweb
490
63.9
Crowdsourced Coders Take On Immunology Big Data Soulskill posted about a year ago | from the still-no-cure-for-cancer-oh-wait dept. (2) K. S. Kyosuke (729550) | about a year ago | (#42838153) (1) Nic (2818063) | about a year ago | (#42838447) Crowdsource Coding? (2, Insightful) Anonymous Coward | about a year ago | (#4...
http://beta.slashdot.org/story/181755
CC-MAIN-2014-15
refinedweb
1,194
80.21
Linux Kernel Development - Part 1: Hello Kernel! Our very first program in every language or framework usually is the notorious "Hello World" program. For this Linux Kernel Modules Development introduction we will follow the same concept, but instead of the usual "Hello World" we will make a "Hello Kernel!" and you wil...
https://www.embeddedrelated.com/showarticle/1274.php
CC-MAIN-2020-05
refinedweb
1,011
57.06
. Hello Alex, In the beginning paragraph it is written: ...std::array lives in the array header. Is it not more correct to say: std::array is declared in the array header and defined in std namespace? It's more accurate to say it's defined in the array header, inside the std namespace. I've updated the lesson. Hi Alex,...
http://www.learncpp.com/cpp-tutorial/6-15-an-introduction-to-stdarray/comment-page-1/
CC-MAIN-2018-13
refinedweb
3,102
72.76
Red Hat Bugzilla – Bug 32499 umount(2) man-page incorrectly says umount(block-dev) works (it doesn't) Last modified: 2015-01-07 18:44:36 EST I found this while porting the VSX-PCTS to 7.1 with the 2.4 kernel: #include <sys/mount.h> { blah, blah} /* the mount(2) call works fine */ ret = mount("/dev/sda9", "/tmp/mnt", "e...
https://bugzilla.redhat.com/show_bug.cgi?id=32499
CC-MAIN-2017-13
refinedweb
365
63.8
Name: [116] Erik Thompson Member:: ... Vector Math for 3D Programming [ID:766] (17/35) in series: Developing emol! video tutorial by Erik Thompson, added 06/08 Name: [116] Erik Thompson Member: talk about the basics of vector math as it applies to 3D programming. I'll be using vector math to properly position the cylin...
http://showmedo.com/videotutorials/video%3Fname%3D1510160
CC-MAIN-2016-26
refinedweb
511
64.2
Ads Via DevMavens I’ve used the snippet of code at the end of this article twice in the last week to clear up some misunderstandings about strings in .NET. System.String is a reference type in .NET. Don’t let anyone mislead you into thinking otherwise. You’ll hear people saying strings “act like value types”, but this ...
http://odetocode.com/Blogs/scott/archive/2005/07/21/1961.aspx
crawl-002
refinedweb
366
62.07
Odoo Help Odoo is the world's easiest all-in-one management software. It includes hundreds of business apps: CRM | e-Commerce | Accounting | Inventory | PoS | Project management | MRP | etc. How to make Account Receivable and Account Payable fields auto-incriment Hi, i want to make Account Receivable and Account Payabl...
https://www.odoo.com/forum/help-1/question/how-to-make-account-receivable-and-account-payable-fields-auto-incriment-90798
CC-MAIN-2017-13
refinedweb
341
54.32
URL of experiment: Description of the problem: I have a color working memory experiment that works just fine on PsychoPy. To code it up, I have an initExperiment routine at the beginning, in which I added codes to specify conditions. For those codes to work, I had to insert import a few things under “Begin Experiment”:...
https://discourse.psychopy.org/t/import-functions-create-problems-for-pavlovia/11755
CC-MAIN-2021-43
refinedweb
184
56.79
Member Since 4 Years Ago 620 Testing That An Email Can Be Verified Oops. I took a moment and zoomed out. I was really overcomplicating something that was actually very simple! :) I got it to do what I want now. Replied to Testing That An Email Can Be Verified I'm sure you're probably right. It may not even be possible ...
https://laracasts.com/@JohnnyW2001
CC-MAIN-2021-25
refinedweb
2,643
64.71
Issues ZF-5606: Zend_Db::factory normalizes characters in namespace, so ZendX libraries are not found Description on line 240: $adapterName = strtolower($adapterNamespace . '' . $adapter); $adapterName = str_replace(' ', '', ucwords(str_replace('_', ' ', $adapterName))); This code make ZendX_Db_Adapter_Firebird to beco...
http://framework.zend.com/issues/browse/ZF-5606?focusedCommentId=34749&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel
CC-MAIN-2016-26
refinedweb
276
66.74
Hi All, I want to move the webdav implementation on by releasing it to cheeseshop, supporting more content types and then working on some more interesting aspects of the protocol itself, and maybe even supporting other applications like Plone if there is interest. Advertising First I need to rename it out of the zope n...
https://www.mail-archive.com/zope3-dev@zope.org/msg08200.html
CC-MAIN-2017-04
refinedweb
432
65.12
There comes a time in every pasty young developer’s life when they realize that they must build an application that stores images in a database, and then serves them up via an ASP.NET MVC Action. Soon after this realization, they have another realization that, unlike with many other shortcuts to brilliance that MVC rea...
https://code.jon.fazzaro.com/2012/04/30/how-to-serve-an-image-from-an-action-and-otherwise-be-an-mvc-swashbuckler/
CC-MAIN-2018-26
refinedweb
379
53.92
FeatureRequest: enhancement to ToolTipEvent: caretIndextimo888 Oct 29, 2009 5:53 AM Platform: Flex AIR Use Case: You have information you want to give the user about any|every individual word in the content of a TextArea (perhaps grammatical information, a translation into another language or languages, or a brief hist...
https://forums.adobe.com/thread/514807
CC-MAIN-2017-51
refinedweb
876
58.69
Not to be confused with Lifecycle Hooks, Hooks were introduced in React in v16.7.0-alpha, and a proof of concept was released for Vue a few days after. Even though it was proposed by React, it’s actually an important composition mechanism that has benefits across JavaScript framework ecosystems, so we’ll spend a little...
https://css-tricks.com/what-hooks-mean-for-vue/
CC-MAIN-2022-21
refinedweb
1,650
54.52
This is a C++ Program to solve a matching problem. Given N men and N women, where each person has ranked all members of the opposite sex in order of preference, marry the men and women together such that there are no two people of opposite sex who would both rather have each other than their current partners. If there ...
https://www.sanfoundry.com/cpp-program-solve-matching-problem-given-specific-case3/
CC-MAIN-2018-13
refinedweb
426
68.5
If you’re constantly moving your Raspberry Pi projects from place to place this tutorial will show you how to automate a Python script so you can take your pi on the go! I found this especially helpful when working with the Pi Zero because you won’t need to crank out the adapters, ethernet adapter etc to be able to run...
http://www.instructables.com/id/ShareCreate-Edit-Files-Between-Your-Mac-and-Raspbe/
CC-MAIN-2017-22
refinedweb
593
68.33
100DaysOfGatsby1-Jan-2020 - gatsbyJs Day 47 Feb 16 2020 Sad times today. I've released a first version of gatsby-plugin-prop-shop. but... i wasn't anticipating failure, alpha tests have kind of suggested that PropShop is a bit useless 😂 When i built it i was thinking, this is great, i know i've needed functionality li...
https://paulie.dev/posts/2020/01/100daysofgatsby/
CC-MAIN-2020-10
refinedweb
14,173
66.57
num_threadsis not constant. std::vector<std::queue<int> > q_vector; q_vector[num_threads]should be given or just q_vectoris enough i<...when iterating over arrays. arrays are 0 based (so is vector) hence you have the valid indexes 0, 1, 2 for an array with the size of 3 (like int a[3]) -> for(int i = 0; i < 3; i++) q_v...
http://www.cplusplus.com/forum/general/90184/
CC-MAIN-2016-40
refinedweb
136
77.03
A gulp plugin to wrap the stream contents with a lodash template. First, install gulp-wrap as a development dependency: npm install --save-dev gulp-wrap Then, add it to your gulpfile.js: Wrap the contents with an inline template: var wrap = ;gulp; Wrap the contents with a template from file: var wrap = ;gulp; Use parse...
https://www.npmjs.com/package/gulp-wrap
CC-MAIN-2017-34
refinedweb
344
72.76