work-on-828 | 10 years ago | on: Japanese firm to open world’s first robot-run farm
work-on-828's comments
work-on-828 | 10 years ago | on: Ignore the GPS – That Ocean Is Not a Road
work-on-828 | 10 years ago | on: The Commute of the Future? Ford Is Working on It
Only if cities relax height restrictions on residential construction.
work-on-828 | 10 years ago | on: I no longer understand my PhD dissertation
work-on-828 | 10 years ago | on: I no longer understand my PhD dissertation
I am always so disappointed when I hear people express this. Being able to place an effort in a broader context is so helpful in being able to approach the work well. A few teachers in the Literature department in high school had the same attitude and it was incredibly demoralizing and left me kinda directionless in their classes. I wish things like https://youtube.com/watch?v=suf0Jdt2Hpo had existed back then to give me some idea of what useful and interesting literary analysis looked like and could do.
work-on-828 | 10 years ago | on: People in Silicon Valley Don’t Click on Ads
work-on-828 | 10 years ago | on: Trade Officials Sign the TPP but It's Still Up to Lawmakers to Reject It
work-on-828 | 10 years ago | on: BugRex: Fix HTML, CSS and JavaScript Bugs with Live Chat
work-on-828 | 10 years ago | on: People in Silicon Valley Don’t Click on Ads
work-on-828 | 10 years ago | on: What do you mean ‘we need more time’? Project schedule estimation in software
work-on-828 | 10 years ago | on: U.S. Supreme Court Justice Antonin Scalia has died
work-on-828 | 10 years ago | on: U.S. Supreme Court Justice Antonin Scalia has died
work-on-828 | 10 years ago | on: U.S. Supreme Court Justice Antonin Scalia has died
EDIT: It directly counters the argument that Bernie supporters are naive to risk a more leftist candidate who would have a lower chance of being able to appoint justices.
work-on-828 | 10 years ago | on: Wikimedia removes the Diary of Anne Frank due to copyright law
"Creative works" is as reasonable shorthand for "useful arts and sciences" as "privacy" is for "the right of the people to be secure in their persons, houses, papers, and effects"
work-on-828 | 10 years ago | on: Wikimedia removes the Diary of Anne Frank due to copyright law
work-on-828 | 10 years ago | on: BugRex: Fix HTML, CSS and JavaScript Bugs with Live Chat
Aside from flexbox[1], I've felt for years that the mental model of layout I gained from reading explanations of the box model, blocks, and inline-blocks never made sense.
[1] Folks should totally check out http://flexboxfroggy.com/
work-on-828 | 10 years ago | on: What do you mean ‘we need more time’? Project schedule estimation in software
Sometimes my method is instead to look at data output at a certain level of abstraction like system calls (which is usually not helpful except for detecting a network hang or a path config whose directory doesn't exist) or database queries or something. That is usually more helpful if I either already suspect I know where the problem is and need to know what model name or file name to `ag` for.
If (Hephaestus be praised) there is actually an automated test framework in place, I'll start by writing a failing test or copy-pasting an existing test and modifying it to fail, then (if it isn't JavaScript), inserting a debugger into a function the test calls.
All of this tends to be pretty successful.
But I've occasionally found myself on a project where I just have a sense that I don't know what is going on or how pieces fit together and I feel a strong temptation to stop and fix that sense of bewilderment. When I resist this urge is when it feels like I am trying things at random.
work-on-828 | 10 years ago | on: What do you mean ‘we need more time’? Project schedule estimation in software
work-on-828 | 10 years ago | on: What do you mean ‘we need more time’? Project schedule estimation in software
Well the hard part here is determining if lack the tools due to management disorganization or due to my own lack of skill or intelligence. I have already left the organization.
> you _can_ estimate things correctly once you have the context
Maybe my problem comes down to not recognising when I lack a piece of context or being stubborn enough to get it.
work-on-828 | 10 years ago | on: What do you mean ‘we need more time’? Project schedule estimation in software
I certainly prefer to think of debugging as a process of learning about a system rather that trying to try things at random without making a mental map of where I am.