
blog.robustsoftware.co.uk
Robust Software : Garry ShutlerTales of a code samurai
http://blog.robustsoftware.co.uk/
Tales of a code samurai
http://blog.robustsoftware.co.uk/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Tuesday
LOAD TIME
0.9 seconds
PAGES IN
THIS WEBSITE
9
SSL
EXTERNAL LINKS
27
SITE IP
172.217.6.83
LOAD TIME
0.879 sec
SCORE
6.2
Robust Software : Garry Shutler | blog.robustsoftware.co.uk Reviews
https://blog.robustsoftware.co.uk
Tales of a code samurai
Test-Driven Development – 3 Years On : Robust Software
http://blog.robustsoftware.co.uk/2010/01/test-driven-development-3-years-on.html
Tales of a code samurai. I have moved my active blog over to tumblr. I've maintained this blog for reference but will be posting to http:/ www.robustsoftware.co.uk. Instead. I've pointed my Feedburner feed. To tumblr so if you're subscribed already you should already have switched with me. 171; Older Entries. Test-Driven Development – 3 Years On. Posted by Garry Shutler in BDD. This is the elephant in the room of all TDD discussions. When am I testing too much? The standard response of “NEVER! Most defin...
Best Posts : Robust Software
http://blog.robustsoftware.co.uk/2007/12/best-posts.html
Tales of a code samurai. I have moved my active blog over to tumblr. I've maintained this blog for reference but will be posting to http:/ www.robustsoftware.co.uk. Instead. I've pointed my Feedburner feed. To tumblr so if you're subscribed already you should already have switched with me. Posted by Garry Shutler. These are four of my posts which have been most popular or I enjoyed writing the most:. REST - a quick summary. Forget NAnt, try Rake. I'm an advocate of both Test-Driven Development.
Questioning commonly held opinions : Robust Software
http://blog.robustsoftware.co.uk/2010/02/questioning-commonly-held-opinions.html
Tales of a code samurai. I have moved my active blog over to tumblr. I've maintained this blog for reference but will be posting to http:/ www.robustsoftware.co.uk. Instead. I've pointed my Feedburner feed. To tumblr so if you're subscribed already you should already have switched with me. 171; Older Entries. Questioning commonly held opinions. Posted by Garry Shutler in Architecture. Having testing and persistence baked in. Partially because it works so well with a dynamic language, everything is DRY as...
A better ActionResult: Open Rasta edition : Robust Software
http://blog.robustsoftware.co.uk/2009/12/better-actionresult-open-rasta-edition.html
Tales of a code samurai. I have moved my active blog over to tumblr. I've maintained this blog for reference but will be posting to http:/ www.robustsoftware.co.uk. Instead. I've pointed my Feedburner feed. To tumblr so if you're subscribed already you should already have switched with me. 171; Older Entries. A better ActionResult: Open Rasta edition. Posted by Garry Shutler in Open Rasta. I’ve been meaning to blog more about my experiences with Open Rasta. First, some things to know about Open Rasta.
Describing the journey : Robust Software
http://blog.robustsoftware.co.uk/2010/03/describing-journey.html
Tales of a code samurai. I have moved my active blog over to tumblr. I've maintained this blog for reference but will be posting to http:/ www.robustsoftware.co.uk. Instead. I've pointed my Feedburner feed. To tumblr so if you're subscribed already you should already have switched with me. 171; Older Entries. Posted by Garry Shutler in Mentoring. Often when explaining something it’s easy to straight to the end goal saying: “This is how to do it. Isn’t it awesome? If you really invest in teaching somethin...
TOTAL PAGES IN THIS WEBSITE
9
muonlab » bcp
http://blog.muonlab.com/tag/bcp
Random .NET and web development musings. How to resume aborted SQL Azure Migration Wizard upload. The other day something happened that caused the insert part of me running the SQL Azure Migration Wizard to abort, leaving me with a bunch of local .dat files and no data on my destination server. To upload the data, you need to run the following command:. Bcp database.dbo.tablename in dbo.tablename.dat -n -U username -P password -S remote.server.address.com -b 200 -h"TABLOCK".
muonlab » Cordova
http://blog.muonlab.com/tag/cordova
Random .NET and web development musings. Prevent flicker when hiding splash screen in PhoneGap/Cordova. If your index page is slow to render, you may find you experience a flicker when calling:. Navigator.splashscreen.hide();. Ie the splash screen hides, you get a blank page, then your content appears. You can remedy this by deferring the hiding of the slash screen until a few animation frames. After you’ve finished drawing. You may be able to achieve this using a. Then you can simply do:.
muonlab » How to keep Amazon EC2 instances’ time in sync
http://blog.muonlab.com/2013/11/28/how-to-keep-amazon-ec2-instances-time-in-sync
Random .NET and web development musings. How to keep Amazon EC2 instances’ time in sync. Check out this blog post:. Http:/ www.pretentiousname.com/timesync/. Essentially you need to create a scheduled task that runs. As often as you deem necessary (I have chosen hourly). Here is an exported scheduled task that you can use:. Xml version="1.0" encoding="UTF-16"?
muonlab » Boundarizer Chrome Extension
http://blog.muonlab.com/2014/06/02/boundarizer-chrome-extension
Random .NET and web development musings. Is an excellent script from Paul Lewis. That highlights layout boundaries. I’ve taken that script and bundled it into a Chrome extension to make its use far easier. This is currently a beta version, feedback and pull requests welcome.
muonlab » SSL
http://blog.muonlab.com/tag/ssl
Random .NET and web development musings. How to convert a pkcs12 certificate into private and public keys for use in an AWS ELB. Openssl pkcs12 -in mycert.pfx -out mycert.txt -nodes. Then, to generate your encrypted private key. Openssl rsa -in mycert.txt -text -out mycert.key. Openssl x509 -inform PEM -in mycert.txt -out mycert.cer.
muonlab » PhoneGap
http://blog.muonlab.com/tag/phonegap
Random .NET and web development musings. Prevent flicker when hiding splash screen in PhoneGap/Cordova. If your index page is slow to render, you may find you experience a flicker when calling:. Navigator.splashscreen.hide();. Ie the splash screen hides, you get a blank page, then your content appears. You can remedy this by deferring the hiding of the slash screen until a few animation frames. After you’ve finished drawing. You may be able to achieve this using a. Then you can simply do:.
muonlab » Prevent flicker when hiding splash screen in PhoneGap/Cordova
http://blog.muonlab.com/2014/08/21/prevent-flicker-when-hiding-splash-screen-in-phonegapcordova
Random .NET and web development musings. Prevent flicker when hiding splash screen in PhoneGap/Cordova. If your index page is slow to render, you may find you experience a flicker when calling:. Navigator.splashscreen.hide();. Ie the splash screen hides, you get a blank page, then your content appears. You can remedy this by deferring the hiding of the slash screen until a few animation frames. After you’ve finished drawing. You may be able to achieve this using a. Then you can simply do:.
programmer.grrl: August 2009
http://www.programmergrrl.com/2009_08_01_archive.html
Copy paste) code = bad. Saturday, August 08, 2009. Misadventures In BDD With NBehave. From my previous post, you might have picked up that I like the idea of BDD's given-when-then construct for describing scenarios. For a while, I've been wanting to use this syntax in unit/integration tests to make them clearer. But I've been hoping to do that without switching languages or unit-testing frameworks. Toward that end, I tried out NBehave. So I ended up with text that said 50 and code that said 5. In the mor...
muonlab » How to convert a pkcs12 certificate into private and public keys for use in an AWS ELB
http://blog.muonlab.com/2013/06/26/how-to-convert-a-pkcs12-certificate-into-private-and-public-keys-for-use-in-an-aws-elb
Random .NET and web development musings. How to convert a pkcs12 certificate into private and public keys for use in an AWS ELB. Openssl pkcs12 -in mycert.pfx -out mycert.txt -nodes. Then, to generate your encrypted private key. Openssl rsa -in mycert.txt -text -out mycert.key. Openssl x509 -inform PEM -in mycert.txt -out mycert.cer.
TOTAL LINKS TO THIS WEBSITE
27
Journey of a Thousand miles... | "My journey to get my CCIE & JNCIE"
Journey of a Thousand miles…. My journey to get my CCIE and JNCIE. JNCIE-ENT Practice Lab – Section 1B – Answers. Section 1b answers. Time to complete is 20 minutes. 1. Configure snmp community jncie-ent . Set this up to be read only. Allow access to 10.0.0.254 and 10.1.0.254 and deny access to everything else. Allow the clients to be reused for other communities. Set the location to London and description to jncie lab. Only allow […]. JNCIE-ENT – Practice Lab – Section 1B. JNCIE-ENT Practice lab The fol...
PHP version not supported
PHP version not supported. The requested PHP version is not supported on this server. Die gewählte PHP Version ist auf dem Server nicht verfügbar.
Groeten uit Calgary!
Laquo; Vorige posts. Woensdag 4 Juni 2014. Vandaag is de eerste keer dat we naar Pony Club gaan met de twee paarden. De tocht naar de Pony Club velden verloopt goed. De heuvel bij Cochrane af gaat zonder problemen. Ik doe alles rustig aan. Foxy is een beetje onrustig aan de trailer, maar het is voor haar dan ook de eerste keer bij de Pony Club. Vera is er wat rustiger onder. Nog geen reacties, wees de eerste. Maandag 26 Mei 2014. Eline en Foxy doen een galopje. Peter heeft het wel naar zijn zin. Vandaag ...
robusta tech talk |
Using OCMock to create iOS Unit Tests. June 2, 2014. June 12, 2014. Unit tests in brief. Unit testing is great because it enables you experiment, debug, and monitor the results of your application’s features. XCode has a built-in in support for unit testing. But still, if you wish to test a certain task, or object, using XCode’s unit test framework only, you will have to create a real object with ALL its dependencies! Multi Item Picker Searchable Expandable List View. May 30, 2014. June 12, 2014. Field, ...
Robust Software : Garry Shutler
Tales of a code samurai. I have moved my active blog over to tumblr. I've maintained this blog for reference but will be posting to http:/ www.robustsoftware.co.uk. Instead. I've pointed my Feedburner feed. To tumblr so if you're subscribed already you should already have switched with me. Posted by Garry Shutler in Functional. At the Brighton altnetbeers on Tuesday night. Now that probably makes bugger all sense without knowing what currying is in the first place. As this is meant to be an explanati...
Robux - Услуги
Установка и настройка сервера Linux;. Фильтрация трафика (фаервол);. Настройка файл-серверов (samba);. Терминальные подключения (rdp, vnc);. Создание и настройка шифрованных разделов (cryptsetup);. Виртуальные серверы (kvm, virtualbox);. Центр загрузки бездисковых станций (tftp). Настройка почтовых серверов с антиспамерской и антивирусной защитой;. Настройка прокси-сервера с квотами и сбором статистики;. Создание сайтов на базе типовых скриптов: галерея, форум, каталог товаров, интернет-магазин и другие.
Spending time with Rob
Spending time with Rob. Geek, LAMP Developer, Love all forms of the written word, consume massive amounts of media, A.D.D. focused, coffee lover, caffeine fueled, I also apparently love my commas, that's abou. ooh a shiny. Subscribe to: Posts (Atom). I also apparently love my commas, thats abou. ooh a shiny. View my complete profile.
roBlog | Home
Melting sand to see the world up close. Jimmy Johns in St. George. Jimmy Johns in St. George. Another Saturday adventure catered by Jimmy John’s. I’m pretty sure I rode these when I was her age. Jeshy’s post kindergarten trip with Dad. Las Vegas. She says, “My hat.”. St George at Dusk. St George at Dusk. Jeshy enjoying the nice St. George evening. Welcome Home Atheist Allan! EF Study Abroad Training in Paris. Morris Family Dec 2014. Morris Family Dec 2014. Happy Holidays to One and All!
Rob Watt; Theatre Director
Wednesday, 2 June 2010. The 140 Character Revolution. I have to admit it. I am a bit of an addict. I thought I wouldn't get involved. I thought it would be a fad. Has taken over my life a little bit more than I would have liked! I built my website. With a great piece of online software called Web Eden. One of the most impressive twittering experiences I have had was when I was directing 2 shows last month. I was aware that I was following @Jakeyoh and he was a reviewer for A Younger Theatre.com. Becuase ...
/home/rw
Ein Geek. Ein Leben. Ein $HOME. Zig Systeme. Review: Twelve South BackPack. Vor ein paar Tagen, an Aschermittwoch. Trudelte ein Paket von Amazon. Ein In dem Paket waren zwei Produkte der Firma Twelve South. Hier ein Review zu ersterem, BackPack. Habe ich über mein Backup-Prinzip geschrieben. Darüber das man eine Datensicherung außerhalb lagern sollte, darüber wie ich das mit zwei externen Festplatten und Apples Time Machine. Martin Eichenberg führt in seinem Blog. Eine Serie "Travel Setup". Ein paar Obje...
SOCIAL ENGAGEMENT