-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathafile
9999 lines (9999 loc) · 525 KB
/
afile
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
1 ls .oh-my-zsh
2 cd .oh-my-zsh
3 cd themes
4 ln -snf ~/config/oh-my-zsh-custom ~/.oh-my-zsh-custom
5 cd /media/valhalla/d
6 rm -rf ssh-vault
7 git clone [email protected]:merc1031:grafana.git
8 git clone [email protected]:merc1031/grafana.git
9 grep -r graphiteUrl .
10 grep -r flot
11 grep -r flot .
12 grep -r plot .
13 vi ./src/app/directives/grafanaGraph.js
14 ln -snf ~/config/vimrc ~/.vimrc
15 ln -snf ~/config/vimrc-bundles ~/.vimrc-bundles
16 ls -la ~/.
17 rm -rf .vim
18 ln -snf ~/config/vim ~/.vim
19 mkdir -p ~/.unite/.cache
20 python check-dependencies.py
21 cd /opt/graphite/webapp
22 vi local_settings.py
23 vi app_settings.py
24 import whisper
25 cd graphite/account
26 vi storage.py
27 cd graphite-web/
28 git checkout 0.9.12
29 cd whisper
30 vi whisper.py
31 cd graphite-web
32 git checkout 0.9.x
33 grep -r maxDataPoints .
34 vi ./src/app/services/graphite/graphiteDatasource.js
35 cd /media/valhalla/dev
36 vi ./src/app/panels/graphite/module.js
37 git commit -am 'round up maxDataPoints to nearest integer in request. graphite 0.9.x and 0.9.12 seem to treat decimal maxDataPoints badly returning enourmous amounts of data'
38 git config --global user.name "Leonidas Loucas"
39 git config --global user.email "[email protected]"
40 git commit --amend --reset-author
41 sudo aptitude install npm nodejs-dev
42 sudo npm install grunt server
43 sudo npm install grunt
44 npm
45 npm ins
46 vi /media/valhalla/dev/grafana/npm-debug.log
47 npm install grunt server grunt
48 npm install grunt server
49 npm install grunt
50 npm install grunt-server
51 npm config set registry http://registry.npmjs.org/
52 npm install npm
53 npm ERR! Error: failed to fetch from registry: grunt
54 sudo apt-get install -y python-software-properties python g++ make
55 sudo add-apt-repository ppa:chris-lea/node.js
56 cd tasks
57 cd options
58 vi CONTRIBUTING.md
59 which grunt
60 vi Gruntfile.js
61 which node
62 which nodejs
63 nodejs Gruntfile.js
64 sudo npm install
65 which npm
66 grunt server
67 ps ax | grep -i horrible
68 kill -TERM 24070
69 ps ax | grep collectd
70 man collectd
71 dpkg -l collectd
72 ps ax | grep Horrib
73 kill -TERM 22964
74 sudo netstat -tanpe | grep python | LISTEN
75 sudo netstat -tanpe | grep python | grep LISTEN
76 mkdir -p /media/valhalla/other
77 sudo mkdir -p /media/valhalla/other
78 sudo ln -snf /media/valhalla/other other
79 sudo chown leo:leo other
80 sudo chown -R leo:leo other
81 sudo chmod ge-xw
82 sudo chmod go-xw
83 sudo chmod go-xw other
84 sudo chmod -R go-xw other
85 sudo chmod -R go-xwr other
86 kill -TERM 15420
87 ps ax | grep bash
88 ps ax | grep Horrible
89 kill -TERM 15426
90 git diff src/app/panels/graphite/module.js
91 git checkout -- src/app/panels/graphite/module.js
92 git checkout v1.5.2
93 vi /opt/graphite/webapp/graphite/local_settings.py
94 pip show
95 pip freeze
96 dpkg -l | grep zope
97 sudo pip install pytz
98 vi src/config.js
99 ps ax | grep Dead
100 kill -TERM 10872
101 kill -TERM 10878
102 ls ~/.sickbeard-shared
103 ls ~/.sickbeard-shared/sabRedirect.anime.sh
104 cat ~/.sickbeard-shared/sabRedirect.anime.sh
105 vi /home/leo/.sickbeard-myanime/autoProcessTV/sabToSickBeard.py
106 vi cherrypy.log
107 cd .sickbeard-shared
108 vi sabRedirect.anime.sh
109 bash <<<EOF
110 bash <EOF
111 bash <<EOF\necho "$@"\nEOF
112 vi b.bash
113 bash b.bash 1 2 3 4
114 #/home/leo/.sickbeard-shared/sabRedirect.anime.sh '/media/yggdrasil/downloads/complete/tv-anime/DeadFish Saint Seiya Omega - 97 720p AAC' 'DeadFish Saint Seiya Omega - 97 720p AAC.nzb' 'DeadFish Saint Seiya Omega - 97 720p AAC' '' 'tv-anime' 'alt.binaries.multimedia.anime' '0' ''
115 /home/leo/.sickbeard-shared/sabRedirect.anime.sh '/media/yggdrasil/downloads/complete/tv-anime/DeadFish Saint Seiya Omega - 97 720p AAC' 'DeadFish Saint Seiya Omega - 97 720p AAC.nzb' 'DeadFish Saint Seiya Omega - 97 720p AAC' '' 'tv-anime' 'alt.binaries.multimedia.anime' '0' ''
116 cd .sickbeard-myanime
117 cd sickbeard
118 grep processEpisode
119 grep processEpisode .
120 grep -r processEpisode .
121 vi webserve.py
122 vi processTV.py
123 git --version
124 cat /dev/null > cherrypy.log
125 cat /dev/null > sickbeard.log
126 cat /dev/null > sickbeard.log.1
127 cat /dev/null > sickbeard.log.2
128 cat /dev/null > sickbeard.log.3
129 cd /media/tyg
130 ls .*
131 ls Judge.Dredd.\(1995\)
132 ls Lord.of.the.Rings.The.Fellowship.of.the.Ring.\(2002\)
133 ls Jiro\ Dreams\ of\ Sushi\ \(2012\)
134 ls Yes.Man.\(2008\)
135 ls ../downloads/complete/movies
136 ls Wol
137 sudo mdadm --examine --scane
138 sudo mdadm --examine /dev/md2
139 sudo mdadm --examine /dev/md/2
140 vi /var/log/syslog
141 grep -i sde /var/log/syslog*
142 dmesg | grep sde
143 vi /var/log/faillog
144 vi kern.log
145 vi kern.log.1
146 sudo aptitude install exuberant-ctags
147 man vi
148 vi --version
149 cd cpm
150 cd scripts
151 ls *vim*
152 grep configure .
153 grep -r configure .
154 vi configure.vim.out
155 cd /media/valhalla/Movies
156 cd gls
157 cd gla
158 cd glas
159 find . -name '*mp3' -o -name '*flac' -print | wc -l
160 find . -name '*mp3' -o -name '*flac' -o -name '*ogg' -print | wc -l
161 find . \( -name '*mp3' -o -name '*flac' -o -name '*ogg' \) -print | wc -l
162 git checkout v1.5.3
163 dpkg -l | grep collect
164 collectd --version
165 which collectd
166 cd collectd-5.4.1/
167 cd contrib
168 find . -name '*df*'
169 vi src/df.c
170 du -sm --summary 99.Francs.\(2007\)
171 du -sm 99.Francs.\(2007\)
172 cd 99.Francs.\(2007\)
173 cd media
174 flac
175 flac -a './Moonsorrow/[2001] Suden Uni/01 - Moonsorrow - Ukkosenjumalan Poika.flac
176 flac -a './Moonsorrow/[2001] Suden Uni/01 - Moonsorrow - Ukkosenjumalan Poika.flac'
177 cd './Moonsorrow/[2001] Suden Uni/01 - Moonsorrow - Ukkosenjumalan Poika.flac'
178 cd './Moonsorrow/[2001] Suden Uni/'
179 cd Scans
180 flac -c -a '/media/yggdrasil/Music/Files/Everything/Moonsorrow/[2001] Suden Uni/01 - Moonsorrow - Ukkosenjumalan Poika.flac'
181 flac -V -a '/media/yggdrasil/Music/Files/Everything/Moonsorrow/[2001] Suden Uni/01 - Moonsorrow - Ukkosenjumalan Poika.flac'
182 flac -V -a -f '/media/yggdrasil/Music/Files/Everything/Moonsorrow/[2001] Suden Uni/01 - Moonsorrow - Ukkosenjumalan Poika.flac'
183 vi /media/yggdrasil/Music/Files/Everything/Moonsorrow/[2001] Suden Uni/01 - Moonsorrow - Ukkosenjumalan Poika.ana
184 vi '/media/yggdrasil/Music/Files/Everything/Moonsorrow/[2001] Suden Uni/01 - Moonsorrow - Ukkosenjumalan Poika.ana'
185 file '/media/yggdrasil/Music/Files/Everything/Moonsorrow/[2001] Suden Uni/01 - Moonsorrow - Ukkosenjumalan Poika.flac'
186 find . -name '*.flac' -exec file | less
187 find . -name '*.flac' -exec -I {} file {} | less
188 find . -name '*.flac' -exec file {} | less
189 1;3406;0c
190 find . -name '*.flac' -exec file {} \; > | less
191 find . -name '*.flac' -exec file {} \; > less
192 find . -name '*.flac' -exec file {} \;
193 /media/yggdrasil/Music/Files/Everything
194 find . -name '*.flac' -print
195 find . -name '*.flac' -exec file {} \;
196 find . -name '*.flac' -exec file {} \; | less
197 grep -i '24 bit' bitrates
198 grep -i '24 bit' bitrates | wc -l
199 grep -iE '(24 bit|96 kHz)' bitrates | wc -l
200 grep -iE '(24 bit|96 kHz)' bitrates
201 man file
202 file './Daft Punk/[2013] Random Access Memories (Vinyl)/02 - Daft Punk - The Game Of Love.flac' | awk -F: | awk -F,
203 file './Daft Punk/[2013] Random Access Memories (Vinyl)/02 - Daft Punk - The Game Of Love.flac' | awk -F: '{print $2;}' | awk -F, '{print $2;} : {print $3;}'
204 file './Daft Punk/[2013] Random Access Memories (Vinyl)/02 - Daft Punk - The Game Of Love.flac' | awk -F: '{print $2;}' | awk -F, '{print $2:$3;}'
205 file './Daft Punk/[2013] Random Access Memories (Vinyl)/02 - Daft Punk - The Game Of Love.flac' | awk -F: '{print $2;}' | awk -F, '{print $2\:$3;}'
206 file './Daft Punk/[2013] Random Access Memories (Vinyl)/02 - Daft Punk - The Game Of Love.flac' | awk -F: '{print $2;}'
207 file './Daft Punk/[2013] Random Access Memories (Vinyl)/02 - Daft Punk - The Game Of Love.flac' | awk -F: '{print $1;}'
208 file './Daft Punk/[2013] Random Access Memories (Vinyl)/02 - Daft Punk - The Game Of Love.flac' | awk -F: '{print $0;}'
209 file './Daft Punk/[2013] Random Access Memories (Vinyl)/02 - Daft Punk - The Game Of Love.flac'
210 cd /media/yggdrasil/Music/Files/Everything
211 % file './Daft Punk/[2013] Random Access Memories (Vinyl)/02 - Daft Punk - The Game Of Love.flac' | awk -F: '{print $2;}' | awk -F, '{print $2$3;}'
212 file './Daft Punk/[2013] Random Access Memories (Vinyl)/02 - Daft Punk - The Game Of Love.flac' | awk -F: '{print $2;}' | awk -F, '{print $2$3;'
213 file './Daft Punk/[2013] Random Access Memories (Vinyl)/02 - Daft Punk - The Game Of Love.flac' | awk -F: '{print $2;}' | awk -F, '{print $2$3;}'
214 file './Daft Punk/[2013] Random Access Memories (Vinyl)/02 - Daft Punk - The Game Of Love.flac' | awk -F: '{print $2;}' | awk -F, '{print $2:$4;}'
215 file './Daft Punk/[2013] Random Access Memories (Vinyl)/02 - Daft Punk - The Game Of Love.flac' | awk -F: '{print $2;}' | awk -F, '{print $2 $4;}'
216 file './Daft Punk/[2013] Random Access Memories (Vinyl)/02 - Daft Punk - The Game Of Love.flac' | awk -F: '{print $2;}' | awk -F, '{print $2,",",$4;}'
217 file './Daft Punk/[2013] Random Access Memories (Vinyl)/02 - Daft Punk - The Game Of Love.flac' | awk -F: '{print $2;}' | awk -F, '{print $2,":",$4;}'
218 vi ~/bad.files.sh
219 file /media/yggdrasil/Music/Files/Everything/Daft Punk/[2013] Random Access Memories (Vinyl)/02 - Daft Punk - The Game Of Love.flac
220 file '/media/yggdrasil/Music/Files/Everything/Daft Punk/[2013] Random Access Memories (Vinyl)/02 - Daft Punk - The Game Of Love.flac'
221 file '/media/yggdrasil/Music/Files/Everything/Daft Punk/[2013] Random Access Memories (Vinyl)/02 - Daft Punk - The Game Of Love.flac' | awk -F: '{print $2;}'
222 file '/media/yggdrasil/Music/Files/Everything/Daft Punk/[2013] Random Access Memories (Vinyl)/02 - Daft Punk - The Game Of Love.flac' | awk -F: '{print $2;}' | awk -F, '{print $2,":",$4;}'
223 bash ~/bad.files.sh '/media/yggdrasil/Music/Files/Everything/Daft Punk/[2013] Random Access Memories (Vinyl)/02 - Daft Punk - The Game Of Love.flac'
224 find /media/yggdrasil/Music/Files/Everything -name '*.flac' -exec bash ~/bad.files.sh {} \; | less
225 vi ~/bad.files
226 wc -l ~/bad.files
227 cat ~/bad.files | grep -v "Bad depth" | grep -v "Bad quality"
228 cat ~/bad.files | grep -v "Bad Depth" | grep -v "Bad Quality"
229 cat ~/bad.files | grep -v "Bad depth" | grep -v "Bad Quality"
230 cat ~/bad.files | grep -v "Bad depth" | grep -v "Bad Quality" | sort
231 cat ~/bad.files | grep -v "Bad depth" | grep -v "Bad Quality" | sort | uniq -c
232 cat ~/bad.files | grep -v "Bad depth" | grep -v "Bad Quality" | sort | uniq -c | wc -l
233 find . -name '*.flac' | wc -l
234 smbstatus --shares
235 vi grafana/error_log
236 vi /var/log/apache2/error.
237 cd webapp
238 touch
239 cat i | python -mjson.tool
240 cat i | python -c 'import json; import pprint; import sys; data = sys.stdin.read(); js = json.loads(data); pprint.pprint(map(lambda x: (x['name'], x["id"]), js["scenes"]))'
241 cat i | python -c 'import json; import pprint; import sys; data = sys.stdin.read(); js = json.loads(data); pprint.pprint(map(lambda x: (x["name"], x["id"]), js["scenes"]))'
242 smbclient \\asgard\yggdrasil\Music\Files\Everything
243 smbclient '\\asgard\yggdrasil\Music\Files\Everything'
244 ls -l /media/yggdrasil
245 ls -l /media/yggdrasil/Music
246 ls -l /media/yggdrasil/Music/
247 ls -l /media/yggdrasil/Music/Files
248 ls -l /media/yggdrasil/Music/Files/Everything
249 dpkg -i plexmediaserver_0.9.9.7.429-f80a8d6_amd64.deb
250 sudo dpkg -i plexmediaserver_0.9.9.7.429-f80a8d6_amd64.deb
251 sudo aptitude install
252 sudo aptitude install avah-daemon avahi-utils
253 sudo aptitude install avahi-daemon avahi-utils
254 users
255 users -a
256 man users
257 ls /var/lib/plexmediaserver
258 sudo useradd -G contributors plex
259 find . -name '*.flac' -print | xargs -I{} 'file {} | grep 25b'
260 find . -name '*.flac' -print | xargs -I{} "'file {} | grep 25b'"
261 find . -name '*.flac' -print | xargs -I{} file {}
262 find . -name '*.flac' -print | xargs -I{} file
263 find . -name '*.flac' -print | xargs -I file
264 find . -name '*.flac' -print | xargs file
265 find . -name '*.flac' -print0 | xargs file
266 find . -name '*.flac' -print0 | xargs -0 file
267 find . -name '*.flac' -print0 | xargs -0 file | grep
268 git clone https://github.com/henkelis/sonospy
269 cd sonospy
270 sudo aptitude install lame sox parec
271 ./sonospy_web
272 vi pycpoint.log
273 vi web2py.log
274 cd yggdrasil/
275 _getfacl
276 getfacl
277 usermod -G plex plex
278 sduo usermod -G plex plex
279 sudo usermod -G plex plex
280 id -nG plex
281 wget
282 wget http://download.serviio.org/releases/serviio-1.4.1.2-linux.tar.gz\?_ga\=1.82352466.573257754.1400316974
283 git checkout v1.5.4
284 rm -f serviio-1.4.1.2-linux.tar.gz\?_ga=1.82352466.573257754.1400316974
285 wget -0- http://download.serviio.org/releases/serviio-1.4.1.2-linux.tar.gz\?_ga\=1.177164641.573257754.1400316974
286 wget -0 http://download.serviio.org/releases/serviio-1.4.1.2-linux.tar.gz\?_ga\=1.177164641.573257754.1400316974
287 wget -0 serviio-1.4.1.2-linux.tar.gz http://download.serviio.org/releases/serviio-1.4.1.2-linux.tar.gz\?_ga\=1.177164641.573257754.1400316974
288 wget -O serviio-1.4.1.2-linux.tar.gz http://download.serviio.org/releases/serviio-1.4.1.2-linux.tar.gz\?_ga\=1.177164641.573257754.1400316974
289 tar -xzvf serviio-1.4.1.2-linux.tar.gz
290 cd serviio-1.4.1.2
291 vi README.txt
292 bin/serviio.sh
293 ps ax | grep default-jre
294 dpkg -l | grep default-jre
295 dpkg -l | grep jre
296 dpkg -l | ffmpeg
297 dpkg -l | grep ffmpeg
298 dpkg -l | grep libav
299 wget https://launchpad.net/\~bubbleguuum/+archive/bubbleupnpserver/+files/bubbleupnpserver_0.8.2-1_all.deb
300 sudo dpkg -i bubbleupnpserver_0.8.2-1_all.deb
301 ls /etc/init/bubbleupnpserver.conf
302 rm -rf mp3fs
303 git clone https://github.com/khenriks/mp3fs.git
304 cd mp3fs
305 sudo aptitude install libfuse-dev libflac++-dev libmp3lame-dev libid3tag0-dev
306 vi INSTALL.md
307 sudo aptitude install a2x
308 sudo aptitude install asciidoc
309 ./autogen.sh
310 sudo mkdir /mnt/mp3Music
311 cd Finntroll
312 cd \[1999\]\ Midnattens\ Widunder
313 cd Týr
314 cd \[2011\]\ The\ Lay\ Of\ Thrym
315 cd /etc/fstab.d
316 ls -l /media/glasir
317 ls -l /media/glasir/Music
318 ls /media/glasir/Music
319 man fstabg
320 man fstab
321 sudo vi fstab
322 ls Knights.of.Badassdom.\(2013\)
323 ls 13th.Warrior,.The.\(1999\)
324 ls NeverEnding.Story,.The.\(1984\)
325 ls Secret.Life.of.Walter.Mitty,.The.\(2013\)
326 mkdir ../../../staging
327 cp -r Star.Trek.Enterprise.S0* ../../../staging
328 fd
329 iostat .
330 man iostat
331 ls -ltr /var/log
332 find . -name '*.flac' -print0 | xargs -0 file | grep '24 b'
333 cd cdo
334 cp -r Star.Trek.Enterprise.S04.1080p.BluRay.x264-GreenBlade ../../../staging &
335 cd Jack.Ryan.Shadow.Recruit.2014.720p.BluRay.x264-SPARKS.cp\(tt1205537\)
336 rm -rf Jack.Ryan.Shadow.Recruit.2014.720p.BluRay.x264-SPARKS.cp\(tt1205537\)
337 cd tv-anime
338 cd staging
339 cd Sabaton
340 sudo mdadm --scan --all
341 sudo mdadm --examine --scan
342 sudo mdadm --examine --detail
343 cd /media/yggdrasil/Music/Files/Everything/
344 cd Ulver/\[1998\]\ Themes\ from\ William\ Blake\'s\ The\ Marriage\ of\ Heaven\ and\ Hell
345 cd CD01
346 cd CD02
347 file 04\ -\ Ulver\ -\ A\ Memorable\ Fancy,\ Plates\ 22-24.flac
348 file 06\ -\ Ulver\ -\ A\ Memorable\ Fancy,\ Plates\ 22-24.flac
349 file 06\ -\ Ulver\ -\ A\ Song\ of\ Liberty,\ Plates\ 25-27.flac
350 sudo netstat -tanpe | grep listen
351 ls /etc/init.d/rtorrent
352 cat /etc/init.d/skeleton
353 ls -la /etc/init.d
354 chmod +x /etc/init.d/rtorrent
355 sudo chmod +x /etc/init.d/rtorrent
356 sudo /etc/init.d/rtorrent status
357 vi ~/.rtorrent.rc
358 sudo shutdown now
359 sudo mdadm --detail /dev/md2
360 sudo mdadm --detail /dev/md` \n\n\n`
361 sudo mdadm --detail --scan
362 hostname
363 cat /etc/hostname
364 sudo vi /etc/fstab
365 ls /media/yggdrasil/Music/Files/Everythinge
366 ln -snf /media/valhalla/dev dev
367 git clone [email protected]:merc1031/Automator.git
368 mkdir Automator
369 touch README.md
370 git coomit -m 'Prime the rep'
371 git commit -m 'Prime the repo'
372 git remote add origin [email protected]:merc1031/Automator.git
373 git puse -u origin master
374 git add git_rsa
375 cd descartes
376 vi index.php
377 ls /etc/init.d/elasticsearch
378 sudo netstat -tanpe | grep -i listen
379 sudo netstat -tanpe | grep -i listen | grep 9200
380 vi ./carbon-cache.py
381 sudo /opt/graphite/bin/carbon-cache.py start
382 ls -l /opt/graphite/storage
383 wget https://gist.github.com/raw/1071989/32b8da693933ccc5b04445c13ec280a622f61400/carbon.init.sh
384 vi carbon.init.sh
385 cd /opt
386 cd graphite
387 cd debian
388 vi carbon.postinst
389 vi bin/carbon-cache.py
390 cd /opt/graphite/bin
391 cp carbon-cache.py /etc/init.d/.
392 sudo cp carbon-cache.py /etc/init.d/.
393 vi ~/carbon/debian/carbon.postinst
394 sudo rm -f /etc/init.d/carbon-cache.py
395 cd carbon
396 find . -name carbon_cache
397 find . -name carbon_cache -print
398 find . -name '*carbon_cache*' -print
399 ls /lib/lsb/init-functions
400 ls /etc/default/rcS
401 cat /etc/default/rcS
402 vi carbon.init
403 cp carbon.init /etc/init.d/carbon_cache
404 sudo cp carbon.init /etc/init.d/carbon_cache
405 sudo update-rc.d carbon_cache defaults
406 sudo vi /etc/init.d/carbon_cache
407 sudo update-rc.d remove carbon_cache
408 sudo update-rc.d carbon_cache remove
409 sudo mv /etc/init.d/carbon_cache /etc/init.d/carbon-cache
410 sudo update-rc.d carbon_cache remove -f
411 sudo update-rc.d carbon-cache defaults
412 ls -l /etc/init.d
413 ls -l /etc/init.d/car*
414 sudo chmod +x /etc/init.d/carbon-cache
415 sudo /etc/init.d/carbon-cache status
416 sudo update-rc.d elasticsearch defaults
417 sudo /etc/init.d/elasticsearch status
418 git diff zshrc-leo
419 git reset --hard oriring
420 git clean -dfx
421 git sttua
422 mv config config.dep
423 git clone [email protected]:merc1031/config-adv.guit
424 git clone [email protected]:merc1031/config-adv.git
425 git clone [email protected]:merc1031/config-adv.git config
426 sudo aptitude install clang++
427 sudo aptitude install clang
428 sudo aptitude install g++ gcc
429 vi zshrc
430 vi ./config/scripts/vim/build-vim.sh
431 sudo aptitude install mercurial
432 sudo ./config/scripts/vim/build-vim.sh
433 ls /usr/local/bin/vim
434 ls /usr/local/bin/vim --version
435 /usr/local/bin/vim --version
436 which vim
437 sudo aptitude install ttf-inconsolata
438 wget https://github.com/Lokaltog/powerline/raw/develop/font/PowerlineSymbols.otf
439 wget https://github.com/Lokaltog/powerline/raw/develop/font/10-powerline-symbols.conf
440 mkdir .fonts
441 mv PowerlineSymbols.otf .fonts
442 sudo fc-cache -vf ~/.font
443 mkdir ~/.fonts.conf.d
444 mv 10-powerline-symbols.conf ~/.fonts.conf.d
445 cd yggdrasil/dev
446 git clone https://github.com/basho/rebar.git
447 mkdir kerl
448 cd kerl
449 curl -0 https://raw.github.com/spawngrid/kerl/master/kerl
450 curl -O https://raw.github.com/spawngrid/kerl/master/kerl
451 wget https://raw.github.com/spawngrid/kerl/master/kerl
452 chmod a+x kerl
453 vi kerl
454 sudo apt-get install build-essential libncurses5-dev openssl libssl-dev fop xsltproc unixodbc-dev
455 sudo apt-get install libwxbase2.8 libwxgtk2.8-dev libqt4-opengl-dev
456 mkdir erlang
457 wget http://www.erlang.org/download/otp_src_17.0.tar.gz
458 tar zxvf otp_src_17.0.tar.gz
459 ./configure && make && sudo make install
460 cd rebar
461 ./bootstrap
462 cp rebar ../../Automator
463 mkdir bin
464 mv rebar bin
465 rmdir automator ext rel
466 rm -rf src
467 mkdir automator
468 bin/rebar create-app appid=automator
469 ../../bin/rebar create-app appid=automator
470 mkdir ~/.config/fontconfig/conf.d
471 mkdir -p ~/.config/fontconfig/conf.d
472 cp ~/.fonts.conf.d/10-powerline-symbols.conf ~/.config/fontconfig/conf.d
473 sudo aptitude install fontconfig
474 dpkg -l | grep fontconfig
475 /etc/init.d/x11-common status
476 echo $LANG
477 echo $LC_CTYPE
478 fc-list | grep Power
479 fc-list | grep power
480 mv Inconsolata-dz\ for\ Powerline.otf .fonts/
481 fc-cache -vf ~/.fonts
482 fc-list
483 fc-list | grep -i incon
484 fc-list | grep -i power
485 man fc-cache
486 fc-scan
487 fc-scan .fonts
488 ls .fonts
489 ls -l .fonts
490 vi .fonts/Inconsolata-dz\ for\ Powerline.otf
491 wget https://github.com/Lokaltog/powerline-fonts/blob/master/InconsolataDz/Inconsolata-dz%20for%20Powerline.otf
492 vi Inconsolata-dz\ for\ Powerline.otf
493 wget https://github.com/Lokaltog/powerline-fonts/blob/master/InconsolataDz/Inconsolata-dz%20for%20Powerline.otf\?raw\=true
494 vi Inconsolata-dz\ for\ Powerline.otf\?raw=true
495 mv Inconsolata-dz\ for\ Powerline.otf\?raw=true .fonts/Inconsolata-dz\ for\ Powerline.otf
496 sudo fc-cache -vf ~/.fonts
497 cd /m
498 man vim
499 vim --version
500 gvim rebar.config
501 gvim automator/rebar.config
502 mkdir rel
503 cd rel/
504 ../bin/rebar create-node nodeid=automator
505 git add automator/ebin/.gitignore
506 git add automator/automator/rebar.config automator/automator/src/ bin/ rebar.config rel/
507 gvim .gitignore
508 git commit -am 'initial rebar skeleton commit'
509 cd vim/bundle/YouCompleteMe
510 sudo aptitude install cmake
511 cd neobundle.vim
512 git checkout origin/master
513 cd vim
514 grep -r EnableTable .
515 vi vimrc
516 git commit -am 'add some logging'
517 cd ex
518 LS
519 bin/rebar get-deps
520 cat rebar.config
521 bin/rebar compule
522 man bin/rebar
523 bin/rebar --help
524 erl -pa apps/*/ebin -boot start_sasl -s automator
525 erl -pa automator/*/ebin -boot start_sasl -s automator
526 erl -pa automator/*/ebin -boot start_sasl -s automator_app
527 erl -pa automator/automator/ebin -boot start_sasl
528 erl -pa automator/automator/ebin -boot start_sasl -s automator
529 erl -pa automator/automator/ebin -boot start_sasl -s automator_app:start
530 erl -pa automator/automator/ebin -boot start_sasl -s automator_app
531 git commit -m 'reltool launch things we need'
532 git commit -m 'ignore deps folder'
533 ls ext
534 rm -rf ext
535 cp rebar.config deps/
536 git add rebar.config rel/
537 git commit -m 'fix deps'
538 git commit -m 'ignore crash dumps'
539 git commit -m 'checkpoint automator with ranch'
540 bin/rebar compile
541 git commit -am 'first pass at make files and environment'
542 git commit --amend
543 git statu
544 mkdir run
545 cd run
546 git add run/
547 git commit -am 'first run at start script'
548 cd /media/yggdrasil/dev/Automator
549 run/start-local-automator.sh
550 tail -f run_erl.log
551 tail -f sasl-error.log
552 curl -i http://localhost:9374/receiver
553 git commit -m 'tweak start script'
554 git add automator/automator/src/receiver_command_handler.erl
555 git commit -m ' test responses from receiver command handler'
556 git commit -m 'add newlines to error info msgs'
557 curl -XPOST -i http://localhost:9374/receiver
558 curl --header "Content-Type:text/plain" -XPOST --data "par1=2&par2=3" -i http://localhost:9374/receiver
559 we
560 curl -XPOST --data "par1=2&par2=3" http://localhost:9374/receiver
561 curl -XPOST --data "par1=2&par2=3" -i http://localhost:9374/receiver
562 curl -XPOST -H "Accept-Encoding:text/html"--data "par1=2&par2=3" -i http://localhost:9374/receiver
563 curl -XPOST -H "Accept-Encoding:text/html" --data "par1=2&par2=3" -i http://localhost:9374/receiver
564 curl -XPOST -H "Accept-Encoding:text/html" -H "Content-Type:text/html" --data "par1=2&par2=3" -i http://localhost:9374/receiver
565 curl -XPOST -H "Accept-Encoding:text/html" -H "Content-Type:text/plain"--data "par1=2&par2=3" -i http://localhost:9374/receiver
566 ls sasl
567 vi sasl/1
568 vi sasl/index
569 tail -F log/erlang.log.1
570 curl -XGETT -H "Accept-Encoding:text/html" -H "Content-Type:text/plain" --data "par1=2&par2=3" -i http://localhost:9374/receiver
571 curl -XGET -H "Accept-Encoding:text/html" -H "Content-Type:text/plain" --data "par1=2&par2=3" -i http://localhost:9374/receiver
572 curl -XGET -H "Accept-Encoding:text/html" -H "Content-Type:text/plain" --data "par1=2&par2=3" -i http://localhost:9374/receiver\?par1\=2\&par2\=3
573 curl -XPOST -H "Accept-Encoding:text/html" -H "Content-Type:text/plain" --data "par1=2&par2=3" -i http://localhost:9374/receiver\?par1\=2\&par2\=3
574 erl -kernel error_logger '{file, "/media/yggdrasil/dev/Automator/rel/automator/log/automator-sandbox.log"}'
575 erl -kernel error_logger '{file,"/media/valhalla/dev/Automator/rel/automator/log/automator-sandbox.log"}'
576 vi automator-sandbox.log
577 mkdir /var/tmp/run
578 rm -f automator-sandbox.log
579 vi sasl
580 ls /var/tmp/run
581 ls -la /var/tmp/run
582 cd /media/yggdrasil/dev
583 cd Automator/rel/automator/log
584 curl -XPOST -H "Accept-Encoding:text/html" -H "Content-Type:text/plain" --data "par1=2&par2=3" -i http://localhost:9374/receiver
585 curl -XPOST -H "Accept-Encoding:text/plain" -H "Content-Type:text/plain" --data "par1=2&par2=3" -i http://localhost:9374/receiver
586 curl -XGET -H "Accept-Encoding:text/plain" -H "Content-Type:text/plain" --data "par1=2&par2=3" -i http://localhost:9374/receiver
587 curl -XGET -H "Accept-Encoding:text/plain" -H "Content-Type:text/plain" --data "par1=2&par2=3" -ivD http://localhost:9374/receiver
588 curl -XGET -H "Accept-Encoding:text/plain" -H "Content-Type:text/plain" --data "par1=2&par2=3" -i -v -D http://localhost:9374/receiver
589 curl -XGET -H "Accept-Encoding:text/plain" -H "Content-Type:text/plain" --data "par1=2&par2=3" -i -vhttp://localhost:9374/receiver
590 curl -XGET -H "Accept-Encoding:text/plain" -H "Content-Type:text/plain" --data "par1=2&par2=3" -i -v http://localhost:9374/receiver
591 curl -XGET -H "Accept-Encoding:text/plain" -H "Content-Type:text/plain" --data "par1=2&par2=3" -i -v http://localhost:9374/receiver\?a
592 curl -XGET -H "Accept:text/plain" -H "Accept-Encoding:text/plain" -H "Content-Type:text/plain" --data "par1=2&par2=3" -i -v http://localhost:9374/receiver\?a
593 curl -XGET -H "Accept:text/plain" -H "Content-Type:text/plain" --data "par1=2&par2=3" -i -v http://localhost:9374/receiver\?a
594 curl -XPOST -H "Accept:text/plain" -H "Content-Type:text/plain" --data "par1=2&par2=3" -i -v http://localhost:9374/receiver\?a
595 curl -XPOST -H "Accept:text/html" -H "Content-Type:text/plain" --data "par1=2&par2=3" -i -v http://localhost:9374/receiver\?a
596 curl -XPOST -H "Accept:text/html" -H "Content-Type:text/html" --data "par1=2&par2=3" -i -v http://localhost:9374/receiver\?a
597 % ls
598 cd/media/valhalla/dev/Automator/rel/automator/log
599 cd ..
600 curl -XPOST -i -v http://localhost:9374/serial/receiver/vol/inc_vol/5
601 curl -XPOST -i -v http://localhost:9374/serial/receiver/vol/inc_vol/10/
602 curl -XPOST -H 'Content-Type:text/plain' -i -v http://localhost:9374/serial/receiver/vol/inc_vol/10/
603 curl -XPOST -H 'Accept:text/plain' -i -v http://localhost:9374/serial/receiver/vol/inc_vol/10/
604 man tail
605 curl -XPOST -H 'accept:*/*' -H 'content-type:text/plain' -i -v http://localhost:9374/serial/receiver/vol/inc_vol/10/
606 curl -XPOST -H 'accept:*/*' -H 'content-type:text/plain' -H 'content-length:0' -i -v http://localhost:9374/serial/receiver/vol/inc_vol/10/
607 curl -XPOST -H 'accept:*/*' -H 'content-type:text/plain' -H 'content-length:0' -H 'host:192.168.1.137:9374' -i -v http://localhost:9374/serial/receiver/vol/inc_vol/10/
608 tail -f -s0 erlang.log.1
609 tail -F -s0 `pwd`/erlang.log.1
610 curl -XPOST -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9374/serial/receiver/vol/inc_vol/10/
611 git statua
612 git commit -m 'checkpoint!. working feedback with irule via http'
613 EDITOR=vim git rebase -i
614 git rm automator/automator/src/receiver_command_handler.erl automator/automator/src/receiver_command_handler_http.erl
615 git add automator/automator/src/automator_web_sup.erl
616 git commit -am 'clean up some cruft from testing'
617 mkdir serial
618 ../../bin/rebar create-app appid=serial
619 cp automator/ebin/.gitignore serial/ebin/.
620 vi serial_app.erl
621 vi serial_sup.erl
622 run
623 git add automator/serial/
624 grep -r serial_tcp_super
625 grep -r serial_tcp_super .
626 git commit -m ' commit serial sub app'
627 git add automator/rebar.config
628 git commit -m 'before'
629 git commit -am 'simplify routes so they can [maybe] be configurable'
630 gcim
631 nc -vz localhost 9375
632 nc -vt localhost 9375
633 cd /media/valhalla/dev/Automator/rel/automator/log
634 echo "VOL10\n" | nc -v localhost 9375
635 echo "VOL10" | nc -v localhost 9375
636 ln -sn ~/config/gitconfig-lloucas ~/.gitconfig
637 cat ~/.gitconfig
638 ln -snf ~/config/gitconfig-lloucas ~/.gitconfig
639 vi ~/.gitconfig
640 cp ~/config/gitconfig-lloucas ~/config/gitconfig-leo
641 vi ~/config/gitconfig-leo
642 ln -snf ~/config/gitconfig-leo ~/.gitconfig
643 git commit -am 'add tcp support to automator'
644 mkdir device
645 cd rebar.config\~
646 cd gen
647 git stauts
648 ../../bin/rebar create-app appid=device
649 curl -XGET -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9374/serial/receiver/vol/
650 curl -XGET -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9374/serial/receiver/set
651 curl -XGET -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9374/serial/receiver/set/
652 curl -XGET -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9374/serial/receiver/do
653 curl -XGET -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9374/serial/receiver/
654 curl -XGET -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9374/serial/receiver/do/10
655 curl -XPOST -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9374/serial/receiver/do/10
656 cp automator/automator/ebin/.gitignore automator/device/ebin/.
657 git reset HEAD automator/device/ebin
658 git add automator/device/ebin/.gitignore
659 git commit -am 'add skeleton for device application. make web http routes more generic'
660 git dfif
661 dit fiff
662 git commit -am 'begin configuring devices'
663 tail -f erlang.log.1
664 curl -XPOST -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9374/test/receiver/vol/
665 curl -XGET -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9374/test/receiver/vol/
666 git commit -am 'make a test endpoint'
667 mkdir ~/dev
668 mkdir ~/dev/local
669 cp Automator/ ~/dev/local/.
670 cp -r Automator/ ~/dev/local/.
671 ps ax | grep cp
672 du -sm Automator
673 du -s Automator
674 source en
675 erl -sname test -setcookie it -remsh sandbox@`hostname`
676 erl -sname test -setcookie it automator@`hostname`
677 erl -sname test -setcookie it -remsh automator@`hostname`
678 erl -sname test@`hostname` -setcookie it -remsh automator@`hostname`
679 erl -sname test -setcookie it
680 cd automator/log
681 erl -sname test@`hostname` -setcookie it
682 git add automator/device/
683 git commit -m 'add device application hardcoded logic for now. fix load only rather than load and start of dependant applications'
684 git commit -am 'start hooking it all together with sync calls for now'
685 git commit -am 'all hooked up and responding. time to fix bugs'
686 git commit -am 'handle multiple return datums, tcp gateway returns one for EACH change, even if we didnt trigger'
687 git rm -f automator/serial/src/serial_tcp_supervisor.erl
688 git commit -am 'add some initial state querying, so we can do incremental, state based, discrete update'
689 curl -XGET -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9374/serial/pioneer_receiver/vol
690 gits tatus
691 git commit -am 'bufgix'
692 curl -XPOST -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9374/serial/pioneer_receiver/set_vol/100
693 cd rel/automator/log
694 grep -r VL
695 grep -r VL .
696 git commit -am ' commands that can query cached state. Configuration might becomplicated moving forward'
697 tail -F -s0 rel/automator/log/erlang.log.1
698 ls rel/automator/log
699 telnet
700 git commit -am 'hardcoding hacks to make receiver work. will clean up when i get 2nd device needed to work'
701 curl -XPOST -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9374/serial/pioneer_receiver/power_off
702 curl -XPOST -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9374/serial/pioneer_receiver/input
703 got lg
704 git commit -am 'better formatting fo text responses, status for 2 mroe receiver commands'
705 git commit -am 'add one more hardcoded receiver decibel command\n'
706 curl -XPOST -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9374/serial/pioneer_receiver/vol
707 telnet 192.168.1.124 4999
708 tail -F rel/automator/log/erlang.log.4
709 git commit -am 'flatten the list to send over socket just in case. serial seems very sensitive to data types'
710 curl -XPOST -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9374/serial/pioneer_receiver/set_vol_db/-10
711 git add -p
712 git commit -m 'refresh device state every 10 seconds'
713 git commit -am 'clean up a lot of logging'
714 eunit
715 chmod +x run/eunit
716 ./run/eunit device
717 git add run/eunit
718 git commit -am 'adding some unit tests. shoulda done this first...but meh.'
719 curl htpc.sevensinsystems.com:9374
720 curl htpc.sevensinsystems.com:9374/serial/pioneer_receiver/vol
721 git commit -am 'receiver return values should be in the printable and semi printabl ascii range'
722 tail -F rel/automator/log/erlang.log.1
723 curl -XPOST -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://htpc.sevensinsystems.com:9374/serial/pioneer_receiver/vol
724 vi rel/automator/log/erlang.log.3
725 git commit -am ' callback actions must not throw exceptions for now'
726 ls -ltr rel/automator/log/
727 tail -F rel/automator/log/erlang.log.3
728 git commit -am 'version 0.0.1'
729 git tag v0.0.1
730 mkdir ext
731 git clone https://github.com/ShoreTel-Inc/erld.git
732 cd erld
733 dpkg -l | grep erl
734 dpkg -l | grep erla
735 erl --version
736 sudo aptitude install libprocps-dev
737 sudo aptitude install libproc-dev
738 ./bootstrap.sh
739 ./configure
740 make ghetto_install
741 sudo make ghetto_install
742 chmod +x environment.source
743 sudo ./environment.source make ghetto_install
744 ls /etc/init/automator
745 ls -la /etc/init
746 sudo mv /etc/init/automator /etc/init/automator.conf
747 sudo mkdir /var/log/automator
748 chown leo:leo /var/log/automator
749 sudo chown leo:leo /var/log/automator
750 start automator
751 ls /etc/default/automator
752 sudo status automator
753 sudo start automator
754 rm -f /etc/init/automator.conf
755 sudo rm -f /etc/init/automator.conf
756 cp run/initd /etc/init.d/automator
757 sudo chmod +x /etc/init.d/automator
758 sudo chmod +x run/initd
759 sudo vi /etc/default/automator
760 echo '"'a/b'"'
761 a=a
762 b=b
763 echo '"'$a/$b'"'
764 echo \{file, '"'$a/$b'"'\}
765 echo '\{file, '"'$a/$b'"'\}'
766 echo "'\{file, '"'$a/$b'"'\}'"
767 echo '"\{file, '"'$a/$b'"'\}"'
768 ls /var/log/automator
769 ls -la /var/log/aut
770 ls -la /var/log/automator
771 touch /var/log/automator/automator-logfile.txt
772 start
773 ls -la /var/log/automator/automator-logfile.txt
774 grep cookie
775 sudo make clean
776 sudo ./environment.source make clean
777 vi sys.config
778 vi vm.args
779 vi automator
780 prinft \'%s\' "asdas" "asdas"
781 printf \'%s\' "asdas" "asdas"
782 printf %q "asdas" "asdas"
783 printf "%q " "asdas" "asdas"
784 printf "\'%s\' " "asdas" "asdas"
785 cp ../rebar.config .
786 cp * /usr/local/src/automator/.
787 print %q "123"
788 printf "%q " "1232" " 12312"
789 printf "%q " "1232"
790 printf "%q "
791 printf "%q " ""
792 printf "%q " +W w +P 1001001 -kernel error_logger {file,"/var/log/automator/automator-logfile.txt"} -setcookie tis -sname automator -s automator
793 man printf
794 which printf
795 /usr/bin/printf "%q " "12312"
796 /usr/bin/printf "%q " "12312" "a12323"
797 cd sasl
798 ps ax | grep erl
799 sudo cp -r * /usr/local/src/automator/.
800 cd /usr/local/src
801 sudo chown -R leo:leo /usr/local/src/automator/rel/automator/bin/automator
802 sudo chown -R leo:leo /usr/local/src/automator
803 vi rel/automator/log/sasl-error.log
804 auto
805 cd releases
806 vi start_erl.data
807 vi RELEASES
808 vi 0.0.1/automator.script
809 grep -r automator
810 grep -r automator .
811 sudo vi /etc/init.d/automator
812 cat sasl/1
813 PuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTYPuTTY:q
814 vi sasl-error.log
815 vi run_erl.log
816 erl -s crashdump_viewer
817 grep -r cookie .
818 bash run/start-local-automator.sh
819 cp -r * /usr/local/src/automator/.
820 sudo cp run/initd /etc/init.d/automator
821 git diff environment.source
822 git add environment.source
823 git commit -m 'make environment source executable'
824 git diff run/start-local-automator.sh
825 git add rel/files/automator rel/files/vm.args
826 git commit -m 'modify base rebar rel/files to work better. properly escape additional arguments, switch shell to bash, allow arguments OR vm.args to be used to configure. remove default args from vm.args.'
827 git add run/start-local-automator.sh
828 git commit -m 'fix run/start-local-automator now that args are ACTUALLY being used . -s automator was a BAD arg since we dont have a module called automator. was starting by dumb luck!!'
829 git add run/default run/initd run/install.sh
830 git commit -m 'add an initd script, a defaults and a simple "install" script"
831 git commit -m 'add an initd script, a defaults and a simple "install" script'
832 rm run/init
833 chmod +x run/install.sh
834 ls -l /usr/local/src/automator/rel/automator/bin
835 ls -la /usr/local/src/automator/rel/automator/bin/automator
836 ls -l /usr/local/src/automator/rel/automator/bin/automator
837 ls -l /usr/local/src/automator/rel/automator/bin/
838 vi run/default
839 sudo ./run/install.sh
840 ls /usr/local/src/automator/automator
841 ls /usr/local/src/automator/automator/automator
842 cat /etc/default/automator
843 sudo ./run/install.sh leo
844 ls -la run
845 chmod +x run/start-local-automator.sh
846 git add run/install.sh
847 git add run/default
848 git commit -m 'improve installing script to take a user and sed the defaults file'
849 git commit -am 'allow ports to be configured, make dev use different ports'
850 kill -TERM 32448
851 git checkout -b async_pipeline
852 git commit -am 'initial commit to async. not working, but its a good starting point to checkpoint'
853 git push -u origin async_pipeline
854 ls -ltr rel/automator/log
855 tail -f rel/automator/log/erlang.log.1
856 git commit -m 'get stuff running again. bad initial states and failed refactors.'
857 git commit -am 'slight hack to get fuller responses in http. do second partial receiver when we get a response, grace period'
858 wc -l /var/log/aut
859 wc -l /var/log/automator/automator-logfile.txt
860 git clone https://github.com/benoitc/econfig.git
861 git clone https://github.com/basho/cuttlefish.git
862 git clone https://github.com/basho/erlang_protobuffs.git
863 https://github.com/basho/erlang_protobuffs.git bash_erlang_protobufs
864 git clone https://github.com/basho/erlang_protobuffs.git basho_erlang_protobufs
865 git clone https://github.com/basho/mochiweb.git basho_mochiweb
866 git clone https://github.com/basho/otp.git basho_otp
867 git clone https://github.com/basho/lager
868 git clone https://github.com/basho/sidejob.git
869 git clone https://github.com/basho/sext.git bash_sext
870 git clone https://github.com/basho/lager_syslog.git
871 git clone https://github.com/mochi/mochiweb.git
872 git clone https://github.com/boundary/folsom.git
873 git clone https://github.com/erlware/relx.git
874 git clone https://github.com/seth/ej.git
875 git clone https://github.com/davisp/jiffy.git
876 git clone https://github.com/benoitc/ejson.git
877 git clone https://github.com/s1n4/leptus.git
878 git clone https://github.com/msgpack/msgpack-erlang.git
879 git clone https://github.com/talentdeficit/jsx.git
880 git clone https://github.com/extend/erlang.mk.git
881 git clone https://github.com/erlydtl/erlydtl.git
882 git clone https://github.com/eproxus/meck.git
883 git clone https://github.com/extend/shaman.git
884 git clone https://github.com/extend/alien.git
885 git clone https://github.com/extend/sheriff.git
886 git clone https://github.co
887 git clone https://github.com/esl/exml.git
888 git clone https://github.com/seth/pooler.git
889 git clone https://github.com/manopapad/proper.git
890 git clone https://github.com/rustyio/sync.git
891 git clone https://github.com/uwiger/gproc.git
892 git clone https://github.com/uwiger/locks.git
893 git clone https://github.com/uwiger/parse_trans.git
894 git clone https://github.com/uwiger/edown.git
895 git clone https://github.com/uwiger/fuzzy_logic.git
896 git clone https://g
897 git clone https://github.com/hdima/erlport.git
898 git clone https://github.com/beamspirit/bigwig.git
899 git clone https://github.com/mochi/statebox.git
900 git clone https://github.com/massemanet/eper.git
901 git clone https://github.com/ferd/recon.git
902 git clone https://github.com/mojombo/mustache.erl.git
903 git clone https://github.com/agner/agner.git
904 git clone https://github.com/krestenkrab/triq.git
905 git clone https://github.com/rabbitmq/erlando.git
906 typer -v
907 typer --help
908 cp -r /media/valhalla/dev/ext/{erlang,kerl,rebar} .
909 git checkout -b complex_response_parsing
910 git commit -am 'use binary in tcp bridge and in response(binary) -> reply(list). Parser is now a tuple of {ParsingFunc/3, State}. Parsing func expects Responses, RemainingData, ParseState and returns WorkingDataSet, NewRemaining'
911 git push -u origin complex_response_parsing
912 git commit -m 'add line protocol helper to make it reusable'
913 git commit -am 'add line protocol helper to make it reusable'
914 git commit -am 'simplify and reusify the cached value usage'
915 typer -gh
916 git commit -am 'add dialyzer plt make steps'
917 make build-plt
918 git commit -m 'ignore plt'
919 typer automator/device/src/device_sup.erl
920 man typer
921 typer -h
922 typer --plt .automator_plt automator/device/src/device_sup.erl
923 make dialyzer
924 git commit -am 'spec for a function!'
925 ps ax | grep
926 tail -f rel/automator/log/automator-logfile.txt
927 tail -f rel/automator/logs/automator-logfile.txt
928 tail -f rel/automator/log/automator-sandbox.log
929 git commit -am 'in the meantime change "everything" to use binaries'
930 gti checkout master
931 git merge complex_response_parsing
932 git satus
933 git commit -m 'merge master'
934 curl -XPOST -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9574/serial/pioneer_receiver/vol
935 git commit -m 'fix some merge incompatibilities and bad function usage'
936 git commit -am 'fix some merge incompatibilities and bad function usage'
937 curl -XPOST -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9574/test2/pioneer_receiver/input
938 ag 'request incoming'
939 grep -r 'request incoming' .
940 grep -ri 'request incoming' .
941 epmd -names
942 curl -XPOST -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9374/test2/pioneer_receiver/power
943 git commit -m
944 git commit -p
945 ls /usr/local/src/automator
946 cd /usr/local/src/automator
947 killall beam
948 git commit -am 'fix master so it works correctly in regards to binary data'
949 git --tags
950 man git tag
951 ps aux | grep auto
952 sudo /etc/init.d/automator status
953 vo /etc/default/automator
954 ps aux | grep beam
955 cd bin
956 vi start_erl.cmd
957 vi automator.cmd
958 make production-compile
959 ls rel/
960 git tag -d v0.0.2
961 git tag v0.0.2
962 git pul
963 tail -F /var/log/automator/automator-logfile.txt
964 git checkout async_pipeline
965 git commit -m 'merge from master'
966 vi run/install.sh
967 curl -XPOST -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9574/test2/pioneer_receiver/power
968 curl -XPOST -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9574/test2/pioneer_receiver/power_off
969 curl -XPOST -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9574/test2/pioneer_receiver/power_on
970 curl -XPOST -H 'accept:*/*' -H 'content-type:text/plain; charset=ISO-8859-1' -H 'content-length:0' -H 'host:192.168.1.137:9374' -H -i -v http://localhost:9574/test2/pioneer_receiver/vol
971 git commit -am 'handle device being off in device definition'
972 git merge async_pipeline
973 vi automator/src/automator.app.src
974 vi device/src/device.app.src
975 git commit -am 'version bumps\n'
976 git tag v0.1.0
977 mkdir ext_devices
978 ../../bin/rebar create-app appid=ext_devices
979 vi ext_devices.app.src
980 rm -f ext_devices_sup.erl
981 rm -f ext_devices_app.erl
982 ls automator
983 vi automator/rebar.config
984 cp automator/rebar.config ext_devices/.
985 cp automator/ebin ext_devices/.
986 cp -r automator/ebin ext_devices/.
987 cd ebin
988 rm *
989 grep -r binary_join .
990 git commit -am 'move pioneer receiver cionfiguration to its own module. Make sure we can parse degenerate commands in pioneer like R\r\nFN19'
991 make test
992 vi run/run_tests.escript
993 which escript
994 du -sm rel/automator/log
995 cd dev/ext
996 git clone https://github.com/rabbitmq/rabbitmq-public-umbrella.git
997 cd erlan
998 cp ../erlando .
999 cp -r ../erlando .
1000 cd dev/ext/rabbitmq-public-umbrella/erlando