2012-07-03T05:15:33+00:00 via Gwibber To: Public
2012-06-30T20:46:59+00:00 via Gwibber To: Public
In #cplusplus "else if" is not a special case. You can do "else for", "else try", etc. No need for an inner block and extra indent2012-06-30T18:34:49+00:00 via Gwibber To: Public
Using shell scripts in an Xcode build phase, it helps to pass -e to the shell to ensure that the build fails if a command fails2012-06-24T15:57:08+00:00 via Gwibber To: Public
boost::make_transform_iterator makes iterators more useful. Easily do things like initialize a const string vector from a set of ints #cpp2012-06-10T18:45:24+00:00 via Gwibber To: Public
My spell checker apparently has a wrong spelling of Francisco2012-06-10T18:40:57+00:00 via Gwibber To: Public
Heading to San Fransisco for #WWDC2012-06-10T17:49:57+00:00 via Gwibber To: Public
Just got the @humble bundle V. This one looks awesome. Props to everyone on the list, the top 10 are all $1K or over2012-06-10T04:32:54+00:00 via Gwibber To: Public
SCM server is unreachable, but thanks to #git I can easily push elsewhere. It even works with a simple scp path if the remote has git2012-06-04T06:59:25+00:00 via Gwibber To: Public
Piping to/from the clipboard while in the terminal is handy. Use pbcopy/pbpaste on Mac, xsel --clipboard on Linux2012-04-27T00:13:28+00:00 via Gwibber To: Public
2012-04-26T07:35:47+00:00 via Gwibber To: System76, a(n) person, Public
2012-04-21T19:46:56+00:00 via Gwibber To: Public
#featurerequest explicitly pass default params in #cplusplus createDir("a/b/c", default, true). Named params would be even betterThe Root's Updates, The Root's Updates shared this.
2012-04-14T13:07:30+00:00 via Gwibber To: Public
We use system() wrappers that collect stdout, chain stderr back up, and throw on non-0 exit. Helps with scripts that invoke scripts2012-04-11T06:18:02+00:00 via Gwibber To: Public
UIViewController: What problem is better solved with a second hierarchy that parallels the UIView hierarchy?2012-04-08T21:46:43+00:00 via Gwibber To: Public
Is it a sad state of affairs for IDEs when XCode 4 is a big improvement, yet I'm nearly constantly irritated with it? #cpp2012-04-03T09:11:09+00:00 via Gwibber To: Public
Started playing through Trine 2 for Linux. All around a solid game and better than the original in all aspects so far!2012-03-29T04:09:34+00:00 via Gwibber To: Public
Made an std::enable_shared_from_this clone that works in constructors, but part of me realizes intrusive_ptr is a better option2012-03-25T09:56:39+00:00 via Gwibber To: Public
I miss Google Code Search. Even when a API call appears simple, finding it used in practice may reveal useful techniques or caveats2012-03-24T01:05:58+00:00 via Gwibber To: Public
When automating a task takes more effort than just doing it at a given instance, too often do I take the regrettable path2012-03-22T02:25:48+00:00 via Gwibber To: Public
#cpp11 "=0" seems strange now that we have "=default". What if you want both (ie for a destructor)? "requireoverride" feels more fitting