andredieb's comments

andredieb | 13 years ago | on: Rate My Startup: Snip

Quick look feeling: too much text, too few images (tl;dr). Maybe adding a few more graphics could help (also lowering your bounce rate).

andredieb | 13 years ago | on: A circuit and PCB editor in the browser

Congrats on the project! It's really interesting to see electrical engineering tools using web and modern concepts instead of the usual the nasty-windows-only-IDE packaging.

andredieb | 14 years ago | on: Peter Norvig: Tweaking Bayes' Theorem

This is great to hear! I used a similar construction on my final project (electrical engineering) but left the appropriate mathematical proof (if any) into the Future Works section. The classification rule I found to be better was:

  c = argmax_{c \in C} (log(P(c)) + Sum_i (N_{d,d_i} \times log(P(d_i|c)))
where

  c - best class
  C - set of classes
  P(c) - prior prob. of class c
  P(d_i|c) - conditional of the word d_i on the class c and
  N_{d,d_i} - frequency of word d_i in document d
Excuse me for the possibly weird notation.

Virtually this expression means it places a frequency power upon the word probability, which is basically assuming (naively, I think) "words that are more likely to occur should be empowered".

andredieb | 14 years ago | on: Subjot: A Topic-Based Twitter, Without The Noise

Thank you for your reply! ;)

It seems I don't have any twitter friends on Subjot, yet..

Congratulations on Subjot! I really like the idea. Are there plans for some kind of 'reputation' for people in specific subjects they talk about?

andredieb | 14 years ago | on: Show HN: My weekend project Tigger

I'm not sure but I think he meant creating an alias, such as git task. For instance, your commands could be:

git task list

git task new "Fix homepage styling"

That can be achieved if you put something like this on .gitconfig:

[alias]

task = !tigger

page 1