No one is doing something more mind-numbing than me. Waiting for I.T Support to give me Admin rights on my PC to get something/anything working.
Ask HN: What are you working on today?
161–170 of 314 posts
Re: Ask HN: What are you working on today?
#162http://codeascraft.etsy.com/2010/05/20/quantum-of-deployment...
Re: Ask HN: What are you working on today?
#163Today I released my three-day project "I Write Like". You paste some text, it analyzes it and tells you what famous writer you write like. Link: http://iwl.me
Re: Ask HN: What are you working on today?
#164Today I released my three-day project "I Write Like". You paste some text, it analyzes it and tells you what famous writer you write like. Link: http://iwl.me
Re: Ask HN: What are you working on today?
#165Re: Ask HN: What are you working on today?
#166Its pretty easy actually, thanks to the most recent beta of SWFUpload. If you want to implement yourself, make sure to grab the patched .swf or you may have trouble queueing uploads.
SWFUpload 2.5 Beta: http://code.google.com/p/swfupload/downloads/detail?name=SWF...
Patched SWF: http://code.google.com/p/swfupload/downloads/detail?name=swf...
Demo: http://demo.swfupload.org/v250beta3/resizedemo/index.php
Re: Ask HN: What are you working on today?
#167Telling my girlfriend's parents that she's getting married. :)
Re: Ask HN: What are you working on today?
#168Re: Ask HN: What are you working on today?
#169Today I released my three-day project "I Write Like". You paste some text, it analyzes it and tells you what famous writer you write like. Link: http://iwl.me
It is a fun app. It mostly said I write like Issac Assimov except when I gave it a bunch of python code it said I write like Edgar Allen Poe. I guess this is a clear signal that I should drastically improve my Python programming skills.
Re: Ask HN: What are you working on today?
#170I still have lots left to redesign in terms of content pages, in addition to adding a few new sections to the site but I've been tinkering around with some typography recently. I really want to use TypeKit but last night Chad and I found that - possibly related - scrolling on the site is incredibly slow when TypeKit is enabled than when it's not, or when using a Google WebFont instead.
Using lots of CSS3 throughout - combined with Sass it makes it super easy. for example, my box-shadow mixin:
@mixin box-shadow($ho, $vo, $b, $c)
-webkit-box-shadow: $ho $vo $b $c
-moz-box-shadow: $ho $vo $b $c
box-shadow: $ho $vo $b $c
filter: "progid:DXImageTransform.Microsoft.dropshadow( OffX=" $ho, "OffY=" $vo, "Color=" $c ")"
-ms-filter: "progid:DXImageTransform.Microsoft.dropshadow( OffX=" $ho, "OffY=" $vo, "Color=" $c ")"