HN user

beepp

422 karma
Posts41
Comments14
View on HN
techiavellian.com 6y ago

The Number One Priority: Intellectual Denial of Service Attacks, Part 3

beepp
2pts0
techiavellian.com 7y ago

Intellectual Denial of Service Attacks, Part 2

beepp
72pts26
techiavellian.com 7y ago

Intellectual Denial of Service Attacks

beepp
197pts101
techiavellian.com 7y ago

What Goes Up

beepp
1pts0
medium.com 9y ago

It's not as bad, nor as good, as you think

beepp
1pts2
gist.github.com 10y ago

20 one-liners to make your life better

beepp
1pts0
medium.com 10y ago

I found shady SuperPAC connections to Hillary Clinton in just 5 minutes

beepp
3pts0
github.com 10y ago

Tagatab – Control your Chrome tabs

beepp
4pts0
medium.com 10y ago

Why Austin?

beepp
1pts0
inventropy.us 10y ago

Analyzing 425 days of “hot” HN articles using only standard shell commands

beepp
13pts2
twitter.com 10y ago

Show HN: dot-man (•‿•) - manage your dotfiles with ease!

beepp
3pts0
inventropy.us 10y ago

Constructing an XSS vector, using no letters

beepp
1pts0
github.com 10y ago

Show HN: dot-man

beepp
2pts0
github.com 10y ago

Show HN: Manage your dotfiles in Git with dotfiles-manager

beepp
2pts0
inventropy.us 10y ago

An Error of Entropy

beepp
2pts0
gist.github.com 11y ago

Tips and Tricks for Manipulating Data with Bash

beepp
2pts0
inventropy.us 11y ago

Show HN: DefectDojo

beepp
1pts0
inventropy.us 11y ago

Using GNTP for remote notifications? I wouldn't

beepp
3pts0
ello.co 11y ago

Ello vs. tsu

beepp
1pts0
www.theguardian.com 11y ago

Steve Jobs' Last Words? Oh, Wow

beepp
2pts0
inventropy.us 11y ago

Are we ready for the next 3 scientific revolutions?

beepp
2pts0
inventropy.us 11y ago

Careful, YouTube might be watching

beepp
1pts0
inventropy.us 12y ago

25 Node.js Nuggets

beepp
3pts0
inventropy.us 12y ago

7 Small Reasons to Love Vim

beepp
7pts0
inventropy.us 12y ago

You wouldn't have a maximum account balance, would you?

beepp
2pts1
inventropy.us 12y ago

Is the FCC purposely making their comments section unavailable?

beepp
2pts0
inventropy.us 12y ago

50 Linux Resources for Developers

beepp
13pts0
inventropy.us 12y ago

Take 30 minutes

beepp
1pts0
inventropy.us 12y ago

Why does direct democracy inevitably suck?

beepp
1pts0
inventropy.us 12y ago

Killing patents, part 2

beepp
6pts0

I do not consider myself educated on the matter of vaccines and am ill-equipped to defend any position on either side :) To your point, proving a negative such as "vaccines definitively do NOT cause autism, ever" with 100% certainty is nontrivial. I simply haven't seen any compelling evidence that they are causally linked to autism, which is usually the claim.

At this point, there is no _credible_ evidence I'm aware of that suggests vaccines cause autism. Hence, a doctor dismissing those claims is reasonable and expected. There is no claim here that non-experts necessarily have the same credibility as experts.

My statement was more in reference to e.g. the use by some experts of esoteric and potentially inaccurate models to silence critique by overwhelming non-experts with jargon. "I spent years developing this model, what do you know?"

If you re-read the quote you pasted, you'll see that I accommodate your point of view (I think) - they human in your scenario BELIEVES that they do no wrong. I am trying to at least ask the question, "are you sure about that?"

With almost anything else, what you really need isn't the idea, but the factory to make the idea. You could tell me everything there is to know about making a Ferrari, but the likelihood that I could build a factory that could replicate Ferrari's is relatively small.

Now look at software. The "factory" can be obtained for free by going to a public library. As such, I'd argue that 1) the broadness of many of the patents that already exist is ridiculous, and was earned by nothing more than a rudimentary understanding of programming and 2) the relative likelihood that you're going to have a TRULY novel idea is lower due to the size of the population and amount of collaboration inherent in programming.

On top of all that, you don't see "first, invent a programming language that allows me to do all this neat stuff." They're already building on so much groundwork that they don't understand, it's sort of belittling the achievements of the people who truly created NEW things in computer science, to say that rounded corners on a texting app or whatever deserve a monopoly that could crush other applications.

I have a few thoughts:

- Your patent application is much more readable than most. That's a good start.

- hosay123 has already said basically what I would've - you may have found something that no one else has done 100% before, but it is clearly very similar to HTML in email with a few minor differences. Here are a few examples that I think would bring both the idea's novelty and non-obviousness into question: http://www.boutell.com/wusage/8.0/eml.html

http://petewarden.com/2008/10/15/an-xml-format-for-email/

https://www.google.com/patents/US7970842?dq=electronic+mail+...

My question to you is: what will happen if you are granted this patent? You've been working on this for 4 years at least, judging by the 2009 date on the application, so my main argument would simply be that you could've probably found a more interesting use for your time. It pains me to say this, since I can tell you've spent a lot of time on your application, but honestly I would feel worse if I didn't say anything.

It costs the companies quite a bit, and a reasonably knowledgable person about 10-15 minutes to find prior art that, once discovered by someone at the USPTO, can help to fast-track a denial. In any case, you're at least helping to make sure that none of the ridiculous claims get through (these are common in patents, just to see if they can get away with it since they're already spending the money)

Show HN: Speedsums 12 years ago

I went all the way, simulated keydowns and all. (Thanks, http://stackoverflow.com/questions/4158847/is-there-a-way-to...)

var element = document.getElementById('answer');var y = document.getElementById('question');var dispatchKeyboardEvent = function(target, initKeyboradEvent_args) {var e = document.createEvent("KeyboardEvents");e.initKeyboardEvent.apply(e, Array.prototype.slice.call(arguments, 1));target.dispatchEvent(e);};var dispatchTextEvent = function(target, initTextEvent_args) {var e = document.createEvent("TextEvent");e.initTextEvent.apply(e, Array.prototype.slice.call(arguments, 1));target.dispatchEvent(e);};var dispatchSimpleEvent = function(target, type, canBubble, cancelable) {var e = document.createEvent("Event");e.initEvent.apply(e, Array.prototype.slice.call(arguments, 1));target.dispatchEvent(e);};var send_key = function (key) {var canceled = !dispatchKeyboardEvent(element,'keydown', true, true, null, key, 0, '');dispatchKeyboardEvent(element, 'keypress', true, true, null, key, 0, '');if (!canceled) {if (dispatchTextEvent(element, 'textInput', true, true, null, key, 0)) {element.value += key;dispatchSimpleEvent(element, 'input', false, false);dispatchSimpleEvent(element, 'change', false, false);}}dispatchKeyboardEvent(element, 'keyup', true, true, null, key, 0, '');}; y.addEventListener('DOMNodeInserted', function(e){var z = eval(y.innerHTML.replace(/[=\s]/g,'').replace(/x/ig, '*').replace(/÷/g, '/')).toString(); for(var i in z){send_key(z[i]); element.value+=z[i];}});