Web Blog#
Me#
- Jim Willeke Biographical Sketch
- Thinking About Today
- Ran Across Today
- What I am Reading (and watching)
- MyStartPage
Common Pages#
- Web Blog
- Administrators Page
- The Next Big Thing
- Opportunities
- Hard to Find Pages
- LeftMenu
- LeftMenuFooter
- AdminPages - Docs and More config items
- TitleBox (Logo)
- LDAPWiki Images
- Existing Categories ...nobody
Keep Handy Pages#
- Cheat Sheets
- Test Page - to test or create pages
Wikis#
This is my junk section where I start making pages. There are probably drafts, or things I felt were not finished, if they are listed here.
- Test-Tabs
- You are Not Allowed
- Allowed Inlined Images
- LDAP Connection Maintenance
- Thank You
- Costs of Wiki
Groups in this wiki:#
Admin...
This is my junk section where I start making pages. There are probably drafts, or things I felt were not finished, if they are listed here.
- Test-Tabs
- You are Not Allowed
- Allowed Inlined Images
- LDAP Connection Maintenance
- Thank You
- Costs of Wiki
- Test Page
Pretty Example#
#!/bin/bash # Fibonacci numbers # Writes an infinite series to stdout, one entry per line function fib() { local a=1 local b=1 while true ; do echo $a local tmp=$a a=$(( $a + $b )) b=$tmp done } # output the 10th element of the series and halt fib | head -10 | tail -1