HN user

Caged

156 karma

makes stuff //GitHub

[ my public key: https://keybase.io/caged; my proof: https://keybase.io/caged/sigs/O_VUbK0XCeRQuFGcMtA03qjLcKy451VZbkucxk7A9f8 ]

Posts11
Comments35
View on HN
SvelteKit 1.0 4 years ago

Svelte is such a pleasure to write and work with. It follows my mental model really well. Congrats to the team on this amazing milestone!

The requirements here are kinda strange (proximity to a grocery store? not crime rates or anything like that?), but to each his own, I suppose.

You're right. I've been working with open data in the Portland area for years now [1][2][3][4] and have a lot of built up internal knowledge of the neighborhoods and locations so I chose not to muddy the map with those things.

1: https://github.com/Caged/portlandcrime 2: https://github.com/caged/portland-atlas#examples 3: https://github.com/Caged/portland-census 4: http://labratrevenge.com/pdx

Analytics at GitHub 12 years ago

Most of our graphs are pretty stock d3 code tailored for specific datasets, so I don't see much value in open sourcing them. Is there anything in particular you're interested in?

> The key mistake here is to rank the contributions by the popularity of the project that was contributed to.

That's not the case. Repositories Contributed To are ranked based on the impact an individual had on them (recency, # commits, # issues, etc). The popularity of the project has no effect on it.

    Kelly’s overarching philosophy owes to business texts, most directly, 
    the writings of Jim Collins (“Good to Great” and “Built to Last,” among others), 
    who argues that successful organizations coalesce around a concise, easily 
    communicated core mission. Kelly said: “If someone says to me, 
    ‘What do you stand for?’ I should be able to invite them to practice and in 
    five minutes, they’d say: ‘I see it. I get it.’ 
    They stand for playing hard and playing fast.”
This could be applied to your product's home page. The difference is that you'll be lucky to get 60 seconds.

I agree that some applications have very little need to add an status bar item. Fortunately, most of the ones I use allow you to turn the feature off.

On the other hand, I hide the dock on my laptop. Having a status bar item in application like this is pretty valuable for me as it allows me (in the case of Mailplane) to quickly navigate my accounts and see newer emails without focusing the main application.

I grew up in Mississippi. I lived there for 26 years before moving to Portland, OR. The point the author makes about walking to the bus stop or to the local market is absolutely correct.

I've always been really slim, but I rarely walked anywhere in MS unless it was to the mail box. This is not because I was lazy (played a lot of sports), but because there's nothing to walk to. Practically everything involved an automobile as a means for access. Exercise as a daily routine didn't exist for me. That's not to say I couldn't make a conscious effort to exercise, but a commitment to exercise as part of a routine is much harder to adhere to than a routine that involves exercise.

In Portland, things are a completely different story. Almost nothing requires an automobile. My wife and I went 7 months on a single tank of gas when we moved to Portland. We walk practically everywhere. Exercise is built into our day to day life. We walk to the post office, bar, movie theater, coffee shop, grocery store, you name it.

On the topic of eating healthy - The food choices where I grew up were not that great. We had one grocery store, one diner, no fast food restaurants (we eventually got a subway) and two gas stations. Unless you lived in the town center, you had to drive to and from this limited selection.

Many of my family members hover just over the poverty line (although none of them consider themselves poor). Grocery shopping isn't an exercise in health, it's an exercise in conservative economics. Trips to the grocery store are usually prefixed with a question: "How can I get enough food so we can eat until the next paycheck and still have enough money left over for gas to get back and forth to work". It's a vicious cycle.

Great Stuff, although when I fire up this app all I get is a blank white screen. Didn't get any useful information on the console. I assume this is just a wrapper around a WebView? I'm running the latest Safari 4 beta and the web version works fine.

Not to derail the thread, but I believe this has as much to do with hacking as most stuff on Hacker News. It's unfortunate the term doesn't extend to Designers going beyond the minimum required by their profession because I believe they have the same curiosity and spirit that drives extraordinary programmers to become "hackers". After all, the guy just redesigned the American currency.

Given you've already fixed it with max-width I can't test this, but CSS 3 can also help out. The benefit of this approach is that the container can remain liquid:

    white-space: pre-wrap; /* css-3 */
    white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */

You can read about this approach here: http://users.tkk.fi/tkarvine/pre-wrap-css3-mozilla-opera-ie....

I've always thought 5 star rating systems were fundamentally flawed because they're based on the assumption that the same experience experienced by two different people will get the same star rating. For example, what might be a four star experience for me could be a two star experience for you.

Maybe it's just me, but I'd prefer a probability system such as up and down votes. If I see a restaurant has 100 "likes" and 10 "dislikes" it's probable that I'll also enjoy the place (given the fact I already know they're serving food and drinks I would normally enjoy).