4,665 reputation
12042
bio website
location
age
visits member for 3 years, 8 months
seen 2 days ago
stats profile views 417

for(i=1;i<101;++i)console.log((i%3?'':'Fizz')+(i%5?'':'Buzz')||i+'\n')


Dec
17
comment Which library or tool does Twitter use for generating formatting for its emails?
@SimonAndréForsberg sorry, having trouble parsing whether your comment is meant to be humorous or serious. Is my question unclear? It would take a lot of work to hand code emails that complex, easier and faster to write a library or tool to do it. Then again, twitter isn't that geeky of a company, I might be expecting too much
Dec
17
asked Which library or tool does Twitter use for generating formatting for its emails?
Dec
12
comment URL to open iphone app if installed, or open itunes if not installed?
Do those work inside emails, too?
Dec
12
asked URL to open iphone app if installed, or open itunes if not installed?
Dec
12
answered Return from a function when making API call (javascript)
Dec
10
revised Does the Play framework come with an included email templating library or tool?
added 32 characters in body
Dec
10
asked Does the Play framework come with an included email templating library or tool?
Nov
29
awarded  Nice Question
Nov
20
comment How do I go about safely taking a screenshot of a website that I know is infected with malware?
That's a good idea, however, the site has not been archived, and I doubt that archiving iterations are fast enough to be reliably current. Also, google doesn't have a cached version of it.
Nov
17
asked How do I go about safely taking a screenshot of a website that I know is infected with malware?
Nov
9
accepted What is the syntax for passing an array into a view, in the Play framework?
Nov
8
comment What is the syntax for passing an array into a view, in the Play framework?
thank you - that's it
Nov
8
asked What is the syntax for passing an array into a view, in the Play framework?
Nov
7
comment Facebook social graph API call for authenticated user
What exactly are you doing to grab this data?
Nov
7
awarded  Notable Question
Nov
5
comment Is there a way to continue a partially finished MinGW build?
I think you're out of luck then. Make type systems are purposefully built to avoid the kind of behaviour you're looking for. They almost always (and in your case specifically) expect the developer that is putting out a tool to explicitly, and carefully, go over each and every included library and decide if it's crucial, or optional (and manually modify the build as appropriate).
Nov
5
comment Is there a way to continue a partially finished MinGW build?
That said, the build process tends to be an all or nothing process - there's no way to do a "partial install". What you probably want to do is to make the library that's missing optional, or remove it altogether from the list of requirements for your build.
Nov
5
comment Is there a way to continue a partially finished MinGW build?
I'm not entirely sure what you're trying to do. Are you using a Windows GUI version of CMake to generate the make file, then an included version of make in MinGW to run the actual build?
Nov
5
answered Is there a way to continue a partially finished MinGW build?
Nov
1
asked How do I identify where a javascript file is currently being loaded from?