Hacker Newsnew | past | comments | ask | show | jobs | submit | rasmus4200's commentslogin

This is the biggest challenge. What I find works is separating your orchestrations from your data processing.

For example, instead of creating one class that does the network call, and processes the JSON response, break these out.

One class does the network call (keep it extremely thin). Dependency inject stuff in if you want. But view this purely as an orchestration.

if (connectionValid) json = makeNetworkCall anotherObject.processJson(json) <- test separately end

Then, in the other plain old data process class, do you heavy off-by-one edge case testing there.

If the first case, the orchestration, I can write tests like "One make the network call if the connection is valid". But that's all that test would do.

I am at the point now where I actually don't even test that. I assume that is going to work, because it is so simple. That and I generally hate mocking. Way too much coupling. Way too hard to refactor.

Where I do test heavy is on the plain old object side, that has no outside ports or connectors. These are just plain old objects.

I agree with some other comments I have ready here. Mocking is a bitch and I generally don't like it. But it's there if I needed it, so I do use it occasionally.

But it has so many downsides I try not to. Instead I separate the orchestrations from the processing. Unit test the processing (in an integration test sort of way), and try to stick to testing the public APIs of my class, so I am free to change the internals without things breaking.

My 2c. Hope that helps.


I loved this game. Great read thank you.


The War of Art http://www.stevenpressfield.com/the-war-of-art/

Break through the blocks and win your inner creative battles.

Many books mentioned here are good, this is the only I haven't seen referenced. But this one book really helped me deal with resistance and get stuff done. Seth Godin is a big fan and references it a lot in his material.

Steven Pressfield also wrote 'The Legend of Bagger Vance' and Gates of Fire (Spartan 300 kind of book but way deeper).


I loved this video. Gatekeeper blew me away.

Summarized some of the highlights here if you don't have time to watch:

http://agilewarrior.wordpress.com/2011/05/28/how-facebook-pu...


I thought he said perforce and git, not subversion and git.


Then corrected himself to subversion and git.


Ahh, thanks. I wasn't listening that closely.


As a Canadian developer I agree 100% and this very thought is what keeps me up at night.

We are soft. Our duvet's are too fluffy. And we can't rely on our natural resources forever.


It's not all bad: The California proposition to legalize marijuana was defeated in yesterday's election, which should help maintain demand for BC Gold dope.


Not too long ago I heard stories from my friends that China started to buy natural resources based company around the world. Some target: Mining companies in Australia, Wood/Lumbers companies in BC. etc

However, I couldn't find the stories.


First off - good for you for trying something. Thanks awesome. Takes a lot of guts and hard work to put something out there so hats off to you for that.

As far as feedback, I think the Take a Tour screen is begging for a picture or something to show me at a glance how it works.

I would try to add more pictures to the site as it is currently all text (at least what I saw). Even it is just a piggy bank or something - show me how I am going to save money. Or make me feel the pain.

But I think a picture would really spruce things up.

Good job though. And good luck!


One trick I used at university was if there was a course I wanted to sit in on, I would just show up, sit in the back and listen.

Most classes are so big you can slip in there under the radar.

Dont wait or let some professor tell you can't take a course.

Get the reading material, do the assignments, and learn what you want.


You can also sometimes do follow up courses.

My degree was in Maths/Comp-Sci, and as a result, I didn't have some of the courses I wanted open to me on CS due to clashes with compulsory Maths modules for some lectures. Me and a friend ended up sitting at the back of the 50% we could attend (on Networking), and doing a bit of work. After an interview with the prof we were allowed onto the subsequent modules that required the course, despite having never sat the exam...in his words, "It's your degree if you fail it.."


One problem with my long replies is that other people sneak good advice into the thread while I am still typing. ;)

Study typing! Practice your high-speed essay-writing!


Don't drive. Ride a bike. Lot's of rest. Make a todo list start of each day. Ignore everything else.


I make my days to-do list just before bed at night. Since starting this I have had much more success utilizing to-do lists.


I really like The War of Art

http://www.amazon.com/War-Art-Through-Creative-Battles/dp/04...

Talks about resistance, and how it stops most of us from doing what we were meant to do.

Highly recommend.


I second the war of art.. excellent book.

The classic book on creativity is "A Whack on the Side of the Head" by Roger Von Oech (http://www.amazon.com/Whack-Side-Head-More-Creative/dp/04464...). It is the book to read on creativity, along with his other book "A Kick in the Seat of the Pants"

His card decks (Creative Whack Pack, Innovative Whack Pack and Ancient Whacks of Heraclitus) are also very useful for breaking bad habits, generating ideas, divergent thinking etc. somewhat like Brian Eno's Oblique Strategies cards,which I recommend (http://www.rtqe.net/ObliqueStrategies/)

For more practical examples, exercises and inspiration, I like Creative Sparks (http://www.amazon.com/Creative-Sparks-Concepts-Exercises-Ing...) and Caffeine for the Creative Mind (http://www.amazon.com/Caffeine-Creative-Mind-Exercises-Brain...)

EDIT: I'd also recommend Organizing from the Right Side of the Brain "http://www.amazon.com/Organizing-Right-Side-Brain-Organized/... for tips on how creative types organize their workspaces. Handy if you're right brained, a pack rat, like "messy" workspaces or dislike the anal-retentiveness of Getting Things Done.


quality does not come solely from development

quality comes from 1000s of little things you and your team do, when creating software.

some times that involves development. testing plays a role (albeit a very small one)

but quality, quality assurance, whatever you want to call it , is much much more than just code and test


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: