Re: [rails-oceania] Crazy cases for Mac directories

2011-01-17 Thread Clifford Heath
On 17/01/2011, at 6:50 PM, Chris Berkhout wrote: I think you're right about different implementations giving different results. There was always one true name, and false references that aliased it. But since that renaming brought everything into line, there must have been and uppercase

Re: [rails-oceania] Crazy cases for Mac directories

2011-01-17 Thread Chris Berkhout
On Mon, Jan 17, 2011 at 8:22 PM, Clifford Heath clifford.he...@gmail.com wrote: The single true name was the actual filesystem name (lower case), which you repaired. The upper-case version was stored in the password file as your home directory, which gets propagated into ENV['HOME'] when you

[rails-oceania] Re: Senior Technical Project Leader

2011-01-17 Thread Ben
I don't normally respond to these - but wow! Ms project SQL - wow. -- You received this message because you are subscribed to the Google Groups Ruby or Rails Oceania group. To post to this group, send email to rails-oceania@googlegroups.com. To unsubscribe from this group, send email to

Re: [rails-oceania] Crazy cases for Mac directories

2011-01-17 Thread Clifford Heath
On 17/01/2011, at 9:03 PM, Chris Berkhout wrote: I was also getting this: Dir.entries(/) = [..., Users, ...] And finder and bash only showed uppercase. Oooh, right! Funky. So the HFS filesystem must have at least two names... There's an open HFS implementation, you could probably find out from

[rails-oceania] iPhone browser simulators

2011-01-17 Thread Adam
I was wondering what browser simulators people are using for targeting web applications at the iphone (3 4) as well as Android. I have been trying out iphoney to cover at least iphones but it seems kind of buggy and only simulates an iphone 3. Are there better options out there? Cheers, Adam

Re: [rails-oceania] iPhone browser simulators

2011-01-17 Thread Bodaniel Jeanes
Yes absolutely. Download the iPhone SDK and install it. It comes with the iOS Simulator an has a safari on it. You can emulate all the iOS devices Sent from my iPhone On 18/01/2011, at 8:08 AM, Adam adam.b...@gmail.com wrote: I was wondering what browser simulators people are using for

Re: [rails-oceania] iPhone browser simulators

2011-01-17 Thread Nahum Wild
I have XCode installed and just use Apple's simulator, been a while since I used it though as I now have all their devices to directly test with. --nahum On Tue, Jan 18, 2011 at 11:04, Adam adam.b...@gmail.com wrote: I was wondering what browser simulators people are using for targeting web

Re: [rails-oceania] iPhone browser simulators

2011-01-17 Thread Julio Cesar Ody
The emulator that comes with XCode is good, though it performs a lot faster than a real device would, so mind that. Just fire up XCode, create a new iPhone OS project, Build - Build and Run, hit the home button, open Safari, and voila. There's gotta be an easier way to just open the emulator, but

Re: [rails-oceania] iPhone browser simulators

2011-01-17 Thread Bodaniel Jeanes
Just use spotlight to open the simulator Sent from my iPhone On 18/01/2011, at 8:15 AM, Julio Cesar Ody julio...@gmail.com wrote: The emulator that comes with XCode is good, though it performs a lot faster than a real device would, so mind that. Just fire up XCode, create a new iPhone OS

Re: [rails-oceania] iPhone browser simulators

2011-01-17 Thread Julio Cesar Ody
ORLY. My fault for using Quicksilver and basically never looking into configuring it properly other than themes. By the way Alfred's ugly. That's all. On Tue, Jan 18, 2011 at 9:21 AM, Bodaniel Jeanes m...@bjeanes.com wrote: Just use spotlight to open the simulator Sent from my iPhone On

[rails-oceania] [JOB] Agile Automated Test Developer (Web) - Selenium with Java or Ruby API (12 months)

2011-01-17 Thread Andrew Walker
(please respond directly to me, not the group) Company : News Digital Media On-site at: Liverpool Street, Sydney Rate: Between 400 and 700, depending on how much (good) experience you bring Duration: 6 months contract, expect to extend to 12 months Seniority: Will take Junior or Senior, prefer

[rails-oceania] purge an object from squid cache?

2011-01-17 Thread Fabio Vilela
Hey Guys, My first message to the group: I have a few instances of the same rails app providing images and a squid proxy set up, caching the images. I would like to purge some object through the rails app, is that possible? for example the url /media/photos/employee/123/main.jpg would have to

Re: [rails-oceania] purge an object from squid cache?

2011-01-17 Thread Nathan de Vries
On 18/01/2011, at 3:58 PM, Fabio Vilela wrote: I would like to purge some object through the rails app, is that possible? You need to configure Squid with an ACL to accept PURGE requests: acl purge method PURGE acl src_local src 127.0.0.0/8 http_access allow purge src_local