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
Scroll down to the script below, click on any sentence (including terminal blocks!) to jump to that spot in the video! If you liked what you've learned so far, dive in! video, code and script downloads. Ok, guys: confession time. This cool little autoloader idea where we make our class name match our file name and our ...
https://symfonycasts.com/screencast/oo-ep4/composer-autoloading
CC-MAIN-2022-27
refinedweb
634
75.81
So I was struggling for awhile with a binding issue in my Silverlight application, and learned the hard way that I forgot my basics. The scenario is fairly common. I have a view model that contains the entity I want to edit along with supporting lists. The common example I see on the web is something like this: public ...
https://csharperimage.jeremylikness.com/2009/10/silverlight-comboboxes-and-importance.html
CC-MAIN-2017-39
refinedweb
509
64.51
Originally posted by Pranob Samani: Hi Champs, I m very new to this web services thing but i want to learn it. please help me out!!! Thanks in advance Originally posted by ankur rathi: import javax.jws.*; @WebService public class HelloWorldWS { @WebMethod public String getMessage() { return "Hello World!!!"; } } It's a...
http://www.coderanch.com/t/224820/Web-Services/java/Guys
CC-MAIN-2015-06
refinedweb
135
75.2
RCDB(3) BSD Programmer's Manual RCDB(3) rcdb - plain-text key/value pair database #include <sys/types.h> #include <db.h> DBT * rcdb_alloc(void *item, const size_t length); DBT * rcdb_string(char *text); void rcdb_split(RCDB *handle, int64_t *value, char **key); RCDB * rcdb_open(const char * const dbfile); int rcdb_clos...
http://www.mirbsd.org/htman/i386/man3/rcdb_delete.htm
CC-MAIN-2015-35
refinedweb
1,508
53
Ok, it sounds reasonable to want those caching conditions. But for my own curiosity, why do you want them? Are you in a tight memory situation or is it a perfectionist thing? What's wrong with using JellyContext variables? It's pretty much what they're there for. You can think of a JellyContext as a scope. At each leve...
http://mail-archives.apache.org/mod_mbox/commons-user/200412.mbox/%3C0I8A0010L12C8X@mta10.srv.hcvlny.cv.net%3E
CC-MAIN-2015-06
refinedweb
835
73.98
} This is a very nice example. The only thing I would personally change is to use the parameterized insertion. Instead of: conn.prepareStatement(“INSERT INTO \”TABLE1\” values(‘” + id + “‘, ‘” + val1 + “‘)”).execute(); conn.commit(); Use the parameterized statement to protect against SQL Injection – particularly when ...
https://blogs.sap.com/2012/12/04/how-to-insert-data-in-hana-through-javascript-with-xs-engine/
CC-MAIN-2018-43
refinedweb
2,261
66.44
I. InfiniBand has no standard. libibverbs, developed and maintained by Roland Dreier since 2006, are de-facto the verbs API standard in *nix. Till now there has been no Verbs API for Python 3.x and the existing libibverbs wrapper for Python 2.x was very complete but at the same time not very pythonic (I didn’t have thi...
https://adared.ch/pyibverbs-minimalistic-python-api-for-linux-verbs/
CC-MAIN-2021-10
refinedweb
323
54.08
I have this role: import { Role } from 'testcafe'; export default Role('', async t => { await t .setNativeDialogHandler(() => true) .typeText('#identification', 'test.user@foo.io') .typeText('#password', 'mypassword') .click('button[type=submit]'); }); And this test: import { Selector } from 'testcafe'; import UserRole...
https://testcafe-discuss.devexpress.com/t/api-how-to-use-the-roles-properly/534
CC-MAIN-2021-39
refinedweb
697
58.58
OK. I’m getting close to done with all of the combinations and permutations of ways to communicate between PC’s, Raspberry Pi’s, and Arduinos. Today I’m going to look at using TCP on an Arduino Nano because it is a special case. This post builds on the prior post TCP Communications between a PC and an Arduino Using Laz...
https://bigdanzblog.wordpress.com/2014/11/19/tcp-communications-between-a-pc-and-an-arduino-nano-using-lazarus-free-pascal/
CC-MAIN-2017-39
refinedweb
640
73.07
Qt 5 embedded screen rotation With Qt4 application rotation of 90, 180 and 270 degree was fairly easy with -qws -display transformed:Rot270. I've been trying to find the equivalent with Qt 5 with Ogles2/eglfs, starting the application with -platform eglfs command line. I'm starting to dig through the source and will po...
https://forum.qt.io/topic/22852/qt-5-embedded-screen-rotation
CC-MAIN-2017-39
refinedweb
1,641
57.37
ImportError: matplotlib requires dateutil I have successfully installed matplotlib with python 2.6 on x64 Windows7. When I try to import matplotlib, it shows the following error. I have also installed numpy following this link: Installing Numpy on 64bit Windows 7 with Python 2.7.3 import matplotlib.pyplot as plt Traceb...
https://python-decompiler.com/article/2013-08/importerror-matplotlib-requires-dateutil
CC-MAIN-2019-26
refinedweb
152
58.79
#include <mod_sim_terrain_tile.hh> List of all members. /// /// 0 1 = 2 subdivisions per edge /// +--+--+ /// | /| /| /// |/ |/ | /// +--+--+ /// | /| /| /// |/ |/ | /// +--+--+ /// 0 1 2 = 3 vertexs per edge /// /// Reset state to prepare for the building the next Tile. To be called at start of MakeTile(). Make nodes ...
http://www.palomino3d.org/pal/doxygen_v2/classmod__sim_1_1TileFactory.html
crawl-003
refinedweb
182
68.06
Qt Location. QML I have been trying to play with Qt Location, but i couln't make it work. I get this:: "serialnmea: No known GPS device found. Specify the COM port via QT_NMEA_SERIAL_PORT. qml: Failed to create Geoclue client interface. Geoclue error: org.freedesktop.DBus.Error.Disconnected" I have tried to run several...
https://forum.qt.io/topic/70124/qt-location-qml
CC-MAIN-2018-30
refinedweb
411
70.6
Purpose: This demo introduces the basal ganglia model that the SPA exploits to do action selection. Comments: This is just the basal ganglia, not hooked up to anything. It demonstrates that this model operates as expected, i.e. supressing the output corresponding to the input with the highest input value. This is an ex...
http://ctnsrv.uwaterloo.ca/docs/html/demos/basalganglia.html
CC-MAIN-2017-47
refinedweb
216
51.65
Register for demo | RBAC at scale, Oracle CDC Source Connector, and more within our Q2 Launch for Confluent Cloud How do you process IoT data, change data capture (CDC) data, or streaming data from sensors, applications, and sources in real time? Apache Kafka® and Apache Spark®. Below is a common architectural pattern ...
https://www.confluent.io/es-es/blog/consume-avro-data-from-kafka-topics-and-secured-schema-registry-with-databricks-confluent-cloud-on-azure/
CC-MAIN-2022-21
refinedweb
3,484
53.81
Hello, I am new to R package development. I am working on a package that has in its src folder one (prime) cpp file and some helper cpp (X.Cpp, Y.Cpp) and one c file (Z.C) and their header files (X.h, Y.h and Z.h) Advertising I am getting the following error when I do 'Build & Reload' in Rstudio. " Error in dyn.load(dl...
https://www.mail-archive.com/r-package-devel@r-project.org/msg01173.html
CC-MAIN-2016-50
refinedweb
421
62.14
Style and Behavior of Links Help links must be associated with the cascading style sheet file, HxLink.css, which is embedded in the HxLink.htc file that is installed with the Help run-time components. By linking to HxLink.css, you guarantee that your Help links will function properly. To associate HxLink.css with a top...
http://msdn.microsoft.com/en-US/library/bb164680(v=vs.80).aspx
CC-MAIN-2014-35
refinedweb
259
77.23
A short example of how to utilize various open source library functions that can be used to identify and analyse strongly connected components for a given input image. In the example I have given here, the image represents microarray sample spots printed to a slide using a Xaar inket printer. Using our robotic equipmen...
http://www.technical-recipes.com/2011/object-detection-using-the-opencv-cvblobslib-libraries/?replytocom=1950
CC-MAIN-2017-39
refinedweb
1,308
53.51
PIPE(2) Linux Programmer's Manual PIPE(2) pipe, pipe2 - create pipe #include <unistd.h> int pipe(int pipefd[2]); #define _GNU_SOURCE /* See feature_test_macros(7) */ #include <fcntl.h> /* Obtain O_* constant definitions */ . Since Linux 4.5, it is possible to change the O_DIRECT setting of a pipe file descriptor using ...
http://www.man7.org/linux/man-pages/man2/pipe2.2.html
CC-MAIN-2018-51
refinedweb
202
68.77
Bummer! This is just a preview. You need to be signed in with a Basic account to view the entire video. Image Picker Controllers6:24 with Pasan Premaratne When you want to use a photo in an app, by selecting one in the library or by taking a new photo, this functionality is handled by a single class - UIImagePickerCont...
https://teamtreehouse.com/library/image-picker-controllers
CC-MAIN-2018-47
refinedweb
1,217
70.02
users can configure the frequencies of AHB bus, high-speed APB2 bus and low-speed APB1 bus through multiple prescalers. The maximum frequency of the AHB and APB2 domains is 72 MHz. The maximum allowable frequency of APB1 domain is 36 MHz. The clock frequency of SDIO interface is fixed as HCLK/2. The 40 kHz LSI is used ...
https://programmer.help/blogs/619da88f1ec78.html
CC-MAIN-2022-21
refinedweb
1,038
54.32
- NAME - VERSION - SYNOPSIS - DESCRIPTION - METHODS - FUNCTION - THINKING IN ITERATORS - TUTORIAL - EXPORTS - DIAGNOSTICS - REQUIREMENTS - SEE ALSO - THANKS - AUTHOR / COPYRIGHT NAME Iterator - A general-purpose iterator class. VERSION This documentation describes version 0.03 of Iterator.pm, October 10, 2005.. DESCRIP...
https://metacpan.org/pod/release/ROODE/Iterator-0.03/Iterator.pm
CC-MAIN-2017-30
refinedweb
1,958
52.49
Gatsby At the end of this short tutorial you will learn how to set up the localization process for Gatsby and the ttag library. Step 1. InstallationStep 1. Installation Follow these steps to setup gatsby and install ttag dependencies. npm install --global gatsby-cli gatsby new ttag-gatsby cd ttag-gatsby npm i ttag npm ...
https://ttag.js.org/docs/gatsby.html
CC-MAIN-2021-25
refinedweb
603
55.34
Python is a fantastic language that continues to help so many businesses and individuals. It offers readable syntax to get started, yet extensive amounts of control and flexibility to move into the more advanced areas of software engineering. Python the number one choice for many because it is packed with the power of ...
https://ao.gl/how-to-setup-and-use-the-python-virtual-environment/
CC-MAIN-2020-10
refinedweb
1,112
58.08
Google. The service is currently in preview phase being offered to a limited number of current Google service developers (sign-up link), each account receiving 100GB of storage and 300GB of bandwidth. Data is stored as objects organized in a flat hierarchy inside buckets. Buckets are also organized in a flat hierarchy ...
https://www.infoq.com/news/2010/06/Google-Storage-for-Developers/
CC-MAIN-2019-39
refinedweb
364
57.67
How do I add textures to sprites? I have a sprite called spriteName. Whenever I type something like. self.spriteName.texture = ('plc:Gem_Blue') or import my own image into my own folder called Textures and use self.spriteName.texture = ('Textures/IMG_0469.JPG') They both result in the error "TypeError: Expected a Textu...
https://forum.omz-software.com/topic/3174/how-do-i-add-textures-to-sprites/12
CC-MAIN-2021-49
refinedweb
446
62.04
The time difference you're looking at is the time it takes the JVM to throw an exception. Jess interprets an expression like this (?string codePointAt 0) as (assuming ?string is the symbol 'a') Advertising (call a codePointAt 0) That's actually ambiguous. We might be calling a static method codePointAt on a class named...
http://www.mail-archive.com/jess-users@sandia.gov/msg11880.html
CC-MAIN-2017-34
refinedweb
623
68.26
: ...via.. I am wondering if we could get a similar drawing for YAML. Better drawn, I hope. Ok. More clarity with regard to YAML is emergent today thanks to Andrew's thoughtful questioning. YAML serializes a typed and labeled graph which is both directed and has an origin such that all nodes in the graph are reachable ...
https://sourceforge.net/p/yaml/mailman/message/8985398/
CC-MAIN-2018-17
refinedweb
392
68.91
: March 5, AKD NOTHING MORE: WOMEN, THEIR RIGHTS AND NOTHING LESS. VOL. I.NO. 10. NEW YORK, THURSDAY, MARCH 12, 1868. single^opy^ekts. C|f Efuolntian. ELIZABETH CADY STASTOU.) PARKER PILLSBUBY, j Editors. SUSAN B. ANTHONY, Proprietor. OFFICE 37 PARK ROW (ROOM 17). IMPEACHMENT OF THE PRESIDENT. At last a majority in Con...
http://digital.auraria.edu/AA00003578/00010
CC-MAIN-2018-43
refinedweb
30,668
68.2
)... read more Pd-extended 0.40.3 released, dedicated to Jamie Tittle, aka tigital. This release is dedicated to Jamie Tittle, aka tigital, who recently died of cancer. He was a long time and key contributor to Gem and Pd in general, even while he was in the hospital undergoing treatment. He is sorely missed in this co...
http://sourceforge.net/p/pure-data/news/
CC-MAIN-2014-52
refinedweb
338
54.63
Template Meta Programming (TMP) was accidentally discovered and was not an intended feature of the language. It has many applications such as generating complex code at compile time and writing compile time checks to see if a type satisfies a given condition. It is a Turing complete language in and of itself. It is pur...
http://www.dreamincode.net/forums/topic/258650-c-challenge-template-meta-programming/page__pid__1504751__st__0
CC-MAIN-2016-18
refinedweb
378
55.17
Details - Type: Sub-task - Status: Closed - Priority: Major - Resolution: Duplicate - Affects Version/s: 10.2.2.1 - Fix Version/s: None - - Labels: - Environment:JDK 6 - Urgency:Normal - Issue & fix info:High Value Fix Description Issue Links - duplicates DERBY-5880 Move java.sql.Wrapper implementations to base classes...
https://issues.apache.org/jira/browse/DERBY-2582?focusedCommentId=12491131&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel
CC-MAIN-2014-10
refinedweb
1,113
55.84
Christian Heimes wrote: > I'm sending this mail to Python-dev in the hope to reach more developers. > > GvR likes to rename the __builtin__ to reduce confusing between > __builtin__ and __builtins__. He wanted to start a poll on the new name > but apparently he forgot. > > >From > --- >. > [...] > OK, then we need to a...
https://mail.python.org/pipermail/python-dev/2007-November/075389.html
CC-MAIN-2016-36
refinedweb
115
77.53
Understanding C# Async/Await Back in .Net Framework 4.5, Microsoft introduced two new keywords to make asynchronous programming easy for developers. These keywords, async & await have been first class citizens of C# since then and have helped developers easily introduce concurrency in their applications. However, many ...
https://plasteezy.medium.com/understanding-async-await-in-c-eaea7c5bc577?source=post_internal_links---------4----------------------------
CC-MAIN-2022-33
refinedweb
372
55.44
Starting with JSS version 9.6.0, Material-UI supports Content Security Policy headers. Basically, CSP mitigates cross-site scripting (XSS) attacks by requiring developers to whitelist the sources their assets are retrieved from. This list is returned as a header from the server. For instance, say you have a site hosted...
https://material-ui-next.com/guides/csp/
CC-MAIN-2019-04
refinedweb
342
65.93
Functional library for Dart: dart_slang: ^0.0.4 You can install packages from the command line: with Flutter: $ flutter packages get Alternatively, your editor might support flutter packages get. Check the docs for your editor to learn more. Now in your Dart code, you can use: import 'package:dart_slang/dart_slang.dart...
https://pub.dartlang.org/packages/dart_slang
CC-MAIN-2019-18
refinedweb
122
50.02
Living Water Church Ministry Training Center Transcription 1 Living Water Church Ministry Training Center He that believeth on me, as the scripture hath said, out of his belly shall flow rivers of living water. John 7: Hall Valley Drive Bridgeport, WV Office (304) Senior Pastor Jerry Fiscus (304) Catherine Adkins, Admi...
http://docplayer.net/1187933-Living-water-church-ministry-training-center.html
CC-MAIN-2017-34
refinedweb
3,936
57
/* * File: main.cpp * Author: TBuchli * * Write a program that helps a real estate agent calculate an average price of *up to 20 homes. An array of data type double should be used to contain the *prices. The program should prompt the user to enter the number of prices to *average — a maximum of 20 prices. * * Then, the...
https://www.daniweb.com/programming/software-development/threads/468042/averaging-home-prices
CC-MAIN-2017-43
refinedweb
379
73.07
C++ Function A function is a subpart of a program that can be reused when needed. A function is a set of statements that perform specific task. There are two types of functions: user defined functions and library functions. Library Functions C++ has some pre-defined functions in C++. For ex:- pow(x,y), sqrt(x), floor(x...
https://letsfindcourse.com/tutorials/cplusplus-tutorials/functions-in-cpp
CC-MAIN-2021-31
refinedweb
671
58.92
Draft Rectangle/ru Usage - Data - DataLength: specifies the length of the shape in the X axis direction. - DataHeight: specifies the height of the shape in the Y axis direction. - DataChamfer Size: specifies the diagonal length of the 45° chamfer at each corner of the rectangle. - DataFillet Radius: specifies the radiu...
https://wiki.freecadweb.org/Draft_Rectangle/ru
CC-MAIN-2020-16
refinedweb
245
59.9
On 25.04.19 08:31, Nathaniel Smith wrote: > You don't necessarily need rpath actually. The Linux loader has a > bug/feature where once it has successfully loaded a library with a given > soname, then any future requests for that soname within the same process > will automatically return that same library, regardless of...
https://mail.python.org/pipermail/python-dev/2019-April/157197.html
CC-MAIN-2019-47
refinedweb
427
65.93
Create a Thing Model and Bind to Device 07/10/2019 You will learn - How to create new thing packages - How to manage thing properties and thing property sets - How to use thing types - How to add a new thing connected to your device - How to secure thing data using access rights The Launchpad provides all the tools for...
https://developers.sap.com/mena-ar/tutorials/iot-express-4-create-thing-model.html
CC-MAIN-2019-30
refinedweb
1,471
60.55
‘Sup Look, I’m sorry. Yet again, I’ve not written any blog posts for ages. Let’s all get over it and move on to something more important. Sales. Let’s imagine you’re an organisation selling B2B. You use Salesforce (or any other platform). You’ve got plenty of opportunities and a history of those opportunities. You’ve g...
http://dogdogfish.com/tag/data-analysis/
CC-MAIN-2018-17
refinedweb
1,887
57.16
If you’ve hit this post it’s probably because you’ve been reading the Service Pack 1 documentation for Data Services and you’ve been trying to find the elusive DataWebKeyAttribute that the docs mention. As far as I can tell, it’s not there. You need to use DataServiceKey instead and it lives in assembly System.Data.Ser...
https://mtaulty.com/2008/05/19/m_10424/
CC-MAIN-2017-39
refinedweb
105
61.06
Opened 8 years ago Closed 5 months ago #11228 closed Cleanup/optimization (wontfix) FieldFile with check if file exists, and don't raise errors by default Description %}<a href="{{ MEDIA_URL }}{{ object.file }}">download this file</a>{% endif %} {% if object.image.is_exists %}<img src="{{ MEDIA_URL }}{{ object.image }}...
https://code.djangoproject.com/ticket/11228
CC-MAIN-2017-09
refinedweb
495
60.85
One of my favorite features in Perl 6 is the NativeCall interface, because it allows gluing virtually any native library into it relatively easily. There have even been efforts to interface with other scripting languages so that you can use their libraries as well. There have already been a pair of advent posts on Nati...
https://perl6advent.wordpress.com/2015/12/21/day-21-nativecall-backs-and-beyond-c/
CC-MAIN-2017-22
refinedweb
1,375
60.35
Hello, I'm new in topics like saving game progress and I have a question. What I need is to save whole GameObject to file on button click (when game is closing) and later when turning game again on I want to Instantiate that GameObject from saved file. Is there any way to do that? What i tried now is: Doing class with ...
https://answers.unity.com/questions/1623194/saving-gameobject-to-file.html
CC-MAIN-2019-39
refinedweb
416
59.9
88633/what-will-be-the-output-of-below-code-and-why-print-x-insert-2-3 What will be the output of the below code and why? x=[1,2,3,4,5] print(x.insert(2,3)) If you write x.insert(2,3) and then print x them it would show [1,2,3,3,4,5] It will show nothing in your code as insert does not return anything Try using this qu...
https://www.edureka.co/community/88633/what-will-be-the-output-of-below-code-and-why-print-x-insert-2-3?show=88635
CC-MAIN-2021-21
refinedweb
185
79.46
Hi everyone, I’m Jay Ongg, ready to do more with MAPI. Last time, I wrote a function that displays the names of all the message accounts on your device. In this article, I’ll go a little bit further. I’ll talk a bit about how to manipulate folders, messages, and properties. This post is a bit code-heavy, but if you hav...
http://blogs.msdn.com/windowsmobile/archive/2007/04/23/practical-use-of-mapi.aspx
crawl-002
refinedweb
7,245
66.13
I work on the Entity Framework Team at Microsoft. The DbContext API introduced in Entity Framework 4.1 exposes a few methods that provide pass-through access to execute database queries and commands in native SQL, such as Database.SqlQuery<T>, DbSet<T>.SqlQuery, and also Database.ExecuteSqlCommand. These methods are im...
http://blogs.msdn.com/b/diego/default.aspx?PostSortBy=MostViewed&PageIndex=1
CC-MAIN-2014-23
refinedweb
3,297
53.71
Download CD Content The previous chapter introduced you to some basics of C++ programming. This chapter covers another vital part of C++ programming: getting input from the user and displaying the results. This chapter concentrates on getting that input and providing the required output. This chapter focuses on doing t...
https://flylib.com/books/en/2.331.1.20/1/
CC-MAIN-2021-25
refinedweb
1,569
73.68
Created on 2009-01-14 04:42 by javen72, last changed 2015-03-27 06:01 by Emil.Styrke. This issue is now closed. I encountered a very strange issue in file flush operation in Windows. Here's the scenario of my application: 1. The main thread of my application will create makefiles sequentially. 2. Once a makefile is gen...
https://bugs.python.org/issue4944
CC-MAIN-2021-25
refinedweb
3,458
67.45
PYTHON pytest Overview pytest is a program/framework for running Python tests. Writing Tests pytest looks for tests in Python files which either begin in test_ or end in _test, for example: test_my_module.py # Will be found my_module_test.py # Will be found my_module.py # Won't be found Inside these files, pytest will ...
https://blog.mbedded.ninja/programming/languages/python/pytest/
CC-MAIN-2020-05
refinedweb
642
62.48
Trying to build pygame with python 2.7 on Mac Hi all- I thought I'd try to build pygame with python 2.7 on my Mac running Snow Leopard again. I do have pygame running under python 2.6. It seems to successfully compile and install, but then when I try to run an game, I get the following: Traceback (most recent call last...
http://permalink.gmane.org/gmane.comp.python.pygame/21581
CC-MAIN-2014-10
refinedweb
118
52.36
On 1/21/21 11:13 AM, Daniel P. Berrangé wrote: > On Thu, Jan 21, 2021 at 10:11:32AM +0000, Daniel P. Berrangé wrote: >> On Thu, Jan 21, 2021 at 10:56:15AM +0100, Philippe Mathieu-Daudé wrote: >>> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> >>> --- >>> Cc: Daniel P. Berrange <berrange@redhat.com> >>> --- >...
https://lists.gnu.org/archive/html/qemu-devel/2021-01/msg05384.html
CC-MAIN-2021-49
refinedweb
180
67.35
I can connect to my local mysql database from python, and I can create, select from, and insert individual rows. My question is: can I directly instruct mysqldb to take an entire dataframe and insert it into an existing table, or do I need to iterate over the rows? In either case, what would the python script look like...
https://codedump.io/share/g1u9FusqKm9m/1/how-to-insert-pandas-dataframe-via-mysqldb-into-database
CC-MAIN-2017-43
refinedweb
239
70.94
Note: This tutorial uses Team functionality available in the Terraform Cloud Team tier and above, and in Terraform Enterprise. Organization owners can enable a 30-day free trial in their settings under “Plan & Billing”. The TFE Terraform provider can codify your Terraform Cloud workspaces, teams and processes. In this ...
https://learn.hashicorp.com/tutorials/terraform/tfe-provider-run-triggers?in=terraform/kubernetes
CC-MAIN-2020-45
refinedweb
1,925
57.57
Download presentation Presentation is loading. Please wait. Published byAnthony Chase Modified over 3 years ago 1 Hybrid Synchronous Languages Vijay Saraswat IBM TJ Watson Research Center March 2004 2 Outline CCP as a framework for concurrency theory Constraints CCP Defaults Discrete Time Hybrid Time Examples Themes Sy...
http://slideplayer.com/slide/701016/
CC-MAIN-2017-13
refinedweb
3,553
54.32
The day is 09.11.2015 and for all intents and purposes, it seems to be a fairly routine and run of the mill day. But on this inconspicuous day, was the release of SAP Netweaver 7.40 SPS 13. This SPS stack release comprises many new features to the BW platform and is considered a feature release. There has been posts de...
https://blogs.sap.com/2016/02/23/sap-bpc-embedded-consolidation/
CC-MAIN-2018-43
refinedweb
834
50.67
Linux Software › Search › when building Tag «when building»: downloads Search results for «when building»: Building Block 1-0-0 by Florian Berger Building Block ist the Open Source Content Management Software for your website. It is lightweight and has minimal hardware requirements. At the same time it is powerful and ...
http://nixbit.com/search/when-building/
CC-MAIN-2015-22
refinedweb
690
58.08
Re: Strange SSL_shutdown() error return (SSL_ERROR_SYSCALL but errno == 0) Antoine Pitrou wrote: Well, in our case, and unless I'm mistaken, ret == -1, ERR_get_error() == 0 and then errno (the Unix errno) == 0. SSL_shutdown() by virtue of its unique mechanic you will not see ret == 0 (in the way the SSL_get_error man p...
https://www.mail-archive.com/search?l=openssl-users%40openssl.org&q=date%3A20100411&f=1
CC-MAIN-2022-40
refinedweb
902
63.7
table of contents NAME¶ wl_event_loop - An event loop context. SYNOPSIS¶ #include <wayland-server-core.h> Public Member Functions¶ struct wl_event_loop * wl_event_loop_create (void) void wl_event_loop_destroy (struct wl_event_loop *loop) void wl_event_loop_dispatch_idle (struct wl_event_loop *loop) int wl_event_loop_di...
https://manpages.debian.org/bullseye/libwayland-doc/wl_event_loop.3.en.html
CC-MAIN-2022-21
refinedweb
488
53.92
You don't have to set the login window to "name and password". You just have to press option+return if you use the user pictures list. However, on my system (10.3.9), I have to type the first letter of an existing user to highlight (don't press enter or click on it) it before option+return works to show the username an...
http://hints.macworld.com/article.php?story=20050603213256255
CC-MAIN-2014-15
refinedweb
1,288
72.26
The stdlib C Library function bsearch searches the given key in an sorted array pointed by base and returns a void pointer in the table that matches the search key. To perform the binary search, the function uses a comparison function(compare) to compare any element of array with key. The elements of the array must be ...
https://www.techcrashcourse.com/2015/08/bsearch-stdlib-c-library-function.html
CC-MAIN-2020-16
refinedweb
409
58.52
US Government Letterhead? Discussion in 'Word General' started by Mike, Jan 27, 2006. Want to reply to this thread or ask your own question?It takes just 2 minutes to sign up (and it's free!). Just click the sign up button to choose a username and then you can ask your own questions on the forum. - Similar Threads impo...
http://www.office-forums.com/threads/us-government-letterhead.379403/
CC-MAIN-2015-32
refinedweb
193
62.68
Bin packing involves packing a set of items of different sizes in containers of various sizes. The size of the container shouldn’t be bigger than the size of the objects. The goal is to pack as many items as possible in the least number of containers possible. Generally speaking, this is referred to as an optimization ...
https://cnvrg.io/bin-packing/
CC-MAIN-2021-43
refinedweb
2,474
63.59
import "go.uber.org/fx/internal/fxreflect" Caller returns the formatted calling func name FuncName returns a funcs formatted name ReturnTypes takes a func and returns a slice of string'd types. type Frame struct { // Unique, package path-qualified name for the function of this call // frame. Function string // File and...
https://godoc.org/go.uber.org/fx/internal/fxreflect
CC-MAIN-2020-34
refinedweb
254
67.15
File Systems This section provides an overview of file systems on Linux and discusses the virtual file system, the ext2 file system, LVM and RAID, volume groups, device special files, and devfs. Virtual File System (VFS) One of the most important features of Linux is its support for many different file systems. This ma...
http://www.informit.com/articles/article.aspx?p=389712&seqNum=7
CC-MAIN-2019-18
refinedweb
1,539
62.48
1413/how-can-i-concatenate-str-and-int-objects How To Concetanate Strings and Integers in Python? I am trying to execute the following code: things = 5 print("You have " + things + " things.") I get the following error in Python 3.x: Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: must...
https://www.edureka.co/community/1413/how-can-i-concatenate-str-and-int-objects?show=1414
CC-MAIN-2019-47
refinedweb
282
75.81
Grid Sort for formatted date column in FF vs IE6 It looks like the grid sorts by the data model's column value in IE6 and the view's rendered html in FF. Not certain about this. I'll have to investigate further but that's my initial assessment. As your RSS feed viewer, I parse the date on the way in (converting unix ti...
https://www.sencha.com/forum/showthread.php?363-Grid-Sort-for-formatted-date-column-in-FF-vs-IE6
CC-MAIN-2015-48
refinedweb
497
67.04
Aflați mai multe despre abonamentul Scribd Descoperiți tot ce are Scribd de oferit, inclusiv cărți și cărți audio de la editori majori. Technical Report Writing Chemical Engineering Department Dr. Moustapha Salem Mansour First year Spring 2009 Table of contents 1. Introduction 1 1.1. Types of Technical Reports 2 1.1.1....
https://ro.scribd.com/doc/55482200/Technical-Report-Writing
CC-MAIN-2020-50
refinedweb
18,464
50.67
Toward pyvenv-3.4 ~) from flask import Flask app = Flask(__name__) app.debug = True @app.route('/') def hello_world(): return '<h1>Hello World!</h1>' @app.route('/user/<name>') def hello_user(name): return '<h1>Hello {0}</h1>'.format(name) if __name__ == '__main__': app.run() Now, this is not anywhere close to our prev...
https://runestone.academy/runestone/static/webfundamentals/Frameworks/frameworkintro.html
CC-MAIN-2018-17
refinedweb
532
67.35
Frank Sommers: Does a JCP JSR represent an "official" Java standard? What would prevent developers from favoring a non-JCP-developed solution to a problem over a relevant JSR? Rob Gingell: The JCP reserves the namespaces java.* and javax.*. Other than namespace use, there's nothing about the JCP that requires anyone to...
https://www.artima.com/intv/standards3.html
CC-MAIN-2017-51
refinedweb
262
50.87
We are excited to release new functionality to enable a 1-click import from Google Code onto the Allura platform on SourceForge. You can import tickets, wikis, source, releases, and more with a few simple steps. Hi Tony, ./smispy_lsmplugin -u smispy://9.126.140.140:5988/?namespace=root/LsiArray13 --create-volume=from-...
http://sourceforge.net/p/libstoragemgmt/mailman/libstoragemgmt-devel/thread/4F96B755.1060006@redhat.com/
CC-MAIN-2014-10
refinedweb
391
73.47
Related Titles - Full Description. What youll - 55:Nuget.config should be (removed one ../): <settings> <repositoryPath>../../../libs</repositoryPath> </settings> (This change is needed for downloaded Nuget packages to get stored in the lib folder in the project folder structure.) On page 91: There is no Browser class ...
http://www.apress.com/microsoft/c/9781430235330
CC-MAIN-2016-22
refinedweb
193
57.77
A minimalist Flutter game engine. Any help is appreciated! Comment, suggestions, issues, PR's! Give us a star to help!. Just drop it in your pubspec.yaml: dependencies: flame: ^0.8.4 And start using it! The complete documentation can be found here. Bellow is an overview that should suffice to build a simple game, and w...
https://pub.dartlang.org/packages/flame
CC-MAIN-2018-26
refinedweb
541
52.05
Iseries odbc failed jobs You can see the error here: [kirjaudu nähdäksesi URL:n] Site uses Yii, PHP and Mysql... .. populate [kirjaudu nähdäksesi URL:n] is getting a "secure connection failed" error for some browsers: see: [kirjaudu nähdäksesi URL:n]://[kirjaudu nähdäksesi URL:n] I need help to fix this issue. .." I am...
https://www.fi.freelancer.com/job-search/iseries-odbc-failed/
CC-MAIN-2018-30
refinedweb
553
65.62
Compaq: Alpha is Better Than IA-64 373 Compaq released a document (it's in PDF format) that states that their Alpha is better then IA-64 (Intel next generation Itanium Processor). The document compares Alpha (and future generations of Alpha) against the IA-64 (I hate this "Itanium" name - where do they get these names ...
https://slashdot.org/story/99/12/28/0946225/compaq-alpha-is-better-than-ia-64
CC-MAIN-2018-05
refinedweb
6,902
70.63
Introduction: How to Make a Drawing Arm With Arduino This Instructables will show you how to create your very own drawing arm. The drawing arm draws by using the hole in the up most piece of wood as a writing utensil holder. This drawing arm works by taking input from the potentiometers and making them a servo reading....
http://www.instructables.com/id/How-to-Make-a-Drawing-Arm-with-Arduino/
CC-MAIN-2018-17
refinedweb
570
68.4
Important: Please read the Qt Code of Conduct - Displaying integer value HI I have to take 2 bytes from Qbytearray and display it as signed int in Line edit. is it possible. for eg: if my byte 0 is 03 and byte1 is FF--> my data =03ff which is 1023. i want to display in line edit as 1023. i tried like this ui-> value-> ...
https://forum.qt.io/topic/114331/displaying-integer-value/1
CC-MAIN-2021-21
refinedweb
233
65.12
Adopted for extjs v4.0.7 and nodejs v0.6.2 Adopted for extjs v4.0.7 and nodejs v0.6.2 I found that menuAlign is applied correctly. But when menu render it use menu element size and for the first time this size is wrong (because menu isn't completely rendered at that moment). ExtJS 4.0.2 only. Ext.onReady(function(){ Ex...
https://www.sencha.com/forum/search.php?s=1ecd945aea7f9d9e5eff77a40446a3b5&searchid=18401117
CC-MAIN-2016-50
refinedweb
580
67.76
Tutorial for: django-selectable Requirements: Do you have a Django website with a large Knowledgebase? Do you want to make this knowledgebase easily searchable from any page on your site with a fancy jQuery auto-complete box? This tutorial has your solution! This tutorial assumes that you know how to use Django and hav...
http://pythondiary.com/tutorials/add-ajax-powered-quick-search-any-django-site.html
CC-MAIN-2019-22
refinedweb
1,204
58.99
The Samba-Bugzilla – Bug 12469 CTDB lock helper getting stuck trying to lock a record Last modified: 2017-02-13 15:59:09 UTC This is due to a bug related to robust mutex scheduling in Linux/glibc. This bug has been reported to redhat bugzilla. Created attachment 12830 [details] Patches for v4-6 Created attachment 12831...
https://bugzilla.samba.org/show_bug.cgi?id=12469
CC-MAIN-2018-09
refinedweb
518
60.51
Optimistic. What is optimistic locking? Before defining optimistic locking, I'll first describe it's opposite, pessimistic locking. Suppose you need to update a record in your database, but you cannot do so atomically -- you'll have to read the record, then save it in a separate step. How do you ensure that, in a concu...
http://charlesleifer.com/blog/optimistic-locking-in-peewee-orm/
CC-MAIN-2020-50
refinedweb
953
55.74
I So I am programming an application using Java Swing, and I am wondering how to make it so that when the entire application gets resized only certain panels get resized in various ways. Take a look at the two pictures below: I have three vertical pane'm trying to position some JButton objects, but I need the coordinat...
http://www.dskims.com/tag/layout-manager/
CC-MAIN-2018-22
refinedweb
813
67.89
Here are some notes I made -- I hope it might save someone a bit of time. So, I finally tried out a few other backends on mac os x. I had been recommending and using TkAgg, as this works out of the box on mac os x. However, it seems unsnappy sometimes, and there was this strange issue with the first window not giving c...
https://discourse.matplotlib.org/t/notes-on-switching-backends-to-qt4-on-mac-os-x/6758
CC-MAIN-2022-21
refinedweb
493
59.7
Pythonista 1.6 Beta Found a bug. In the UI Editor when delete enabled is off, you can still delete rows in a table. - TutorialDoctor Will dialogs allow me to create tables with cells (rows and columns)? This would be most useful, otherwise I don't see an advantage to dialogs over UI. Pinch to zoom in the UI editor woul...
https://forum.omz-software.com/topic/1946/pythonista-1-6-beta/?page=3
CC-MAIN-2020-34
refinedweb
786
77.84
File Zipper : Visual C# File Zipper is a Visual C# program for compressing and decompressing files. It creates .zip files and can decompress .zip files as well. The support for Zip files was a very useful feature introduced in .NET Framework 4.5. The DLL named System.IO.Compression.dll provides two new classes named Zi...
https://www.wincodebits.in/2016/02/file-zipper-visual-c.html
CC-MAIN-2018-34
refinedweb
777
59.6
AWS Cloud Operations & Migrations Blog metrics to power dashboards, alarms, and other tools that rely on accurate and timely metric data. You can use metric streams to send metrics to partner solutions, including Datadog, Dynatrace, New Relic, Splunk, and Sumo Logic. Alternatively, you can send metrics to your data lak...
https://aws.amazon.com/blogs/mt/cost-optimization-aws-amazon-cloudwatch-metric-streams-aws-cost-and-usage-reports-and-amazon-athena/
CC-MAIN-2022-40
refinedweb
1,694
59.53
Concise programming 2022-06-24 07:34:46 阅读数:561 linux System :utf-8 windows:gbk mac:utf-8 When the decoding and encoding methods are different, there will be garbled code ! We recommend popularizing utf-8 code An abstract class for reading character streams . The only way Subclasses must implement read(char[], int, int...
https://en.javamana.com/2022/175/202206240734394031.html
CC-MAIN-2022-33
refinedweb
350
51.24
i wrote over my project and had to start again, i cannot get my report to loop 10 times and add 1 to year, year 1, year 2, etc, been working at this all day. please help... /Define a class Hammurabi with a member function that takes a parameter; //Create a Hammurabi object and call its displayMessage function. #include...
http://forums.codeguru.com/showthread.php?542955-loop-report-10-times&p=2144801
CC-MAIN-2018-09
refinedweb
597
55.2
This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project. I believe I've found the problem. Before gcse we had (insn 4062 9281 4065 383 0x20000053188 (set (reg/v:DI 82 [ swapped ]) (eq:DI (reg/v:DI 82 [ swapped ]) (const_int 0 [0x0]))) 149 {*setcc_internal} (nil) (nil)) (jump_insn 4065 4...
http://gcc.gnu.org/ml/gcc-patches/2003-02/msg00468.html
CC-MAIN-2019-04
refinedweb
1,005
55.54
By the way... Wow, I'm quite busy these days, haven't been writing (or reading, for that matter!) much... Mostly, it's to blame on the quest for a place to live in that's going on. I'd like to buy, this time around, so this makes it a couple of notches more complicated than what I'm used to (I've never been an owner, s...
http://www.advogato.org/person/pphaneuf/diary.html?start=323
CC-MAIN-2016-36
refinedweb
343
76.76
Ted Neward wrote an article in 2004 comparing Object Relational Mapping to the American debacle in Vietnam. Jeff Attwood revived the article in 2006. He pasted a giant photo at the top of his block (Vietnam grunts-in-the-fields-with-helicopters), copied Neward's conclusions verbatim, and pronounced his favorable opinio...
https://www.codeproject.com/Articles/20849/ORM-as-Vietnam-of-Computer-Science-A-Response?msg=2275362
CC-MAIN-2020-34
refinedweb
9,024
55.44
OSMF with Flex examplesttehify Aug 10, 2010 6:11 AM Hi there, I'm looking for a Flex flash video player that can be skinned using CSS and was hoping OSMF might be the answer. Somehow, I can't seem to find any examples of it? They all seem to be Flash related. Thanks 1. Re: OSMF with Flex examplesScreenName1710b Aug 10,...
https://forums.adobe.com/message/3044254
CC-MAIN-2015-27
refinedweb
1,711
65.52
Web Developer Welcome! Happy to see you in the last part of my JSWorld Conference 2022 summary series, in which I share a summary of all the talks with you. You can read the first part here, the second part here, and the third part here, where I summarized the first ten talks of the first day that were about:: So, let’...
https://hackernoon.com/jsworld-conference-2022-part-iv?ref=hackernoon.com
CC-MAIN-2022-33
refinedweb
2,853
68.7
CSPICE_WNELMD determines whether a point is an element of a double precision window. For important details concerning this module's function, please refer to the CSPICE routine wnelmd_c. Given: point a double precision scalar point, which may or may not be contained in one of the intervals in window. window scalar, dou...
https://naif.jpl.nasa.gov/pub/naif/toolkit_docs/IDL/icy/cspice_wnelmd.html
CC-MAIN-2019-35
refinedweb
252
65.62
I have a DLL I need to use, and it came with a header file and a DEF file. Judging by the header file, it looks like the DLL was written in C. The documentation says I should make a LIB file from the DEF file before the DLL is useable. I just got Visual Studio and am learning C#, but don't currently intend to learn C++...
http://cboard.cprogramming.com/cplusplus-programming/42907-making-lib-file-def-file-dll.html
CC-MAIN-2015-32
refinedweb
412
71.14
- comments yet. People are still trying to read the code snippet. Admin The saddest part is, it probably isn't even any more efficient than if it'd been written legibly. Admin well, at least the return type os named correcly. it surely did result in damage to the reader Admin The only thing missing is adding a recursi...
https://thedailywtf.com/articles/comments/whose-tern-is-it-to-play
CC-MAIN-2019-26
refinedweb
696
60.21
I would like to set up an FTP service on a non-standard port (i.e. not 21) using the FTP service in IIS 6 on a Windows 2008 Server. I have set it up and tested it locally - it all works. However I am having issues when accessing it remotely. I can Telnet to the new port and see an FTP response, but I cannot create a tr...
http://serverfault.com/questions/16761/how-to-limit-ftp-ports-when-using-iis6-ftp-service-on-alternate-ftp-port
crawl-003
refinedweb
436
71.24