Posts49
Comments19
View on HN
www.anthropic.com 1mo ago

Claude Corps

pelf
2pts0
www.clearerthinking.org 3mo ago

Can astrologers gain insights about people from astrological charts?

pelf
3pts2
www.bbc.co.uk 10y ago

Do you have the brains for cybersecurity?

pelf
77pts20
tools.ietf.org 10y ago

A Standard for the Transmission of IP Datagrams on Avian Carriers

pelf
1pts0
www.fastcodesign.com 11y ago

You guys realize the apple watch is going to flop, right?

pelf
3pts7
yearinideas.ted.com 11y ago

TED: Year in ideas

pelf
3pts0
destinationeurope.info 11y ago

Diane Goes for You

pelf
3pts0
waitbutwhy.com 11y ago

Graham's number

pelf
1pts0
meatfighter.com 11y ago

Tetris Printer Algorithm

pelf
3pts0
ssbkyh.com 12y ago

CAPTCHA Tweet: tweets the evil machines can't read

pelf
1pts0
www.theverge.com 12y ago

J. Gordon-Levitt's collaborative show 'HitRecord on TV' debuts online

pelf
2pts0
www.quora.com 12y ago

How does a computer chip work?

pelf
2pts0
maps.google.com 12y ago

Google's Location History

pelf
1pts0
kottke.org 12y ago

Google's new quantum computer

pelf
2pts0
cubeupload.com 12y ago

Largest ANSI scroller ever: 3,266 lines by 22 artists

pelf
3pts0
vimeo.com 12y ago

Mike Monteiro - How Designers Destroyed the World

pelf
4pts0
what-if.xkcd.com 12y ago

Twitter Timeline Height

pelf
4pts0
www.raptitude.com 12y ago

How to walk across a parking lot

pelf
6pts2
gigaom.com 12y ago

Day traders, angels and VCs: The Internet changes everything, including money

pelf
2pts0
medium.com 12y ago

CrossFit’s Dirty Little Secret

pelf
2pts0
blog.danielwellman.com 13y ago

Real-life Tron on an Apple II GS

pelf
139pts18
allyourfeed.ludios.org 13y ago

Help archive team save Google Reader archives

pelf
3pts0
dashboard.io 13y ago

Ways to Keep Your Accelerator From Failing

pelf
3pts0
bikeshed.com 13y ago

Why Should I Care What Color the Bikeshed Is?

pelf
1pts0
twitter.com 13y ago

Nothing could possibly go wrong

pelf
3pts0
www.remixofthecentury.com 13y ago

Remix of the Century

pelf
3pts0
www.youtube.com 13y ago

How a mechanical watch works

pelf
5pts1
codeincomplete.com 13y ago

How to build an old-school racing game

pelf
1pts0
primabylon.meteor.com 13y ago

GoogleTranslate Your Thoughts for Everyone

pelf
2pts0
www.newscientist.com 13y ago

Webcam + sunshine + time = 3D model of your world

pelf
2pts0
Claude Tag 29 days ago

I was going say the same thing. Today someone must have slacked `@claude can you bring the API down for a couple of hours?`

- app to help buy/find books for my wife - app to help manage my climbing wall - app to help finding good films/series - app to track weight - app to manage my board games and find the right ones to play - app for planning wood builds (e.g. climbing volumes) - telegram bots for: - picking restaurants for weekly lunch with friends - managing our 5-a-side football games, make teams, elo ladder - fantasy football leagues

Among many others

Eat Real Food 7 months ago

For the lazier folk:

Higher intakes of fruits, vegetables, whole grains, unsaturated fats, nuts, legumes and low-fat dairy products were linked to greater odds of healthy aging, whereas higher intakes of trans fats, sodium, sugary beverages and red or processed meats (or both) were inversely associated.

Is it just me that finds the entire concept of the Dash ridiculous?

I mean, what's the idea, having a button for every single product we buy? And we need to set it up first. How is that any better than recurring ordering or just opening the website and ordering it? Are we expected to have an entire wall of dashes at our place?

I guess we'll need to sort them alphabetically or by color, so we don't waste time searching for the button we need.

I've basically done the same thing, going through Feedly to The Old Reader (TOR). The only downside to TOR at the moment is it seems to take a while to update the feeds, forcing me to manually hit the refresh button on the feeds I read more frequently.

I was about to suggest the exact same thing, so I totally agree with the CAPTCHA solution.

And maybe having a (daily?) article submission limit per user at the same time would keep people from submitting articles just for the sake of it.

It crossed my mind allowing users with more karma to have higher submission limits, but that might aswel be gamed at some point by some users.

So perhaps the best thing is having a CAPTCHA to avoid bot submissions and some kind of limit to avoid manual spamming.

Truth is, HN article quality has been slowly declining in the last few months and we keep seeing the same sources over and over again on the front page.

I have no idea if any of the following applies in your friend's case, but there could be a number of factors influencing such decision:

  * family / friends / girlfriend
  * leaving his home country
  * having a nicer job
  * not being tempted by the challenge
  * not being tempted by the money
  * being scared of the big jump
etc...

http://news.ycombinator.com/item?id=1781013

quoting from PG's comment on that post:

(= gravity* 1.8 timebase* 120 front-threshold* 1 nourl-factor* .4 lightweight-factor* .17 gag-factor* .1)

    (def frontpage-rank (s (o scorefn realscore) (o gravity gravity*))
      (* (/ (let base (- (scorefn s) 1)
              (if (> base 0) (expt base .8) base))
            (expt (/ (+ (item-age s) timebase*) 60) gravity))
         (if (no (in s!type 'story 'poll))  .8
             (blank s!url)                  nourl-factor*
             (mem 'bury s!keys)             .001
                                            (* (contro-factor s)
                                               (if (mem 'gag s!keys)
                                                    gag-factor*
                                                   (lightweight s)
                                                    lightweight-factor*
                                                   1)))))
-----

or simplifying a bit:

Score = (P-1) / (T+2)^G

where, P = points of an item (and -1 is to negate submitters vote) T = time since submission (in hours) G = Gravity, defaults to 1.8 in news.arc