Viewing profile — Triave
Triave
HN member- Joined
- Wed, Apr 04, 2012, 7:29 PM UTC
- HN karma
- 25
- Public activity
- 9 items
- HN profile
- View on Hacker News ↗
About Triave
No profile information was provided.
Recent public activity
-
comment
Comment #32044266
The article recommends redirecting if the browser sends a Upgrade-Insecure-Requests header.
-
comment
Comment #15336449
ADFS allowed directories, but used "." as the separator, giving you paths like "Letters.Memo1". Were you thinking of DFS?
-
comment
Comment #15026753
I'm guessing the interactive fiction interpreter [1], which predated the version control system by a couple of years. [1] http://web.archive.org/web/20120826174233/http://diden.net…
-
comment
Comment #12276879
In C, empty strings are truthy, being a non-null pointer to a NUL character. Depending on what you mean by "an empty array" that might also be a non-null pointer to a zero-length r…
-
comment
Comment #11093490
It's information about an identifiable living individual. (In this context, Personal information is information about a person, not information owned by a person.)
-
comment
Comment #10864511
"int" doesn't reveal the intention of the programmer - they might just have used it because it's "int", not because it changes size based on what system you are targeting. If they …
-
comment
Comment #5448939
It is available through Steam. http://store.steampowered.com/app/109700
-
comment
Comment #3799765
Depends how left shift is implemented: on some processors (including x86), only the lowest order bits of the number of positions to shift by are used. In Java: char A = 1; A = ((ch…
-
comment
Comment #3799388
Note that this VM can depend on behaviour that is explicitly left undefined by the C11 standard. For example, this DCPU-16 program can cause a shift by an amount greater than the w…