Now that we know the 3G iPhone is coming to Australia in July, I was reading back through the pre-announcment 3G rumours to see what where true. Late last month, Afterdawn wrote that according to an anonymous insider, the iPhone will be faster on Telstra by the end of 2008.
If you follow through and read their referenced article at Electronista then the story changes slightly. They state that the iPhone will allegedly support up to 42Mbps by the end of 2008 in Australia (on NextG is inferred) “according to a senior offical“.
An friend of mine who lives in China recently wrote to me and said “guess what.. the great firewall of China seems to be gone…” My friend advised that you can read anything you like.
An example of this is the UK BBC news site, who a few months ago reported that their English site is available inside China for first time in a decade; but the point of interest is that the BBC Chinese site is also available for use within China.
The site has been slow recently. I can put this down to the failure of my DNS server. I used an internal caching DNS server for the intranet (where this site is hosted) and it techdebug.com resolves itself internally to a private IP. Whilst the server was off-line I was using an external DNS server, so for the web-server itself apache was resolving the domain name to the external public facing firewall.
I use vim a lot of the time, mostly with splits and diffs, so the following key mappings and functions really helped me with managing the split windows. Maybe they will help you too. (Thanks to the Vim tips wiki for these).
If you use vertical splits, this will help move left and right across the split. Put in your ~/.vimrc
<br /> " Map multi window keys<br /> set wmw=0<br /> " CTRL-H move to left window<br /> nmap <c -h> </c><c -w>h</c><c -w><bar><br /> " CTRL-L move to right window<br /> nmap <c -l> </c><c -w>l</c><c -w><bar><br /> </bar></c></bar></c> When scrolling up and down a window, you can use zz to jump the current line to the middle of the window.
I promise to no longer touch any ones keyboards at work if you all promise to keep your hands off mine.
After seeing a twitter post on this, I read an article at the Beeb on how; and I definitely quote:
Research by the University of Arizona last year found the average office desktop harboured 400 times more bacteria than the average office toilet seat.
…
“Should somebody have a cold in your office, or even have gastroenteritis, you’re very likely to pick it up from a keyboard.
I just started reading Cory Doctorow’s Little Brother using one of his ebooks he has relesed under the Creative Commons license.
I have to admit that I had never heard of Cory of BoingBoing fame, or his books until I read about them via CelticBear.
As a ‘paranoid’ geeked I’m hooked on Little Brother, and if you like tech, geek and drama you should check it out as well.
Update: I went to buy a copy from a local bookstore, but it is not released in Australia yet.
I can feel it….. Hot on the heels of iPhone release rumours, TUAW post the rumour about iPhone on Vodafone in Australia; and the SMH follow soon thereafter based upon the actual press release from Vodafone.
June is just around the corner and my current Vodafone contract runs out this month. Perfect timing.
The reason I was hoping for Vodafone is this: with a $79 cap, the $500 credit (currently) covers 3G data usage.
Recently someone I know advised other IT people to generate their SSH keypair using the default options “using just enter to answer all the questions”. This means that the Private Key generated has no password against it (and is unencrypted).
In this case your private key is stored unprotected on your own computer, and anybody who gains access to that will be able to generate signatures (login to servers) as if they were you They will be able to log in to your server under your account.
Today I upgraded my postgresql database instance on OpenBSD. Did a pg_dumpall, removed the old packages and then added the new ones (latest version 8.1.9 for OpenBSD 4.0 – yes I’m behind).
During the initialisation of the new DB, I got the following error: <br /> creating directory /var/postgresql/data/pg_tblspc ... ok<br /> selecting default max_connections ... 10<br /> selecting default shared_buffers ... 50<br /> creating configuration files ... ok<br /> creating template1 database in /var/postgresql/data/base/1 ... FATAL: could not create semaphores: No space left on device<br /> DETAIL: Failed system call was semget(1, 17, 03600).<br /> The PostgreSQL documentation talks about this extensively. However I don’t want to recompile my kernel away from GENERIC. What else can I do?