seen from China
seen from China
seen from United States
seen from Germany

seen from Germany
seen from United States
seen from United States
seen from China
seen from Germany
seen from Australia

seen from Netherlands

seen from Germany
seen from China
seen from United States
seen from United States
seen from Russia
seen from Netherlands

seen from Malaysia
seen from Nepal

seen from Italy
Escaping in HTML
I was writing a bunch of HTML the other day and I needed to escape an ampersand (&).
Some characters are reserved in XHTML; for example you cannot use the greater than or less than signs or angle brackets within your text beacuse the browser could mistake them for markup.
I needed to refer back a few times so I thought I would share the resource I found:
escapecodes.info
Escape Codes
for C & C++
\a BEL alert \b BS backspace \f FF form feed \n NL (LF) newline \r CR carriage return \t HT horizontal tab \v VT vertical tab \\ \ backslash \' ' single quote \" " double quote \? ? question mark ( ANSI-C ) \ooo ooo octal number \xhhh hhh hexadecimal number ( ANSI-C )
via www.imb-jena.de