User contributions for PeterHarding
Jump to navigation
Jump to search
- 22:38, 6 December 2012 diff hist +731 N CSharp - Files 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() { ..." current
- 08:27, 26 November 2012 diff hist +177 N CSharp - Setting up a Service 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" current
- 08:25, 26 November 2012 diff hist +39 CSharp - Logging current
- 08:12, 26 November 2012 diff hist +94 CSharp - Logging
- 08:05, 26 November 2012 diff hist +40 CSharp - Logging
- 08:04, 26 November 2012 diff hist +84 CSharp - Logging
- 07:49, 26 November 2012 diff hist +1,931 N Using WebClient 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 ..." current
- 07:48, 26 November 2012 diff hist +12,623 N Dot.NET Exceptions 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..." current
- 07:38, 26 November 2012 diff hist −6 Using Files in CSharp
- 07:37, 26 November 2012 diff hist +4,435 N Using Files in CSharp Created page with "h1. Creating Text Files * http://msdn.microsoft.com/en-us/library/8bh11f1k.aspx <pre> class WriteTextFile { static void Main() { // These ex..."
- 07:35, 26 November 2012 diff hist +1,226 N CSharp - Serial Handling Notes 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..." current
- 07:32, 26 November 2012 diff hist −22 CSharp - Logging
- 07:32, 26 November 2012 diff hist +158 CSharp - Logging
- 07:22, 26 November 2012 diff hist +1,202 N CSharp - Logging 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..."
- 11:19, 3 November 2012 diff hist +57 N Category:MacOSx & iOS Created page with "Mac OSx and iOS notes, links, references and resources..." current
- 11:18, 3 November 2012 diff hist +2 IOS Development Notes current
- 11:18, 3 November 2012 diff hist +7 IOS Development Notes
- 11:17, 3 November 2012 diff hist +254 N IOS Development Notes 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..."
- 13:47, 30 July 2012 diff hist +135 Working with SSH and Ruby current
- 13:46, 30 July 2012 diff hist +186 Working with SSH and Ruby
- 13:44, 30 July 2012 diff hist +250 Working with SSH and Ruby
- 13:44, 30 July 2012 diff hist +56 Working with SSH and Ruby
- 13:42, 30 July 2012 diff hist +1,324 N Working with SSH and Ruby 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:..."
- 10:02, 30 July 2012 diff hist +17 Working with Sub-processes in Ruby current
- 10:00, 30 July 2012 diff hist +359 N Working with Sub-processes in Ruby 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 ..."
- 09:56, 30 July 2012 diff hist +562 Skel.rb current
- 09:39, 30 July 2012 diff hist +1 Skel.rb
- 09:38, 30 July 2012 diff hist +382 Skel.rb →Skelton Ruby Script
- 09:31, 30 July 2012 diff hist +84 Skel.rb
- 09:20, 30 July 2012 diff hist +1 Metaprogramming in Ruby current
- 16:33, 6 June 2012 diff hist +95 N Python Web Frameworks Created page with "=See= * http://blog.curiasolutions.com/the-great-web-framework-shootout/ Category:Python" current
- 16:33, 6 June 2012 diff hist +192 N Boto Rsync 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 [[..." current
- 16:53, 4 June 2012 diff hist +2,277 Example - decompose.py current
- 16:50, 4 June 2012 diff hist −2 Example - decompose.py
- 16:50, 4 June 2012 diff hist +49 Example - decompose.py
- 16:48, 4 June 2012 diff hist +3,528 N Example - decompose.py 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,..."
- 07:30, 23 May 2012 diff hist +12 Domain Details current
- 07:30, 23 May 2012 diff hist +266 Domain Details
- 07:26, 23 May 2012 diff hist +184 Domain Details
- 13:27, 14 May 2012 diff hist −1 Metaprogramming in Ruby →Reimplement attr_accessor
- 13:26, 14 May 2012 diff hist −14 Metaprogramming in Ruby →Reimplement attr_accessor
- 13:26, 14 May 2012 diff hist +104 Metaprogramming in Ruby →Reimplement attr_accessor
- 13:25, 14 May 2012 diff hist +6 Metaprogramming in Ruby →Reimplement attr_accessor
- 13:24, 14 May 2012 diff hist +667 N Metaprogramming in Ruby 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..."
- 13:28, 9 May 2012 diff hist +11 Python - datetime
- 13:28, 9 May 2012 diff hist +86 Python - datetime
- 15:36, 30 April 2012 diff hist +63 Sqlite setup.py current
- 15:35, 30 April 2012 diff hist +11,820 N Sqlite setup.py 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..."
- 15:34, 30 April 2012 diff hist +965 N Git Notes 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..."
- 15:30, 30 April 2012 diff hist −108 POS Systems →Another List current