HN user

ktr

600 karma

[ my public key: https://keybase.io/ktr; my proof: https://keybase.io/ktr/sigs/NWkQ1_3u2GcwM56fyO9_P66BtSHGzWg3wGA68bYGFY8 ]

Posts56
Comments38
View on HN
www.wsj.com 1mo ago

A Famous Math Problem Stumped Humans for 80 Years. AI Just Cracked It

ktr
6pts1
www.dallasnews.com 4y ago

Texas Instruments’ new calculator incorporates Python programming language

ktr
17pts4
xlpro.tips 5y ago

Show HN: xlcat (like cat, but for xlsx files) – my first rust project

ktr
3pts0
stackoverflow.com 5y ago

How can I pair socks from a pile efficiently?

ktr
1pts0
stackoverflow.com 5y ago

How can I pair socks from a pile efficiently?

ktr
2pts1
news.ycombinator.com 6y ago

Ask HN: Would you recommend the MacBook Air over Pro?

ktr
4pts0
www.wsj.com 6y ago

The 5hr workday gets put to the test

ktr
3pts0
www.wsj.com 6y ago

Amazon has proven unable or unwilling to effectively police third-party sellers

ktr
604pts327
preactjs.com 7y ago

Fast 3kB alternative to React (with the same modern API)

ktr
1pts0
devdocs.io 7y ago

API docs in a fast, organized, and searchable interface

ktr
2pts1
www.nytimes.com 7y ago

A Lone Norwegian Trader Shook the World’s Financial System

ktr
2pts0
annystudio.com 7y ago

Just Color Picker

ktr
3pts1
www.brainpickings.org 7y ago

Richard Feynman's Extraordinary Letter to His Departed Wife

ktr
235pts12
stackoverflow.blog 7y ago

Stack Overflow: Helping One Million Developers Exit Vim (2017)

ktr
149pts134
gittup.org 7y ago

Tup (an alternative to make)

ktr
1pts1
news.ycombinator.com 7y ago

Ask HN: Any suggestions for new laptop?

ktr
1pts4
www.researchgate.net 7y ago

The most dangerous equation

ktr
2pts0
www.inc.com 7y ago

iPhone Spacebar Trick

ktr
2pts0
r4ds.had.co.nz 7y ago

R for Data Science (online book)

ktr
3pts0
www.tidytextmining.com 7y ago

Text Mining with R

ktr
4pts0
datavizcatalogue.com 7y ago

The Data Visualization Catalogue

ktr
3pts0
blog.pinboard.in 7y ago

Pinboard acquires delicious (2017)

ktr
1pts0
www.sqlite.org 7y ago

Sqlite 3.25 released (with window functions)

ktr
7pts0
github.com 7y ago

100 Days of ML Code

ktr
2pts0
gitea.io 8y ago

Gitea – a painless self-hosted Git service

ktr
3pts1
www.farnamstreetblog.com 8y ago

Just 25 pages per day

ktr
8pts0
www.washingtonpost.com 8y ago

Massive earthquake off Mexico's coast

ktr
4pts1
varianceexplained.org 8y ago

Understanding the Beta Distribution

ktr
1pts0
jakevdp.github.io 8y ago

Python Data Science Handbook

ktr
4pts0
www.aforeseeablefuture.com 9y ago

Test your prediction capabilities

ktr
1pts0

Not sure I agree. Apollo is apparently monetizing these users above and beyond what Reddit is/was able to accomplish. I’m confident that this represents value to Reddit > 0. So Reddit may have leverage, but not all the leverage.

Has anyone had any experience with new Bose headphones? If you use the Bose Connect app, I believe what the author wrote is accurate. But that app doesn’t work on the newer headphones (at least, not the ones I have). Instead I need to download the “Bose Music” app which doesn’t seem to give you the same options for privacy. And if you don’t use that app, the headphones are much less useful (eg, no hardware controls to switch which device you are connected to).

Just Color Picker 7 years ago

I saw the recent electron based color picker someone created because windows didn’t have a color picker. This is lightweight and one of my favorite tools. It also has a Mac version (although no Linux as far as I know).

Thanks. I heard great things about the XPS so was excited to get it, but as noted above I haven't been thrilled. Also, the keyboard is not great in my opinion. The Linux version could be better (I am forced to use Windows at work).

The other thing that is odd is that they mentioned their mother's illness took a turn for the worse and they were communicating with only the CEO via phone. It seems unlikely that you only let the CEO know at the beginning of your absence and then don't let him/her know when you will actually be coming back. It also seems unlikely that the company would accept your resignation, post the position, interview, make an offer, and have the new person start all within 6 weeks. Perhaps it is just me, but that seems like an aggressive timeframe to get all of that done.

Couldn't agree more. I got to the end of the article thinking "why did you stay after the first series of episodes?". I never realized how bad it was there and I am sad for all those impacted by it - especially the little ones.

Seems much lighter weight and doesn't change your interface so much. I tried pentadactyl and it felt (to me) that it changed the browser experience too much. This has fewer commands and options, but seems like "just what I need" as opposed to "everything". I came across it looking for Vimium for Firefox.

I'm really interested in how organizations are organized. Does anyone have any suggested reading material for things like this? I've only ever heard the term "cells" before as it relates to terrorist groups, but I'm not sure if this is a similar concept. But I often wonder if organizing a business more like a democracy would yield better results in the long run ...

> I don't know about this. How am I locked in?

I think the article is referring to much bigger implementations - I'm just finishing up a 3,000+ employee implementation with all kinds of crazy things going on that cost my client an arm and a leg. To put it into perspective, the implementation took ~ 3mos to go-live for employees across almost all 50 states and another 2mos to fix the issues that cropped up during the first few payrolls. It's unlikely they'd be willing to switch anytime soon regardless of how unhappy they are up to this point.

This is crazy - I ordered 3 things from Amazon today through Prime and started wondering if/when a day would come when you'd have same day delivery from Amazon and what it would look like. I figured it would happen someday, but thought the complexities would be too much to handle for a while. Looks like they're way ahead of me. This is why I love Amazon.

I'm sure it has been discussed elsewhere, but does FB actually earn $5.11 per user? That's amazing to me - I rarely use the site, but even when I am on I don't recall ever clicking an ad. In fact, I don't know many people that have either.

Why Lua? 14 years ago

Thanks for the pointer! I'll have to keep that in mind.

Why Lua? 14 years ago

Sorry, I would actually consider myself quite proficient in Python. What I was trying to [unsuccessfully] show was that the underlying mechanics of Python's import mechanism are different then, say, Python's dict or list implementations. Whereas in Lua everything really is just a table. I ran into this (in Python) when I was trying to dynamically import code based on command line arguments and access the functions in said script as strings. So in Lua, you just `x = require"script" ; x["fn"]` whereas in Python you sort of need to know this information up front unless you go through the machinations I outlined in the article.

But this was obviously a poorly written part of the article that could use improvement.

[EDIT] typos [EDIT2] less arrogance :)