Viewing profile — samuellb
samuellb
HN member- Joined
- Wed, Mar 07, 2012, 12:06 PM UTC
- HN karma
- 69
- Public activity
- 87 items
- HN profile
- View on Hacker News ↗
About samuellb
Recent public activity
-
comment
Comment #16612894
In practice, no. The legislation has major loopholes, such as allowing unsolicited business-to-business marketing. And spammers still send junk to individuals with a disclaimer suc…
-
comment
Comment #15936383
These kinds of attacks are already happening. It has actually happened in the apartment area where I live: We have a hot water central heating system that distributes heat to the a…
-
comment
Comment #13642388
As long as there are still incoming links to the domain, I think it's hard to make Google reset it's page rank permanently. You could do a HTTP 301 permanent redirect and use Googl…
- story
-
comment
Comment #13220126
I know a small company that shut down it's Facebook page while keeping it's website (an old one, from 2005). Probably because it's not selling directly to it's end-customers, so th…
-
comment
Comment #13138275
Technology improvements are good, but all these sensors in devices scare me, especially in network-connected stuff. Let's say someone exploits and modifies the firmware to trigger …
-
comment
Comment #12773459
I've noticed that sometimes updates to Firefox cause it to stop working until it's restarted. If you're writing a long message, or filling in some form, or if you have an order con…
-
comment
Comment #12703228
Duplicate of https://news.ycombinator.com/item?id=12702845
-
comment
Comment #12504192
There's also the question of where we should draw the line. It's very different if you post a funny video of a cat, or if you write a joke at the end of a comment. IMHO the latter …
-
comment
Comment #12442552
I learned to program myself and did some small-scale freelancing as a web developer while in high school. But after that I went to university because I felt it would be easier to g…
-
comment
Comment #12439671
Protocols that require online signing are impossible to cache and hard to scale. Even OCSP is often used with pre-produced offline signed responses for that reason (but they are pe…
-
comment
Comment #12435477
Sealed with tape, with your signature on the tape? And/or some tiny mark on the container that's hard to find.
-
comment
Comment #12428876
On the other hand, it's quite convenient to not have to do null checks in debug messages. Compare: log.trace("doStuff(" + obj1 + ", " + obj2 + ")"); to this: log.trace("doStuff(" +…
-
comment
Comment #12403641
Previous HN post: https://news.ycombinator.com/item?id=12397246
-
comment
Comment #12400638
Or people who use a "mixed tabs and spaces" indentation, e.g. size 8 tabs with 4 characters wide indentation, and spaces for uneven indentations. (Which IMHO is broken because it l…
-
comment
Comment #12367799
Yes, security of number porting is too lax. My number was once ported by a telco (accidentally in this case). They did call me and I had to confirm that I would get a new SIM card …
-
comment
Comment #12342248
Yes, it's quite different in different countries. My web server gets only 3,9% IPv6 traffic (based on counting unique IPs). Quite OK given that none of the major ISPs in my country…
-
comment
Comment #12328459
3. open source software projects (and distributions, e.g. Debian) usually don't want to be dependent on non-open source software. And they are usually very strict with licenses, so…
-
comment
Comment #12136060
I've used a re-compressed version in the past, with reduced xml markup, and with the most rarely visited articles removed. It was around 1GB when I downloaded it, and it used the p…
-
comment
Comment #11952400
Or a lid that can be slided over it. As a bonus, it would also protect the camera from being scratched
-
comment
Comment #11841514
0.0.x = proof of concept? 0.1.x = first actually usable version (but may be buggy, missing features, etc.)
-
comment
Comment #11776460
I'd call a systems programming language "something which can use the low level ABI of the underlying platform". So C and e.g. FreePascal would fit the description (for most hardwar…
-
comment
Comment #11760303
That's true. And in the OOP case you usually have exception handling (i.e. try/catch blocks) as well, instead of "goto error" style error handling which is common in C.
-
comment
Comment #11753133
The Linux kernel has a code style with 8 spaces and still has the 80 characters maximum. The coding style says "if you need more than 3 levels of indentation, you're screwed anyway…
-
comment
Comment #11737749
I welcome this change, because I've lost a lot of form data with the backspace key. Not specifically in Chrome, because I remember having the same problem with IE 6 at the time whe…