top | item 2467443

Joel Spolsky is doing an IAmA on reddit

211 points| chrisboesing | 15 years ago |reddit.com

52 comments

order

chrisaycock|15 years ago

Every time you feel like you've made the world better by upvoting a story about injustice, you're just making yourself feel smug. Forget the upvotes... go work on making the world a better place.

He was writing about how stories of social injustice get a ton of upvotes, but nobody actually goes out and does anything to fix the situation. I'm sure there's a lesson here for HN.

pstack|15 years ago

I don't have the time, energy, or resources to address every single social injustice or well intended cause. I might donate cash and possibly even time toward a cause after I have taken care of my job and mortgage and family and other immediate self-survival needs, but there are just too many causes that are worthy.

I can, however, give the slightest nod of support to promote countless causes that I may appreciate, but not be able to do anything about. Or I could smugly tell people how smug they are (believe me, I do that, too!).

Edit: Not that I don't agree there are far too many cause-whores out there who have stickers and shirts and web-buttons for a bunch of trendy causes that don't contribute toward anything in the world and that there aren't a ton of people who feel they directly had a part in the recent middle east uprisings, just because they followed activists in the thick of it, via Twitter.

hunterjrj|15 years ago

Pertinent quote:

"I defend the value of "not caring about 90% of stuff" Care deeply about everything == accomplish nothing." - John Carmack

makmanalp|15 years ago

Aptly named "slacktivism" (I didn't coin that one).

pclark|15 years ago

Can anyone argue that the time spent upvoting a reddit story of injustice provides negative net value to the world?

warrenwilkinson|15 years ago

I notice this in politics. Some people vote for charitable political parties, while they themselves never give to charity.

euroclydon|15 years ago

I really want to learn C, like he says. I get plenty done without knowing it, and I have few doubts I can continue to find decent work without knowing it, but I haven't been able to gain any traction when I try to learn it.

I've got the books sitting front of me, and I've written some trivial visualizations of sorting algorithms using terminal output, but damn if I can find a way to use C as a web developer. If there were just some use case where C would help me get something done, I'd be all over it.

follower|15 years ago

For years as I developed with Python and Javascript I thought "I really should write something in C again and maybe I should learn some C++". But nothing I was doing was performance critical or low level enough that I needed C or C++.

Then, a funny thing happened and I started playing with the Arduino.

And, while they go to great pains to hide it from non-technical people, the whole Arduino stack (ignoring the IDE) is based on C/C++. So then I began writing C again and learning C++. (I always find it slightly odd that I'm using C++ on a microcontroller--admittedly it's very small subset of C++, mostly just used for the object encapsulation/abstraction. (Insert handwavy, "yes, yes, I know it's not strictly C above library level" here.))

So, you might like to take a look at playing with the Arduino if you want to get into C. And if nothing else it's fun playing with tangible things that interact with the "real world".

Homunculiheaded|15 years ago

A great exercise for Web developers is to build a minimal web-server. You can choose your definition of 'minimal' but essentially it should receive some request and return a response (from and to a web browser). As a webdev I found even the very, very minimal web server in Land of Lisp to be really insightful to build. If you wanted to flesh out the actual handling of http verbs better that would be even more awesome. Minimal webservers should be the minimal lisps of web developers

orijing|15 years ago

You could try using C to solve some problems on Project Euler, or puzzles like Facebook Puzzles, or even past problems from Google Code Jams.

xentronium|15 years ago

> I've got the books sitting front of me, and I've written some trivial visualizations of sorting algorithms using terminal output, but damn if I can find a way to use C as a web developer

Write a C-extension for infrastructure-level ruby gem if you're a rubyist, or fix a bug / add a feature in your favorite scripting language.

jrockway|15 years ago

So, if you're a web developer, you probably use Perl, Python, Ruby, or some similar language. Guess what, these are written in C(+). When you need to add or fix a feature, guess what language you use?

(+) Yes, yes, programming languages are not written in anything. Their implementations are. I know you know what I mean.

lactoferment|15 years ago

Write a LISP interpreter? :-)

This was the final project in the C class I took in college. It's not a bad idea.

volkadav|15 years ago

Try writing a custom apache module? (Or nginx, or similar...) You can do some pretty fun things once you get into that layer of the web transaction life cycle (e.g. modifying behavior of things outside of the usual request/response part of the http transaction that you'd usually work with).

2mur|15 years ago

I'm learning it now too. My primary use case, at least initially, is going to try to extend python with C. Not really because I have a need, but mostly because I can't really imagine needing C for any other task than speeding up some of my poorly optimized python at some point down the road.

elai|15 years ago

Make an iPhone app to connect to your web apps? That way you'll have a need to use it, even if your mostly typing objective-c.

rubentopo|15 years ago

Maybe doing some time-consuming jobs in C?

leon_|15 years ago

> but damn if I can find a way to use C as a web developer

Write a web app in C? ;)

But yeah, in most cases C won't improve your productivity as a web developer. But it will certainly make you understand the computer better.

So maybe start a recreational project in C? A command line utility, a demon, a music streaming server - something not really web-dev related.

ceejayoz|15 years ago

A dedicated ama.stackexchange.com could be an interesting experiment.

gecko|15 years ago

I'm not really convinced that StackExchange is the best system for that. You'd really want one StackExchange per person; otherwise, the one-answer-per-question nature of StackExchange, with voting for "correct" results, which result in bizarre gaming behavior and impossible-to-follow discussions.

scorpion032|15 years ago

The native use of reddit is to be able to do an IAmA. Why would you even want anything else for that?

Apocryphon|15 years ago

He mentions how functional programming is valuable, something that many graduates are lacking in. Does JavaScript count as a functional language?

jrockway|15 years ago

Do Javascript programmers program in terms of function applications, or do they program in terms of sequences of state-changing operations?

If they do the first, then Javascript is a functional language. But without even a function composition or application operator (or function), it's obvious tht Javascript is not intended to be functional. It's an imperative/OO language with lambdas, like Common Lisp.

olavk|15 years ago

There is no canonical definition of "functional language", so I guess it depends on your definition. JavaScript is an OO-language, but it is possible to program in a functional style, just as with many other OO languages.

But typical JavaScript development will not teach you the functional programming paradigm, if that is what you ask.

runevault|15 years ago

If you really want to learn functional programming, you are better off trying something that at least makes you go out of your way to code in a non-functional style. Anywhere from all the way off the deep end with Haskell to Clojure and F# being good choices from personal experience.