New pages
Jump to navigation
Jump to search
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 10:27, 19 February 2013 AutoIT Notes (hist | edit) [1,709 bytes] PeterHarding (talk | contribs) (Created page with " * http://motersho.com/blog/index.php/2009/10/20/autoit-command-line-parameters-a-new-approach/ Category:AutoIT")
- 09:44, 19 February 2013 Using AutoIT with Ruby (hist | edit) [91 bytes] PeterHarding (talk | contribs) (Created page with "=Examples= <pre> </pre> Category:Examples Category:Ruby Category:AutoIT")
- 09:39, 19 February 2013 Using Excel with Python (hist | edit) [457 bytes] PeterHarding (talk | contribs) (Created page with "=Examples= <pre> >>> from win32com.client.dynamic import Dispatch >>> >>> from win32com.client.dynamic import Dispatch >>> >>> excel = Dispatch('Excel.Application') >>> >>> >...")
- 09:33, 19 February 2013 Using AutoIT with Python (hist | edit) [4,182 bytes] PeterHarding (talk | contribs) (Created page with "=Some Links= * http://www.autoitscript.com/forum/topic/16540-call-autoit-from-python-script/ =Sample Scipts= <pre> import time from win32com.client import Dispatch Auto ...")
- 17:00, 28 January 2013 Getting Started with Flask (hist | edit) [294 bytes] PeterHarding (talk | contribs) (Created page with " =Links= * https://speakerdeck.com/nicola/developing-restful-web-apis-with-python-flask-and-mongodb Category:Python Category:Flask")
- 23:51, 6 December 2012 CSharp - Using JSON (hist | edit) [2,534 bytes] PeterHarding (talk | contribs) (Created page with "=Links= * http://stackoverflow.com/questions/401756/parsing-json-using-json-net Category:CSharp Category:JSON")
- 23:43, 6 December 2012 CSharp - Serialization (hist | edit) [319 bytes] PeterHarding (talk | contribs) (Created page with "=Notes= * http://msdn.microsoft.com/en-us/library/system.runtime.serialization.datamemberattribute.aspx Category:CSharp")
- 23:38, 6 December 2012 CSharp - Files (hist | edit) [731 bytes] PeterHarding (talk | contribs) (Created page with "=Notes= Also see - http://msdn.microsoft.com/en-us/library/system.io.file.aspx <pre> using System; using System.IO; class Test { public static void Main() { ...")
- 09:27, 26 November 2012 CSharp - Setting up a Service (hist | edit) [177 bytes] PeterHarding (talk | contribs) (Created page with "=Notes= * http://www.ricesharp.com/post/2012/03/05/How-to-create-and-install-a-Windows-Service-in-C.aspx Category:CSharp Category:Dot.NET Category:Windows Services")
- 08:49, 26 November 2012 Using WebClient (hist | edit) [1,931 bytes] PeterHarding (talk | contribs) (Created page with "See - http://stackoverflow.com/questions/6348804/net-error-when-calling-system-net-webclient-uploadfileasync <pre> var targetUri = new Uri("ftp://example.com/file.txt"); var ...")
- 08:48, 26 November 2012 Dot.NET Exceptions (hist | edit) [12,623 bytes] PeterHarding (talk | contribs) (Created page with "=Exception Lists= * http://mikevallotton.wordpress.com/2009/07/08/net-exceptions-all-of-them/ * http://weblogs.asp.net/jgaylord/archive/2009/07/08/common-and-all-system-excep...")
- 08:37, 26 November 2012 Using Files in CSharp (hist | edit) [4,434 bytes] PeterHarding (talk | contribs) (Created page with "h1. Creating Text Files * http://msdn.microsoft.com/en-us/library/8bh11f1k.aspx <pre> class WriteTextFile { static void Main() { // These ex...")
- 08:35, 26 November 2012 CSharp - Serial Handling Notes (hist | edit) [1,226 bytes] PeterHarding (talk | contribs) (Created page with " * http://stackoverflow.com/questions/4661486/not-reading-complete-serial-port-data-in-c-sharp?rq=1 Use the data received event to fill a buffer: <pre> private void data...")
- 08:22, 26 November 2012 CSharp - Logging (hist | edit) [1,595 bytes] PeterHarding (talk | contribs) (Created page with "=Notes= * <pre> using System; using System.Diagnostics; using System.Threading; class MySample{ public static void Main(){ // Create the source, if it does n...")
- 12:17, 3 November 2012 IOS Development Notes (hist | edit) [263 bytes] PeterHarding (talk | contribs) (Created page with " Some links from random exploration: * http://www.stalefishlabs.com/dev/courses/librarian/HFiPhoneDev_Ch02.pdf * http://stackoverflow.com/questions/5428325/issue-with-code-fo...")
- 14:42, 30 July 2012 Working with SSH and Ruby (hist | edit) [1,951 bytes] PeterHarding (talk | contribs) (Created page with "=Links= * http://net-ssh.rubyforge.org/ssh/v2/api/index.html * http://joeandmotorboat.com/2008/10/13/ssh-and-ruby/ =Examples= ==One== <pre> require 'net/ssh/multi' Net:...")
- 11:00, 30 July 2012 Working with Sub-processes in Ruby (hist | edit) [376 bytes] PeterHarding (talk | contribs) (Created page with " When working on a POSIX OS you can use fork and exec. fork => Create a subprocess exec => Replace current process with another process You then need to inform that your ...")
- 17:33, 6 June 2012 Python Web Frameworks (hist | edit) [95 bytes] PeterHarding (talk | contribs) (Created page with "=See= * http://blog.curiasolutions.com/the-great-web-framework-shootout/ Category:Python")
- 17:33, 6 June 2012 Boto Rsync (hist | edit) [192 bytes] PeterHarding (talk | contribs) (Created page with "=Info= * http://blog.curiasolutions.com/the-great-web-framework-shootout/ * http://blog.curiasolutions.com/category/python/ * https://github.com/seedifferently/boto_rsync [[...")
- 17:48, 4 June 2012 Example - decompose.py (hist | edit) [5,852 bytes] PeterHarding (talk | contribs) (Created page with "=Python Script to Decompose Module/Class Components= ActiveState recipe 553262 - http://www.activestate.com/recipe-553262-1] <pre> #!/usr/bin/env python # Describe classes,...")
- 14:24, 14 May 2012 Metaprogramming in Ruby (hist | edit) [763 bytes] PeterHarding (talk | contribs) (Created page with " =Reimplement attr_accessor= <pre> #!/usr/bin/env ruby module Accessor def my_attr_accessor(name) STDERR.print "#{name}\n" ivar_name = "@#{name}" define...")
- 16:35, 30 April 2012 Sqlite setup.py (hist | edit) [11,883 bytes] PeterHarding (talk | contribs) (Created page with " <pre> #!/usr/bin/env python # # Author: Peter Harding <plh@performiq.com.au> # # Mobile: 0418 375 085 # # @(#) [1.0.01] sqlite_setup.py 2...")
- 16:34, 30 April 2012 Git Notes (hist | edit) [1,246 bytes] PeterHarding (talk | contribs) (Created page with " h1. Branching * gitbranch \--set-upstream xxx origin/xxx * git branch \-a * git push origin xxx * git push origin xxx:yyy * git checkout remote/origin/zzz h2. Low Level Stu...")
- 07:56, 26 April 2012 Domain Details (hist | edit) [1,274 bytes] PeterHarding (talk | contribs) (Created page with "=help@crazydomains.com.au= <pre> aaaaaaaaaaaaa.net 25 Feb 2014 Registered cloudrunner.xxx 11 Dec 2013 Registered clawtooth.net 11 Dec 2013 Registered qualitybasics....")
- 08:13, 24 April 2012 SCM Repositories (hist | edit) [58 bytes] PeterHarding (talk | contribs) (Created page with " www.codeplex.com Category:Projects Categories:SCM")
- 08:06, 24 April 2012 POS Systems (hist | edit) [2,293 bytes] PeterHarding (talk | contribs) (Created page with "=The Search= * http://blog.stevecoinc.com/2010/02/open-source-point-of-sale.html Category:POS")
- 12:48, 4 April 2012 POS Notes (hist | edit) [1,391 bytes] PeterHarding (talk | contribs) (Created page with " uniCenta oPOS - bars, cafes, restaurants, supermarkets, retailers - hospitality, leisure jPOS Mercator PHP Point of Sale Floodhammer Media Bl...")
- 19:54, 1 April 2012 Summary of Git Commands (hist | edit) [853 bytes] PeterHarding (talk | contribs) (Created page with " Category:Git Category:Development Category:Software Tools")
- 07:09, 28 March 2012 Examples - sql manage.py (hist | edit) [9,716 bytes] PeterHarding (talk | contribs) (Created page with " <pre> #!/usr/bin/env python # # Author: Peter Harding <plh@performiq.com.au> # # PerformIQ Pty. Ltd. # Level 6, # 170 Que...")
- 00:04, 28 March 2012 Dropbox Notes (hist | edit) [111,064 bytes] PeterHarding (talk | contribs) (Created page with " =Linux Command Line Interface= See [https://www.dropbox.com/install?os=lnx] Use the following Python script: <pre> #!/usr/bin/python # # Copyright 2008 Evenflow, Inc. # # ...")
- 06:58, 26 March 2012 Example - send email.py (hist | edit) [3,509 bytes] PeterHarding (talk | contribs) (Created page with " <pre> #!/usr/bin/env python # # # #------------------------------------------------------------------------------- """ Send email using outlook... ... """ #----------------...")
- 06:42, 26 March 2012 Examples - tst sqlite.py (hist | edit) [12,100 bytes] PeterHarding (talk | contribs) (Created page with " =Using Sqlite= <pre> #!/usr/bin/env python # # Author: Peter Harding <plh@performiq.com.au> # # PerformIQ Pty. Ltd. # Level 6, # ...")
- 10:23, 15 March 2012 Performance Landmarks on the Internet (hist | edit) [219 bytes] PeterHarding (talk | contribs) (Created page with "=Blogs= * http://hpperformancecenter.blogspot.com.au/ Category:Performance Category:LoadRunner Category:PerformanceCenter")
- 22:54, 13 March 2012 Sqlite Examples (hist | edit) [12,109 bytes] PeterHarding (talk | contribs) (Created page with " <pre> #!/usr/bin/env python # # Author: Peter Harding <plh@performiq.com.au> # # PerformIQ Pty. Ltd. # Level 6, # 170 Qu...")
- 09:36, 13 March 2012 Mozilla Firefox Extensions (hist | edit) [429 bytes] PeterHarding (talk | contribs) (Created page with "=Implementing Extensions= * http://blog.mozilla.com/addons/2009/01/28/how-to-develop-a-firefox-extension/lementing Extensions= Category:Mozilla Category:Firefox")
- 01:53, 13 March 2012 Use CSV Data in Python (hist | edit) [56 bytes] PeterHarding (talk | contribs) (Created page with "=CSV Module= Category:Python Category:Examples")
- 00:19, 1 March 2012 Objective-C Links (hist | edit) [164 bytes] PeterHarding (talk | contribs) (Created page with " =References= * http://www.touch-code-magazine.com/objective-c-math-functions/ Category:Objective-C Category:MacOSX")
- 12:46, 28 February 2012 JVM Tuning (hist | edit) [117 bytes] PeterHarding (talk | contribs) (Created page with "=Notes= * http://performance.netbeans.org/howto/jvmswitches/ Category:Performance Category:Java")
- 22:19, 27 February 2012 Git SCM Notes (hist | edit) [1,249 bytes] PeterHarding (talk | contribs) (Created page with "=Overview= Check out this YouTube Video: Category:Git Category:SCM")
- 17:14, 23 February 2012 Static Methods in Python (hist | edit) [884 bytes] PeterHarding (talk | contribs) (Created page with " Hunting around found this example - http://code.activestate.com/recipes/52304-static-methods-aka-class-methods-in-python/ <pre> ## {{{ http://code.activestate.com/recipes/52...")
- 11:03, 22 February 2012 XCode Notes (hist | edit) [320 bytes] PeterHarding (talk | contribs) (Created page with "=Links= * http://useyourloaf.com/ Category:MacOSX Category:Xcode")
- 17:57, 21 February 2012 Numerical Stuff (hist | edit) [246 bytes] PeterHarding (talk | contribs) (Created page with "=Links= * http://hpc.sourceforge.net/ (MacOS) Category:Mathematics")
- 17:48, 21 February 2012 Using R in Ruby (hist | edit) [85 bytes] PeterHarding (talk | contribs) (Created page with "=Links= * https://github.com/alexgutteridge/rsruby Category:R Category:Ruby")
- 16:37, 21 February 2012 Ruby Arrays (hist | edit) [503 bytes] PeterHarding (talk | contribs) (Created page with "=Links= * http://rubylearning.com/satishtalim/ruby_arrays.html Category:Ruby")
- 16:30, 21 February 2012 Ruby Algorithms (hist | edit) [112 bytes] PeterHarding (talk | contribs) (Created page with "=References= * http://www.brpreiss.com/books/opus8/programs/index.html Category:Ruby Category:Examples")
- 10:36, 2 February 2012 HTML5 References (hist | edit) [213 bytes] PeterHarding (talk | contribs) (Created page with " * http://caniuse.com/ * http://html5please.us/ * http://css3please.com/ * http://html5boilerplate.com/ * http://www.modernizr.com/ Category:HTML5")
- 11:46, 31 January 2012 Python - Lambda (hist | edit) [208 bytes] PeterHarding (talk | contribs) (Created page with "=Examples= <pre> #!/usr/bin/env python27 crange = lambda c1, c2: [ chr(c) for c in range(ord(c1), ord(c2)+1) ] print crange('A', 'Z') print crange('0', '9') </pre> [[Cate...")
- 20:20, 4 January 2012 Delete a Windows Service (hist | edit) [1,082 bytes] PeterHarding (talk | contribs) (Created page with '=Info+ * http://geekswithblogs.net/shahedul/archive/2006/10/13/93984.aspx Recently, I was trying to delete a windows service. Normally it should not be necessary to manually de...')
- 11:53, 4 January 2012 Python - virtualenv (hist | edit) [4,032 bytes] PeterHarding (talk | contribs) (Created page with 'virtualenv')
- 11:20, 4 January 2012 Selenium Resources (hist | edit) [65 bytes] PeterHarding (talk | contribs) (Created page with '=Web Sites= * http://www.seleniumwiki.com Category:Selenium')