xiki 0.5.0a

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (252) hide show
  1. data/Gemfile +11 -0
  2. data/LICENSE +22 -0
  3. data/README.markdown +83 -0
  4. data/Rakefile +8 -0
  5. data/bin/xiki +46 -0
  6. data/etc/command/xiki_command.rb +203 -0
  7. data/etc/command/xiki_process.rb +52 -0
  8. data/etc/command/xiki_wrapper +2 -0
  9. data/etc/js/menu1.js +55 -0
  10. data/etc/js/xiki.js +259 -0
  11. data/etc/logo.png +0 -0
  12. data/etc/presentations/bootstrap.deck +5 -0
  13. data/etc/presentations/databases.deck +41 -0
  14. data/etc/presentations/diffs.deck +23 -0
  15. data/etc/presentations/documentation.deck +14 -0
  16. data/etc/presentations/effects.deck +5 -0
  17. data/etc/presentations/face.deck +297 -0
  18. data/etc/presentations/files.deck +79 -0
  19. data/etc/presentations/icons.deck +22 -0
  20. data/etc/presentations/images.deck +24 -0
  21. data/etc/presentations/key_shortcuts.deck +16 -0
  22. data/etc/presentations/macros.deck +18 -0
  23. data/etc/presentations/menu_classes.deck +44 -0
  24. data/etc/presentations/menu_directories.deck +30 -0
  25. data/etc/presentations/notes.deck +19 -0
  26. data/etc/presentations/other_languages.deck +55 -0
  27. data/etc/presentations/other_wiki_syntaxes.deck +4 -0
  28. data/etc/presentations/piano.deck +5 -0
  29. data/etc/presentations/potential/diffs.deck +38 -0
  30. data/etc/presentations/potential/evolution.deck +18 -0
  31. data/etc/presentations/potential/intro.deck +711 -0
  32. data/etc/presentations/potential/intro1.deck +711 -0
  33. data/etc/presentations/potential/intro2.deck +97 -0
  34. data/etc/presentations/potential/make_mysql_menu.deck +36 -0
  35. data/etc/presentations/potential/ruby_development.deck +17 -0
  36. data/etc/presentations/potential/ui_prototyping.deck +50 -0
  37. data/etc/presentations/potential/web_dev.deck +4 -0
  38. data/etc/presentations/potential/web_development.deck +10 -0
  39. data/etc/presentations/potential/wiki.deck +45 -0
  40. data/etc/presentations/presentations.deck +24 -0
  41. data/etc/presentations/rails_development.deck +29 -0
  42. data/etc/presentations/search_key_shortcuts.deck +37 -0
  43. data/etc/presentations/simplest_possible_ui.deck +37 -0
  44. data/etc/presentations/svg.deck +5 -0
  45. data/etc/presentations/testing.deck +28 -0
  46. data/etc/presentations/the_end.deck +13 -0
  47. data/etc/presentations/type_something_and_double_click.deck +57 -0
  48. data/etc/presentations/type_the_acronym.deck +144 -0
  49. data/etc/presentations/web_browser.deck +56 -0
  50. data/etc/presentations/xiki_command.deck +20 -0
  51. data/etc/presentations/xiki_url.deck +14 -0
  52. data/etc/shark.icns +0 -0
  53. data/etc/shark_script.icns +0 -0
  54. data/etc/snippets/html.notes +7 -0
  55. data/etc/snippets/notes.notes +20 -0
  56. data/etc/snippets/rb.notes +38 -0
  57. data/etc/templates/menu_template.menu +2 -0
  58. data/etc/templates/menu_template.rb +8 -0
  59. data/etc/templates/template.rb +5 -0
  60. data/etc/themes/Dark_Metal.notes +28 -0
  61. data/etc/themes/Orange_Path.notes +15 -0
  62. data/etc/themes/Shiny_Blue.notes +27 -0
  63. data/etc/themes/Shiny_Green.notes +27 -0
  64. data/etc/wrappers/wrapper.js +17 -0
  65. data/etc/wrappers/wrapper.py +20 -0
  66. data/etc/wrappers/wrapper.rb +25 -0
  67. data/lib/block.rb +72 -0
  68. data/lib/bookmarks.rb +352 -0
  69. data/lib/buffers.rb +170 -0
  70. data/lib/clipboard.rb +333 -0
  71. data/lib/code.rb +860 -0
  72. data/lib/code_tree.rb +476 -0
  73. data/lib/color.rb +274 -0
  74. data/lib/console.rb +557 -0
  75. data/lib/control_lock.rb +9 -0
  76. data/lib/control_tab.rb +176 -0
  77. data/lib/core_ext.rb +31 -0
  78. data/lib/cursor.rb +111 -0
  79. data/lib/deletes.rb +65 -0
  80. data/lib/diff_log.rb +297 -0
  81. data/lib/effects.rb +145 -0
  82. data/lib/environment.rb +5 -0
  83. data/lib/file_tree.rb +1875 -0
  84. data/lib/files.rb +334 -0
  85. data/lib/hide.rb +259 -0
  86. data/lib/history.rb +286 -0
  87. data/lib/image.rb +51 -0
  88. data/lib/incrementer.rb +15 -0
  89. data/lib/insert.rb +7 -0
  90. data/lib/irc.rb +22 -0
  91. data/lib/key_bindings.rb +658 -0
  92. data/lib/keys.rb +754 -0
  93. data/lib/launcher.rb +1351 -0
  94. data/lib/line.rb +429 -0
  95. data/lib/links.rb +6 -0
  96. data/lib/location.rb +175 -0
  97. data/lib/macros.rb +48 -0
  98. data/lib/man.rb +19 -0
  99. data/lib/menu.rb +708 -0
  100. data/lib/merb.rb +259 -0
  101. data/lib/message.rb +5 -0
  102. data/lib/meths.rb +56 -0
  103. data/lib/mode.rb +34 -0
  104. data/lib/move.rb +248 -0
  105. data/lib/notes.rb +1000 -0
  106. data/lib/numbers.rb +45 -0
  107. data/lib/ol.rb +203 -0
  108. data/lib/ol_helper.rb +44 -0
  109. data/lib/overlay.rb +167 -0
  110. data/lib/pause_means_space.rb +68 -0
  111. data/lib/php.rb +22 -0
  112. data/lib/projects.rb +21 -0
  113. data/lib/relinquish_exception.rb +2 -0
  114. data/lib/remote.rb +206 -0
  115. data/lib/requirer.rb +46 -0
  116. data/lib/rest_tree.rb +108 -0
  117. data/lib/ruby.rb +57 -0
  118. data/lib/ruby_console.rb +165 -0
  119. data/lib/search.rb +1572 -0
  120. data/lib/search_term.rb +40 -0
  121. data/lib/snippet.rb +68 -0
  122. data/lib/specs.rb +229 -0
  123. data/lib/styles.rb +274 -0
  124. data/lib/svn.rb +682 -0
  125. data/lib/text_util.rb +110 -0
  126. data/lib/tree.rb +1871 -0
  127. data/lib/tree_cursor.rb +87 -0
  128. data/lib/trouble_shooting.rb +27 -0
  129. data/lib/url_tree.rb +11 -0
  130. data/lib/view.rb +1474 -0
  131. data/lib/window.rb +133 -0
  132. data/lib/xiki.rb +404 -0
  133. data/menus/accounts.rb +5 -0
  134. data/menus/address_book.rb +21 -0
  135. data/menus/agenda.rb +28 -0
  136. data/menus/all.rb +5 -0
  137. data/menus/amazon.rb +16 -0
  138. data/menus/app.rb +16 -0
  139. data/menus/applescript.rb +46 -0
  140. data/menus/as.rb +15 -0
  141. data/menus/bookmarklet.rb +63 -0
  142. data/menus/bootstrap.rb +568 -0
  143. data/menus/browse.rb +13 -0
  144. data/menus/browser.rb +78 -0
  145. data/menus/cassandra_db.rb +36 -0
  146. data/menus/chmod.rb +27 -0
  147. data/menus/classes.rb +5 -0
  148. data/menus/coffee_script.rb +35 -0
  149. data/menus/computer.rb +24 -0
  150. data/menus/contacts.rb +5 -0
  151. data/menus/cookies.rb +25 -0
  152. data/menus/couch.rb +184 -0
  153. data/menus/crop.rb +45 -0
  154. data/menus/css.rb +55 -0
  155. data/menus/current.rb +5 -0
  156. data/menus/db.rb +12 -0
  157. data/menus/deck.rb +219 -0
  158. data/menus/dictionary.rb +9 -0
  159. data/menus/dir.rb +8 -0
  160. data/menus/disk.rb +5 -0
  161. data/menus/do.rb +13 -0
  162. data/menus/docs.rb +58 -0
  163. data/menus/dotsies.rb +107 -0
  164. data/menus/edited.rb +18 -0
  165. data/menus/emacs.rb +17 -0
  166. data/menus/enter.rb +13 -0
  167. data/menus/eval.rb +17 -0
  168. data/menus/executable.rb +16 -0
  169. data/menus/filter.rb +46 -0
  170. data/menus/firefox.rb +607 -0
  171. data/menus/foo.rb +30 -0
  172. data/menus/french.rb +7 -0
  173. data/menus/git.rb +185 -0
  174. data/menus/gito.rb +785 -0
  175. data/menus/google.rb +35 -0
  176. data/menus/google_images.rb +11 -0
  177. data/menus/google_patents.rb +10 -0
  178. data/menus/gutenberg.rb +13 -0
  179. data/menus/head.rb +10 -0
  180. data/menus/headings.rb +39 -0
  181. data/menus/html.rb +61 -0
  182. data/menus/icon.rb +40 -0
  183. data/menus/images.menu +2 -0
  184. data/menus/img.rb +15 -0
  185. data/menus/info.rb +9 -0
  186. data/menus/ip.rb +10 -0
  187. data/menus/iterm.rb +36 -0
  188. data/menus/itunes.rb +78 -0
  189. data/menus/javascript.rb +74 -0
  190. data/menus/layout.rb +18 -0
  191. data/menus/local_storage.rb +67 -0
  192. data/menus/ls.rb +19 -0
  193. data/menus/mac.rb +87 -0
  194. data/menus/maps.rb +18 -0
  195. data/menus/matches.rb +18 -0
  196. data/menus/memcache.rb +117 -0
  197. data/menus/mkdir.rb +23 -0
  198. data/menus/mongo.rb +83 -0
  199. data/menus/mysql.rb +294 -0
  200. data/menus/node.rb +88 -0
  201. data/menus/open.rb +19 -0
  202. data/menus/outline.rb +24 -0
  203. data/menus/piano.rb +746 -0
  204. data/menus/postgres.rb +34 -0
  205. data/menus/pre.rb +5 -0
  206. data/menus/python.rb +39 -0
  207. data/menus/rails.rb +160 -0
  208. data/menus/rake.rb +12 -0
  209. data/menus/redmine.rb +168 -0
  210. data/menus/riak_tree.rb +204 -0
  211. data/menus/rss.rb +15 -0
  212. data/menus/safari.rb +11 -0
  213. data/menus/sass.rb +15 -0
  214. data/menus/say.rb +6 -0
  215. data/menus/scale.rb +49 -0
  216. data/menus/serve.rb +78 -0
  217. data/menus/shuffle.rb +24 -0
  218. data/menus/spanish.rb +7 -0
  219. data/menus/standalone.rb +57 -0
  220. data/menus/tail.rb +41 -0
  221. data/menus/technologies.rb +19 -0
  222. data/menus/themes.rb +32 -0
  223. data/menus/thesaurus.rb +13 -0
  224. data/menus/to.rb +24 -0
  225. data/menus/twitter.rb +57 -0
  226. data/menus/wikipedia.rb +34 -0
  227. data/menus/words.rb +11 -0
  228. data/spec/code_tree_spec.rb +59 -0
  229. data/spec/diff_log_spec.rb +40 -0
  230. data/spec/file_tree_spec.rb +102 -0
  231. data/spec/keys_spec.rb +24 -0
  232. data/spec/line_spec.rb +68 -0
  233. data/spec/menu_spec.rb +50 -0
  234. data/spec/ol_spec.rb +98 -0
  235. data/spec/remote_spec.rb +43 -0
  236. data/spec/search_spec.rb +162 -0
  237. data/spec/text_util_spec.rb +119 -0
  238. data/spec/tree_cursor_spec.rb +91 -0
  239. data/spec/tree_spec.rb +955 -0
  240. data/tests/console_test.rb +11 -0
  241. data/tests/couch_db_test.rb +12 -0
  242. data/tests/diff_log_test.rb +43 -0
  243. data/tests/el_mixin.rb +16 -0
  244. data/tests/git_test.rb +95 -0
  245. data/tests/keys_test.rb +19 -0
  246. data/tests/line_test.rb +38 -0
  247. data/tests/merb_test.rb +11 -0
  248. data/tests/redmine_test.rb +50 -0
  249. data/tests/remote_test.rb +31 -0
  250. data/tests/rest_tree_test.rb +70 -0
  251. data/xiki.gemspec +37 -0
  252. metadata +332 -0
@@ -0,0 +1,79 @@
1
+ > Browse
2
+
3
+ /tmp/
4
+
5
+
6
+ > Search
7
+
8
+ /projects/xiki/
9
+
10
+
11
+ > Create file inline
12
+
13
+ - Pretend like file exists
14
+
15
+ /tmp/
16
+ bar.txt
17
+
18
+
19
+ > Edit without opening
20
+
21
+ /tmp/
22
+ foo.txt
23
+
24
+
25
+ > Create files
26
+
27
+ - Pretend like file and dir exist...
28
+
29
+ /tmp/foo/
30
+ bar.txt
31
+
32
+
33
+ > Copy files
34
+
35
+ /tmp/foo/
36
+ bar.txt
37
+ bee.txt
38
+
39
+
40
+ > Rename files
41
+
42
+ - Rename...
43
+
44
+ /tmp/foo/
45
+ bar.txt
46
+ bee.txt
47
+
48
+
49
+ > Delete files
50
+
51
+ - Delete...
52
+
53
+ /tmp/foo/
54
+ bar.txt
55
+ bee.txt
56
+
57
+
58
+ > Mass operations
59
+
60
+ - Mass rename...
61
+
62
+ /tmp/foo/
63
+ bar.txt
64
+ bee.txt
65
+
66
+
67
+ > Mass operations
68
+
69
+ - Mass delete...
70
+
71
+ /tmp/foo/
72
+ bar.txt
73
+ bee.txt
74
+
75
+
76
+ > Remote files
77
+
78
+ /xiki@xiki.org/
79
+
@@ -0,0 +1,22 @@
1
+ > Show opening an icon
2
+
3
+ - Double-click a file to use a menu
4
+
5
+ - /Users/craig/Desktop/
6
+ - paint.xiki
7
+ | - colors/
8
+ | - red/
9
+ | - blue/
10
+ | - green/
11
+ | - sheen/
12
+ | - flat/
13
+ | - eggshell/
14
+ | - gloss/
15
+
16
+
17
+ > .xiki files in url's
18
+
19
+ - Click on a link to run the menu
20
+
21
+ http://mongo.org/mongo.xiki
22
+
@@ -0,0 +1,24 @@
1
+ > Navigating
2
+
3
+ - /projects/xiki/etc/
4
+ + logo.png
5
+
6
+ - Click the plus!
7
+
8
+
9
+ > Doing stuff to images
10
+
11
+ - /projects/xiki/etc/
12
+ + logo.png
13
+ @scale/
14
+
15
+
16
+ > Using images in menus
17
+
18
+ spectrum/
19
+
20
+
21
+ > Related demo
22
+
23
+ /projects/xiki/etc/demos/
24
+ - svg.deck
@@ -0,0 +1,16 @@
1
+ > Define shortcuts
2
+
3
+ Keys.Z { Line << "hey" }
4
+
5
+
6
+ > Define shortcuts
7
+
8
+ Keys.Z { Browser.url "http://xiki.org" }
9
+ Keys.Z { Line.gsub!(/ +/, " ") }
10
+
11
+
12
+ > Define shortcuts
13
+
14
+ Keys.do_hi { Line << "hey there" }
15
+
16
+
@@ -0,0 +1,18 @@
1
+ > One macro
2
+
3
+ - as+job
4
+ - do+job
5
+
6
+ 4151112222
7
+
8
+ 4151113333
9
+
10
+
11
+ > Multiple lines
12
+
13
+ - as+job
14
+ - up+do+job
15
+
16
+ tables/sharks/
17
+
18
+
@@ -0,0 +1,44 @@
1
+ > Make a menu
2
+
3
+ - Two types of "routing"
4
+ - manual
5
+ - .menu method
6
+
7
+
8
+ > .menu method that handles params manually
9
+
10
+ class Short
11
+ def self.menu arg=nil
12
+ if ! arg
13
+ return "
14
+ - a/
15
+ - b/
16
+ "
17
+ end
18
+ "- you said '#{arg}'"
19
+ end
20
+ end
21
+
22
+ >> Demo it
23
+
24
+
25
+ > .menu method that routes
26
+
27
+ class Short
28
+ def self.menu
29
+ "
30
+ - a/
31
+ - aa/
32
+ - .b/
33
+ "
34
+ end
35
+ def self.b arg=nil
36
+ return "- something" if ! arg
37
+ "- ((#{arg}))"
38
+ end
39
+ end
40
+
41
+ >> Demo it
42
+
43
+
44
+
@@ -0,0 +1,30 @@
1
+ > Dirs
2
+
3
+ ~/menus/
4
+ /projects/xiki/menus/
5
+
6
+
7
+ > Dirs
8
+
9
+ ~/menus/
10
+ /projects/xiki/menus/
11
+
12
+ - Home directory over-rides
13
+
14
+
15
+ > Dirs
16
+
17
+ ~/menus/
18
+ /projects/xiki/menus/
19
+
20
+ - Home directory over-rides
21
+ - so you can customize
22
+
23
+
24
+ > Show example
25
+
26
+ - Example that over-rides...
27
+
28
+ computer/
29
+
30
+
@@ -0,0 +1,19 @@
1
+ > Example of notes
2
+
3
+ - Go to url that doesn't exist...
4
+
5
+ http://xiki/store/
6
+
7
+
8
+ > Tech notes
9
+
10
+ - Show ruby notes...
11
+
12
+
13
+ > Notes with steps
14
+
15
+ - Make notes with shell commands
16
+
17
+
18
+
19
+
@@ -0,0 +1,55 @@
1
+ > Javascript
2
+
3
+ - do+as+javascript
4
+
5
+ >>
6
+ function hi(){
7
+ print("hey" + "you")
8
+ }
9
+
10
+ hi();
11
+
12
+
13
+ > Python
14
+
15
+ - do+as+python
16
+
17
+ >>
18
+ class Pyth:
19
+ def hi(self):
20
+ print "hey" + "you"
21
+
22
+ Pyth().hi()
23
+
24
+
25
+ > Node
26
+
27
+ node/
28
+
29
+
30
+ > Calling classes inline
31
+
32
+ - Demo...
33
+
34
+ - /projects/xiki_wrappers/
35
+ - shrimp.rb
36
+ + shrimp.rb/
37
+
38
+
39
+ > Calling classes inline
40
+
41
+ - Demo...
42
+
43
+ - /projects/xiki_wrappers/
44
+ + crab.rb
45
+ + crab.rb/
46
+
47
+
48
+ > Calling classes inline
49
+
50
+ - Demo...
51
+
52
+ - /projects/xiki_wrappers/
53
+ + clam.py
54
+ + clam.py/
55
+
@@ -0,0 +1,5 @@
1
+ > Explore the menu
2
+
3
+ piano/
4
+
5
+
@@ -0,0 +1,38 @@
1
+ > Difflog
2
+
3
+ - Diffs of every change you make is saved
4
+
5
+ - key: open+difflog
6
+
7
+
8
+ > Edits to one file or dir
9
+
10
+ - key: search+edits
11
+
12
+
13
+ > Diff with saved
14
+
15
+ - key: do+compare+saved
16
+
17
+
18
+ > Diff with git
19
+
20
+ - key: do+compare+repository
21
+
22
+
23
+ > Diff all unsaved files
24
+
25
+ - key: open+not+saved
26
+
27
+
28
+ > Edits since backup
29
+
30
+ - Make backup: as+version
31
+
32
+ - key: do+compare+last
33
+
34
+
35
+ > Diff of unsaved files
36
+
37
+ - Show all changes not saved: open+not+saved
38
+
@@ -0,0 +1,18 @@
1
+ > How xiki started
2
+
3
+
4
+ > Obvious Next steps
5
+
6
+ - aren't obvious until you get to the previous step
7
+ - but then are obvious
8
+
9
+
10
+ >
11
+ - 1) textual bullets (indent 2 spaces)
12
+ - 2) files
13
+ - 3) contents indented 2 spaces
14
+ - 4) code
15
+ - 2) output is indented 2 spaces
16
+ - 5) mapping to classes / methods
17
+ - 6) simpler path-like syntax
18
+ - 7) if file isn't there, create it
@@ -0,0 +1,711 @@
1
+ > Xiki Introduction
2
+
3
+ - Very quick intro to Xiki
4
+
5
+ @logo
6
+
7
+
8
+ > Xiki Introduction
9
+
10
+ - Very quick intro to Xiki
11
+
12
+ - a lot in short time
13
+
14
+
15
+ > Xiki Introduction
16
+
17
+ - Very quick intro to Xiki
18
+
19
+ - http://xiki.org
20
+
21
+
22
+ > Xiki Introduction
23
+
24
+ - Very quick intro to Xiki
25
+
26
+ - http://xiki.org/screencasts
27
+
28
+
29
+ > Xiki Introduction
30
+
31
+ - Very quick intro to Xiki
32
+
33
+ - http://xiki.org/screencasts
34
+ - short screencasts on various topics
35
+
36
+
37
+ > What is Xiki?
38
+
39
+
40
+
41
+ > What is Xiki?
42
+
43
+ Multiple things...
44
+
45
+
46
+ > What is Xiki?
47
+
48
+ Multiple things...
49
+
50
+ - 1) Shell terminal
51
+
52
+
53
+ > What is Xiki?
54
+
55
+ Multiple things...
56
+
57
+ - 1) Shell terminal
58
+
59
+ $ ls -l
60
+
61
+
62
+ > What is Xiki?
63
+
64
+ Multiple things...
65
+
66
+ - 1) Shell terminal
67
+ - 2) Note taking tool
68
+
69
+
70
+ > What is Xiki?
71
+
72
+ Multiple things...
73
+
74
+ - 1) Shell terminal
75
+ - 2) Note taking tool
76
+
77
+ >> Wiki-ish headings
78
+
79
+ > What is Xiki?
80
+
81
+ Multiple things...
82
+
83
+ - 1) Shell terminal
84
+ - 2) Note taking tool
85
+
86
+ >> Wiki-ish headings
87
+ - and bullet points
88
+
89
+
90
+ > What is Xiki?
91
+
92
+ Multiple things...
93
+
94
+ - 1) Shell terminal
95
+ - 2) Note taking tool
96
+ - 3) Development environment
97
+
98
+
99
+ > What is Xiki?
100
+
101
+ Multiple things...
102
+
103
+ - 1) Shell terminal
104
+ - 2) Note taking tool
105
+ - 3) Development environment
106
+ - 4) UI framework
107
+
108
+
109
+ > What is Xiki?
110
+
111
+ Multiple things...
112
+
113
+ - 1) Shell terminal
114
+ - 2) Note taking tool
115
+ - 3) Development environment
116
+ - 4) UI framework
117
+
118
+ bookmarklet/
119
+
120
+
121
+ > Pieces
122
+
123
+
124
+ > Pieces
125
+
126
+ - ruby
127
+
128
+
129
+ > Pieces
130
+
131
+ - ruby
132
+ - can use other languages
133
+
134
+
135
+ > Pieces
136
+
137
+ - ruby
138
+ - can use other languages
139
+ - uses emacs as an engine
140
+
141
+
142
+ > Pieces
143
+
144
+ - ruby
145
+ - can use other languages
146
+ - uses emacs as an engine
147
+ - don't need to know emacs
148
+
149
+
150
+ > Pieces
151
+
152
+ - ruby
153
+ - can use other languages
154
+ - uses emacs as an engine
155
+ - don't need to know emacs
156
+ - el4r
157
+
158
+
159
+ > Pieces
160
+
161
+ - ruby
162
+ - can use other languages
163
+ - uses emacs as an engine
164
+ - don't need to know emacs
165
+ - el4r
166
+ - pure awesomeness
167
+
168
+
169
+ > Shell terminal but better
170
+
171
+
172
+ > Shell terminal but better
173
+
174
+ - type commands anywhere
175
+
176
+
177
+
178
+ > Shell terminal but better
179
+
180
+ - expand and collapse
181
+
182
+ $ ls -l
183
+ | total 208
184
+ | -rw-r--r-- 1 craig admin 338 Feb 2 16:57 databases.deck
185
+ | -rw-r--r-- 1 craig admin 301 Feb 2 00:30 diffs.deck
186
+ | -rw-r--r-- 1 craig admin 209 Feb 2 01:41 documentation.deck
187
+ | -rw-r--r-- 1 craig admin 127 Feb 6 23:20 effects.deck
188
+ | -rw-r--r-- 1 craig admin 350 Feb 7 14:37 evolution.deck
189
+ | -rw-r--r-- 1 craig admin 170 Feb 2 17:00 face.deck
190
+ | -rw-r--r-- 1 craig admin 389 Feb 6 15:37 files.deck
191
+ | -rw-r--r-- 1 craig admin 172 Feb 5 15:28 images.deck
192
+ | -rw-r--r-- 1 craig admin 1650 Feb 9 17:49 intro.deck
193
+ | -rw-r--r-- 1 craig admin 303 Feb 2 11:49 key_shortcuts.deck
194
+ | -rw-r--r-- 1 craig admin 218 Feb 2 16:58 macros.deck
195
+ | -rw-r--r-- 1 craig admin 313 Feb 2 12:15 menu_routing.deck
196
+ | -rw-r--r-- 1 craig admin 389 Feb 2 11:36 menus.deck
197
+ | -rw-r--r-- 1 craig admin 554 Feb 7 13:33 other_languages.deck
198
+ | -rw-r--r-- 1 craig admin 312 Feb 8 19:38 piano.deck
199
+ | drwxr-xr-x 3 craig admin 102 Feb 2 00:30 potential
200
+ | -rw-r--r-- 1 craig admin 268 Feb 2 11:38 presentations.deck
201
+ | -rw-r--r-- 1 craig admin 821 Feb 2 01:56 rails_development.deck
202
+ | -rw-r--r-- 1 craig admin 170 Feb 7 16:34 ruby_development.deck
203
+ | -rw-r--r-- 1 craig admin 451 Feb 2 12:20 search_key_shortcuts.deck
204
+ | -rw-r--r-- 1 craig admin 259 Feb 7 13:56 shell_terminal.deck
205
+ | -rw-r--r-- 1 craig admin 952 Feb 2 17:04 testing.deck
206
+ | -rw-r--r-- 1 craig admin 92 Feb 9 16:53 type_anything.deck
207
+ | -rw-r--r-- 1 craig admin 1136 Feb 8 22:37 type_the_acronym.deck
208
+ | -rw-r--r-- 1 craig admin 700 Feb 2 00:31 ui_prototyping.deck
209
+ | -rw-r--r-- 1 craig admin 163 Feb 8 01:27 web_development.deck
210
+ | -rw-r--r-- 1 craig admin 526 Feb 7 13:35 wiki.deck
211
+
212
+
213
+ > Shell terminal but better
214
+
215
+ - type to filter
216
+
217
+ $ ls -lh
218
+ | -rw-r--r-- 1 craig admin 312B Feb 8 19:38 piano.deck
219
+ | -rw-r--r-- 1 craig admin 700B Feb 2 00:31 ui_prototyping.deck
220
+
221
+
222
+ > Shell terminal but better
223
+
224
+ - add notes
225
+
226
+ - check out this file:
227
+ $ ls -lh
228
+ | -rw-r--r-- 1 312B Feb 8 19:38 piano.deck
229
+
230
+
231
+ > Shell terminal but better
232
+
233
+ - save to files to use later
234
+
235
+ - 1. look at disk usage:
236
+ $ df
237
+
238
+ - 2. check out this file:
239
+ $ ls -lh
240
+ | -rw-r--r-- 1 312B Feb 8 19:38 piano.deck
241
+
242
+
243
+ > Shell terminal but better
244
+
245
+ - async commands
246
+
247
+ % ls -l
248
+
249
+
250
+ > Shell terminal but better
251
+
252
+ - have iTerm run commands
253
+
254
+ & ls -l
255
+
256
+
257
+ > Shell terminal but better
258
+
259
+ - commands on remote servers
260
+
261
+ /user@site.com/foo/
262
+ $ ls -l
263
+
264
+
265
+ > Shell terminal but better
266
+
267
+ - history
268
+
269
+
270
+ > Note taking tool
271
+
272
+ - Put notes in text files
273
+
274
+ /tmp/rails.notes
275
+ > Note taking tool
276
+
277
+ - Jump to outline
278
+
279
+
280
+ > Note taking tool
281
+
282
+ http://xiki.org
283
+
284
+
285
+ > Note taking tool
286
+
287
+ google/sharks
288
+
289
+
290
+ > Note taking tool
291
+
292
+ a = 1 + 2
293
+ puts a
294
+ 3
295
+
296
+
297
+ > Note taking tool
298
+
299
+ - /tmp/snakes/
300
+ - app/
301
+ - models/
302
+ + snake.rb
303
+
304
+
305
+ > Note taking tool
306
+
307
+ select * from sharks/
308
+ | id name details datestamp timestamp
309
+ | 1 Ham Hype 2011-01-01 00:20:11
310
+ | 2 White Big 2011-01-01 00:20:11
311
+ | 3 Bull Bullish 2011-01-01 00:20:11
312
+ | 4 Sharky Test 2011-01-01 00:20:11
313
+ | 5 name details 0000-00-00 00:00:00
314
+
315
+
316
+ > Note taking tool
317
+
318
+ - define your own
319
+
320
+ > Development environment
321
+
322
+ xiki/tests/
323
+ - diff_log/
324
+ - all/
325
+ - #parse_tree_diffs/
326
+ - parses a rename/
327
+ - parses a delete/
328
+ | Run options: include {:full_description=>/(?-mix:\#parse_tree_diffs\ parses\ a\ delete)/}
329
+ | F
330
+ |
331
+ | Failures:
332
+ |
333
+ | 1) Line#parse_tree_diffs parses a delete
334
+ | Failure/Error: DiffLog.parse_tree_diffs("d3 2\nd6 1\n").should == [[], [3, 4, 5]]
335
+ | expected: [[], [3, 4, 5]]
336
+ | got: [[], [3, 4, 6]] (using ==)
337
+ | Diff:
338
+ | @@ -1,2 +1,2 @@
339
+ |-[[], [3, 4, 5]]
340
+ |+[[], [3, 4, 6]]
341
+ | # ./spec/diff_log_spec.rb:14
342
+ |
343
+ | Finished in 0.00131 seconds
344
+ | 1 example, 1 failure
345
+ |
346
+ | Failed examples:
347
+ |
348
+ | rspec ./spec/diff_log_spec.rb:13 # Line#parse_tree_diffs parses a delete
349
+ - parses a move/
350
+ - parses an add/
351
+ - parses 2 adds and 2 deletes/
352
+
353
+
354
+ > Development environment
355
+
356
+ html/
357
+ css/
358
+ js/
359
+ dom/
360
+
361
+
362
+ > UI framework
363
+
364
+
365
+ > UI framework
366
+
367
+ - Easy to make your own stuff
368
+
369
+
370
+ > UI framework
371
+
372
+ - Easy to make your own stuff
373
+ - Keyboard shortcuts
374
+
375
+
376
+ > UI framework
377
+
378
+ - Easy to make your own stuff
379
+ - Keyboard shortcuts
380
+ - Wiki syntaxes
381
+
382
+
383
+ > UI framework
384
+
385
+ - Easy to make your own stuff
386
+ - Keyboard shortcuts
387
+ - Wiki syntaxes
388
+ - Menus
389
+
390
+
391
+ > Keyboard shortcuts
392
+
393
+ Keys.Z { Line << "hello" }
394
+
395
+ hellohellohello
396
+
397
+ > Wiki syntaxes
398
+
399
+ Launcher.add(/^shark/) { Line << "!!!!!" }
400
+
401
+ sharks!!!!!!!!!!
402
+
403
+
404
+ > UI framework
405
+
406
+ - menus
407
+
408
+ sharks/
409
+ start/
410
+ url/
411
+ clear cache/
412
+
413
+
414
+ > UI framework
415
+
416
+ ~/menus/
417
+ - sharks.menu
418
+ | start/
419
+ | url/
420
+ | clear cache/
421
+
422
+
423
+ > UI framework
424
+
425
+ sharks/
426
+ start/
427
+ url/
428
+ http://localhost:3000
429
+ clear cache/
430
+
431
+
432
+ > UI framework
433
+
434
+ sharks/
435
+ start/
436
+ url/
437
+ http://localhost:3000
438
+ clear cache/
439
+ @ Shark.clear_cache
440
+
441
+ class Shark
442
+ def self.clear_cache
443
+ "cleared it!"
444
+ end
445
+ end
446
+
447
+
448
+ > UI framework
449
+
450
+ - Give dynamic behaviour to menu items
451
+
452
+
453
+ > UI framework
454
+
455
+ - Blocks
456
+
457
+ Menu.birds {
458
+ "
459
+ blue bird/
460
+ black bird/
461
+ "
462
+ }
463
+
464
+
465
+ > UI framework
466
+
467
+ - Classes
468
+
469
+ class Boats
470
+ def self.menu
471
+ "
472
+ - bayliner/
473
+ - boston whaler/
474
+ "
475
+ end
476
+ end
477
+
478
+
479
+ > UI framework
480
+
481
+ - Classes
482
+
483
+ class Boats
484
+ def self.menu
485
+ "
486
+ - bayliner/
487
+ - .boston whaler/
488
+ "
489
+ end
490
+ end
491
+
492
+
493
+ > UI framework
494
+
495
+ - Classes
496
+
497
+ class Boats
498
+ def self.menu
499
+ "
500
+ - bayliner/
501
+ - .boston whaler/
502
+ "
503
+ end
504
+ def self.boston_whaler
505
+ "whatevs"
506
+ end
507
+ end
508
+
509
+
510
+ > UI framework
511
+
512
+ class Boats
513
+ def self.menu
514
+ "
515
+ - bayliner/
516
+ - .boston whaler/
517
+ "
518
+ end
519
+ def self.boston_whaler
520
+ "whatevs"
521
+ end
522
+ end
523
+
524
+ boats/
525
+ + bayliner/
526
+ - boston whaler/
527
+ whatevs
528
+
529
+
530
+ > Other cool stuff xiki does
531
+
532
+ http://xiki.org
533
+
534
+ - bookmarklets
535
+
536
+
537
+ > Other cool stuff xiki does
538
+
539
+ http://xiki.org
540
+
541
+ - rake
542
+
543
+
544
+ > Other cool stuff xiki does
545
+
546
+ http://xiki.org
547
+
548
+ - applescript
549
+
550
+
551
+ > Other cool stuff xiki does
552
+
553
+ http://xiki.org
554
+
555
+ - haml
556
+
557
+
558
+ > Other cool stuff xiki does
559
+
560
+ http://xiki.org
561
+
562
+ - itunes
563
+
564
+
565
+ > Other cool stuff xiki does
566
+
567
+ http://xiki.org
568
+
569
+ - gems
570
+
571
+
572
+ > Other cool stuff xiki does
573
+
574
+ http://xiki.org
575
+
576
+ - jquery mobile
577
+
578
+
579
+ > Other cool stuff xiki does
580
+
581
+ http://xiki.org
582
+
583
+ - coffee script
584
+
585
+
586
+ > Other cool stuff xiki does
587
+
588
+ http://xiki.org
589
+
590
+ - safari
591
+
592
+
593
+ > Other cool stuff xiki does
594
+
595
+ http://xiki.org
596
+
597
+ - music generation
598
+
599
+
600
+ > Other cool stuff xiki does
601
+
602
+ http://xiki.org
603
+
604
+ - python
605
+
606
+
607
+ > Other cool stuff xiki does
608
+
609
+ http://xiki.org
610
+
611
+ - memcached
612
+
613
+
614
+ > Other cool stuff xiki does
615
+
616
+ http://xiki.org
617
+
618
+ - browse images
619
+
620
+
621
+ > Other cool stuff xiki does
622
+
623
+ http://xiki.org
624
+
625
+ - presentations
626
+
627
+
628
+ > Other cool stuff xiki does
629
+
630
+ http://xiki.org
631
+
632
+ - scale images
633
+
634
+
635
+ > Other cool stuff xiki does
636
+
637
+ http://xiki.org
638
+
639
+ - browser local storage
640
+
641
+
642
+ > Other cool stuff xiki does
643
+
644
+ http://xiki.org
645
+
646
+ - sass
647
+
648
+
649
+ > Other cool stuff xiki does
650
+
651
+ http://xiki.org
652
+
653
+ - riak
654
+
655
+
656
+ > Other cool stuff xiki does
657
+
658
+ http://xiki.org
659
+
660
+ - diffs
661
+
662
+
663
+ > Other cool stuff xiki does
664
+
665
+ http://xiki.org
666
+
667
+ - mongodb
668
+
669
+
670
+ > Other cool stuff xiki does
671
+
672
+ http://xiki.org
673
+
674
+ - browser UI's
675
+
676
+
677
+ > Other cool stuff xiki does
678
+
679
+ http://xiki.org
680
+
681
+ - remote dirs and files
682
+
683
+
684
+ > Other cool stuff xiki does
685
+
686
+ http://xiki.org
687
+
688
+ - git
689
+
690
+
691
+ > Other cool stuff xiki does
692
+
693
+ http://xiki.org
694
+
695
+ - google chrome
696
+
697
+
698
+ > Other cool stuff xiki does
699
+
700
+ http://xiki.org
701
+
702
+ - couchdb
703
+
704
+
705
+ > Other cool stuff xiki does
706
+
707
+ http://xiki.org
708
+
709
+ - browser cookies
710
+
711
+