-
Notifications
You must be signed in to change notification settings - Fork 1
/
b
1015 lines (1015 loc) · 10.1 KB
/
b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
a2ps
a2ps_page_size
aaaaa
abstractsingletonproxyfactorybean
abstract_singleton_proxy_factory_bean
accesskeys
ack
acl9
activerecord
acts_as_authenticated
acts_as_state_machine
acts_as_taggable_on
address
administrateme
agile
alias
amazon_conditions
ambition
android
andy
annotations
ansi
apache
apache2
apache2_conf
apache_regex
aptitude
arel_expressions
arel_predications
argparse
ar_i18n
arspy
arts
aruba
aruba_step_definitions
as3_formulas
ascii
asciidoc
asdf
assert
assert_block
assert_difference
assert_dom_equal
assert_dom_not_equal
assert_equal
assert_generates
assert_have_selector
assert_in_delta
assert_instance_of
assertions
assert_kind_of
assert_match
assert_nil
assert_no_difference
assert_no_match
assert_no_tag
assert_not_equal
assert_nothing_raised
assert_nothing_thrown
assert_not_nil
assert_not_same
assert_operator
assert_raise
assert_raises
assert_recognizes
assert_redirected_to
assert_respond_to
assert_response
assert_routing
assert_same
assert_select
assert_send
assert_tag
assert_template
assert_throws
assert_valid
association_methods
asunit
auth
authorizenet
auto_like
autotest
averylongnamethatwecanfind
awawawawawaw
awesome
awk
backbonejs
backbone_testing
bacon
balloon
bartleby
bash
bash_complete
bash_emacskeys
bashhistory
bash_if
bash_param
bash_scripting
batman
belongs_to
benchmark
beyondtheurinal
blender
blogs
blow
blueprint
bm
boost_test
borg
box_chars
boyfriend
bpd
braid
brcbrcbrc
brew
bruce_schneier_facts
bsd_license
bug
bzr
caffeine
cakephp
callbacks
campaign_monitor
campfire
canvas
capazon
cap_bare
cap_deploy
capistrano
capybara
cascading
cascalog
ccrb
cd
centos_clone
cformats
chase
chat
cheat
cheat_2020
cheat_el
cheats
cheat_sheets_om
chmod
chocolate
choice
chrome
chromium
chronic
chuck_norris_facts
clojure
cocoaerrors
coding
coffeescript
colored
commands
compass
compass_wordpress
conf_calls
conkeror
console
context
converted
convert_odt_pdf
cool_options
couchdb
cpesnottrapping
cpio
crash_plan
cron
crontab
cryptsetup
cs_reply
cs_resolve
css3_selectors
css_at_rules
css_boxing
css_complete
css_media
css_selectors
css_vertical_align
csup
cucover
cucumber
cucumber_tags
cuke4duke
curl
cut
damon
darcs
darcs_record
database_yml
datamapper
date
date_info
datizzle
ddclient
ddd
death
deb_packages
declarative_authorization
default_passwords
delete_me
dell_linux_bios_update
deprec
deprec2
deprecated
devise
dexagogo_form_validation
diakonos
diet
dired
ditto
ditz
dns
dollar
dom
doom
dot
dpkg
dragon_warrior
drugs
drush
dsvn
dtrace
du
dvtm
each
ebs
ec2
ecb
eclim
ed
eee
eg
elad
emacs
emacs_basics
emacs_psvn
emacs_slime
emacs_tips
emacs_zencoding
ensime
enumerable
environments
environment_variables
epsg
erb
eric
erl
erlang
ertetre
e_text_editor
euca2ools
eventmachine
exceptions
ey
facebook
factory_girl
faker
faster_csv
fbgraph
fela
ffi
ffmpeg
fgraph
fidic
file_test
final_fantasy_6
finance
find
finder
firebug
firefox_lockdown
firephp
fish
flashen
flickrurl
flow
fm
font_stacks
foo
forgery
form_for
freebsd
freenode
ftp
gadding
galician_stew
game
gazpacho
gcc
gem
gemfile
gemfile
gem_release
gems
ghi
girlfriend
gist_vim
git
git_add_i
git_buildpackage
git_collaboration
git_flow
github
gitignore
git_log
gitosis
git_remote_branch
git_submodule
gitsvn
gitsvn_clone_branches
git_textmate_bundles
git_usage
gjs
gli
globals
gmail
gmake
gnome_terminals_4_rails
gnupg
google
google_cdn_javascript
gpg
gpl
gpl_short
grails
greader
greek_alphabet
grep
groovy_sql
gruff
gslice
gsub
gtd
guard
guitar
haiku
hajime_add_cheat
hamcrest
haml
handbrake
handlebars
hard_english_word
has_and_belongs_to_many
hash
haskell
has_many
has_one
have_tag
heartrate
hello
helm
help
heroku
hg
highline
history
hitch
hobo
hobo_names
hobo_template
hot_chocolate
how_to_make_english_muffins
how_to_make_flour_tortillas
hpricot
htaccess4
html
http
http_status_codes
hub
hudson
husband
hwh_asset_pipeline
hwh_broadcast
hwh_dynamic_method_calls
hwh_event_helpers
hwh_google_places_find_place
hwh_helper_methods
hwh_mac_screenshots
hwh_nested_attributes
hwh_notification
hwh_test_assertions
hwh_url_shortener
hwh_yelp_find_businesses
hypothermia
i3wm
iana_port_list
iconv
illinois
il_screen
imagemagick_geometry
install_cucumber_gem
install_from_gemspec
install_rspec_rails
install_rspec_rails114
integration_by_parts
into_the_code
io
iomodes
iphone
ipod_touch
iptables
irb
irc
irssi
iterm
jar
jasmine
jasmine_jquery
java
jedit_ruby_editor_plugin
jeff_dean_numbers
jik
jira
jmx
jon
jquery
jqueryfn
js_function
json
js_self_executing
js_self_executing
karma
kde_session
kenzu_ryu
kernel_update
keytool
kill
knife
knifeec2
konami_code
kriss
ksdhfv
kt
launchctl
learn_rails
learn_this
legit
leopard
less
lesscss
lgpl
life
lift
lighthouse
lighttpd
lilutils
link_to_remote
linux
linux_distribution
linux_ext_monitor
linux_history
linux_network_boot
linux_nic
ln
logging
logrotate
lorem
lorem_ipsum
lorum
lose_weight
lotus_domino_url
ls
lsof
lucene_query_syntax
lvm
mac_gem_install_mysql
mac_glyphs
mac_shortcuts
magit
mail
makaveli
manish
markaby
markdown
maro
marsmission
master
matchy
mate
matz_bot
maven
mechanize
mencoder
merb
mercurial
metaprogramming
method_lister
microformats_helper
migrations
military_alphabet
minitest
misc
mite
mit_license
mktime
mocha
mod_rewrite
mogitblame
moneta
mongo
mongoengine
mongoid
mongo_mapper
mongoruby
monit
most
mount_dd_image
mount_lvm
mplayer
mustache
mutt_gmail
mysql
mysql_delete
mysql_insert
mysql_move
mysql_select
mysql_update
named_scope
nanoc
nc
neos
nerdtree
nerd_tree
netbeans
net_http
netstat
network
network_interface_mac_address
nginx
nibblenuts
nils
nmap
nodejs
nokogiri
nonsense
notify
nslog
nsupdate
nu
number_lines
nvalt
obj_c
objc_formats
octave
octopress
odbc
oh_my_zsh
okay
omlinux
oneline
oniguruma
oop
opensc
open_solaris
openssl
openvz
oracle
orgmode
orgmode_agenda_views
orgmode_archiving
orgmode_cal_diary
orgmode_completion
orgmode_dynamic_blocks
orgmode_exporting_publishing
orgmode_filter_and_sparse_trees
orgmode_getting_started
orgmode_latex_mode
orgmode_links
orgmode_motion
orgmode_structure_editing
orgmode_tables
orgmode_tags
orgmode_timestamps
orgmode_todo_and_checkboxes
orgmode_visibility_cycling
osmosis
osxbash
osxscreenshot
pack
pacman
padrino
pairing
palm_webos
paperclip
passenger
password
paste
pastie_vim
pcre
pdf
perforce
perl
perl_best
perldoc
perl_replace
permalink_fu
permissions
pga_ruby_hash
pga_ruby_loop
phantomjs
phonegap
phonetic
photoshop
php_strtotime
phpunit
piston
pivotaltracker
plugins
poker
pola_violations
police
port
postgis
postgres_csv
postgresql
powder
predefined_variables
prim
programming_time_translation
prototype
ps1
puppet
pygmentize
pymongo
pyp
python
python_doctest
python_web
queriac
r4fy
rack
rack_profiler
rack_test
radrails
radrails_rhtml
radrails_ruby
raid
rails
rails_3_ajax_events
rails3generate_scaffold
rails_checklist
rails_configuration
rails_console
rails_conventions
rails_data_types
rails_date_formats
rails_edge
rails_environment
rails_helpers
rails_keywords
rails_migrations
rails_model
rails_plugin_creation
rails_plugin_creation_detailed_example
rails_postgres
rails_rake_db
rails_rake_tasks
rails_relationships
rails_request_object
rails_reserved_words
rails_review
rails_routes
rails_svn
rails_tasks
rails_testing
rails_tips
rails_to_s
rails_vim
raise_rescue
rake_details
rakefile
ratpoison
rayvim
rbenv
rcov
rdebug
rdf
rdiff_backup_restore
rdoc
readline
readme
recursive
redirect
redis
regelwerk
regex
regex_lib
regexp
regexp_special_chars
remarkable
remind_commands
resource_controller
rest
rexml
rgit
rhodes
rinari
rjs
rkj
rm
rngtng
robotlegs
roo
rope
ropevim
rpm
rpm2cpio
rr
rspec
rspec_formats
rspec_on_rails_matchers
rspec_should
rspec_shoulda
rst
rsync
rtorrent
ruby
ruby1line
ruby_about_com_example
ruby_arch
ruby_arrays
ruby_comments
rubydebug
ruby_encoding
ruby_globals
rubyio
ruby_kernel_test
ruby_keywords
ruby_license
ruby_main
ruby_mode_strings
ruby_naming
ruby_one_liners
ruby_percent
ruby_predef
rubyprof
ruby_string
ruby_string_examples
ruby_strings
ruby_switch
ruby_tools
runescape
rvm
rzyncbackup
s3cmd
s3sync
saf
sake
sam
sass
sbt
scaffold_resource
scala
scili
scp
scrapi
screen
sed
sed_delete
sed_numbering
sed_print
sed_spacing
select_box
selenium
selenium_on_rails
sem
semver
semweb
sencha_sdk
sendmail
sen_test_assertions
seo
sequel
servers
seven_dwarves
sex
sh
sheets
shoes
shoulda
shutdown
simpletest
sinasi
sinatra
site
sketch
skipfish
slicehost
smalltalk
smbfs
sness
solaris_containers
solaris_smf
sort
sourround
spc
spirit_of_the_game
spock
spreadsheet
sprintf
sql
sql_alter
sqld4r
sqlite
sqlite_console
sre
ssh
sshfs
sshkeys
status_codes
sti
stock_symbols
strftime
string
string_template
string_unpack
strptime
styleguide
subl
sublime_text
sudo
sun_ilom
sunspot
surround
svn
svnmerge
swfobject
syahrin1333
symfony_freeze
symlink
syntax
systemc
tabs_to_whitespaces
tabular
tar
task_advanced
task_simple
taxes
tcpdump
tempfile
ten_commandments
term_ansicolor
terminal
terminal_escapes
terminator
terminitor
tes
test
test1001
test2
test3
test_cheat
teste
testing
testingchhhh
test_sheet
test_spec
test_spec_rails
testtesttest
test_unit
textadept
textile
textmate
textmate_rails
textmate_ruby
textorize
tgd
the_game
the_irs
this
thor
thor_executable
tidy
time
timecop
timezones
tina
tinyos
tld
tmux
todoist
toggle_fold_fix
to_i
to_learn
tom
tr
triforce
tung
tunneling
tweet_im
twittering_mode
twitterrific
txt2tags
typhoeus
ubuntu
ubuntu_keyborad_shortcuts
ubyubyuby
underscore
undo_tree
unicode
unicorn
unix
unko
unpack
unrar
unzip
uri
user
useradd
usermod
vagrant
validations
veewee
verilog
vi
vim
vim2
vim_anders
vimdiff
vim_folding
vim_gg
vim_gist
vim_goodies
vimhelp
vimium
vimre
vim_surround
vimtips
vim_viewports
virsh
virtualenvwrapper
vrome
vs2005
vs2010
w3m
watir
watir_ie
webkit
webrat
websphere
web_steps
wget
whenever
wife
win32_sc
windows_remote_desktop_clients
wmii3
word
wordpress
wordserver
words_with_friends
wp_names_app
wxd
xargs
xcode
xfbml
xiaguizi
xmonad
xmpp
xpath
xpath_result_type
xrandr
xsan
xslt
xv
yaml
yard
yas_ruby_snippet
yboss
yeah
yui
yuiconnect
yuidom
yuievent
yuifonts
yui_fonts
yuiglobal
yuigrids
yui_grids
yuilang
yum
yum_upgrade
zeiten
zentest
zf
zhangnan
zsh
zsh_array
zsh_bang
zsh_case
zsh_ftp
zsh_glob
zsh_if
zsh_keys
zsh_loop
zsh_modifiers
zsh_param