Tweets for 2011-06-20

Powered by Twitter Tools

Posted in Tweets | Comments Off on Tweets for 2011-06-20

Those guys at IBM know their s…

Those guys at IBM know their stuff! http://t.co/dzERoAt “top five engineering hints you’ll rarely hear” #NetPres

Posted in Tweets | Comments Off on Those guys at IBM know their s…

Weekly Tweets for 2011-06-19

  • Excellent 'running your own business' advice, applicable to many Industries. http://t.co/hhDcf03 Via @Popehat's blog. #
  • Very Fast VPS "Screamer" disks now available on all or #NetPres large storage VPS! http://t.co/DFyMlf2 #
  • "Automatic Login Links", with Rails code segments from @danielmorrison http://t.co/opZ2j8D Useful followup comments too.. #
  • "base your business around an idea. Products are just the manifestation of the idea." http://t.co/WYlZNcs Good thoughts on the SF Bubble too #
  • Listening to This Week in Cloud Computing podcast on my iPhone with @shiftyjelly's Pocketcasts app.. #twicc #
  • Anti Spam test: send an email with the following string of characters:
    XJS*C4JDBQADN1.NSBN3*2IDNEN*GTUBE-STANDARD-ANTI-UBE-TEST-EMAIL*C.34X #

Powered by Twitter Tools

Posted in Tweets | Comments Off on Weekly Tweets for 2011-06-19

Tweets for 2011-06-18

Powered by Twitter Tools

Posted in Tweets | Comments Off on Tweets for 2011-06-18

Sydney POP getting next VPS Hosting platform

I’d previously mentioned that our Sydney POP was “full” and that orders are being provisioned at our new Canberran POP (which has the also mentioned massive & very fast disk arrays!), but I’ve started the work on the install & setup of our next server chassis in Sydney (a lovely SunFire x4140) and I expect it’ll be online soon.

This is a perfect VPS or VDS platform for memory or CPU intensive hosting requirements and over time its disk capacity (initially only 2TB in a redundant RAID array) will be increased too.

So if you have a large memory or CPU processing footprint VPS or VDS requirement, this server will be perfect & very fast for you!

Posted in Network Presence | Tagged , , , | Comments Off on Sydney POP getting next VPS Hosting platform

Excellent ‘running your own bu…

Excellent ‘running your own business’ advice, applicable to many Industries. http://t.co/hhDcf03 Via @Popehat‘s blog.

Posted in Tweets | Comments Off on Excellent ‘running your own bu…

Tweets for 2011-06-16

Powered by Twitter Tools

Posted in Tweets | Comments Off on Tweets for 2011-06-16

Bedding down Backups

We’ve started in the last couple of months distributing the (currently) weekly backups of customer VPS/VDS disk/storage devices to large scale (4TB+) data stores on our network in Sydney and Canberra.

This has given us a far better backups and storage options & capabilties, and now most (nearly all) backups of customer VPS or VDS “disks” are stored on physically separate storage, usually at the same POP within Network Presence, but sometimes distributed between Canberra and Sydney..

Posted in Network Presence | Tagged , | Comments Off on Bedding down Backups

Very Fast VPS “Screamer” disks…

Very Fast VPS “Screamer” disks now available on all or #NetPres large storage VPS! http://t.co/DFyMlf2

Posted in Tweets | Tagged | Comments Off on Very Fast VPS “Screamer” disks…

Using the Unix command ‘sed’ with URLs

I’m an “old school” Unix user, who grew up on sed, awk & Sendmail, but many people still use sed & its syntax from the Unix or Linux command-line daily, so this is a quick note on how to use ‘sed’ when you’re working with URLs.

The ‘trick’ here (if there is one) is that most sed examples are for using it to substitute characters in a text line or file.
eg: changing http://this-site/ to http://that-site/
But the usual delimiter of the text to be changed is the ‘/’ (slash or divide-sign) character, which simply doesn’t work when the text your substituting also contains the ‘/’ (ie: URLs).

Please you don’t have to use the ‘/’ to delimit search & replace text in sed command lines, you can use (just about/within reason) any single character you like (eg: the ‘%’ (percent-sign) character), just as long as you use it consistently in your sed command line.

So if you’re using sed to substitute text in a URL, use the % to delimit the text to search for and the text to replace it with.
Here’s some examples:

Eg 1: We want to change all references of http://google.com to https://google.com in an inputfile, so a sed command line for this may be:

sed 's%http://google.com%https://google.com%g' inputfile > outputfile

Eg 2: You have a shell variable containing a URL, say $thisurl which you want to change to the contents of another variable $thaturl :

sed "s%$thisurl%$thaturl%g"

Note: the use of the double-quotes (“) character to allow shell variable expansion within the sed command.

Don’t forget that “man sed” is your friend & there’s an O’Reilly “sed” book too on it for much “sed goodness”.

Posted in Network Presence | Tagged , | Comments Off on Using the Unix command ‘sed’ with URLs