fizzfur's comments

fizzfur | 15 years ago | on: Ask HN: What does "the Cloud" mean to you?

If my mum starting using The Cloud in sentences she would mean "The Internet", she doesn't have the concept of a server, and doesn't really need to, she just knows it's "Out there somewhere".

I think it would be unlikely for one of my peers (mostly developers) to mention "The Cloud" unless they were trying to be intensionally buzzwordy for comedy effect. They would be more specific.

I/We would however say:

  a cloud to mean clusters machines (probably split into VPSs)
  xxxx's cloud to mean xxxx's server infrastructure/platform
I like The Cloud as a common term to mean "Stored/Processed out there in the internet somewhere", not as a well defined technical term.

fizzfur | 15 years ago | on: Need a pronounceable random n-character string?

I can probably get my brain to generate one faster than visiting a web page :) .... but here's something similar in python:

    import string
    import random
    
    def random_pronoucable(minpairs=8,maxpairs=10):
    	consonants='bcdfghjklmnpqrstvwxyz'
    	vowels='aeiou'
    	password=''
    	for x in range(1,random.randint(int(minpairs),int(maxpairs))):
    		password += consonants[random.randint(1,len(consonants)-1)] + vowels[random.randint(1,len(vowels)-1)]
    	return password

fizzfur | 15 years ago | on: Please check out our side project, OhLife (from MeetingMix, YC S08)

great now I have des'ray in my head.

interesting idea... I'll give it a go for a while until someone realises I email myself everyday. Does it get angry if I don't reply?

mini feedback on home page: The 'see example' link needs to scroll the page down for me, I didn't spot the page grow and was waiting for it to load.

fizzfur | 15 years ago | on: Fake - Mac OS X Web Browser Automation and Webapp Testing Made Simple.

I hope this continues to develop.

At the moment it seems there is a need to know the ids/classes of your entire page by heart - or resort to looking at your own source, it would make it _much_ less painful if when you click in a box that expects an element ID that your cursor could then be used to click an element, to generate the xpath (like webinspector/firebug).

fizzfur | 15 years ago | on: Ask HN: Is there anything Google App Engine could improve?

no SSL for our own domains is the one killer for me at the moment.... be nice to know a bit more about the timescales of the items on the roadmap, maybe which releases things are being aimed for just to get more of an idea of priorities.

fizzfur | 15 years ago | on: Microsoft – InstaLoad Battery Installation Technology

cool, it doesn't care........... wait... on second thought the only time I've hit the problem this solves is when a device has poorly labeled the contacts.

Pretty sure this is more expensive/waste of components versus a big clear [+] icon on one side.

Guess it could help devices for the blind?

Or devices where you have to _throw_ the batteries in from a distance :)

fizzfur | 15 years ago | on: How I "hacked" Dustin Curtis's Posterous.

Yeah, as soon as I saw this post I thought of SPF and DomainKeys.

Seems simple:

If your mail/DNS is setup to support either of these, then cool you don't need to confirm.

Else, you must "ok" each post.

DONE

fizzfur | 15 years ago | on: The Page Load Paradox

I'll happily wait 20 seconds for gmail to load, since I'm not going to close it again until I reboot.

If I'm revisiting a site I know, I'll cut it some slack, and be pretty patient.

But.. if I'm picking off results from a search, the sites have mear moments before I hit that back button

fizzfur | 16 years ago | on: Review my startup: Mixlr

looks interesting, I'm not sure the signup/intro page quite put across _why_ I should use the service enough, I only 'got it' a bit later. But as a set hosting service I would probably use it anyway.

few thoughts (some already covered):

  * buttons look disabled, I was waiting for them to un-ghost
  * the "skip" links should be more prominent during signup since at the time it slowed me down.
  * signup/design was generally very friendly
  * please don't alert me to sign-out, I know what I'm doing, and it's not that bad if I made the mistake
PS: enjoy my set http://mixlr.com/chrisfarms/euromuxer
page 1