-
Archives
- January 2020
- August 2018
- August 2017
- July 2015
- February 2015
- February 2013
- December 2011
- August 2011
- May 2011
- April 2011
- January 2011
- November 2010
- September 2010
- August 2010
- January 2010
- November 2009
- September 2009
- July 2009
- June 2009
- May 2009
- July 2008
- June 2008
- February 2008
- January 2008
- December 2007
- October 2007
- July 2006
- January 2002
- November 2001
- October 2001
- September 2001
- February 2001
- January 2001
-
Meta
Category Archives: Computing
Better broadband for north Powys – part 2
Following my previous post about better broadband for north Powys, I tried to do some initial investigation on Facebook to see if this was something that would have enough interest to investigate further. I posted on local pages, mainly for … Continue reading
Posted in B4RM, Computing
2 Comments
Ruby and Ruby on Rails version compatibility
I have recently been planning upgrades for an application which runs on both an old version of Ruby on Rails and an old version of Ruby. The recommended upgrade path for rails is to upgrade through each version, rather than … Continue reading
Better broadband for North Powys
I’ve lived in Powys for 10 years, and I’ve always had good broadband, as I live only 200 metres from the telephone exchange. This means that I’ve got used to being able to watch Netflix, stream music, backup devices to … Continue reading
Starting out alone in Information Security and IT consultancy
After 10 years with my previous employer I was made redundant at the end of January. Rather than rush straight to the job boards in a state of panic, I’m looking at this as an opportunity. For several years I … Continue reading
Posted in Business, Computing, Information Security
Leave a comment
BitTorrent Magnet links for FreeBSD
Since the FreeBSD torrent tracker has been taken offline, and it appears that it won’t be coming back, you may be able to use a magnet link, so here they are. Each magnet link announces to three public trackers, to … Continue reading
Posted in FreeBSD
Leave a comment
Installing sqlite3 ruby gem on FreeBSD
If you try to install (or update) the sqlite3 ruby gem on FreeBSD, you might get the following error: sudo gem update sqlite3 Updating installed gems Updating sqlite3 Fetching: sqlite3-1.3.5.gem (100%) Building native extensions. This could take a while… ERROR: … Continue reading
Posted in FreeBSD
4 Comments
Netgear DGN1000 review
After an intermittent failure of my previous ADSL router, I thought long and hard about whether I could justify spending many hundreds of pounds on a nice Cisco 1800, I decided to go cheap and buy a bottom-of-the-range Netgear. After … Continue reading
Posted in Computing
Leave a comment
My Ideal Operating System
What would my ideal Operating System look like? Really small minimal installation. You know, like OpenBSD. Thorough and comprehensive help pages. You know, like OpenBSD. The ability to simply administer the OS remotely. You now, like SSH on OpenBSD. Excellent, … Continue reading
Posted in Computing, FreeBSD, Windows
Leave a comment
The problem with renaming a model in Rails
So you’ve decided to rename a model in Rails. What could be simpler than renaming and editing a bunch of files? You make your edits in development, run migrations and so on. There’s a potential issue you might hit though. … Continue reading
Posted in Rails
Leave a comment
Renaming a model in Rails
When renaming a model in Rails (2.3), there are a range of files you may need to change: Create a migration to rename the database table: (rename_table :oldname, :newname) Rename the model. Edit any associations in other models. Rename the … Continue reading