Difference between revisions of "User:Rlk"
Jump to navigation
Jump to search
(Added link to WebTests.) |
(Formatting tests, from earlier wiki.) |
||
| Line 18: | Line 18: | ||
* [http://www.math.nus.edu.sg/aslaksen/calendar/chinese.shtml#Paper Chinese Calendar] | * [http://www.math.nus.edu.sg/aslaksen/calendar/chinese.shtml#Paper Chinese Calendar] | ||
* [http://www.csse.uwa.edu.au/~gordon/sudoku17 Sudokus with 17 starting positions] | * [http://www.csse.uwa.edu.au/~gordon/sudoku17 Sudokus with 17 starting positions] | ||
| + | |||
| + | === Formatting Tests === | ||
| + | Demonstrate text styles: ''italic'', '''bold''' and '''''bold italic'''''. | ||
| + | |||
| + | Ampersands are allowed: &, and so are other characters that need to be escaped | ||
| + | in HTML: <>. | ||
| + | |||
| + | What about Umlauts? "äöüÄÖÜß" should be ae oe ue AE OE UE and sharp s. | ||
| + | |||
| + | Is this '€' an (ISO-8859-15 encoded) Euro sign? See the horizontal line below? | ||
| + | ---- | ||
| + | A silly code example (some Scheme I needed today) | ||
| + | (call-with-input-file "code.txt" | ||
| + | (lambda (port) | ||
| + | (do ((i 0 (+ i 1)) | ||
| + | (c (read port) (read port))) | ||
| + | ((>= i *code-length*)) | ||
| + | (display (list i c)) | ||
| + | (newline) ))) | ||
Revision as of 16:11, 16 January 2007
Not a lot here for now, visit my static page.
Internal links
External links
A number of links harvested from my inbox, should be organised better!
- TeX users group
Electronics
- DCF77 message encoding
- DCF77 range
- USB in a nutshell
- Ratio Detector for FM demodulation
Miscellaneous
Formatting Tests
Demonstrate text styles: italic, bold and bold italic.
Ampersands are allowed: &, and so are other characters that need to be escaped in HTML: <>.
What about Umlauts? "äöüÄÖÜß" should be ae oe ue AE OE UE and sharp s.
Is this '€' an (ISO-8859-15 encoded) Euro sign? See the horizontal line below?
A silly code example (some Scheme I needed today)
(call-with-input-file "code.txt"
(lambda (port)
(do ((i 0 (+ i 1))
(c (read port) (read port)))
((>= i *code-length*))
(display (list i c))
(newline) )))