HN user

matth

642 karma

[ my public key: https://keybase.io/matthewhudson; my proof: https://keybase.io/matthewhudson/sigs/E3YPvvl9afeo4nu4x3l00lwsMd4kzlKCTipo6JTwJ-k ]

Posts43
Comments86
View on HN
thematthewhudson.com 7y ago

Annotated Trump–Russia Dossier Using Genius Web Annotator

matth
1pts0
www.matthewghudson.com 13y ago

Show HN: Word Generator - thoughts on the frontend?

matth
1pts0
www.matthewghudson.com 13y ago

Show HN: Word Generator

matth
1pts0
www.matthewghudson.com 13y ago

Show HN: Device.js - Conditional CSS for Mobile Development

matth
1pts0
github.com 13y ago

Device.js - Conditional CSS for Mobile Development

matth
3pts0
www.httprage.com 14y ago

Show HN: HTTP Rage - Status Code Image Service

matth
2pts0
www.dozierhudson.com 14y ago

HTTP Rage Status

matth
2pts0
duzour.tumblr.com 14y ago

Oh, you want to work with Bill Murray? Leave a message on an 800 number.

matth
1pts0
blog.matthewghudson.com 14y ago

List of HN members on Tumblr (work-in-progress)

matth
3pts0
blog.matthewghudson.com 14y ago

The Public and its Problems: Public Policy in the 21st Century

matth
1pts0
blog.matthewghudson.com 15y ago

Best hacks in your .bash_profile and .bashrc?

matth
3pts4
www.odemagazine.com 15y ago

“The washing machine has changed society more than the Internet"

matth
2pts0
www.coolhunting.com 15y ago

GPS-enabled experiments visualize daily jog data in 3-D

matth
1pts0
www.npr.org 15y ago

Sitting All Day: Worse For You Than You Might Think

matth
146pts92
news.ycombinator.com 15y ago

Ask HN: How do you document you stack?

matth
3pts1
wetalky.tumblr.com 15y ago

Organizing a group hang with your buddies is a real headache.

matth
1pts1
blog.jackadam.net 15y ago

The Unfortunate State of Canvas Animations on the iPhone / iPad

matth
2pts0
news.ycombinator.com 15y ago

Ask HN: How do you visualize code in your head?

matth
25pts16
www.networkworld.com 16y ago

Microsoft's cloud is slower than Google's, Amazon's, benchmark says

matth
1pts0
en.wikipedia.org 16y ago

The Man Who Saved the World: Stanislav Petrov

matth
9pts0
www.newsweek.com 16y ago

Daniel Lyons: Obama right, devices like the iPad are rotting our brains

matth
19pts26
news.ycombinator.com 16y ago

Ask HN: How to be a responsible single founder?

matth
29pts17
www.gorgorat.com 16y ago

Richard Feynman on getting laid: "You Just Ask Them?"

matth
212pts155
www.hulu.com 16y ago

KF Braun, inventor of the Cathode Ray Tube, and the original open source hacker?

matth
1pts0
www.vvl.bbdo.be 16y ago

Belgian advertising agencies go on strike over "spec" work

matth
4pts2
searchengineland.com 16y ago

Brittany Murphy Death & Google’s Real Time Search Results

matth
20pts6
online.wsj.com 17y ago

Some follow-up: 'Threat to our electric grid'.

matth
1pts0
news.ycombinator.com 17y ago

Ask YC: Anyone have any subscription service tips/experience?

matth
20pts8
news.ycombinator.com 17y ago

Ask YC: Your ugliest hacks.

matth
2pts6
economix.blogs.nytimes.com 17y ago

Adam Smith, Disproved? How ants may have disproven the importance of specialization.

matth
3pts5

The broken by design thing is something that's always bothered me. I posted a draft of our company's Privacy Policy to github a while back as an experiment.

https://github.com/wetalky/privacy-policy/blob/master/POLICY...

We're trying to be completely open with updates to this document, and we welcome outside commits. We intend to do the same with our ToS.

I'm not sure anyone has tried this before, so I'm really excited to see where this experiment goes.

This is great for showing/hiding files on OSX:

    alias show='defaults write com.apple.finder AppleShowAllFiles TRUE; killall Finder'
    alias hide='defaults write com.apple.finder AppleShowAllFiles FALSE; killall Finder'

Having faced the same situation in the past, I encourage you to simply release it. No need to spend months upon months improving the backend while no one is using the damn thing.

How long has the refactor been on your mind? Has it been at least a month or two? Has your mental picture of the rebuild been consistent, or does it change week-to-week?

Here's my advice to get you going: Write down your general refactor plan in detail. Next, create a todo list / timeline that gets you to production deployment as quickly as possible based on your current codebase. Focus on other things a bit. Launch, marketing, etc.

Once this thing has been out in the wild for a bit, reassess that refactoring plan you wrote down and see if it still makes sense based on your application's performance - both as a product, and as a piece of software.

To my way of thinking, this is exactly the kind of stuff that makes mobile computing so exciting: Choice and control.

Imagine when folks are able to be just as discerning when they are shopping for clothes (was this made in a sweat shop? is it american-made?) or grocery shopping (were these chickens treated humanly?).

Good work man! The digital democracy is coming.

I have to imagine that Google.com is the most bandwidth optimized page EVER.

Big picture, the W3C spec is not what matters here. What matters is making the same HTML document render exactly across different browsers. So maybe they could drop <html><head> according to W3C, but does that break the document in other browsers?

My guess is that Google doesn't care about the W3C spec in this specific regard. What matters is delivering the smallest document possible that can be rendered by as many browsers as possible.

*Grammar edit.

I was working on this for a while: yayforgo.com.

I got a new job and just couldn't focus on it. Bummer!

Anyone want the source code?

Well, I think it's more that the mugtug developers have much more they can do - if that's what the want to do.

Don't say that HTML5 (canvas) has a long way to go. It does - but the basis for your argument is wrong. Don't compare two different projects - with different goals, and in different stages of development - and then say one is weaker based on its current phase of development.

The particular hangup I faced when using regex was with this URL: http://vi.ebaydesc.com/ebaymotors/ws/eBayISAPI.dll?ViewItemD...

>>> x = re.compile('(?:(item|t|hr)=(\d+))')

>>> x.findall(url)

[('item', '290277158797'), ('t', '1227377775000')]

I can't for the life of me figure out how to get the hr value. I started messing around with regex again, but no luck so far.

I can do the same with Python's string methods:

>>> hr_start = url.find('hr=')

>>> hr_end = url.find('&',url.find('hr='),len(url))

>>> url[hr_start:hr_end]

'hr=http://shop.ebay.com/?_from=R40'

It's just messy as hell, it'd be nice to do everything in one swoop.

I want Apple pie.

Nothing to be "depressed" about. Happens all the time.

"Happens all the time" is a reason not to be depressed? I think "landscape changes" take place because someone/some group got tired of being depressed and actively sought some sort of change.

OTOH, this is an excellent example of the advantages of being small and nimble - you can adapt quickly while the big boys are stuck struggling.

What? The big boys are eating Apple pie because they, I assume, had an easier time getting to the table than the small and nimble.

Google Sky launches 18 years ago

We'll know Google is truly awesome if they ever manage to launch a satellite to do their own surveying.