Hacker Newsnew | past | comments | ask | show | jobs | submit | Triave's commentslogin

The article recommends redirecting if the browser sends a Upgrade-Insecure-Requests header.


ADFS allowed directories, but used "." as the separator, giving you paths like "Letters.Memo1".

Were you thinking of DFS?


You couldn't do hierarchy though, it was only one deep.


That was true for DFS, but not ADFS.


Both DFS and ADFS used .


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/i...


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 region of memory, and thus also truthy in C.


It's information about an identifiable living individual. (In this context, Personal information is information about a person, not information owned by a person.)


"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 used 'int_fast16_t' from <stdint.h>, you have at least an idea that they considered that it might only be 16 bits, and that it can be a larger type on systems where operations on 64-bit types are faster.


It is available through Steam. http://store.steampowered.com/app/109700


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 width of uint16_t:

SET A, 0x1 SHL A, 0x100


The Java Language Specification indeed states that the shift amount should be ANDed with 31 or 63, depending on a type of the left-hand operand. I guess Notch did not intend this behavior, however.

http://docs.oracle.com/javase/specs/jls/se7/html/jls-15.html...


This will, of course, set both A and O to 0.


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 = ((char) ((A << 32) & 0xFFFF)); System.out.println(Integer.toHexString(A));

actually outputs 1.


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

Search: