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
11 February 2008 08:21 [Source: ICIS news] SINGAPORE (ICIS news)--Siam Cement and Dow Chemical have secured “nearly all approvals” for their new joint-venture 900,000 tonne/year cracker project in Mab Ta Phut, Thailand, said Noel Williams, Dow’s president for Asean, Australia and New Zealand. ?xml:namespace> The comple...
http://www.icis.com/Articles/2008/02/11/9099626/siam-cement-dow-near-cracker-complex-approval.html
CC-MAIN-2014-42
refinedweb
359
56.69
import 'dart:async'; import 'dart:math' show Random; main() async { print('Compute π using the Monte Carlo method.'); await for (var estimate in computePi()) { print('π ≅ $estimate'); } } /// Generates a stream of increasingly accurate estimates of π. Stream<double> computePi({int batch: 1000000}); } Fart is an applica...
http://fartlang.org/
CC-MAIN-2022-33
refinedweb
181
66.74
From Apple: Creating a Custom View That Renders in Interface Builder Create a XIB file Xcode Menu Bar > File > New > File. Select iOS, User Interface and then "View": Give your XIB a name (yes, we are doing a Pokemon example 👾). Remember to check your target and hit "Create". Design your view To make things easier, se...
https://sodocumentation.net/ios/topic/1362/custom-uiviews-from-xib-files
CC-MAIN-2020-50
refinedweb
795
61.12
1 2 package org.campware.cream.om;3 4 5 import org.apache.torque.om.Persistent;6 7 /**8 * The skeleton for this class was autogenerated by Torque on:9 *10 * [Fri Feb 25 22:39:31 CET 2005]11 *12 * You should add additional methods to this class to meet the13 * application requirements. This class will only be generated ...
http://kickjava.com/src/org/campware/cream/om/ProjectCategory.java.htm
CC-MAIN-2019-39
refinedweb
102
50.84
When. The main documentation source for KExtProcess, besides reading the code, are the API docs. I have the fortunate habit of adding small pieces of documentation to all methods I write using pseudo-apidox style syntax. Although I never tried to actually run Doxygen over them they turned out to be quite useful as a st...
https://blogs.kde.org/comment/3521
CC-MAIN-2020-34
refinedweb
1,366
62.27
GitHub's JSON is full of interesting data we could show, so the first thing to do is have a look through it for particularly meaningful things. Modify your componentWillMount() method so that it has this line just before the call to setState(): src/pages/Detail.js console.dir(response.body); Once that's done, save and ...
http://www.hackingwithreact.com/read/1/16/converting-githubs-json-into-meaningful-jsx
CC-MAIN-2017-22
refinedweb
612
64.2
So this is my second project in C++, but I'm having some trouble understanding Recursive functions. We are supposed to write a program that has a recursive function. And the program should ask the user for a number. And then display the number of even digits that the number had. ie. input: 22378 output: the number had ...
https://www.daniweb.com/programming/software-development/threads/411352/recursive-function-help
CC-MAIN-2017-09
refinedweb
142
68.81
BRINGING YOU EXPERT ADVICE FOR OVER 30 YEARS FamilyTree FamilyTree TBARCKATOCTEHE MARCH 2017 s 0 0 5 1 TAKE YOUR O T S D R O C E R Y 15 KE DOR TIMES U T O T K C A B H RESEARC Happy 100th Dame Vera New to family history? Celebrating a centenary of the Forces’ Sweetheart 5 ESSENTIAL WEBSITES TO TRY TODAY! FREE RECORDS EX...
https://issuu.com/mimimi992/docs/family_tree_uk_march_2017
CC-MAIN-2017-09
refinedweb
52,929
58.21
0 Hello everyone, I'm trying to solve a problem in C++ using visual studio. The problem asks to write a program that asks the user for a positive integer no greater than 15, and that the program should then display a square on the screen using the character "X", and that the number entered by the user will be the lengt...
https://www.daniweb.com/programming/software-development/threads/357792/square-display-of-x-depending-on-number-entered
CC-MAIN-2016-30
refinedweb
207
68.54
In one of our previous article, we learnt about CQRS and the usage of the MediatR Library. Now, let’s see how to take advantage of this library to the maximum. Let’s learn about MediatR Pipeline Behaviour in ASP.NET Core, the idea of Pipelines, How to intersect the pipeline and add various Services like Logging and Val...
https://www.codewithmukesh.com/blog/mediatr-pipeline-behaviour/
CC-MAIN-2020-45
refinedweb
2,230
50.43
DD <ad at ad.nl> wrote: D> Hello, D> D> Could anyone please help me?? D> Is there somebody who could explain me how to make a connection to a access D> database with a python cgi script. D> I would like to use common sql commands in my python scripts as I can with D> MySQLdb. D> But I cannot even connect to the access ...
https://mail.python.org/pipermail/python-list/2003-November/204525.html
CC-MAIN-2016-50
refinedweb
285
59.19
Have you ever wanted to download all images in a certain web page ? In this tutorial, you will learn how you can build a Python scraper that retrieves all images from a web page given its URL and downloading them using requests and BeautifulSoup libraries. To get started, we need quite a few dependencies, let's install...
https://www.thepythoncode.com/article/download-web-page-images-python
CC-MAIN-2020-16
refinedweb
809
66.78
So some exciting news is that I am a Top 10 finalist in the Hololens Contest jointly sponsored by Microsoft and Unity3d! The finalists were announced on 12th July 2017, and we have until 30th October 2017 to submit a Hololens application. The goal of the contest is to create a world changing idea for HoloLens, that imp...
http://talesfromtherift.com/hololens-contest-week-12/
CC-MAIN-2018-17
refinedweb
4,594
67.28
GraphQL is a dream for frontend developers and clients alike. After all, clients don’t care where data is coming from or what database format you’re using. They care about getting the data they’re asking for quickly, cleanly, and painlessly. Bonus points if it doesn’t put too heavy of a load on the server. It’s been a ...
http://blog.logrocket.com/a-guide-to-the-graphql-mesh-library/
CC-MAIN-2020-40
refinedweb
2,162
55.95
0 Hi, I'm using windows XP and trying to simulate mouse movement and mouse clicks. The following code supposed to move mouse to absolute position (100,100) and perform a click: //test.cpp file: #include "stdafx.h" int main(int argc, char* argv[]){ INPUT *buffer = new INPUT[3]; //allocate a buffer buffer->type = INPUT_M...
https://www.daniweb.com/programming/software-development/threads/6727/simulate-mouse-move
CC-MAIN-2016-07
refinedweb
244
56.82
Archived project. No maintenance. This project is not maintained anymore and is archived. Feel free to fork and make your own changes if needed. For more detail read my blog post: Taking an indefinite sabbatical from my projects Thanks to everyone for their valuable feedback and contributions. vim-go-tutorial Tutorial ...
https://opensourcelibs.com/lib/vim-go-tutorial
CC-MAIN-2022-40
refinedweb
10,867
66.44
Here is my code: import java.util.Arrays; import javax.swing.*; public class childNameAge { public static void main(String[] args) { int numberOfChildren; Here is my code: import java.util.Arrays; import javax.swing.*; public class childNameAge { public static void main(String[] args) { int numberOfChildren; Here are s...
http://www.javaprogrammingforums.com/search.php?s=b2d8ec8e7541332a4b5088ce8f7ff366&searchid=203480
CC-MAIN-2016-30
refinedweb
297
76.32
Combine Polymorphism and Web Services Happy New Year! You may be aware of polymorphism, and you probably know something about Web services by now too. But, what about polymorphism across Web services? This article reviews polymorphism, demonstrates XML Web services, and most importantly, shows you how to combine polymo...
https://www.developer.com/design/article.php/3459001/Combine-Polymorphism-and-Web-Services.htm
CC-MAIN-2018-26
refinedweb
1,189
53.31
. two key technologies, LUIS and Bot Framework to develop and create bots the easy way. Without being an AI-expert, you can develop and deploy conversational bots which interact with your users and process their needs.) Let's get started! Part 1: LUIS LUIS stands for Language Understanding Intelligent Service. It is p...
https://practicaldev-herokuapp-com.global.ssl.fastly.net/icebeam7/developing-a-serverless-whatsapp-chatbot-4o72
CC-MAIN-2021-49
refinedweb
1,346
57.16
You are now following this question - You will see updates in your followed content feed. - You may receive emails, depending on your communication preferences. Can I tell Matlab not to use contiguous memory? 24 views (last 30 days) Show older comments Commented: Christopher Thomas on 6 Apr 2021 Matlab eats enormous am...
https://www.mathworks.com/matlabcentral/answers/782688-can-i-tell-matlab-not-to-use-contiguous-memory
CC-MAIN-2022-27
refinedweb
9,947
57.91
Ever wish you had an easier way of doing validation on a string value, or checking to make sure it was in the proper format, or return a value with a simple "ToSomething" other than the defaults that already exists? For example: string myEmailAddress; //simple string, nothing fancy myEmailAddress = "joeATjoe.com"; //no...
http://www.dreamincode.net/forums/topic/77402-how-to-create-extension-methods/
CC-MAIN-2016-30
refinedweb
490
64.61
This article will walk you through the steps required to create a signature hash to authenticate open channel API calls sent by Airship to your Webhook: When configuring your webhook in the Airship Dashboard and selecting "Signature Hash" from the Authentication dropdown menu, you will provide us with a secret key base...
https://support.airship.com/hc/en-us/articles/360032501831-Implementing-a-Signature-Hash-and-Validating-an-Open-Channel-Webhook
CC-MAIN-2020-50
refinedweb
675
50.36
Convert ThinkOrSwim Indicator to TradingView Budjetti $30-250 USD I am looking for someone capable of converting an indicator from thinkorswim to tradingview. Please make sure to read the information and attached code before submitting your bids. Thank you. # Trend Reversal # Discuss [login to view URL] def price = clo...
https://www.fi.freelancer.com/projects/php/convert-thinkorswim-indicator/?ngsw-bypass=&w=f
CC-MAIN-2022-05
refinedweb
467
58.92
If. I have been working in an internal laboratory for years. This laboratory is always equipped with the latest big servers from our company and is free for our partners to test the performance of their products and solutions. Part of my job is to help them tune the performance on all kinds of the powerful CMT and SMP ...
http://www.theserverside.com/tt/articles/content/ScalingYourJavaEEApplications/article.html
crawl-002
refinedweb
3,603
54.83
Allocate a dispatch handle, specifying a channel ID #include <sys/iofunc.h> #include <sys/dispatch.h> dispatch_t *dispatch_create_channel( int chid, unsigned reserved ); libc Use the -l c option to qcc to link against this library. This library is usually included automatically. The dispatch_create_channel() function a...
http://www.qnx.com/developers/docs/6.6.0.update/com.qnx.doc.neutrino.lib_ref/topic/d/dispatch_create_channel.html
CC-MAIN-2021-04
refinedweb
205
57.06
- analysis. - API key - A unique identifier that you can use for authentication when submitting Elasticsearch requests. When TLS is enabled, all requests must be authenticated using either basic authentication (user name and password) or an API key. - auto-follow pattern - An index pattern that automatically configures...
https://www.elastic.co/guide/en/elasticsearch/reference/master/glossary.html
CC-MAIN-2020-24
refinedweb
1,462
57.87
12 Things I Wish I Knew About Docker When learning Docker, there are a lot of subtle details you can miss. But knowing them can be really helpful. I often had full-fledged “aha” moments. After stumbling upon a small snippet of information suddenly things started to make much more sense all of a sudden. I like to think ...
https://vsupalov.com/12-docker-facts/
CC-MAIN-2021-31
refinedweb
408
71.65
C++ and SDL with Clickable. A little help please. Here's the source of the main.cpp: #include <SDL.h> int main(int argc, char *argv[]) { SDL_Init(SDL_INIT_VIDEO); SDL_Window *window = SDL_CreateWindow( "SDL2Test", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, 640, 480, 0 ); SDL_SetWindowFullscreen( window, SDL_TRUE...
https://forums.ubports.com/topic/2178/c-and-sdl-with-clickable-a-little-help-please/15
CC-MAIN-2019-30
refinedweb
194
54.93
I finally finished the deluxe version of the data logger. The software took longer than expected, because of the tight flash memory limit. I created a short video which should give you an impression how you can use the menus on the data logger. The video is showing the menu driven user interface. It is controlled using...
https://luckyresistor.me/2015/10/04/data-logger-deluxe-finished-video/
CC-MAIN-2020-16
refinedweb
216
63.09
I've been reading many of the posts here for quite a while, and it seems that much of the source posted unneccesarily includes several include files! Because of the size of the code that is actually included with the headers (sometimes chained to other headers subsequently), it would be wise to minimize the number of i...
https://cboard.cprogramming.com/cplusplus-programming/2558-slim-down-inclusions.html
CC-MAIN-2017-30
refinedweb
213
59.4
What am I suppose to add here to buffer the weird sequence of numbers and letters? /*------------------------------------------------------------------ * Assignment 4: Breaking the Code. Nested loops, command-line arguments.. *Worth: 50 points. 60 points if you write a "general purpose" program which can process ANY of...
https://www.daniweb.com/programming/software-development/threads/127959/null-cipher-according-to-c
CC-MAIN-2018-43
refinedweb
145
73.27
Just installed Tomcat 5.0.19 and it is complaining about some stuff in my jsp files. After some reading, I determined it had something to do with "regular" jsp's vs. "xml document" jsp's. Does anyone know how to configure Tomcat 5 to see my jsp's as "regular" jsp's? Or is there something I need to add to my jsp's? The ...
http://mail-archives.us.apache.org/mod_mbox/tomcat-taglibs-user/200405.mbox/%3C42E7C401A4CBCD49829BB53DDD538BA4BFBB0B@chmpgexgmail3.ic.ncs.com%3E
CC-MAIN-2020-29
refinedweb
110
69.68
Hello everyone, today we are going to build a Guess the Number Game in Python! How does it work? Our games will randomly generate a number between 0 and 30 and the player has to guess the number. If the number entered by the player is less than generated number then the player will be prompted with too low message! And...
https://dev.to/mindninjax/how-to-build-a-guess-the-number-game-in-python-eff
CC-MAIN-2021-17
refinedweb
563
73.68
I'm trying to get OpenCV working with Python on my Ubuntu machine. I've downloaded and installed OpenCV, but when I attempt to run the following python code (which should capture images from a webcam and push them to the screen) import cv cv.NamedWindow("w1", cv.CV_WINDOW_AUTOSIZE) capture = cv.CaptureFromCAM(0) def re...
https://codedump.io/share/8BNWlDjMmwzH/1/opencv-error-the-function-is-not-implemented
CC-MAIN-2016-50
refinedweb
250
69.68
Re: Sizing Exchange Transaction, SMTP, MTA and Quorum Drives??? - From: "John Fullbright" <fjohn@donotspamenetappdotcom> - Date: Fri, 3 Aug 2007 12:33:55 -0700 If I get this right, 1. You are assuming .85 IOPS per user 2. You will not be using caching on outlook clients 3. You're assuming a read/write ratio of 3:1 5. I...
http://www.tech-archive.net/Archive/Exchange/microsoft.public.exchange.design/2007-08/msg00005.html
crawl-002
refinedweb
2,784
70.43
Me and my wife had some interesting conversations on Object Oriented Design principles. After publishing the conversation on CodeProject, I got some good responses from the community and that really inspired me. So, I am happy to share our next conversation that took place on Object Oriented Design Patterns. Here it is...
http://www.codeproject.com/Articles/98598/How-I-explained-Design-Patterns-to-my-wife-Part?msg=4512523
CC-MAIN-2015-14
refinedweb
2,497
64.51
Hi Jean, > $ find linux-2.6.26-rc1 -name Kconfig | wc -l > 455 > $ find linux-2.6.26-rc1 -name Makefile | wc -l > 1030 > $ Well, these are not pieces of code and serve a different purpose, don't they? > Not to mention the 102 setup.c, 87 irq.c, 62 time.c... It is very > common to have duplicated file names in the kerne...
http://www.linux-mips.org/archives/linux-mips/2008-05/msg00129.html
CC-MAIN-2014-42
refinedweb
429
70.33
Simple desktop integration for Python. Project description This is a python 3 port of desktop package. The desktop package provides desktop environment detection and resource opening support for a selection of common and standardised desktop environments. Insallation pip install desktop3 Usage Launch folders, files, … ...
https://pypi.org/project/desktop3/
CC-MAIN-2018-47
refinedweb
601
62.24
This project is a screen saver application that I originally started as a way to pick up C++/MFC. That was a few years back, and in that time I’ve gone back to it a number of times to add new features and try new things. It’s made the rounds of my family’s and friend’s computers and, since they all seem to like it, I t...
http://www.codeproject.com/Articles/7291/Clock-Screen-Saver?fid=57458&df=90&mpp=10&sort=Position&spc=None&tid=866362
CC-MAIN-2017-17
refinedweb
796
66.88
Using Computer Vision to Calculate a 1 rep max Part IV: The Resurrection For all of my previous work on this subject, see: - Using Computer Vision to Calculate a One Rep Max - Using Computer Vision to Calculate a One Rep Max Part II: The Reckoning - How to Install OpenCV on Heroku - Using Computer Vision to Calculate a...
http://scottlobdell.me/2014/12/using-computer-vision-calculate-1-rep-max-part-iv-resurrection/
CC-MAIN-2017-47
refinedweb
1,376
54.86
There isnt a great deal of people who are seemingly interested in this event which for me is quite worrying, Are there people out there who are going but as yet not mentioned anything on here? We need ideas on how to drum up interest.. I want to meet as many of the UK spiceheads down there as possible, if anyone is thi...
https://community.spiceworks.com/topic/38183-how-can-we-generate-interest
CC-MAIN-2017-09
refinedweb
534
84.3
Event Details PLEASE read all the FAQ's prior to purchasing your tickets. NOTE* there are no refunds or class transfers. Dahlias are the peony of the fall season with so many shapes and colors to choose from the design options are endless. Join us at Barnard Griffing Winery where we will design a beatiful centerpiece. ...
https://www.eventbrite.com/e/sips-and-stems-darling-dahlias-tickets-36964919068
CC-MAIN-2018-34
refinedweb
326
64.91
The Ming32 compiler is almost as easy to setup as the Cygnus c compiler but supposedly does not require any run time DLLs to be distributed with executables. Information on the package is available at: the Official Installation Information on the package is available at: The distribution zip files are available at the ...
http://webstats.ccp14.ac.uk/tutorial/compiler/mingw32/index.html
CC-MAIN-2018-13
refinedweb
238
59.09
Visio 12 - Eric RockeyWhat's new in Visio 12 Server2005-12-06T02:01:00ZDo You Share Diagrams On A Server?<P class=MsoNormal<FONT face=Calibri size=3.</FONT></P> face=Calibri size=3>If you think you can help us with this area (and would like to help chart Visio’s future), simply contact us.</FONT></P><img src="" width=...
http://blogs.msdn.com/eric_rockey/atom.xml
crawl-002
refinedweb
4,524
54.86
Code: listeners: { cellclick:function(grid,row,column,event) { var r = livegrid.getStore().getAt(row); var fieldName = grid.getColumnModel().getDataIndex(column); if(fieldName != 'name'){ opennewDialog(r.get('spo'),'index.php?action=view&pid='+r.get('pid')+'&nomenu=1',r.get('pid')) } if(r.get('status_change') == 'true'...
http://www.sencha.com/forum/showthread.php?17791-Ext.ux.LiveGrid/page77
CC-MAIN-2014-15
refinedweb
783
66.13
OEChem 1.5.0 is a new release including many major and minor bug fixes along with several new features. This is also a continuation of a complete release of all OpenEye toolkits as a consolidated set so that there are no chances of incompatibilities between libraries. Note, that in this release the directory structure ...
https://docs.eyesopen.com/toolkits/cpp/oechemtk/releasenotes/version1_5_0.html
CC-MAIN-2018-22
refinedweb
580
54.52
Status () ▸ XUL People (Reporter: jst, Assigned: Mike Pinkerton (not reading bugmail)) Tracking Firefox Tracking Flags (Not tracked) Details (Whiteboard: [nsbeta2+]) This bug is for tracking if and how XUL in mozilla breaks when the old incorrect way of manipulating a DOM document containing XML namespace elements in m...
https://bugzilla.mozilla.org/show_bug.cgi?id=39932
CC-MAIN-2018-26
refinedweb
647
52.9
/* Timing variables for measuring compiler performance. Copyright (C) 2000, 2003, 2004, 2005 Free Software Foundation, Inc. Contributed by Alex Samuel <sam_TIMEVAR_H #define GCC_TIMEVAR_H /* Timing variables are used to measure elapsed time in various portions of the compiler. Each measures elapsed user, system, and wa...
http://opensource.apple.com/source/libstdcxx/libstdcxx-39/libstdcxx/gcc/timevar.h
CC-MAIN-2016-36
refinedweb
349
65.01
“. PeriodicWave… Isn’t that something the crowd does at a sports game? The Web Audio API is rather intimidating at first glance if you’re not used to dealing with the low-level vagaries of audio – you feed in an appropriate file to the right OS API, it gets converted to PCM via magic, cat sounds come out of the speaker...
https://artandlogic.com/2019/07/unlocking-the-web-audio-api/?shared=email&msg=fail
CC-MAIN-2021-43
refinedweb
1,695
55.74
Hi all, I am tryiing to figure out how to tokenize a string consisting of words in alphabetical order, all crammed together with no delimiters. I can't for the life of me see how this could be done without analyzing the string beforehand and hard coding a delimiter in. Example string: aaardvarkapplebananabicyclecobracu...
https://www.daniweb.com/programming/software-development/threads/349392/string-with-no-delimiter
CC-MAIN-2018-30
refinedweb
902
63.19
CodePlexProject Hosting for Open Source Software Documentation Installation Upgrading to BlogEngine.NET 2.0 There are more file and folder changes made in BlogEngine.NET 2.0 compared to the last couple of releases (i.e. versions 1.5, 1.6). Some files which existed in v1.6 no longer exist in v2.0. The web.config file ha...
http://blogengine.codeplex.com/wikipage?title=Upgrading%20to%20BlogEngine.NET%202.0
CC-MAIN-2017-43
refinedweb
927
70.7
[SOLVED] Error sending switch command Almost every time when I try to control my relay from Domoticz I get a "Error sending switch command, check device/hardware !" even though the relay turns on/off. There is maybe a 2-3 seconds delay between when I press the switch in Domoticz and when it reacts. Don't know if it is ...
https://forum.mysensors.org/topic/4658/solved-error-sending-switch-command
CC-MAIN-2018-30
refinedweb
816
54.02
NAME vm_map_remove -- remove a virtual address range from a map SYNOPSIS #include <sys/param.h> #include <vm/vm.h> #include <vm/vm_map.h> int vm_map_remove(vm_map_t map, vm_offset_t start, vm_offset_t end); DESCRIPTION The vm_map_remove() function removes the given address range bounded by start and end from the target...
http://manpages.ubuntu.com/manpages/oneiric/man9/vm_map_remove.9freebsd.html
CC-MAIN-2014-35
refinedweb
113
67.25
My Hashtable in Java would benefit from a value having a tuple structure. What data structure can I use in Java to do that? Hashtable<Long, Tuple<Set<Long>,Set<Long>>> table = ... I don't think there is a general purpose tuple class in Java but a custom one might be as easy as the following: public class Tuple<X, Y> { ...
https://codedump.io/share/oJpvQrT0APOD/1/using-pairs-or-2-tuples-in-java
CC-MAIN-2017-13
refinedweb
110
65.42
Answered by: Unable to send email through c# in BizTalk orchestration Question Hi Guys, I created a orchestration which send the mail to client if any error occurs inside orchestration.So I created a c# library and call that library from orchestration. c# code is as below : But after executing the code ,I got the below...
https://social.msdn.microsoft.com/Forums/en-US/ce8e910a-4bef-442b-b5e3-583df2ef260d/unable-to-send-email-through-c-in-biztalk-orchestration?forum=biztalkgeneral
CC-MAIN-2020-40
refinedweb
352
52.66
What do I misunderstand about rgbled()? I'm new to Python and new to Pycom (lopy4) so this might turn out to be a silly question, but if I run this code fragment (LoRa init taken care of in boot.py and working) red=0x330000 green=0x003300 blue=0x000033 senddata = 0xaa switch = Pin('P10', mode = Pin.IN) while True: if(s...
https://forum.pycom.io/topic/6674/what-do-i-misunderstand-about-rgbled
CC-MAIN-2022-33
refinedweb
2,402
73.47
smfi_main SYNOPSIS #include <libmilter/mfapi.h> int smfi_main( ); Hand control to libmilter event loop. DESCRIPTION Called When smfi_main is called after a filter's initialization is complete. Effects smfi_main hands control to the Milter event loop. RETURN VALUES smfi_main will return MI_FAILURE if it fails to establi...
http://www.mirbsd.org/htman/i386/manDOCS/milter/smfi_main.html
CC-MAIN-2013-20
refinedweb
107
63.46
are looking for previous installation instructions for different platforms, please consult this list: -. Otherwise, let’s proceed with getting OpenCV 3 with Python bindings installed on Raspian Stretch! The quick start video tutorial If this is your first time installing OpenCV or you are just getting started with Linu...
https://www.pyimagesearch.com/2017/09/04/raspbian-stretch-install-opencv-3-python-on-your-raspberry-pi/
CC-MAIN-2019-35
refinedweb
17,795
73.98
Created attachment 591870 [details] [diff] [review] Mostly mechanical. Currently jsgcmark.h exposes way more surface area than we actually use in practice. We can easily drop the 2-pointer version of Mark.*Range: the only places it is used, it is not the more natural of the two interfaces. We should also compact the du...
https://bugzilla.mozilla.org/show_bug.cgi?id=721463
CC-MAIN-2016-30
refinedweb
1,606
55.54
Learn more about Scribd Membership Discover everything Scribd has to offer, including books and audiobooks from major publishers. 1. What is an ERP? It is a process of integrated flow of Information, which binds the organization together. It is an integrated application software module providing operational, managerial...
https://www.scribd.com/document/106876007/21538021-PeopleSoft-Interveiw-Questions
CC-MAIN-2020-10
refinedweb
11,801
57.77
Lab 9: Review Exercise¶ It is time for a review exercise that should help you settle into the swing of writing simple programs that solve some kind of problem. Let’s consider comparing the gas cost for two possible vehicles you might consider buying, a Toyota Corolla, or a Toyota Prius. The review project¶ As a review ...
http://www.co-pylit.org/courses/cosc1315/assignments/lab9/index.html
CC-MAIN-2018-17
refinedweb
759
63.02
Anatomy, process the request in MVC style: protected void Page_Load(object sender, EventArgs e) { HttpContext.Current.RewritePath(Request.ApplicationPath); IHttpHandler httpHandler = new MvcHttpHandler(); httpHandler.ProcessRequest(HttpContext.Current); } 3. Add a Global Application Class (global.asax), and in the Appl...
http://blogs.microsoft.co.il/bursteg/2008/12/21/anatomy-of-an-aspnet-mvc-application/
CC-MAIN-2016-30
refinedweb
719
58.28
It turns out that I may be too rigid at times with my types in Dart. That's just insane. Me. An old Perler, an ancient Rubyist, and old-timey JavaScripter, someone who fled Java because of the type craziness — using types too darn often. What a world. When I first explored protection proxy patterns I almost headed down...
https://japhr.blogspot.com/2016/01/is-it-real-proxy-pattern-without-types.html
CC-MAIN-2018-22
refinedweb
859
61.36
Message-ID: <1339386020.298024.1368886519290.JavaMail.haus-conf@codehaus02.managed.contegix.com> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_298023_1223635556.1368886519290" ------=_Part_298023_1223635556.1368886519290 Content-Type: text/html; charset=UTF-8 ...
http://docs.codehaus.org/exportword?pageId=11502
CC-MAIN-2013-20
refinedweb
897
55.88
. 38A04520 Copyright JP Management Consulting (Asia-Pacific) Ltd All rights are reserved. This document or any part thereof may not be copied or reproduced without permission in writing from JP Management Consulting (AsiaPacific) Ltd 38A04520 i Preface At the request of Sino-Forest Corporation (Sino-Forest), Jaakko Pyr...
https://ru.scribd.com/document/75045984/Sino-Forest-Poyry-Valuation-Dec-2004-Final
CC-MAIN-2019-51
refinedweb
32,146
52.49
Having spent some time on the Service Model, I’ll start to look at some monitoring to help us build a Health Model. I’ll start with what is usually a straight forward requirement – monitoring a windows log e.g. the application log – and generating an alert if a specific event id is detected. I've made it a little more ...
https://blogs.technet.microsoft.com/manageabilityguys/2015/09/15/scom-alerts-from-windows-events/
CC-MAIN-2018-05
refinedweb
253
55.17
Hi Stephan > Cc: 'Philipp von Weitershausen'; [EMAIL PROTECTED]; 'Christian > Zagrodnick'; zope3-dev@zope.org > Betreff: Re: AW: [Zope3-dev] skin support for xmlrpc [...] > > Since the skin directive is gone layer also support the skinning > > concept. But the main reason of layers is still offering a security > > name...
https://www.mail-archive.com/zope3-dev@zope.org/msg09290.html
CC-MAIN-2018-51
refinedweb
759
66.84
Gauges are used to display single values. They are often used in dashboards, and use segmenting and color coding to present values in a clear and easy to read way. Wijmo gauges are streamlined. They were designed to be easy to use and to read, especially on small-screen devices. They can also be used as input controls....
https://www.grapecity.com/wijmo/docs/master/Topics/Gauge/Gauge-Overview
CC-MAIN-2022-05
refinedweb
162
65.83
Programming with Python Creating Functions Learning_kelvin that converts temperatures from Fahrenheit to Kelvin: def fahr_to_kelvin(temp): return ((temp - 32) * (5/9)) + 273.15 The blueprint for a python function The function definition opens with the keyword def followed by the name of the function and a parenthesized...
https://cac-staff.github.io/summer-school-2016-Python/06-func.html
CC-MAIN-2022-33
refinedweb
390
51.07
Details Description - Problem Gradle up-to-date check does not take into account deleted files. This has been confirmed for Gradle 1.3 with 'java' and 'groovy' plugins. - Steps to reproduce: 1. Create a build.gradle containing apply plugin: 'java' 2. Create the directories src/main/java 3. Create a file src/main/java/F...
https://issues.gradle.org/browse/GRADLE-2579
CC-MAIN-2018-34
refinedweb
702
51.44
# The Azure Cloud Shell Connector in Windows Terminal The Windows Terminal can now connect you to the [Azure Cloud Shell](https://azure.microsoft.com/en-us/features/cloud-shell/)! ![](https://habrastorage.org/r/w1560/getpro/habr/post_images/5a5/25f/aa1/5a525faa15d562cbae3571a96682ed6d.png) We have a new default ...
https://habr.com/ru/post/469051/
null
null
571
54.12
Hi, I have a lightbox that pops up when the page loads.How can I make it pop up for visitors only? (non-members). Thanks,#lightbox , #members Put a simple code on your page that checks if the user is logged in as a member or not, if they are not logged in then you can set the lightbox to open and be shown and closed if...
https://www.wix.com/corvid/forum/community-discussion/lightbox-for-visitors-only
CC-MAIN-2019-51
refinedweb
232
83.25
[Solved] QTableView reflected in every tab PyQt Hello! I am using PyQt4/python2.7 I have tabbed windows which contains QTableView. So when I open a new tab I get QTableView in it. When I click on a button to populate the view, it works correctly, however it reflects the result in every other QTableView tab. I make sure...
https://forum.qt.io/topic/27044/solved-qtableview-reflected-in-every-tab-pyqt
CC-MAIN-2018-51
refinedweb
1,403
53.17
The official blog of PostSharp: annoucements, tips & tricks >> During I We. -Britt I’m excited to announce the first release candidate of PostSharp 2.1, available for download from our website and from the NuGet official repository. PostSharp 2.1 is a minor upgrade of PostSharp 2.0; the upgrade is free for everybody. T...
http://www.postsharp.net/blog/category/Annoucement.aspx
CC-MAIN-2013-20
refinedweb
1,696
65.12
Hi, I'm trying to debug a userspace application with gdb-6.3 / gdbserver. Objdump -p reports: private flags = 20001107: [abi=O32] [mips3] [32bitmode] With gdb-6.0 from an older toolchain this works, but gdb-6.3 reports the infamous "Reply contains invalid hex digit 59". The reason for this is that gdb and gdbserver dis...
https://www.linux-mips.org/archives/linux-mips/2006-01/msg00490.html
CC-MAIN-2017-04
refinedweb
397
68.57
Create a Generic Class in Java A generic class in Java is a class that can operate on a specific type specified by the programmer at compile time. To accomplish that, the class definition uses type parameters that act as variables that represent types (such as int or String). To create a generic class, you list the typ...
http://www.dummies.com/how-to/content/create-a-generic-class-in-java.navId-323185.html
CC-MAIN-2014-15
refinedweb
381
57.81
Most modern blogging engines support the MetaWeblog API, which was defined by XML-RPC.com many years ago. It's become one of the most popular API's for programmatically interacting with blogs because of its simplicity. Even Microsoft's Windows Live Spaces provides support for it. I wanted to use this API recently to in...
http://www.pluralsight.com/community/blogs/aaron/archive/2008/08/19/programming-the-metaweblog-api-in-net-c.aspx
crawl-002
refinedweb
640
57.37
Type: Posts; User: 2kaud I don't know Vulcan so can only generalise. It is a known fact that multi-threaded code can be slower than single-threaded. There are a couple of reasons for this. One is that it takes time to... The current version is VS 2022 which provides support for C++20. The Community version is still fre...
https://forums.codeguru.com/search.php?s=4f63f9abd1acb9da2797734cc32d062c&searchid=22187287
CC-MAIN-2021-49
refinedweb
501
79.06
>>>>> "Gary" == Gary Lawrence Murphy <garym@canada.com> writes: Gary> Keywords and index terms ... someday we may want one LDP doc to Gary> cross-reference another. That leads to policies on first and Gary> second-level index terms. This is an area that we've not yet ventured into. My (limited) understanding is that th...
http://www.tldp.org/pub/Linux/docs/ldp-archived/mail_archives/ldp-docbook/msg00023.html
CC-MAIN-2015-27
refinedweb
349
72.36
getifaddrs() Get a network interface address Synopsis: #include <sys/types.h> #include <sys/socket.h> #include <ifaddrs.h> int getifaddrs( struct ifaddrs ** ifap ); Since: BlackBerry 10.0.0 Arguments: - ifap - The address of a location where the function can store a pointer to a linked list of ifaddrs structures that c...
http://developer.blackberry.com/native/reference/core/com.qnx.doc.neutrino.lib_ref/topic/g/getifaddrs.html
CC-MAIN-2015-11
refinedweb
188
57.57
Use the lastIndexOf() method to find the last occurrence of a character in a string in Java. Let’s say the following is our string. String myStr = "Amit Diwan"; In the above string, we will find the last occurrence of character ‘i’ myStr.lastIndexOf('i'); The following is the complete example. public class Demo { publi...
https://www.tutorialspoint.com/finding-the-last-occurrence-of-a-character-in-a-string-in-java
CC-MAIN-2021-43
refinedweb
102
58.38
About the Examples Versions The examples in this book run with the Java Developer’s Kit (JDK) 1.2 and the Java Cryptography Extension (JCE) 1.2. The examples in the book were tested with JDK 1.2beta3 and JCE 1.2ea2. Some of the topics covered are applicable to JDK 1.1, especially the Identity-based key management discu...
https://www.oreilly.com/library/view/java-cryptography/1565924029/pr03s04.html
CC-MAIN-2020-05
refinedweb
698
50.23
Before going into details as why String is final or immutable in java , first let us understand the meaning of the term "immutable". What does immutable means? What does immutable means? According to our good buddy, “thefreedictionary”, immutable means “not capable or susceptible to change”. Note : In java , if an obje...
http://javahungry.blogspot.com/2015/07/why-string-is-final-or-immutable-in-java-with-example.html
CC-MAIN-2017-04
refinedweb
1,099
63.29
Online Training for XML (1/2) - exploring XML Online Training for XML The Web is used for many purposes these days, and educational training is no exception. Many sites provide online courses that require nothing but a Web browser and an Internet connection. Not surprisingly technical training is at the top of the list...
http://www.webreference.com/xml/column29/index.html
CC-MAIN-2014-15
refinedweb
784
60.45
hello, I am following a book and im stuck on this one.....(note it's tacky but just bear with me, im a newb) #include <iostream.h> int main() { int RedSoxScore, YankeesScore; cout<<"Enter the score for the RedSox:"; cin>> RedSoxScore; cout<<"Enter the score for the yankees:"; cin>> YankeesScore; cout<<"\n"; if (RedSoxS...
https://www.daniweb.com/programming/software-development/threads/101606/stuck-please-help-quick-question
CC-MAIN-2017-09
refinedweb
230
75.81
Since from people solving real-world issues. Another key point to recognize is that the question of how best to construct view models is *not* unique to the MVC framework. The fact is that even in traditional ASP.NET web forms you have the same issues. The difference is that historically developers haven’t always dealt...
http://geekswithblogs.net/michelotti/archive/2009/10.aspx
CC-MAIN-2014-42
refinedweb
2,684
52.19
Shader Graph in Unity for Beginners Learn how to create your first shader with Unity’s Shader Graph. Version - Unity 2019.2, Unity. In this tutorial, you’re going to create your first shader graph in Unity right now! Getting Started This tutorial uses Unity version 2019.1 or newer. You can get your version of Unity her...
https://www.raywenderlich.com/3744978-shader-graph-in-unity-for-beginners
CC-MAIN-2021-17
refinedweb
3,656
66.74
Opened 9 years ago Closed 9 years ago #5808 closed (duplicate) Cannot pickle the default filters Description Reproduction code: from django import template t = template.Template("{{ firstname|capfirst }}") c = template.Context("firstname": "simon") p = pickle.dumps(t) print pickle.loads(p).render(c) Expected result: Si...
https://code.djangoproject.com/ticket/5808
CC-MAIN-2017-04
refinedweb
231
67.96
Utility class for NOX::Direction::Broyden method to manage the information stored in "limited" memory. More... #include <NOX_Direction_Broyden.H> Utility class for NOX::Direction::Broyden method to manage the information stored in "limited" memory. Store up to MemoryUnit objects where is passed to reset(). Every time p...
http://trilinos.sandia.gov/packages/docs/r10.12/packages/nox/doc/html/classNOX_1_1Direction_1_1Broyden_1_1BroydenMemory.html
CC-MAIN-2013-48
refinedweb
228
58.38
sandbox/vatsal/DropOnDropImpact/dropOnDropImpact.c Experiment:We investigate the dynamics of an oil drop impacting an identical sessile drop sitting on a superamphiphobic surface. One example of such impacts: On this page, I am presenting the code that we used to simulate the process shown in the above video. The resul...
http://basilisk.fr/sandbox/vatsal/DropOnDropImpact/dropOnDropImpact.c
CC-MAIN-2020-24
refinedweb
1,294
57.37
In Part I of this guide I’ve explained the process of cross-forest migration and the differences between using ADMT first or using Prepare-MoveReuqest.Ps1 script first, I’ve also explained the migration scenario and the current environment. Starting from this part we will talk about migration challenges: - Primary Acco...
https://blogs.technet.microsoft.com/meamcs/2011/10/25/exchange-2010-cross-forest-migration-step-by-step-guide-part-ii/
CC-MAIN-2016-40
refinedweb
814
60.24
Hi All, I have generated the data in the form of Long Keys and Double values and inserting it in Aerospike as Aerospike.client.put(this.writePolicy, new Key(“test”, “profile”, keyGet), new Bin(this.binName, value)); keyGet is String Key value is Double. I am also getting back these values as Key key = new Key(this.name...
https://discuss.aerospike.com/t/map-reduce-for-records-using-udf-against-string-key-and-double-value/456
CC-MAIN-2019-09
refinedweb
126
75.91
![if gte IE 9]><![endif]><![if gte IE 9]><![endif]><![if gte IE 9]><![endif]><![if gte IE 9]><![endif]> Part 2 of this blog series derived the basic transfer function for a typical 2-wire transmitter, commonly used in industrial control and automation, and explained the currents flowing inside it. It also explained tha...
https://e2e.ti.com/blogs_/archives/b/precisionhub/archive/2015/01/13/two-wire-4-20ma-transmitters-background-and-common-issues-part-3
CC-MAIN-2019-04
refinedweb
788
54.73
Hello everybody, I just started to learn C, so I hope you don't mind that I will post here the newbie-problems I do run into. I am learning C as a hobby, just as I learned Basic, Pascal and VB(A) in the past. So now I want to learn the "famous C" :P. Well, here we go.... You can use "strncpy' to copy a number of charac...
http://cboard.cprogramming.com/c-programming/105151-strncpy-adavnced-p-printable-thread.html
CC-MAIN-2015-35
refinedweb
298
90.9
Scrape TripAdvisor Reviews using Python Scrape TripAdvisor Reviews using Python Send download link to: TripAdvisor is the most popular website to search for best hotels, restaurants, sightseeing places, adventure gaming and almost anything for a nice trip. Scrape TripAdvisor reviews provide very useful data.. TripAdvis...
https://www.worthwebscraping.com/scrape-tripadvisor-reviews-using-python/
CC-MAIN-2021-04
refinedweb
368
57.98
Subject: Re: [boost] [Review] Type Traits Introspection library by Edward Diener starts tomorrow Friday 1 From: John Maddock (boost.regex_at_[hidden]) Date: 2011-07-05 04:38:44 OK here's my review of this library. First off the headline - yes I believe it's a useful library that should be accepted into Boost, subject t...
https://lists.boost.org/Archives/boost/2011/07/183460.php
CC-MAIN-2019-22
refinedweb
353
57.06
jMock 1: Mocking Classes with CGLIB Because it uses Java's standard reflection capability, the default configuration of the jMock framework can only mock interfaces, not classes. The optional org.jmock.cglib extension package uses the CGLIB 21 library to create mock objects of classes as well as interfaces. To use the ...
http://www.jmock.org/jmock1-cglib.html
CC-MAIN-2017-30
refinedweb
267
58.89
Porting Nut/OS for the GameBoy Advance Introduction This article explains the tasks to be done when porting Nut/OS to the GameBoy Advance. It can be used as an example of how to port Nut/OS to new hardware platforms. This project isn't finished. The GameBoy hardware is based on an ARM7 CPU. Additional hardware is requi...
http://ethernut.de/en/portarm/gbaxport2.html
CC-MAIN-2018-26
refinedweb
1,769
59.09
C++ has a long, outstanding history of tricks and idioms. One of the oldest is the curiously recurring template pattern (CRTP) identified by James Coplien in 1995 [Coplien]. Since then, CRTP has been popularized and is used in many libraries, particularly in Boost [Boost]. For example, you can find it in Boost.Iterator...
http://accu.org/index.php/journals/296
CC-MAIN-2014-52
refinedweb
1,263
53.81
Recurrent Neural Networks with Word Embeddings¶ Summary¶ In this tutorial, you will learn how to: - learn Word Embeddings - using Recurrent Neural Networks architectures - with Context Windows in order to perform Semantic Parsing / Slot-Filling (Spoken Language Understanding) Code - Citations - Contact¶ Code¶ Directly ...
http://deeplearning.net/tutorial/rnnslu.html
CC-MAIN-2019-18
refinedweb
2,238
56.45