| bio | website | blowingthroughlines.com |
|---|---|---|
| location | Somerville, MA | |
| age | 33 | |
| visits | member for | 3 years, 9 months |
| seen | yesterday | |
| stats | profile views | 38 |
I'm a HTML/CSS/JS, Flex/Flash and Cocoa developer, looking for a new job.
|
May 14 |
comment |
How to colour the list-style-type auto-generated numbers? Also instead of <a name="footn...> you should use <li id='footnote1'> less markup and <a name> isn't valid HTML5 code at the moment either. |
|
Mar 6 |
comment |
How do I get the external IP of my server using PHP? whatismypi.org has changed it's response to an image (no text on the page to use anymore), so it's not useful for this hack anymore. I hope nobody really was relying on it... |
|
Oct 12 |
comment |
What's needed to use the Apple Accessory Protocol? No need to jailbreak for simple music player control. github.com/blalor/arduinaap has a library for simple control which should work with all iDevices. |
|
Jun 8 |
awarded | Caucus |
|
Jun 8 |
awarded | Caucus |
|
Mar 27 |
awarded | Excavator |
|
Mar 27 |
revised |
Rails 3 Encoding::CompatibilityError Added sample code from the link (which may have rotted). |
|
Mar 27 |
suggested | suggested edit on Rails 3 Encoding::CompatibilityError |
|
Mar 13 |
comment |
Rails 3 Encoding::CompatibilityError Code was on there for me, String.force_encoding('UTF-8') is the best workaround I've seen. Wasn't a problem until upgrading a server from 1.8.7 to 1.9.2 |
|
Feb 16 |
comment |
as3: why cursor won't hide? It doesn't work for me in Flash Player.app (11.1.x), but does work in Flash Player (10.2.153.1), I'm running Lion as well and targeting flashplayer 10.1 in my builds. |
|
Feb 14 |
comment |
How to know if an image has been uploaded or not? - Paperclip It's now foo.image.exists? |
|
Feb 1 |
comment |
How do I get the current URL in Ruby on Rails?"http://#{request.host+request.fullpath}" will work or otherwise, (if the port is important) "http://#{request.host}:#{request.port+request.fullpath}" |
|
Feb 1 |
comment |
How do I get the current URL in Ruby on Rails? See notes on answer stackoverflow.com/a/2165727/166279, fullpath doesn't include the domain. |
|
Jan 19 |
comment |
Using Paperclip + heroku + s3 … local uploads broken when pushed live Using /public/system is likely the problem, I just use appname/:attachment/:style/:id.:extension on my s3 heroku app |
|
Nov 17 |
comment |
Which fork of jQuery-compatible WMD is the fork to pay attention to? I'm using the ChiperSoft version now, and it seems to be pretty solid. I submitted a pull request for making a small change to display the correct modifier key on Mac. Haven't heard back yet... github.com/Nilloc/wmd |
|
Oct 8 |
awarded | Yearling |
|
Sep 19 |
accepted | Can Coderay re-indent C (or C-like) code? |
|
Aug 27 |
comment |
jQuery attaching a form dynamically @James, Stackoverflow really highlights the asynchronicity of the web sometimes. Especially when we're all in a hurry to answer ;) |
|
Aug 26 |
comment |
jQuery attaching a form dynamically @James, I made my comment before you changed it, you can see in the history that it was $(this).parent().id before your edit, which wouldn't have worked in Chrome/Safari. |
|
Aug 26 |
comment |
jQuery attaching a form dynamically Should be id= $(this).parent().attr('id') |