Hacker News new | past | comments | ask | show | jobs | submit | boydjd's comments login

I like my Lenovo X230. I've increased the RAM to 16GB and have 2 SSDs in it (a micro SATA and regular). Everything seems to work fine for me in Arch.


I quit a decade of pack a day smoking last August.


$ ./8queens Illegal instruction (core dumped)

Fun.


keepass. I don't trust a service to store my passwords.

I use a key file and a passphrase to secure my keepass database. The database is stored on dropbox, the keyfile is stored elsewhere.


This is very close to how LastPass works under the hood. You're storing an encrypted database on their service (just like DropBox in your case). They don't actually store your original master password.

The only legitimate security gripe I've ever read about LastPass (and people have focused its security a LOT) is that a bad guy can modify the JavaScript utilised by the extension if they took control of LastPass's servers, and have your plain text master password sent to a third party (assuming no cross-site protections).

The actual password database is fairly secure. As is the login process (which can further be strengthened with 2F and various options in the account settings).


Same here. KeePass2 on Linux, KeePassX on OSX, and KeePassDroid.


I've had a _great_ experience using KeePassX on both Windows and Linux.

I use a sometimes-synced copy of the database on KeePassDroid on my Android phone. Actually, the user experience of KeePassDroid can only be described as vile, but that it works at all (allowing me to have all of my passwords securely available on my person) is awesome enough.


I prefer MacPass over KeePassX, because it support Keepass2 files by default - KeePassX only does in the non-stable version. That's the only annoyance with Keepass: it has two non-compatible file types and you need to stick with one (and hence the supporting software).


I don't particularly favor putting all my passwords in an online password manager. So I have some JavaFX gui I made that encrypts a password file (passphrase => PKDF => AES). In total it's like 200 lines of code - GUI, storing pass, generating pass, and rotating master password. The encrypted file I keep synced in my cloud storage.

But in retrospect I don't know if this makes any real difference from something like keepass. My encrypted file is transferred over some secure socket, so an attacker can at least a copy of the encrypted file if they either hack the cloud storage provider or somehow hijack my connection.

It's not exactly super portable but for sites I care about, I wouldn't log onto them on untrusted computers anyway.


I use KeyPass and sync it using BitTorrent sync on all my devices. The problem with my current setup is that I carry the keyfile along with the database which useless.

I got to think of another way!


I keep my keyfile in another BitTorrent Sync folder, along with all my other dotfiles. At least they're in two different places then!


Carry the key file around on a USB drive, perhaps?


Huh? Sbarro's still exists...


Yeah, I think they just closed a couple hundred locations during one of their bankruptcies.


Yea man! It's my favorite pizza place in NYC :)


If THAT's your favorite pizza in NYC, of all places, ... well, you need to sample the local wares more. Or you have no idea what "pizza" means.


I use the PHP version from time to time.

https://github.com/giggsey/libphonenumber-for-php



I use this Ruby version:

https://github.com/daddyz/phonelib


Is anyone even making new apps for BB now?


When they pay developers to do so, yeah.


Maybe you just eat with a bunch of alcoholics?


What are you drinking instead of soda in your country?


That question - in and by itself - gives you away as an American. As a central European who grew up on water, fruit juice (80-60% water thinned) and tea (green, herb and on and off black) it made me chuckle. I have never seen so much soda consumption anywhere on this planet before coming to the US.


America definitely drinks more soda than anyone else: http://www.slate.com/articles/health_and_science/map_of_the_.... 3x as much as most central European countries.


Notwithstanding the golden "correlation != causation" adage, I found that only two things are truly consumed in much larger quantities in America than any other country I know: soda and high fructose corn syrup...at the same time being the only country with a 35% obesity rate...hmmmm


Oh really?

http://www.huffingtonpost.com/2013/07/09/mexico-obesity_n_35...

Relevant numbers from the article:

US obesity rate: 31.8% Mexican obesity rate: 32.8%

Also, Mexican soda exclusively uses cane sugar. I buy Mexican Coke for the new times I drink regular soda for that reason.


Not true. Saudi Arabia is the most obese country on earth, at 70%.

Britain, Australia, and New Zealand are also substantially obese. All of those are coming increasingly close to catching America in obesity, with their obesity levels exploding higher.


Here's the latest data I know of on this:

http://www.socialprogressimperative.org/data/spi/components/...

The United States comes in at 8th highest obesity rate, after Kuwait, Saudi Arabia, Egypt, Jordan, the UAE, South Africa, and Mexico.


A lot of the "fruit juice" (in America, at least) contains just as much HFCS as soda.

I don't know if this is the case in the rest of the world or in this study though.


I'm fairly sure in the UK you can't legally call fruit juice with added sugar/sweeteners "juice" - it would have to be fruit drink or something


It's the same in the US ... except you can call it "juice drink" or "juice cocktail", which isn't very clear.


Wow that's weird, if I heard "juice cocktail" I'd think Mango and Orange or something. "Juice drink" is plain misleading.


Of the ~20 countries I've visited I think only the US had HFCS in the fruit juice. (It tastes funny/unfamiliar, so I notice.)

Instead they contain sugar, natural or added, and about as much as cola (~10%). The cola also has sugar instead of HFCS.


The US Government's vast, and continued, subsidization of corn is what led to the creation of HFCS. Makes sense, unfortunately, that the US would be drowning in it.


That's what we have regulations for ;-) Everything called "fruit juice" in the EU needs to be 100% juice (but it can be made from concentrate).


That's a good question. Back in the old country, people don't drink as much soda but they have another "drinking" problem--beer and hard liquor. That's much worse than soda, but it's a real addiction (alcoholism).

In the other country where I lived a big chunk of my life, they usually drink green tea.


uh, water?



Seriously though, some of the descriptions of culture of drinking soda in this thread make me think of that movie. For last 15 years I had soda maybe 10 times and it was usually like few sips. I just can't phantom a world where soda is what you drink when you are a thirsty or to meals. I don't remember people I eat out with ordering soda to their meals either. It's usually water, tea, coffee, sometimes fruit juice.


I drink far more Coke Vanilla Zero than could possibly be good for someone when at home, and yet when eating out I generally get iced tea with no sweetener. You may know a closet soda addict and not even realize it. :)


OT, but:

> I just can't phantom a world

I think you mean 'fathom' here. It uses the metaphor of something being too deep to measure.


I drink at least 24 fluid ounces of soda every day.

I've changed to Dr Pepper Ten instead of regular Dr Pepper though, so at least it's not as terrible for me.

20 calories vs 500 and 4g sugar vs 128g


My wife and I got a good laugh about this exact thing when I made that comment.


> I think the real mistake in that scenario is not minifying the code until "in production". You should minify your code from the day one.

How are you debugging minified code?


That's a big problem. Firefox and Chrome these days support debugging source mapped files. However, I'm running through two source map steps: TypeScript to JavaScript and JavaScript to minified JavaScript. For whatever reason the browser debuggers don't work that well with this setup. They're buggy and make the browser very slow. I often do have to resort to "console.log" debugging. On the plus side I'm always running code like it's run in "production", which will make it easier to catch any bugs resulting from minifying.


I use Webpack with a similar setup (CoffeeScript->JavaScript->Minified) and I didn't notice any issues. Source maps stop working when using Webpack's hot code reloading, but it's a price I'm willing to pay.


sourcemaps?


Consider applying for YC's W25 batch! Applications are open till Nov 12.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: