Rockdtben | 10 years ago | on: Dave Chappelle Uses Technology to Keep People Off Their Phones at His Shows
Rockdtben's comments
Rockdtben | 10 years ago | on: Being Poor
"Off-Topic: Most stories about politics, or crime, or sports, unless they're evidence of some interesting new phenomenon. Videos of pratfalls or disasters, or cute animal pictures. If they'd cover it on TV news, it's probably off-topic"
Does anyone feel that this might be stretching it?
Rockdtben | 10 years ago | on: Ask HN: How many hours do you work?
Rockdtben | 10 years ago | on: Ask HN: How many hours do you work?
2 hours a day.
Rockdtben | 10 years ago | on: WordSafety – Check a name for unwanted meanings in foreign languages
Rockdtben | 10 years ago | on: Windows 10 marks the end of 'pay once, use forever' software
Rockdtben | 10 years ago | on: The 80,000-Volt Handcuffs That Let Cops Shock Prisoners
In the John Kerry "Don't tase me bro" incident. The officer thought he needed to use deadly force in that situation. He obviously didn't, but the point is that taser use in that situation would imply that he would have been okay using a firearm in that situation. Which is bs.
Rockdtben | 10 years ago | on: Show HN: MapChat – A simple location based chat in 300 lines of code
Rockdtben | 10 years ago | on: Oculus Rift
Rockdtben | 11 years ago | on: “You're not allowed science any more”
Rockdtben | 11 years ago | on: 25 countries photoshop a journalist to make her beautiful
Makeup cannot make anyone beautiful. Photoshop cannot make anyone beautiful.
Fake Beauty is a commodity.
Rockdtben | 12 years ago | on: Can anyone tell me what these services do?
Rockdtben | 12 years ago | on: Groovy, the Python of Java
Rockdtben | 12 years ago | on: Members of Congress Go Silent Over Prior False Testimony On Surveillance
"You can write an email to yourself."
AKA
They are going to read your personal email anyways...
Rockdtben | 13 years ago | on: JavaScript developer, can you reverse a linked list?
http://jsbin.com/ugojoq/267/edit
LinkedList.prototype.reverse = function () {
var start = this.head;
var prev = this.head;
var curr = prev.next;
prev.next = null;
while(curr !== null) {
var next = curr.next;
curr.next = prev;
prev = curr;
curr = next;
}
this.head = prev;
};
She was a beacon of distraction and a lot of audience members were missing key parts of the show and it led to much distress.
I'd rather people be responsible and do this act on their own instead of having to use a technology like this. I guess I'm of the idea that if we don't give the opportunity for people to be responsible then they will not develop the ability.