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
#include <wx/cshelp.h> wxHelpProvider is an abstract class used by a program implementing context-sensitive help to show the help text for the given window. The current help provider must be explicitly set by the application using Set(). Virtual destructor for any base class. Associates the text with the given window. ...
https://docs.wxwidgets.org/3.1.5/classwx_help_provider.html
CC-MAIN-2021-31
refinedweb
229
63.8
AppLocker Bypass — presentationhost.exe Presentationhost.exe appears on several AppLocker whitelist bypass lists (e.g. api0cradl and milkdevil) but I wasn’t able to find any good instructions on how to use it so I decided to figure it out myself. This blog post shares the results of that research by presenting a proof ...
https://medium.com/tsscyber/applocker-bypass-presentationhost-exe-8c87b2354cd4
CC-MAIN-2019-18
refinedweb
1,003
62.78
# Playing with Nvidia's New Ampere GPUs and Trying MIG ![](https://habrastorage.org/r/w780q1/getpro/habr/post_images/cc7/955/221/cc79552219b842dfaa1129a4b9303888.jpg) Every time when the essential question arises, whether to upgrade the cards in the server room or not, I look through [similar](https://timdettmers.com...
https://habr.com/ru/post/531436/
null
null
3,477
56.69
You can subscribe to this list here. Showing 1 results of 1 Greetings! I'm currently in process of porting a large system (the Pike programming language, as it happens) to MinGW/msys; currently, Windows builds are done with MS Visual Studio. Along the way, I've started getting linker errors as per the subject line. The...
http://sourceforge.net/p/mingw/mailman/mingw-users/?viewmonth=201401&viewday=5
CC-MAIN-2015-32
refinedweb
247
54.9
There are a total of 5 buy/sell stock questions, and there are two categories - limited most k transaction or unlimited transaction (with/without cool down day). Inspired by the following two answers, the state machine is the easiest way for me to understand (as a fresher in algorithm). - unlimited transaction with coo...
https://discuss.leetcode.com/topic/32018/python-dp-solution-state-machine-explanation-in-detail
CC-MAIN-2017-39
refinedweb
406
61.74
When you have used Python a lot you'll notice that you will use tools such as pip install package_name you are installing some python code in a way that can be imported in your project. This guide will show you how you can make your own package installable. Source code The code that is used in this article is hosted up...
https://www.customprogrammingsolutions.com/tutorial/2018-12-17/setup-hello-world/
CC-MAIN-2019-22
refinedweb
444
58.48
Red, Green, Refactor ¶ Test Driven Development is an old technique, but we found it very effective during the development of qibuild. To be truly effective, your code must go through three steps: red, green, refactor Assuming you want to fix a bug. First, you write a failing test reproducing the bug. Then, you change t...
https://developer.softbankrobotics.com/hacking-qibuild/contributing-qibuild/qibuild-using-test-driven-development
CC-MAIN-2022-05
refinedweb
473
68.84
What are Jupyter widgets? A widget is an “eventful python object” that in the case of Jupyter Notebook, resides in the browser and is a user interface element, such as a slider or textbox. Jupyter supports a fairly wide array of widgets including the following: - Numeric - Boolean - Selection - String - Image - Button ...
https://www.blog.pythonlibrary.org/2018/10/24/working-with-jupyter-notebook-widgets/
CC-MAIN-2020-10
refinedweb
2,683
61.67
I am going to define my layer. How ever, I encounter the RuntimeError: one of the variables needed for gradient computation has been modified by an inplace operation while running backward(). I found that if i commented the second for loop 'for j in range(self.number_person):' or make 'u_i[:,j,:] = (1 - self.lumbda)*u_...
https://discuss.pytorch.org/t/encounter-the-runtimeerror-one-of-the-variables-needed-for-gradient-computation-has-been-modified-by-an-inplace-operation/836
CC-MAIN-2017-39
refinedweb
865
53.07
On Fri 29 Apr 2016 05:00:57 PM CEST, Kevin Wolf wrote: >> - Block jobs can now be identified by the node name of their >> BlockDriverState in addition to the device name. Since both device >> and node names live in the same namespace there's no ambiguity. > > Careful, we know this is a part of our API that we have alre...
https://lists.gnu.org/archive/html/qemu-devel/2016-05/msg00801.html
CC-MAIN-2018-05
refinedweb
458
74.63
In this example we connect an infra red receiver to our Arduino and an RGB led. We will use various button combinations on the remote control to switch on an LED and we will use a button to switch them all off as well. Firstly lets take a look at the kit we needed for this example to connect to our arduino and the remo...
http://arduinolearning.com/learning/basics/infra-red-control-rgb-led-example.php
CC-MAIN-2022-27
refinedweb
536
54.56
_lwp_cond_reltimedwait(2) - spawn new process in a virtual memory efficient way #include <unistd.h> pid_t vfork(void); #include <sys/fork.h> pid_t vforkx(int flags); The vfork() and vforkx() functions create a new process without fully copying the address space of the old process. These functions() or vforkx(). The par...
http://docs.oracle.com/cd/E26502_01/html/E29032/vforkx-2.html
CC-MAIN-2014-10
refinedweb
461
62.68
With every new release of Windows CE (Windows Embedded CE, Windows Embedded Compact Edition) version 4.x, 5.0, 6.0, 7.0, 2013 (aka 8.0), people ask what version of Visual Studio they should use for Smart Device development. And how much it is different from the Visual Studio you use for developing the OS image, or how ...
http://geekswithblogs.net/WernerWillemsens/archive/2013/09/13/building-windows-ce-6-or-7-smart-device-application-with.aspx
CC-MAIN-2015-40
refinedweb
1,526
56.55
I’ve met many weird examples of behaviour in python language while working on Open Event project. Today I’d like to share some examples with you. I think this knowledge is necessary, if you’d like to increase a bit your knowledge in python area. Simple adding one element to python list: def foo(value, x=[]): x.append(v...
http://blog.fossasia.org/python-code-examples/
CC-MAIN-2017-13
refinedweb
416
71.34
Lecture 5 — Python Functions¶ Why Functions?¶ - The purpose of today’s class is to introduce the basics of writing and running Python functions. - Recall Lab 1 for computing disk size: We had to repeat the same computation three times for different inputs. - Repeating code is painful. - It is also hard to distinguish b...
http://www.cs.rpi.edu/academics/courses/fall16/cs1/lecture_notes/lec05_functions2.html
CC-MAIN-2017-51
refinedweb
1,835
64.41
>. As I understand it the IO in the type signature is the programmers indication to the compiler that the function is not guaranteed to be side effect free. add_pure :: Integer -> Integer add_pure x = x + 5 add_impure :: Integer -> IO Integer add_impure x = return (x + 5) add_pure is clearly a pure function. add_impure...
http://www.haskell.org/pipermail/beginners/2010-January/003256.html
CC-MAIN-2014-10
refinedweb
112
52.49
Ads Hi, can any one exain me the concept of static and dynamic loading in core java?? /* program for to display the product details by using jdbc. For example take the product table with some columns like product pid pname price database : Oracle username : chavan password: chavan */ import java.sql.DriverManager; impo...
http://www.roseindia.net/answers/viewqa/Java-Beginners/27441-core-java.html
CC-MAIN-2017-30
refinedweb
1,285
58.28
digitalmars.D - Strict mode - bearophile <bearophileHUGS lycos.com> Sep 24 2009 - language_fan <foo bar.com.invalid> Sep 24 2009 - bearophile <bearophileHUGS lycos.com> Sep 24 2009 In some dynamic/scripting languages the basic programming modality is quite relaxed, this may help the programmer to quickly write a 10 lin...
http://www.digitalmars.com/d/archives/digitalmars/D/Strict_mode_96604.html
CC-MAIN-2015-11
refinedweb
959
60.14
Hello, The errors are at the bottom of the post, and they are about the error: non-lvalue. I am writing a program which allows the user to choose a beverage, sandwich and side order from a menu. After the choices are made, the program should do the following: * list the items chosen with the cost of each item * the sub...
http://cboard.cprogramming.com/cplusplus-programming/108994-non-lvalue-program-question-printable-thread.html
CC-MAIN-2014-10
refinedweb
599
79.26
Creational Design Patterns in Core Java Last modified: October 21, 2020 1. Introduction Design Patterns are common patterns that we use when writing our software. They represent established best practices developed over time. These can then help us to ensure that our code is well designed and well built. Creational Pat...
https://www.baeldung.com/java-creational-design-patterns
CC-MAIN-2021-17
refinedweb
2,166
53.41
Ticket #7083: 0001-Reduce-the-likelihood-of-x64-x86-64-changes-breaking.2.patch compiler/nativeGen/X86/Regs.hs From 326a4c23846a979e197ed5a971fc9dd4a328e0b9 Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo <erikd@mega-nerd.com> Date: Wed, 8 Aug 2012 06:44:00 +1000 Subject: [PATCH] Reduce the likelihood of x64/x86-64 ...
https://ghc.haskell.org/trac/ghc/attachment/ticket/7083/0001-Reduce-the-likelihood-of-x64-x86-64-changes-breaking.2.patch
CC-MAIN-2014-15
refinedweb
128
50.43
Question: The problem: I have a jQuery heavy page that has a built in admin interface. The admin functions only trigger when an admin variable is set. These functions require a second library to work properly and the second file is only included if the user is an admin when the page is first created. The functions will...
http://www.toontricks.com/2018/06/tutorial-question-about-referencing.html
CC-MAIN-2018-43
refinedweb
845
63.49
In this blog I wrote how you can improve Microsoft DataGrid CTP by providing your own custom sort. As one of the comments suggested you can get even better performance by using delegates. I have changed MySort code below and I now use delegates to avoid the switch comparison that was called on every compare during the ...
https://blogs.msdn.microsoft.com/jgoldb/2008/08/28/improving-microsoft-datagrid-ctp-sorting-performance-part-2/
CC-MAIN-2016-30
refinedweb
350
59.19
- Chapter Roadmap - What Are Web Services? - Other Sources of Input - Summary - Exercises - Relevant Links What Are Web Services? The term "web services" means different things to different people. From a technical point of view, web services describe a suite of protocols built upon XML and HyperText Transfer Protocol ...
https://www.informit.com/articles/article.aspx?p=31730&seqNum=2
CC-MAIN-2021-39
refinedweb
5,596
56.66
Hi everyone, I am having a little trouble finishing my programming assignment. I am trying to write a program that inputs two dates and validates them to make sure the input is ok and that the dates are between 1/1/1850 and 12/31/2100. I have gotten all of the validation down and I have written some functions that vali...
https://www.daniweb.com/programming/software-development/threads/34245/help-calculating-days
CC-MAIN-2017-47
refinedweb
420
66.2
Learn how easy it is to sync an existing GitHub or Google Code repo to a SourceForge project! See Demo Bugs item #1661700, was opened at 2007-02-16 19:28 Message generated for change (Comment added) made by laukpe You can respond by visiting: Please note that this message will contain a full copy of the comment thread,...
http://sourceforge.net/p/jython/mailman/message/8239644/
CC-MAIN-2015-22
refinedweb
1,512
66.64
Since 5.1, Squish offers a squishtest Python module. It lets you use Squish as a module in Python scripts without involving the squishrunner. If using the squishtest module helps you improve your testing efforts but you already have a lot of existing testcases (written in Python), this might be a solution for you. Beca...
http://smartsoftware247.com/replay-squish-tests-using-the-squishtest-module-%E2%80%A2-froglogic/
CC-MAIN-2019-22
refinedweb
989
50.84
On Mon, Jan 12, 2009 at 7:57 PM, Guilherme Polo <ggpolo at gmail.com> wrote: >>> Just Trying a bit more I found this one: import Tkinter root = Tkinter.Tk() print Tkinter.TkVersion def test(): return (1, 2, 3) root.tk.createcommand("test", test) x = root.tk.call("test") print x, type(x) With tk8.4 this returns a str, w...
https://mail.python.org/pipermail/tkinter-discuss/2009-January/001807.html
CC-MAIN-2016-30
refinedweb
151
80.28
Hi at all, I have an Indexer Cluster where each Indexer is accessed by users as a stand alone server, in other words there aren't Search Heads. Now I accelerated some data using txidx file (tscollect command). My question is: txidx files are replicable between indexers or they are locally generated on each server by th...
https://community.splunk.com/t5/Deployment-Architecture/acceleration-with-tscollect-in-indexer-cluster/m-p/363588/highlight/true
CC-MAIN-2022-21
refinedweb
206
61.16
Opened 4 years ago Last modified 2 years ago People shouldn't have to enter MD5 hashes in the password field. World Online never used the user form to create users or edit passwords, but now there's a demand for a better form. We can solve it with JavaScript?. Here's a decent-looking JS MD5 implementation to use in wha...
http://code.djangoproject.com/ticket/61
crawl-002
refinedweb
888
58.48
This action might not be possible to undo. Are you sure you want to continue? Luck in Entrepreneurship and Venture Capital: Evidence from Serial Entrepreneurs Paul Gompers, Anna Kovner, Josh Lerner, and David Scharfstein* July 2006 Abstract. * Harvard University. Gompers, Lerner, and Scharfstein are also affiliates of ...
https://www.scribd.com/document/501271/Serial-Entrepreneur-July-06
CC-MAIN-2017-04
refinedweb
11,554
50.97
gnutls_x509_rdn_get_by_oid - parse an RDN sequence and returns a string #include <gnutls/x509.h> int gnutls_x509_rdn_get_by_oid(const gnutls_datum_t * idn, const char * oid, int indx, unsigned int raw_flag, void * buf, size_t * sizeof_buf); const gnutls_datum_t * idn should contain a DER encoded RDN sequence const char...
http://huge-man-linux.net/man3/gnutls_x509_rdn_get_by_oid.html
CC-MAIN-2017-22
refinedweb
146
59.33
Like. The API I learned of the API’s existence when I saw Firefox scan my downloads. Luckily it’s open source, and here is the source code for download scanning. Then it was easy to find official documentation on MSDN, too. This API is called IAttachmentExecute. Apparently it’s not an antivirus API per se, it’s rather ...
http://joco.name/2010/12/22/windows-antivirus-api-in-net-and-a-com-interop-crash-course/
CC-MAIN-2018-30
refinedweb
1,545
71.55
24 May 2006 15:25 [Source: ICIS news] LONDON (ICIS news)--Investors have begun to take bets on whether regulatory approval for Linde’s £16/share bid for UK based industrial gases rival BOC will be delayed, financial analysts said on Wednesday. If pre-conditions for the sale, which values BOC at £8.2bn ($15.4bn/€12.0bn)...
http://www.icis.com/Articles/2006/05/24/1065326/investors+run+rule+over+possible+lindeboc+bid+delay.html
CC-MAIN-2013-20
refinedweb
286
53.31
how to create DNS entries from a file using the DNSCmd.exe tool. I have a kind of edge case that I am trying to troubleshoot for my customer. They have a lot of sub-companies, and they created a web application per company. Fast forward a few years, they now have 143 web applications. For those keeping score, that’s 4...
http://blogs.msdn.com/b/kaevans/archive/2011/11/02/create-dns-entries-from-a-file.aspx?Redirected=true&t=Create%20DNS%20Entries%20From%20a%20File
CC-MAIN-2014-35
refinedweb
497
61.12
Bypassing Authentication on Arcadyan Routers with CVE-2021–20090 and rooting some Buffalo A while back I was browsing Amazon Japan for their best selling networking equipment/routers (as one does). I had never taken apart or hunted for vulnerabilities in a router and was interested in taking a crack at it. I came acros...
https://medium.com/tenable-techblog/bypassing-authentication-on-arcadyan-routers-with-cve-2021-20090-and-rooting-some-buffalo-ea1dd30980c2
CC-MAIN-2022-33
refinedweb
2,817
54.97
Syntax: #include <vector> size_type capacity() const; The capacity() function returns the number of elements that the vector can hold before it will need to allocate more space. For example, the following code uses two different methods to set the capacity of two vectors. One method passes an argument to the constructo...
http://www.cppreference.com/wiki/stl/vector/capacity
crawl-002
refinedweb
156
56.55
pyFormex scripting¶ While the pyFormex GUI provides some means for creating and transforming geometry, its main purpose and major strength is the powerful scripting language. It offers you unlimited possibilities to do whatever you want and to automize the creation of geometry up to an unmatched level. Currently pyForm...
http://www.nongnu.org/pyformex/doc-2.0/scripting.html
CC-MAIN-2020-50
refinedweb
745
63.7
Signal combinations are important in many fields, it is also important in portfolio construction, let’s find out why. Not always Suppose I have a portfolio (1) that returns 1% on even days and 0.5% on odd days: Whenever people talk about Natural Language Processing(NLP), images of fancy machine learning models and pros...
https://r-shuo-wang.medium.com/?source=post_internal_links---------1----------------------------
CC-MAIN-2021-21
refinedweb
863
50.46
22 March 2010 06:22 [Source: ICIS news] By Judith Wang SHANGHAI (ICIS news)--China will take measures to supervise and restrict the transportation of dangerous chemicals in Shanghai from April, ahead of the six-month long world exposition in the city, industry sources said on Monday. The Shanghai World Expo 2010, which...
http://www.icis.com/Articles/2010/03/22/9344502/china-to-curb-shanghai-dangerous-chems-transport-from-may-oct.html
CC-MAIN-2014-42
refinedweb
329
59.94
docar 0.5.6 Create URI’s. The target applications are web apps that implement a RESTful interface. On the server side those documents can be mapped to an underlying model store. At this time the django-orm mapper is supported. But python-docar is not really reduced to django. Other model mappers like sqlalchemy-orm or ...
https://pypi.python.org/pypi/docar/0.5.6
CC-MAIN-2016-18
refinedweb
319
55.54
QLabel does not change visible Text after SetText Hi, I have a QT Project with a opengl-window. I save the coordinates of the cursor in my opengl window, called glwidget: @std::vector<double> actual_position;@ At runtime I try to print the x,y and z value to a Label, called CoordLabel @#include "mainwindow.h" #include ...
https://forum.qt.io/topic/49810/qlabel-does-not-change-visible-text-after-settext
CC-MAIN-2018-26
refinedweb
634
56.96
Generic Types in Visual Basic. An analogy is a screwdriver set with removable heads. You inspect the screw you need to turn and select the correct head for that screw (slotted, crossed, starred). Once you insert the correct head in the screwdriver handle, you perform the exact same function with the screwdriver, namely...
https://msdn.microsoft.com/en-us/library/w256ka79(v=vs.85)
CC-MAIN-2017-39
refinedweb
1,265
53.41
Options Tab (XProc Transformations) When you create a new transformation scenario or edit an existing one, a configuration dialog box allows you to customize the transformation with various options in several tabs. The Options tab displays a list of the options collected from the XProc script. The tab is divided into t...
http://www.oxygenxml.com/doc/versions/19.1/ug-authorEclipse/topics/xproc-transformation-options-tab.html
CC-MAIN-2018-05
refinedweb
172
54.22
NAME xx - twice as dirty SYNOPSIS ~ > gem install "double x" require "xx" include XX::XHTML doc = xhtml_{ html_{ head_{ title_{ " go xx! " } } body_{ " one more and it would be illegal " } } } URI DESCRIPTION xx is a library designed to extend ruby objects with html, xhtml, and xml generation methods. the syntax provid...
http://www.ruby-forum.com/topic/52651
CC-MAIN-2018-34
refinedweb
1,282
64.81
The C# Scheduler project is aimed at demonstrating writing a service in C# and what setup options .NET provides, rather than being the main goal itself the final application is more a hanger to place the rest of the topics on. This doesn't mean that the finished project is useless rather that it serves its purpose as a...
http://www.codeproject.com/Articles/2478/C-Scheduler
CC-MAIN-2015-22
refinedweb
3,206
59.23
NAME audit - commit BSM audit record to audit log SYNOPSIS #include <bsm/audit.h> int audit(const char *record, u_int length); DESCRIPTION The audit() system call submits a completed BSM audit record to the system audit log. The record argument is a pointer to the specific event to be recorded and length is the size in...
http://manpages.ubuntu.com/manpages/jaunty/man2/audit.2freebsd.html
CC-MAIN-2015-48
refinedweb
117
54.93
SOAtest 9.0---> WIN32COM.CLIENT No module found for WIN32COM ERRORHi all, I am currently writing a Jython code where i am needing WINCOM32 Extensible Package .I am dispatching Excel using this. from win32com.client import Dispatch But when i am running the code , it says the above WIN32COM module is not found. Solution...
https://forums.parasoft.com/discussion/2424/soatest-9-0-win32com-client
CC-MAIN-2018-34
refinedweb
489
66.74
hi i was wondering on how to add my own exception to the withdrawl method. import java.util.ArrayList; import java.util.List; public class BankManager implements _BankManager { hi i was wondering on how to add my own exception to the withdrawl method. import java.util.ArrayList; import java.util.List; public class Bank...
http://www.javaprogrammingforums.com/search.php?s=e15108ad0bfcb241fadea939dae9efe4&searchid=1627719
CC-MAIN-2015-27
refinedweb
643
74.69
Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically. Processes statements related to a specific table just before preparing the download inserts, updates, and deletions. In the following table, the description provides. None. The MobiLink server executes th...
http://dcx.sap.com/sa160/fr/mlserver/begin-download-table-syncref.html
CC-MAIN-2017-26
refinedweb
221
50.33
Eciton is a wrapper for Apache Ant in Clojure. Primary purpose of the library is to expose Ant tasks to Clojure applications, but it can also be used as a light build system. If you are a Clojars user see for more info on how to use Eciton with Clojars repository. All of the functionality required to use Eciton from yo...
https://bitbucket.org/ksojat/eciton/src
CC-MAIN-2017-26
refinedweb
288
67.55
Introduction limited to its usage in the Python programming language. OpenGL, as compared to other similar graphics libraries, is fairly simple. We'll start with setting it up on our system, followed by writing a simple example demonstrating the usage of the library. Installation The easiest way to install OpenGL using...
https://stackabuse.com/brief-introduction-to-opengl-in-python-with-pyopengl/
CC-MAIN-2021-17
refinedweb
1,232
60.14
path 1.3.5 A.Context = new path.Context(style: Style.windows); context". 1.3.5 # - Added type annotations to top-level and static fields. 1.3.4 # - Fix dev_compiler warnings. 1.3.3 # - Performance improvement in Context.relative- don't call currentif fromis not relative. 1.3.2 # - Fix some analyzer hints. 1.3.1 # - Add...
https://pub.dev/packages/path/versions/1.3.5
CC-MAIN-2020-16
refinedweb
187
61.93
Is there any way to terminate a map statement before the end of the input list? Notionally: @out = map{ $_ == $target and last } @in; [download] The map in question would be embedded in a subroutine, so something like: sub x{ my $target = shift; map { return if $_ == $target; } @_; } print for x( 5, 1 ,, 9 ); 0 1 2 3 4...
http://www.perlmonks.org/?node_id=930256
CC-MAIN-2015-48
refinedweb
1,348
76.96
JAVA ME (or in its full name JAVA Mobile Edition) is a small lightweight version of the JAVA language. Its running environments are focused on limited memory and/or processing power such as cellular phones, PDAs, TV set-top boxes, smart cards, etc. In this tutorial, we will learn how to write a simple "Hello world" app...
http://www.codeproject.com/Articles/34008/Introduction-to-JAVA-ME-Programming?fid=1537128&df=10000&mpp=50&sort=Position&spc=Relaxed&tid=3350678
CC-MAIN-2013-48
refinedweb
790
53.31
A Concept Design for C++. Your talks were both great ;). I really hope you get this into the standard as soon as possible! Seems like it is even possible to get C++ back on the rail without a complete redesign, like D. Even though I like the idea of D it will always impose a great barrier from programmers to switch. So...
https://channel9.msdn.com/Events/GoingNative/GoingNative-2012/Static-If-I-Had-a-Hammer?format=auto
CC-MAIN-2018-09
refinedweb
1,123
64.3
>> could just ask one thing of my fellow Americans? Please stop bemoaning Israel attacking the people who continually attempt to kill their civilians. You can not agree with their methods to some extent (after all... boarding and killing unarmed civilians on a foreign flag vessel in international waters is called 'pira...
http://www.economist.com/comment/1755061
CC-MAIN-2014-35
refinedweb
6,023
70.43
FAQs Search Recent Topics Flagged Topics Hot Topics Best Topics Register / Login Win a copy of Hands On Software Engineering with Python this week in the Jython/Python forum! Wayne L Johnson Ranch Hand 399 0 Threads 0 Cows since Sep 03, 2003 Cows and Likes Cows Total received 0 In last 30 days 0 Total given 0 Likes Tot...
https://coderanch.com/u/56137/Wayne-L-Johnson
CC-MAIN-2019-04
refinedweb
2,082
62.78
Hi, Some time in our project we need to work with word (winword) document programmatically. Word provides a good way to automate nearly all the functionality that can be used through interface. The process of programmatically working with word document is commonly termed as word Automation. I will be using a series of ...
http://weblogs.asp.net/vikram/archive/2008/07/01/automating-microsoft-word-2007-with-c-sharp.aspx
crawl-002
refinedweb
1,241
58.28
Inspired by py.test, the unittester is a single, simple function that is easily customized. The main virtue is that tests are much clearer than with the unittest.py. Discussion Supports the most popular features offered by py.test. See: Provides simply formatted output. For example, the example code above produces: tes...
http://code.activestate.com/recipes/572194/
crawl-002
refinedweb
244
61.12
Hi,<?xml:namespace prefix = o We currently done upgrade of Aspose slides v2.5.4.0 to v4.0.1 .we found some performance improvements in v4.0.1 dll. For ex , to generate 23 slides with our stuff (kind of charts and tables data), it took around 7 minutes in v2.5.4.0. But it took only around 1 minute in v4.0.1. How ever we...
https://forum.aspose.com/t/performance-difference-between-aspose-slides-v2-5-4-0-and-v4-0-1/92498
CC-MAIN-2022-21
refinedweb
134
75.4
int getc ( FILE * stream ); <cstdio> Get character from stream Returns the character currently pointed by the internal file position indicator of the specified stream. The internal file position indicator is then advanced by one character to point to the next character.getc is equivalent to fgetc and also expects a str...
http://www.cplusplus.com/reference/clibrary/cstdio/getc/
crawl-002
refinedweb
134
65.83
Variable Scope defines the region in a C++ program wherein a variable is accessible. The scope of the variable is determined by the place where it is declared. There are three ways to declare a variable in C++: - Inside a function or a block which is called local variables, - In the definition of function parameters wh...
https://www.studymite.com/cpp/scope-of-a-variable-in-cpp/?utm_source=related_posts&utm_medium=related_posts
CC-MAIN-2021-39
refinedweb
429
57.71
Hello Nat The external reviews module has a number of config options that can be set in code, depending on your requirements. The options are documented here: What is your specific requirement so we can advise on the correct configuration of these options. David Hi David ideally we would like external reviewers not to ...
https://world.optimizely.com/forum/developer-forum/Addons/Thread-Container/2021/5/web-config-in-the-modulesadd-on-name-folder/
CC-MAIN-2022-33
refinedweb
1,285
53.1
For any Perl programmer, the Perl 6 project is a hot topic. Perl has always been an evolving language, and Perl 6 has definitely evolved from Perl 5 in almost every way imaginable (but you can still tell they come from the same camel). Perl 6 will run on top of Parrot, a versatile virtual machine that will be able to l...
http://www.ibm.com/developerworks/linux/library/l-cpregex.html
crawl-002
refinedweb
2,956
61.46
Y'all are a bunch of wankers! Daddy's Irony House iFAQ I will do bananas. I'm here to violate your privacy Asteroids Deleted Posts Today (∞) WinRAR even has codebook entries for redheads jerking off elephants Search Another Math/Stat related Interview Question The answer seems like 1:1, but I am not sure because later ...
http://www.crazyontap.com/topic.php?TopicId=17341&Posts=8
CC-MAIN-2018-22
refinedweb
581
74.49
No excecution of orders during tutorial SMAcrossover I started recently with python so excuse me for not being the brightest light atm. However i've been trying alot and reading alot and i can't figure out the problem. I cut off almost all my code to find the essence of the problem. So now i'm trying a basic strategy f...
https://community.backtrader.com/topic/2903/no-excecution-of-orders-during-tutorial-smacrossover/8
CC-MAIN-2022-05
refinedweb
1,121
50.73
About struts About struts How will we configure the struts about webapps - Struts about webapps hi deepak, I have a query ,i.e., If we develop web-application By directory name MyStrutsProject,then we kept this folder... it is possible, where we need to do modifications. Thanking you plsz i want the coding details of l...
http://roseindia.net/tutorialhelp/comment/4894
CC-MAIN-2014-10
refinedweb
1,837
66.03
Firmware update without expansion board hi How do I update the firmware on the Sipy without an expansion board?> I am able to connect to Atom and my pc via Wifi, but this is the first time i am using a Pycom device and the first time using mycropython Cheers Bruce @robert-hh Thanks for the info I have so much to learn ...
https://forum.pycom.io/topic/2671/firmware-update-without-expansion-board/7
CC-MAIN-2019-30
refinedweb
664
73.17
Like Charles Petzold, I am something of a Xamlholic: I'll try for hours to find a way of expressing my UI in pure XAML, rather than pollute its purity with C# code, even if the code could go in a code-behind file. This addiction is largely driven by WPF's fantastic support for Data Binding which lets anything in the UI...
http://blog.functionalfun.net/2008/06/wpf-passwordbox-and-data-binding.html?showComment=1275072862809
CC-MAIN-2013-20
refinedweb
4,387
57.06
Hi, We’re launching the Early Access Program for CLion 2019.2! As usual, the EAP builds are free to use and no license is required. Get early access to the upcoming changes and enhancements and give us your feedback! We want to test it in all kinds of non-standard or unusual environments you may have set up, and collec...
https://blog.jetbrains.com/clion/2019/05/clion-starts-2019-2-eap-parameter-hints-go-to-address-code-assistance-for-clangformat/?replytocom=97386
CC-MAIN-2019-51
refinedweb
2,668
66.44
current position:Home>Deep understanding of children Deep understanding of children 2022-04-29 04:26:18【baoleilei6】 React The core component is . You can nest like HTML Use these components nested like tags , This makes writing JSX Easier because it's similar to markup language . When I just started to learn React when...
https://en.qdmana.com/2022/117/202204290426112137.html
CC-MAIN-2022-33
refinedweb
1,371
50.43
Model villages and the militarization of rural society in Guatemala It's one of those ugly euphemisms of state terror and war. Similar places were referred to as "strategic hamlets" during the Indochina wars and the concept was used throughout the twentieth century. In the Philippines, South Africa, elsewhere. In Europ...
https://everything2.com/title/model+village
CC-MAIN-2018-13
refinedweb
4,488
58.92
It is used to extracts n characters from the stream and stores them in the array pointed by by s. Following is the declaration for std::basic_istream::read. basic_istream& read (char_type* s, streamsize n); n − Maximum number of characters to write to s (including the terminating null character). s − Pointer to an arra...
https://www.tutorialspoint.com/cpp_standard_library/cpp_basic_ios_read.htm
CC-MAIN-2020-16
refinedweb
179
62.95
Summary Adds a new field to a table or the table of a feature class or feature layer, as well as to rasters with attribute tables. Usage For shapefiles and dBase tables, if field type defines a character, blanks are inserted for each record. If field type defines a numeric item, zeros are inserted for each record. The ...
https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/add-field.htm
CC-MAIN-2021-49
refinedweb
385
60.95
Creating a vDSO: the Colonel's Other Chicken And Now Some Special Sauce gettimeofday(), a special time variable is mapped into memory where the kernel updates it and the userland (vDSO version) can read it. The kernel merely copies what it knows about time into that variable, and when a vDSO is made, that call just rea...
http://www.linuxjournal.com/content/creating-vdso-colonels-other-chicken?page=0,1&quicktabs_1=1
CC-MAIN-2014-52
refinedweb
1,025
61.36
Hello, I'm encountering the behavior when my App is a ShareTarget it will be killed with: The program '[5880] Shell.exe' has exited with code -1073741819 (0xc0000005) Access violation. The program '[5880] Shell.exe: Program Trace' has exited with code 0 (0x0). The app does the following: Copy the image files it receive...
https://learn.microsoft.com/en-us/answers/questions/38240/sharetarget-results-in-the-program-exe-program-tra.html
CC-MAIN-2022-40
refinedweb
243
57.16
We want to implement a ListView where each item has a checkbox like the figures shown below: At the same time we want to handle user click so that we keep track of items checked and give access to the item menu. Let’s start. Implement a layoutThe first thing we have to do is implementing the layout like the the one sho...
http://www.survivingwithandroid.com/2013/02/android-listview-adapter-checkbox-item_7.html
CC-MAIN-2015-35
refinedweb
683
55.34
Viewing the Ensemble I/O Archive If you enable the Archive IO setting for one or more business service and business operations, Ensemble archives the input and output data in addition to the Ensemble messages. The input and output data is shown in the Visual Trace window; see “Tracing the Path of Related Messages,” ear...
https://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=EMONITOR_IO
CC-MAIN-2021-10
refinedweb
206
57.47
Hi, when i compile this code, it has loads of errors, but its out of a book im learning from. its... [tag] This is the header file it tells me to make [/tag] [tag] This is the main part - its only a small crappy thing but im learning [/tag][tag] This is the main part - its only a small crappy thing but im learning [/ta...
https://cboard.cprogramming.com/cplusplus-programming/79237-why-doesnt-work.html
CC-MAIN-2017-09
refinedweb
284
55.34
The QMetaEnum class provides meta-data about an enumerator. More... #include <QMetaEnum>. Returns true if this enumerator is used as a flag; otherwise returns false. When used as flags, enumerators can be combined using the OR operator. See also keysToValue() and valueToKeys(). Returns true if this enum is valid (has a...
https://doc.qt.io/archives/qt-4.7/qmetaenum.html
CC-MAIN-2021-17
refinedweb
270
61.02
I produced screencasts for my pdfid and pdf-parser tools, you can find them on Didier Stevens Labs products page. There are translations of this page, see bottom. pdf-parser.py This tool will parse a PDF document to identify the fundamental elements used in the analyzed file. It will not render a PDF document. The code...
http://blog.didierstevens.com/programs/pdf-tools/
CC-MAIN-2015-35
refinedweb
13,213
63.59
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. "global name 'context' is not defined" ? When I run this code I get the error : "global name 'context' is not defined" Can someon...
https://www.odoo.com/forum/help-1/question/global-name-context-is-not-defined-70658
CC-MAIN-2017-22
refinedweb
213
68.06
This version of documentation is OUTDATED! Please switch to the latest one. No language code for this page. You can select other language. No language code for this page, shown in other instead. shown in other instead. Framework World Script Warning Game Framework is deprecated and no longer supported. We can't guarant...
https://developer.unigine.com/en/docs/2.4.1/code/uniginescript/scripts/game_framework/library/world_script/?rlang=cpp
CC-MAIN-2021-25
refinedweb
162
58.38
It is probably evident to everyone the real power of Shotgun is its ability to exchange the stored or yet-to-be-stored data (such as Project Name, Shot Name, Task Name, First Frame Number, Output Resolution and etc etc). If set up properly any application supporting Python (such as Maya) would be able to send and recei...
https://support.shotgunsoftware.com/hc/ko/community/posts/209486388-To-Send-and-Receive-Data-Make-Shotgun-Work?sort_by=votes
CC-MAIN-2021-39
refinedweb
905
67.49
Applies to: BL51 Code-banking Linker/Locator Information in this article applies to: At the bottom of page 330 in the C51 Compiler User's Guide (01.97) it states that "when you use a function pointer, the linker cannot correctly create a call tree for your program. For this reason, you may have to correct the call tree...
http://infocenter.arm.com/help/topic/com.arm.doc.faqs/ka9350.html
CC-MAIN-2018-05
refinedweb
246
69.92
0 Hi, I've started to learn about threads in java. I'm trying to make this simple animation of a rectangle. Where am I going wrong? I was under the impression that if a class implements Runnable, when it is executed, it looks for the start method, which in turn starts the thread and run() is executed. Should I be overr...
https://www.daniweb.com/programming/software-development/threads/333113/threads-what-am-i-doing-wrong
CC-MAIN-2018-43
refinedweb
176
61.83
On 17/09/2014 at 11:57, xxxxxxxx wrote: User Information: Cinema 4D Version: 15 Platform: Mac OSX ; Language(s) : PYTHON ; --------- Hello, I have been gifted a fully functioning Python script from a colleague that turns text data into .OBJ files. The issue I'm having is that ideally I could load my external files into...
https://plugincafe.maxon.net/topic/8142/10605_loading-text-file-via-user-data-input-into-python
CC-MAIN-2020-40
refinedweb
424
79.9
A superset of Python that compiles to C, Cython combines the ease of Python and the speed of native code Python has a reputation for being one of the most convenient, richly outfitted, and downright useful programming languages. Execution speed? Not so much. Enter Cython. Compile Python to C Python code can make calls ...
http://blog.agileactors.com/blog/2018/2/13/what-is-cython-python-at-the-speed-of-c
CC-MAIN-2018-39
refinedweb
1,577
57.91
Correlation in Python Correlation values range between -1 and 1. There are two key components of a correlation value: - magnitude – The larger the magnitude (closer to 1 or -1), the stronger the correlation - sign – If negative, there is an inverse correlation. If positive, there is a regular correlation. Positive Corr...
https://benalexkeen.com/correlation-in-python/
CC-MAIN-2021-21
refinedweb
488
52.76
Design patterns and practices in .NET: the Prototype pattern Introduction The formal definition of the prototype pattern is the following: specify the kinds of objects to create using a prototypical instance and create new objects by copying this prototype. What this basically says is instead of using ‘new’ to create a...
https://dotnetcodr.com/2013/08/05/design-patterns-and-practices-in-net-the-prototype-pattern/
CC-MAIN-2018-47
refinedweb
1,029
63.8
There are several examples on animations in Jupyter Notebook on NumFys. Here, we will briefly mention a few pitfalls and a few tricks and hints. When making an animation, one needs to include a few (additional) packages: import matplotlib.pyplot as plt from matplotlib import animation from IPython.display import displa...
https://www.numfys.net/howto/animations/
CC-MAIN-2022-40
refinedweb
349
52.76
> Using a stereoscopic 360 degree 3d render; I'm trying to get a similar experience to the Oculus 360 degree image viewer for the Gear VR. When I use my stereoscopic image in the Oculus app, I have an experience that's close (enough) to being in the room; but when I do the same in my app, the experience is that I'm tin...
https://answers.unity.com/questions/1180427/moving-skybox-closer-to-emulate-a-smaller-room-vr.html
CC-MAIN-2019-26
refinedweb
496
64.95
Generate New Angular 12 Project ng new 'project name' - Add routing - Add preferred stylesheet Open directory in VSCode then View Terminal ng add @nguniversal/express-engine Optional ng add @angular/pwa ng add @angular/material Firebase ng add @angular/fire - sometimes an error and needs to run 2x... hopefully this wil...
https://dev.to/jdgamble555/deploy-angular-universal-app-to-firebase-functions-49mm
CC-MAIN-2021-43
refinedweb
402
51.24
- SYNOPSIS - to sumarize - Examples - Function composition - Functions - generators - filters - misc - consumers - Composers - Perlude companions - Path::Iterator::Rule - Path::Tiny - curry - TODO / CONTRIBUTONS - KNOWN BUGS - AUTHORS - CONTRIBUTORS - ACKNOWLEDGMENTS SYNOPSIS If you're used to a unix shell, Windows Pow...
https://metacpan.org/pod/distribution/perlude/lib/Perlude.pod
CC-MAIN-2015-22
refinedweb
1,430
60.69
The Apache Ant team is proud to announce the availability of Ant 1.6. Ant 1.6.0 adds a lot of new features, most prominently support for XML namespaces as well as a new concept of Ant libraries that makes use of namespaces to avoid name clashes of custom tasks. It also supports macros, file imports, and ssh tasks (e.g....
http://www.theserverside.com/discussions/thread.tss?thread_id=22964
CC-MAIN-2013-48
refinedweb
2,140
72.05
screen_flush_blits() Function type: Flushing execution Synopsis: #include <screen/screen.h> int screen_flush_blits( screen_context_t ctx, int flags ) Arguments: - ctx - A connection to screen (acquired with screen_create_context()). - flags - A flag used by the mutex. Specify SCREEN_WAIT_IDLE if the function should blo...
https://developer.blackberry.com/playbook/native/reference/com.qnx.doc.screen.lib_ref/topic/rscreen_flush_blits.html
CC-MAIN-2017-04
refinedweb
161
59.09
CodePlexProject Hosting for Open Source Software I'm looking at "public class Shapes : IShapeFactoryEvents" in module Orchard.Experimental. Why is this class only used when feature 'Orchard.Experimental' is enabled? Since the module contains more than feature: Why is this related? For other features like 'Orchard.Exper...
http://orchard.codeplex.com/discussions/246524
CC-MAIN-2017-51
refinedweb
398
52.76
Using CSS - the selector. This blog post describes an attached behaviour for styling WPF application using CSS selectors. Let's first look at the anatomy of CSS. A CSS stylesheet is composed of a number of rules, each rule is composed of a selector which provides a pattern which the CSS selector engine matches against ...
http://blog.scottlogic.com/2009/03/11/using-css-selectors-for-styling-in-wpf.html
CC-MAIN-2017-17
refinedweb
1,204
55.03
Ask Ben: Closing XHTML Tags In A Truncated Message Hey Ben, I have an internal developers forum, and when folks reply to messages I quote their original text (which contains html codes). If this text hits a certain threshold I chop the text at that point using this CF code/regex so I don't chop in the middle of a word:...
http://www.bennadel.com/blog/982-ask-ben-closing-xhtml-tags-in-a-truncated-message.htm?_rewrite
CC-MAIN-2015-11
refinedweb
1,992
72.36