Skip to content

Commit d14cf99

Browse files
author
Zev Blut
committed
Some clean up. Filling out poll section
1 parent 01f5354 commit d14cf99

File tree

9 files changed

+112
-52
lines changed

9 files changed

+112
-52
lines changed

poll.txt

-17
This file was deleted.

presentations/intro.txt

+3-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
# This is a test presentation using epresent.el
21
* @M-x ruby-and-emacs-workshop
32

4-
# The objectives of the workshop
5-
63
** To learn more about using Emacs efficiently.
74

85
** Focusing on coding in Ruby
@@ -14,6 +11,8 @@
1411

1512
* Outline
1613

14+
** Poll
15+
1716
** Setup
1817

1918
** Basics
@@ -34,9 +33,5 @@
3433
* @Setup
3534

3635
** Make sure everyone has Emacs running and at a reasonable version
37-
# version 22 preferably 23
36+
** version 22 preferably 23
3837

39-
** Perhaps setup a small virtual box VM image with Emacs.
40-
# Question for TLUG to answer
41-
# The question is will there be a fast enough method to distribute
42-
# this image and vbox to the members? CDs USB drives?

presentations/learn_more.txt

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,25 @@
11
* Where to learn more about Emacs
2-
** C-h t Emacs tutorial and built in manual
2+
3+
** C-h t Emacs tutorial and built in manuals
34

45
** Planet Emacsen http://planet.emacsen.org/
56

67
** Emacs twitter accounts
8+
** http://twitter.com/learnemacs
79

810
** Emacs Wiki http://www.emacswiki.org
911

1012
* Books
1113

1214
** Rubikitch book
15+
Emacsテクニックバイブル ~作業効率をカイゼンする200の技
16+
17+
* Screencasts
18+
19+
** Good references?
20+
21+
** Peepcode http://peepcode.com/products/meet-emacs
22+
23+
* Emacs envs
24+
25+
** emacs-starter-kit

presentations/poll.txt

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
* @Poll
2+
3+
4+
** What parts of Emacs do you use?
5+
6+
7+
* @.emacs
8+
9+
** .emacs or init.el
10+
11+
12+
** How many customizations do you have?
13+
** (None/Small/Medium/Large/X-Large)
14+
15+
16+
* @Essential Addons
17+
18+
** ido-mode
19+
20+
** anything.el
21+
22+
* @Rails modes
23+
24+
** rinari
25+
26+
** emacs-rails
27+
28+
29+
* Other coding tools
30+
31+
** Speedbar
32+
33+
34+
** ECB
35+
36+
37+
* Emacs package management
38+
39+
** ELPA
40+
41+
** Auto-install emacswiki
42+
43+
* Life in Emacs
44+
45+
* Mail
46+
47+
** GNUS
48+
49+
** Mew
50+
51+
** Wanderlust
52+
53+
* Twitter
54+
** Twiter.el
55+
56+
57+
** Twittering
58+
59+
** IRC
60+
61+
** WWW
62+
63+
* Shell
64+
65+
66+
** Eshell
67+
68+
69+
** ansi-term
70+
71+
72+
** multi-term
73+
74+
75+
** irbsh
76+

presentations/presentation-1.txt

-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@
4949
[C-c M-r] send region and go
5050

5151

52-
53-
5452
** GDB
5553

5654

record.el

+3-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@
2424
;; Not sure why, but setting these as a defun only winds up executing
2525
;; the last hook.
2626
(progn
27-
(add-hook 'pre-command-hook 'track-command-executed)
28-
(add-hook 'after-change-major-mode-hook 'track-mode-change))
27+
(add-hook 'pre-command-hook 'track-command-executed))
28+
;; change mode only shows fundamental mode...
29+
;;(add-hook 'after-change-major-mode-hook 'track-mode-change))
2930

3031

3132
(progn

resources.txt

-10
This file was deleted.

rubykaigi.el

+12-12
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,16 @@
4444
;; http://blogs.msdn.com/b/steverowe/archive/2004/11/17/code-editor-learning-curves.aspx
4545
(find-file (concat democamp/image-dir "curves.jpg")))
4646

47+
(progn
48+
"poll"
49+
(democamp/load-presentation "poll.txt"))
50+
4751
;; ruby-mode in action
4852
;; epresent file 1
49-
(democamp/load-presentation "presentation-1.txt")
53+
(progn
54+
"presentation globbed together"
55+
(democamp/load-presentation "presentation-1.txt"))
56+
5057

5158
;; kind of want a macro to show the key combination and the defun it
5259
;; is mapped to then run the combo and delay for a second
@@ -248,23 +255,16 @@
248255
;; Need to update etags for ruby and recursive directory search
249256
)
250257

251-
252-
;; More advanced features
253-
254-
;; (progn
255-
;; (democamp/say "Spell-check, too.")
256-
;; (load-library "flyspell")
257-
;; (load-library "emacspeak-flyspell")
258-
;; (setq emacspeak-flyspell-highlight-personality nil)
259-
;; (flyspell-mode 1))
260-
261258
(progn
262259
"xkcd"
263260
(delete-other-windows)
264261
;; http://xkcd.com/378/
265262
(find-file (concat democamp/image-dir "real_programmers.png")))
266263

267-
(democamp/load-presentation "learn_more.txt")
264+
265+
(progn
266+
"learn more"
267+
(democamp/load-presentation "learn_more.txt"))
268268

269269
(progn
270270
"show and tell"

timeline.txt

+4
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,7 @@ show occur search
5555
show grep search
5656
create Tags to search
5757

58+
59+
60+
# Make most of Rails app and then focus on the Quiz/Math gcd to avoid
61+
# design and long drawn out stuff?

0 commit comments

Comments
 (0)