-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zsh_history
10629 lines (10524 loc) · 468 KB
/
.zsh_history
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
: 1487754428:0;git checkout SAAm-100
: 1487754473:0;git branch -d SAAm-101
: 1487754478:0;git checkout -b SAAM-101
: 1487755361:0;git checkout SAAM-100
: 1487755367:0;git diff 61469e6a1c691dee7c235066c4635bf8d979deb9 ebfacb4edf2004f4b956e81a2ea345ddb5fbaed0
: 1487755409:0;git checkout SAAM-101
: 1487755765:0;git push --set-upstream origin SAAM-101
: 1487755826:0;git checkout -b SAAM-102
: 1487769914:0;ls eot/engineoftravel/static/images
: 1487771724:0;he input tag.eot/engineoftravel/templates/engineoftravel/facebook_campaigns/creatives.html
: 1487773420:0;git rm eot/engineoftravel/migrations/0004_auto_20170216_1111.py
: 1487773427:0;git rm eot/engineoftravel/migrations/0004_auto_20170221_1454.py
: 1487773559:0;git commit -m "SAAM 102"
: 1487773573:0;git push --set-upstream origin SAAM-104
: 1487782553:0;go run test_mgo.go
: 1487918724:0;git rm engineoftravel/migrations/0004_auto_20170216_1111.py
: 1487918733:0;git rm engineoftravel/migrations/0004_auto_20170222_1424.py
: 1488104727:0;mvim go-recipes/ch07/bookmarkapi
: 1488135675:0;godebug main.go
: 1488135680:0;godebug run main.go
: 1488135795:0;cp -r middlewares ~/go/src/bcintranet/vendor/middleware
: 1488135815:0;mv vendor/middleware/ vendor/middlewares
: 1488135818:0;godebug run -instrument=middlewares main.go
: 1488136379:0;godebug run -instrument=nc/intranet/middlewares, main.go
: 1488136386:0;godebug run -instrument=bc/intranet/middlewares, main.go
: 1488136431:0;godebug run -instrument=middlewares, main.go
: 1488137881:0;os
: 1488137907:0;echo $bcintranet_client_id
: 1488137936:0;echo $SESSION_SECRET
: 1488138093:0;godebug run -instrument=gothic main.go
: 1488138113:0;godebug run -instrument=github.com/markbates/gothic main.go
: 1488138188:0;godebug run -instrument=github.com/markbates/goth main.go
: 1488138208:0;godebug run -instrument=github.com/markbates/goth/gothic main.go
: 1488138273:0;brew install go-delve/delve/delve
: 1488138342:0;mkdir $GOPATH/src/github.com/derekparker
: 1488138348:0;cd $GOPATH/src/github.com/derekparker
: 1488138355:0;git clone https://github.com/derekparker/delve.git
: 1488138380:0;cd delve
: 1488138420:0;CERT=dlv-cert make install
: 1488138435:0;delve
: 1488138497:0;debug
: 1488138513:0;cd ~/go/src/bcintranet
: 1488138518:0;dlv debug
: 1488138616:0;dlv attach main.go
: 1488138632:0;psaux
: 1488138636:0;ps aux
: 1488138644:0;ps aux | grep go
: 1488138650:0;ps aux | grep main.go
: 1488138659:0;dlv attach 80292
: 1488138682:0;dlv attach 2432804
: 1488138686:0;dlv attach 2084
: 1488138700:0;go build main.go
: 1488138710:0;dlv exec main
: 1488138721:0;dlv exec /main
: 1488138724:0;dlv exec .main
: 1488138727:0;dlv exec ./main
: 1488139233:0;dlv
: 1488139242:0;dlv run main.go
: 1488139902:0;ps aux : grep :3001
: 1488139909:0;lsof -i :300
: 1488139929:0;sudo kill -9 420
: 1488139982:0;sudo kill -9 8-966
: 1488140036:0;sudo kill -9 80966
: 1488141727:0;lsof -i :3001
: 1488141731:0;lsof -i :3000
: 1488182671:0;git commit -m "SAAM 104"
: 1488183716:0;git checkout SAAm-104
: 1488184709:0;git checkout -b SAAM-42
: 1488187578:0;mvim ~/.ssh
: 1488188357:0;git checkout SAAM-42
: 1488191317:0;cp eot/eot/secrets/development.py eot/eot/secrets/.env_development
: 1488191344:0;pip install django-dotenv
: 1488191842:0;pip install getenv
: 1488203909:0;echo $bc_intranet_client_Secret
: 1488205001:0;dlv debug main.go
: 1488223887:0;rm test_mgo.go
: 1488223914:0;rm main
: 1488263950:0;git checkout -b SAAM-121
: 1488264036:0;cat ./validate_html.sh
: 1488264243:0;mkdir hooks
: 1488264258:0;touch pre-receive
: 1488264470:0;rm eot/eot/secrets/.env_development
: 1488264494:0;git push --set-upstream origin SAAM-121
: 1488264518:0;git commit -m "Added init pre hook for pre receive"
: 1488264883:0;mv pre-receive hooks/pre-receive
: 1488264940:0;mv hooks/pre-receive hooks/pre-push
: 1488265041:0;mvim .git/hooks
: 1488265135:0;mv hooks/pre-push .git/hooks/pre-push
: 1488265142:0;rm hooks
: 1488265145:0;rmdir hooks
: 1488265413:0;touch test.txt
: 1488265530:0;mv .git/hooks/pre-commit .git/hooks/pre-commit-new
: 1488265543:0;mv .git/hooks/pre-commit.sample .git/hooks/pre-commit
: 1488265551:0;git rm test.txt
: 1488265719:0;touch test1.txt
: 1488268657:0;mv .git/hooks/pre-commit .git/hooks/pre-commit.sample
: 1488268670:0;rm .git/hooks/pre-commit-new
: 1488268689:0;mv .git/hooks/pre-push .git/hooks/pre-commit
: 1488268693:0;chmod +x .git/hooks/pre-commit
: 1488268704:0;git rm test1.txt
: 1488268708:0;git add.
: 1488268735:0;git commit --amend --allow-empty
: 1488268825:0;touch test2.txt
: 1488268842:0;git rm test2.txt
: 1488269063:0;touch test3.txt
: 1488269114:0;git rm test3.txt
: 1488269170:0;echo $pwd
: 1488269174:0;echo pwd
: 1488269198:0;touch test4.txt
: 1488269342:0;mv .git/hooks/pre-commit .git/hooks/pre-push
: 1488269347:0;chmod +x .git/hooks/pre-push
: 1488269700:0;git rebase -p --onto SHA^ 999119da366c865b8a93065b059083c809095a63
: 1488269707:0;git rebase -p --onto 999119da366c865b8a93065b059083c809095a63
: 1488269737:0;git reabse -p --onto beae1725282ba34dc20306bc0e687abe1afdfb32
: 1488269746:0;git rebase -p --onto beae1725282ba34dc20306bc0e687abe1afdfb32
: 1488269789:0;git rebase -p --onto 64a74efd5252b50369e94bb2d7905f69ea0523c3
: 1488269844:0;git rebase -p --onto 38d5c707b7190f55d40220e0bc3465c1146590b4 SHA
: 1488269882:0;git reset --hard v1
: 1488269918:0;git reset --hard ~1
: 1488269922:0;git reset --hard 1
: 1488269965:0;git reset --hard
: 1488269979:0;git reset --hard 00187bb0079334e5cfebc9cccca9b9c74041f5bb
: 1488270019:0;git reset --hard 8d298ca3f389b4b481725c71ed4533c94545de63
: 1488270044:0;git reset --hard e9335c3644ae22f5a028baae27d9f7580fcd180f
: 1488270316:0;rm .git/hooks/pre-commit
: 1488271186:0;touch eot/pre-push.sample
: 1488271368:0;git checkout -b SAAM-89
: 1488273843:0;git push --set-upstream origin SAAM-89
: 1488273885:0;touch eot_git_pre_push_hook
: 1488273908:0;mv eot_git_pre_push_hook eot_git_pre_push_hook.sh
: 1488273913:0;mvim eot_gi
: 1488451750:0;git checkout SAAM-114
: 1488452087:0;git commit -m "Fixed Date in Step 1 to work in yyyy--mm-dd format"
: 1488467866:0;git checkout SAAM-89
: 1488514083:0;rm keys
: 1488514087:0;rmdir keys
: 1488514103:0;git commit -m "Init commit"
: 1488569634:0;on console
: 1488625252:0;go get github.com/absoludity/goforms/forms
: 1488625691:0;ls github.com/absoludity
: 1488628004:0;go get "github.com/vmihailenco/gforms"
: 1488647107:0;rm -rf forms
: 1488684465:0;touch moment.html
: 1488684473:0;mvim moment.html
: 1488792383:0;open ~/.vim
: 1488792456:0;cat .vimrc
: 1488792480:0;mv .vimrc .vimrc_old
: 1488792484:0;touch .vimrc
: 1488792694:0;mv .vim .vim_old
: 1488792697:0;mkdir .vim
: 1488792699:0;cd .vim
: 1488792707:0;mkdir autoload
: 1488792710:0;cd autoload
: 1488792718:0;curl -fLo ~/.vim/autoload/plug.vim --create-dirs \\
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
: 1488793789:0;mvim ,.
: 1488796748:0;cd ~/.vim/plugged
: 1488796782:0;mvim .vimrc
: 1488799152:0;cat ~/.vim/plugged/upAndDown/plugin/upAndDown.vim
: 1488815291:0;go get "github.com/mitchellh/mapstructure"
: 1488815915:0;mvim ~/.vim/plugged/vim-go
: 1488818735:0;go get "github.com/gorilla/schema"
: 1488820577:0;mvim ~/go/src/golang.org/x/net/
: 1488874648:0;python manage.py migrate --merge
: 1488880781:0;git checkout eot/fb_wizard_extras_2_optional
: 1488881563:0;git checkout eot/fb_wizard_extras_2
: 1488882866:0;git checkout -b eot/experiment
: 1488882976:0;git reset HEAD@{164}
: 1488883109:0;git clean [-f]
: 1488883129:0;git checkout -b eot/experiment_2
: 1488883203:0;git reset HEAD@{155}
: 1488883267:0;git checkout -b eot/experiment_3
: 1488883308:0;git reset HEAD@{153}
: 1488883394:0;git clean -f
: 1488883406:0;git commit -m "experiment"
: 1488884510:0;git checkout eot/fb_wizard_extras
: 1488884523:0;git checkout -b eot/experiment_4
: 1488884569:0;git show 5ca5a5a
: 1488884792:0;git checkout .
: 1488921542:0;git commit -m "Added profile view functionality"
: 1488921842:0;git rm -rf vendor/
: 1488921879:0;rm -rf vendor/
: 1488921907:0;git commit -m "Added Procfile"
: 1488921945:0;godep save ./...
: 1488922008:0;git commit -m "updated go dep json"
: 1488922299:0;git commit -m "updated godep json"
: 1488922757:0;godep save ./cmd/...
: 1488922936:0;git commit -m "changed gitignore"
: 1488923568:0;git commit -m "fake favicon"
: 1488923571:0;git push heroku maste
: 1488923785:0;git commit -m "using port env"
: 1488924052:0;git commit -m "changed procfile"
: 1488924309:0;mv main.go bcintranet.go
: 1488924391:0;git commit -m "changed main go file"
: 1488958930:0;cd desktop/bc/python
: 1488961792:0;git checkout saam-103
: 1488965567:0;git checkout SAAM-104
: 1488968815:0;rm engineoftravel/migrations/0005_merge.py
: 1488968886:0;git rebase --interactive HEAD~3
: 1488968915:0;git rebase --interactive HEAD~4
: 1488971182:0;\
M eot/engineoftravel/templates/engineoftravel/facebook_campaigns/target_audience.html\
M eot/engineoftravel/urls.py\
M eot/engineoftravel/views/__init__.py\
M eot/engineoftravel/views/facebook_campaigns/target_audience.py\
M eot/utils/fb_api_wrapper/ad_set.py\
Falling back to patching base and 3-way merge...\
Auto-merging eot/utils/fb_api_wrapper/ad_set.py\
Auto-merging eot/engineoftravel/views/facebook_campaigns/target_audience.py\
CONFLICT (content): Merge conflict in eot/engineoftravel/views/facebook_campaigns/target_audience.py\
Auto-merging eot/engineoftravel/views/__init__.py\
CONFLICT (content): Merge conflict in eot/engineoftravel/views/__init__.py\
Auto-merging eot/engineoftravel/urls.py\
Auto-merging eot/engineoftravel/templates/engineoftravel/facebook_campaigns/target_audience.html\
CONFLICT (content): Merge conflict in eot/engineoftravel/templates/engineoftravel/facebook_campaigns/target_audience.html\
Auto-merging eot/engineoftravel/templates/engineoftravel/facebook_campaigns/basic_detail.html\
CONFLICT (content): Merge conflict in eot/engineoftravel/templates/engineoftravel/facebook_campaigns/basic_detail.html\
Auto-merging eot/engineoftravel/static/css/main.scss\
CONFLICT (content): Merge conflict in eot/engineoftravel/static/css/main.scss\
Auto-merging eot/engineoftravel/models.py\
Auto-merging eot/engineoftravel/forms.py\
error: Failed to merge in the changes.\
Patch failed at 0001 saam: support advanced options in detail targeting(SAAM-103)\
The copy of the patch that failed is found in: .git/rebase-apply/patch\
\
When you have resolved this problem, run "git rebase --continue".\
If you prefer to skip this patch, run "git rebase --skip" instead.\
To check out the original branch and stop rebasing, run "git rebase --abort".\
\
(eot) â¾¼ python git:(c86aaec) â¼· mvim eot\
(eot) â¾¼ python git
: 1488971416:0;mvim eot/eot/
: 1489050095:0;rm eot/engineoftravel/migrations/0007_merge.py
: 1489130841:0;echo $bc_intranet_client_secret
: 1489130851:0;export bc_intranet_client_id=262208964639-fdkpa404rd5ba7tg0lq0dh7v1viq4sj9.apps.googleusercontent.comgst
: 1489132766:0;git rm static/css/material.min.custom.css
: 1489132773:0;git rm static/js/material.min.js
: 1489132799:0;git commit -m "moved to materlize css, material ui is too light"
: 1489164365:0;defaults write -g ApplePressAndHoldEnabled -bool false
: 1489164377:0;ggggggggggggggggggggst hrllo ppppp
: 1489164525:0;defaults write -g ApplePressAndHoldEnabled -bool true
: 1489164562:0;dddsddddddddddddddddddddddddddsssssssssssssssssssssss
: 1489168029:0;fff
: 1489231747:0;go run testurl.go
: 1489232789:0;ls helpers
: 1489232798:0;ls urls
: 1489254168:0;git commit -m "added heleprs and utils and more html"
: 1489254737:0;git commit -m "fixed middleware userid check and save user always at login"
: 1489263062:0;mv templates/profile.html templates/edit_profile.html
: 1489263072:0;touch templates/view_profile.html
: 1489263356:0;git commit -m "fixed save profile, save user bug, html and more"
: 1489335545:0;git commit -m "sidebar and view profile changes"
: 1489335575:0;git count-objects
: 1489336549:0;gosh
: 1489345514:0;mvim eot/eot
: 1489385854:0;git ref log
: 1489399223:0;git commit -m "bid budget html change"
: 1489400275:0;git commit -m "added datatable material support"
: 1489466582:0;git checkout saam-123
: 1489466756:0;cat engineoftravel/models.py
: 1489467085:0;python manage.py makemigrations --merge
: 1489467203:0;rm engineoftravel/migrations/0010_merge.py
: 1489485030:0;git commit -m "Added metrics skeleton"
: 1489574940:0;ls .git
: 1489574984:0;cat eot_git_pre_push_hook.sh
: 1489575020:0;git commit -m "addressed pr comments"
: 1489575487:0;mognod
: 1489575494:0;mongod stop
: 1489575514:0;mongod restart
: 1489575519:0;mongod --restart
: 1489604976:0;cat controllers/metrics_controllers
: 1489604984:0;cat controllers/metrics_controllers.go
: 1489604996:0;rm controllers/metrics_controllers
: 1489651934:0;mvim eot_git_pre_push_hook.sh
: 1490080854:0;git commit -m "WIP Commit - Metric graphs"
: 1490080929:0;git remote add git@github.com:priyankcommits/bcintranet.git
: 1490080939:0;git remote add origin git@github.com:priyankcommits/bcintranet.git
: 1490090321:0;go run test.go
: 1490090476:0;rm test.go
: 1490169704:0;git commit -m "Implemented daily monthly yearly graphs for attendenace metrics"
: 1490175459:0;ls templates/
: 1490252843:0;pip install selenium
: 1490253069:0;mv ~/Downloads/geckodriver $PATH/geckodriver
: 1490253119:0;mv ~/Downloads/geckodriver /Users/priyankpulumati/.virtualenvs/eot/bin/geckodriver
: 1490253715:0;ls /Applications/Firefox.app/Contents/MacOS/firefox
: 1490253720:0;ls /Applications/Firefox.app/Contents/MacOS/
: 1490256714:0;python manage.py test --liveserver:localhost:8000
: 1490258527:0;ls engineoftravel/tests/
: 1490259161:0;rm engineoftravel/tests/ui_ad_account_test.py
: 1490271348:0;vim ~/.gitconfig
: 1490272664:0;git checkout engineoftravel/tests/__init__.py
: 1490272851:0;git commit -m "something"
: 1490338637:0;git commit -m "Added daily metric logs module and more"
: 1490348221:0;git checkout ui-changes
: 1490608730:0;python manage.py test --liveserver=localhost:8000 tests.tests_ui_ad_account
: 1490622425:0;git commit -m "WIP wallposts"
: 1490623073:0;mv controllers/bc_controller.go controllers/wall_controller.go
: 1490686859:0;git checkout SAAM-135
: 1490686880:0;git branch -D SAAM-139
: 1490686890:0;git checkout -b SAAM-139
: 1490686930:0;ls engineoftravel/tests
: 1490686996:0;ls engineoftravel/tests/__init__.py
: 1490687077:0;mv engineoftravel/tests/tests_ui_ad_account.py engineoftravel/ui_tests/tests_ui_ad_account.py
: 1490688027:0;python manage.py test --liveserver=localhost:8000 engineoftravel.tests.tests_ui_ad_account
: 1490688332:0;python manage.py test engineoftravel.ui_tests. --liveserver=localhost:8000
: 1490688392:0;python manage.py generate_secret_key
: 1490688809:0;cd /Users/priyankpulumati/Downloads/
: 1490688837:0;cat geckodriver
: 1490688853:0;cd desktop/bc/python/eot/
: 1490689624:0;python manage.py test engineoftravel.ui_tests.tests_ad_ui_ad_account --liveserver=localhost:8000
: 1490690065:0;git commit -m "SAAM-139"
: 1490690086:0;git push --set-upstream origin SAAM-139
: 1490690098:0;git push -f --set-upstream origin SAAM-139
: 1490691125:0;cd ~/Desktop/BC/python/eot/
: 1490691537:0;njun
: 1490691865:0;fsafasf
: 1490696555:0;git commit -m "Refactored tests"
: 1490871518:0;brew install tmux
: 1490871700:0;asfs
: 1490871898:0;tmux attach
: 1490871904:0;exi
: 1490872048:0;tmux attach pri
: 1490872054:0;tmux attach -t pri
: 1490872236:0;tmux rename-session -t pri priyank
: 1490872239:0;tmux ls
: 1490872252:0;tmux new -s priyank-2
: 1490872282:0;tmux new -s priyank2
: 1490948913:0;git checkout SAAM-146
: 1490948937:0;git branch -D SAAM-146
: 1490948942:0;git checkout -b SAAM-146
: 1490949967:0;touch ~/.tmux.conf
: 1490949978:0;vim ~/.tmux.conf
: 1490950502:0;sswd syslog.conf\~previ
: 1490950502:0;sswd\~orig ttys
: 1490950502:0;revious ttys\~previous
: 1490956417:0;git checkout SAAM-139
: 1491033631:0;ls /usr/libexec
: 1491033641:0;ls /usr/libexec/java_home
: 1491033886:0;cd Downloads/tomcat-native-1.2.12-src
: 1491033916:0;mv tomcat-native-1.2.12-src /usr/local
: 1491033953:0;mv /usr/local/tomcat-native-1.2.12-src/ /usr/local/tomcat
: 1491034008:0;ls /usr/local/
: 1491034012:0;ls /usr/local/tomcat
: 1491034017:0;ls /usr/local/tomcat/native
: 1491034078:0;ls /usr/local/tomcat/
: 1491034155:0;rm -rf /usr/local/tomcat
: 1491034158:0;ls /usr/
: 1491034160:0;ls /usr/local
: 1491034184:0;mv apache-tomcat-9.0.0.M19 /usr/local
: 1491034199:0;mv /usr/local/apache-tomcat-9.0.0.M19 /usr/local/tomcat/
: 1491034335:0;mvim /usr/local/tomcat
: 1491034538:0;mv MultiView\ Alignment\ Hashing /usr/local/tomcat
: 1491034544:0;cd /usr/local/tomcat
: 1491034553:0;mv MultiView\ Alignment\ Hashing webapps
: 1491034558:0;cd webapps
: 1491034644:0;ls MultiView\ Alignment\ Hashing
: 1491034687:0;cd MultiView\ Alignment\ Hashing
: 1491034701:0;cp SOURCE\ CODE SOURCE_CODE
: 1491034744:0;cp -a SOURCE\ CODE/. /usr/local/tomcat/webapps
: 1491034760:0;cd Multiview
: 1491038168:0;cat localhost_access_log.2017-04-01.txt
: 1491038182:0;cat catalina.2017-04-01.log
: 1491038194:0;cat manager.2017-04-01.log
: 1491038311:0;mvim conf
: 1491038655:0;cat localhost.2017-04-01.log
: 1491038713:0;cat catalina.
: 1491039171:0;cd logs
: 1491039237:0;cat catalina.out
: 1491043263:0;mkdir multiview_python
: 1491043285:0;mkvirtualenv multiview
: 1491043309:0;touch compare.py
: 1491043794:0;pip install cv2
: 1491043802:0;pip install opencv2
: 1491043805:0;pip install opencv
: 1491043858:0;pip install skimage
: 1491043901:0;pip install pip install scikit-image
: 1491043905:0;pip install scikit-image
: 1491044102:0;mvim ~/.virtualenvs/multiview/lib/python2.7/site-packages/matplotlib
: 1491044178:0;mvim ~/.virtualenvs/multiview/lib/python2.7/site-packages/matplotlib-2.0.0.dist-info
: 1491044242:0;pip install opencv-python
: 1491044270:0;python compare.py
: 1491046986:0;django-admin start project multiview
: 1491047000:0;django-admin startproject multiview
: 1491047012:0;django-admin startapp multiview_app
: 1491047511:0;mkdir multiview_app/registration/
: 1491047520:0;touch multiview_app/registration/login.html
: 1491047744:0;mv multiview/urls.py multiview/multiview/urls.py
: 1491047859:0;mv multiview_app multiview/
: 1491117282:0;workon multiview
: 1491117889:0;cd multiview_python
: 1491118058:0;touch Procfile
: 1491122272:0;rm -rf static/css
: 1491122275:0;rm -rf static/js
: 1491122625:0;cd multiview
: 1491122800:0;ls multiview
: 1491129391:0;pip install sorl-thumbnail
: 1491130400:0;git commit -m "MultView V1"
: 1491130440:0;git remote add origin git@github.com:priyankcommits/multiview.git
: 1491130860:0;git commit -m "updated reqs file"
: 1491131014:0;git rm db.sqlite3
: 1491131027:0;git commit -m "updated allowed hosts"
: 1491131193:0;heroku
: 1491131642:0;git commit -am "using database url"
: 1491131646:0;git push
: 1491131695:0;pip install dj_database_url
: 1491131795:0;pip install psycopg2
: 1491131827:0;git commit -am "updated reqs files"
: 1491131949:0;heroku run python manage.py createuser
: 1491131993:0;heroku run python manage.py createsuperuser
: 1491132134:0;git commit -am "updated login page"
: 1491132144:0;git push heroku mater
: 1491132315:0;git commit -am "updated home.html search results"
: 1491132700:0;git commit -am "updated urls"
: 1491132791:0;heroku pg:reset
: 1491132854:0;heroku run python manage.py createsuperuser
: 1491132990:0;git commit -m "updated git ignore"
: 1491162529:0;heroku bash
: 1491162539:0;heroku run bash
: 1491208089:0;git commit -m "added about section"
: 1491239567:0;mv templates/view_project.html templates/project_view.html
: 1491243813:0;git commit -m "added projects module"
: 1491243847:0;git ls-files | xargs cat | wc -l
: 1491287209:0;mivm .
: 1491287465:0;git branch -D SAAM-145
: 1491287474:0;git checkout -b SAAM-145
: 1491290046:0;git checkout SAAM-139
: 1491315041:0;rm common
: 1491315046:0;rm -rf common
: 1491315071:0;touch secrets/.env
: 1491315339:0;echo $bc_app_key
: 1491315532:0;export PORT=3001
: 1491316143:0;git commit -m "started recruitment module and made secrets folder"
: 1491316571:0;git rm bcintranet
: 1491316734:0;git commit -m "gitignore changes"
: 1491381354:0;git checkout SAAM-142
: 1491459558:0;python manage.py test engineoftravel.ui_tests.tests_ui_ad_account --liveserver=localhost:8000
: 1491459858:0;python manage.py test engineoftravel.ui_tests.tests_ui_fb_wwapper --liveserver=localhost:8000
: 1491461854:0;python manage.py test engineoftravel.ui_tests.tests_ui_fb_wrapper --liveserver=localhost:8000 -v 3
: 1491472257:0;python manage.py test engineoftravel.tests.tests --liveserver=localhost:8000
: 1491472282:0;python manage.py test engineoftravel.tests.tests_fb_assets --liveserver=localhost:8000
: 1491472560:0;rm engineoftravel/tests/tests_fb_assets.py
: 1491473806:0;python manage.py test engineoftravel.ui_tests.tests_ui_login --liveserver=localhost:8000
: 1491508174:0;rm engineoftravel/tests/utils.pyc
: 1491537665:0;git commit -m "added recruitment module"
: 1491734313:0;mv templates/approval_payslip.html templates/approvals_payslips.html
: 1491751291:0;git commit -m "WIP: Payslip Module"
: 1491751341:0;mkdir media
: 1491756145:0;touch media/.gitkeep
: 1491758168:0;open hello.pdf
: 1491817028:0;rm hello.pdf
: 1491817056:0;git commit -m "Added Payslip module"
: 1491817071:0;git rm media/58eb42cacdf3fb7edd30cbab.pdf
: 1491817078:0;git rm media/58eb51decdf3fb89cd49713f.pdf
: 1491817124:0;ls -a media
: 1491817160:0;git commit -m "changed gitignore and dependencies"
: 1491900167:0;./validates.h eot
: 1491900540:0;./validate.sh decoupler
: 1491900702:0;./validate.sh eot/engineoftravel/tests/
: 1491900714:0;./validate.sh eot/engineoftravel/views/
: 1491900785:0;./validate.sh eot/engineoftravel/ui_tests
: 1491901032:0;git commit -m
: 1491901280:0;git push --set-upstream origin SAAM-145
: 1491901593:0;git commit -m "resolved conflicts"
: 1491901846:0;python manage.py test engineoftravel. --liveserver=localhost:8000
: 1491902128:0;python manage.py test engineoftravel.tests --liveserver=localhost:8000
: 1491903101:0;python manage.py test engineoftravel.ui_tests --liveserver=localhost:8000
: 1491906431:0;python manage.py test engineoftravel.ui_tests.tests_ui_fb_wrapper --liveserver=localhost:8000
: 1491918409:0;git commit -m --amend
: 1491920437:0;git commit -m "WIP Notifications"
: 1491920440:0;gitp ush
: 1492007421:0;rm media/58eb42cacdf3fb7edd30cbab.pdf
: 1492008845:0;export SENDGRID_API_KEY=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
: 1492008867:0;echo $SENDGRID_API_KEY
: 1492008910:0;go get github.com/sendgrid/sendgrid-go
: 1492021024:0;mongo ds159330.mlab.com:59330/heroku_r1h3jrwl -u <dbuser> -p <dbpassword>
: 1492021030:0;mongo ds159330.mlab.com:59330/heroku_r1h3jrwl
: 1492021267:0;mongo ds159330.mlab.com:59330/heroku_r1h3jrwl -u heroku_r1h3jrwl -p password
: 1492021381:0;mongo ds159330.mlab.com:59330/heroku_r1h3jrwl -u heroku_r1h3jrwl -p heroku_r1h3jrwl
: 1492021564:0;mongodb://<dbuser>:<dbpassword>@ds159330.mlab.com:59330/heroku_r1h3jrwl
: 1492021578:0;mongodb://heroku_r1h3jrwl:heroku_r1h3jrwl@ds159330.mlab.com:59330/heroku_r1h3jrwl
: 1492021763:0;sudo mongo ds159330.mlab.com:59330/heroku_r1h3jrwl -u heroku_r1h3jrwl -p heroku_r1h3jrwl
: 1492021979:0;mongo ds159330.mlab.com:59330/heroku_r1h3jrwl -u heroku_r1h3jrwl -p 7vnpou55lcplo495r861ijnso9
: 1492022975:0;git commit -m "WIP Sendgrid email"
: 1492023093:0;mvim Godeps
: 1492023186:0;ls vendor/github.com/sendgrid
: 1492023189:0;ls vendor/github.com/sendgrid/sendgrid-go
: 1492023212:0;git commit -m "godep save"
: 1492023550:0;git commit -m "debugging"
: 1492024025:0;git commit -m "changed db name to use env var"
: 1492024231:0;git commit -m "change callback address"
: 1492026267:0;gcloud install app-engine-go
: 1492026277:0;gcloud components install app-engine-go
: 1492026677:0;/go_appengine_sdk_OS_BIT-1.9.48/
: 1492026692:0;/Users/priyankpulumati/Downloads/go_appengine
: 1492026708:0;export PATH=$PATH:/Users/priyankpulumati/Downloads/go_appengine/
: 1492026763:0;cd $HOME
: 1492026995:0;~/.zshrc
: 1492027075:0;cd go/src/bcintranet
: 1492027184:0;export PATH="$PATH:$HOME/downloads/go_appengine/"
: 1492027195:0;which goapp
: 1492027253:0;goapp
: 1492069035:0;export PORT="3001"
: 1492069206:0;export bc_intranet_client_id=262208964639-fdkpa404rd5ba7tg0lq0dh7v1viq4sj9.apps.googleusercontent.com
: 1492069211:0;export bc_intranet_client_secret=bkSv_gOai9nb8HT3HpHq-_0q
: 1492069216:0;export bc_app_key="h7ohynxzdl29p)tqvmp=&3v)xjzrc1w21y7+2rlcy6hlo2"
: 1492069221:0;export bc_env="development"
: 1492069227:0;export bc_host="localhost"
: 1492069239:0;export PORT="3000"
: 1492069242:0;export SENDGRID_API_KEY='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'
: 1492069536:0;export bc_host="http://localhost"
: 1492069590:0;echo $PORT
: 1492069711:0;export $bc_env="development"
: 1492072558:0;export bc_mongo_db="bcintranet"
: 1492075290:0;BMSSHH667r
: 1492077115:0;git commit -m "Finished implementing email and notifications module"
: 1492080935:0;git commit -m "removed port from url"
: 1492101428:0;defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false
: 1492101527:0;defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool true
: 1492101529:0;ffffffffff
: 1492105109:0;export bc_host="http://localhost:3001"
: 1492112035:0;git commit -m "added edit project and not found template"
: 1492112283:0;git commit -m "added bc email require and admin list"
: 1492112312:0;git rebase -i HEAD~38
: 1492112381:0;rm media/58eb51decdf3fb89cd49713f.pdf
: 1492112386:0;rm media/58ef3f54cdf3fb283aa92c32.pdf
: 1492112974:0;export bc_intranet_client_id="998812243748-qhsmkdu0kqocn8h09utfubiegrkrknim.apps.googleusercontent.com"~
: 1492112979:0;export bc_intranet_client_secret="PtnTBSsl1r_xx29V6dhEycxV"
: 1492113157:0;export bc_intranet_client_id="998812243748-qhsmkdu0kqocn8h09utfubiegrkrknim.apps.googleusercontent.com"
: 1492113164:0;mvim secrets/.env
: 1492113974:0;git commit -m "removed port from url body"
: 1492114509:0;git commit -m "added email to announcements"
: 1492114709:0;mkdir ds
: 1492114720:0;mkvirtualenv ds
: 1492114741:0;touch new.py
: 1492157100:0;heroku domains
: 1492177756:0;git commit -m "using https for highcharts"
: 1492179110:0;git commit -m "added top bar menu for some links"
: 1492180823:0;git push -f heroku master
: 1492261549:0;git checkout -b exp-1
: 1492273003:0;mkdir medium
: 1492273010:0;godep install
: 1492273014:0;godepn
: 1492273031:0;touch meidum.go
: 1492273057:0;godep savw
: 1492276783:0;gin -h
: 1492276791:0;gin --port 6001
: 1492276847:0;go run meidum.go
: 1492369074:0;touch utils/utils.go
: 1492369079:0;mkdir helpers
: 1492369083:0;touch helpers/helpers.go
: 1492369087:0;mkdir controllers
: 1492369093:0;touch controllers.go
: 1492369100:0;mkdir routers
: 1492369108:0;touch routers/routers.go
: 1492369115:0;mkdir models
: 1492369119:0;touch models/models.go
: 1492371415:0;mkdir static
: 1492371422:0;mkdir static/css
: 1492371426:0;mkdir static/js
: 1492371450:0;mv controllers.go controllers/controllers.go
: 1492371474:0;mv meidum.go medium.go
: 1492371505:0;ls vendor/github.com
: 1492371543:0;mkdir middlewares
: 1492371551:0;touch middlewares/middlewares.go
: 1492375240:0;mkdir urls
: 1492465012:0;touch log.txt\
: 1492465021:0;cat log.txt
: 1492550636:0;mv templates/post.html templates/post_form.html
: 1492550641:0;rm templates/templates.go
: 1492551142:0;mv templates/post_form.html templates/post_add.html
: 1492551910:0;godep savwe
: 1492635524:0;git remote add origin git@github.com:priyankcommits/medium.git
: 1492686585:0;cd medium
: 1492688214:0;touch secrets/env
: 1492702303:0;touch secrets/.gitkeep
: 1492702594:0;godep
: 1492702604:0;godep go
: 1492702611:0;godep go get
: 1492702624:0;mkdir vendor
: 1492702642:0;godep go install
: 1492702782:0;godep sav
: 1492708593:0;rm Godeps
: 1492708609:0;ls ve
: 1492708613:0;ls vendor
: 1492710370:0;cd ~/Desktop
: 1492710375:0;cd doctordate
: 1492889637:0;;s -a
: 1492966423:0;cd TargetCaseStudy
: 1492966607:0;ls test/components
: 1492966620:0;ls src/reducers
: 1492966904:0;npm update -g
: 1492967210:0;npm iv
: 1492967220:0;sudo npm update -g
: 1492967352:0;sudo npm install -g grunt-cli
: 1492967363:0;grunt -help
: 1492967376:0;sudo npm install grunt-cli
: 1492967383:0;grunt
: 1492967727:0;ls style
: 1492980441:0;mkdir css_layout
: 1492980457:0;mkdir css
: 1492980462:0;touch css/style.css
: 1492980552:0;open index.html ]
: 1493109002:0;mvim MyProject
: 1493109008:0;cd MyProject
: 1493110596:0;cd ~/Desktop/BC/python
: 1493195334:0;npm install -g
: 1493212172:0;monogo
: 1493212178:0;monogod
: 1493212195:0;cd Downloads/swetha
: 1493212200:0;cd MyProject\(1\)
: 1493213987:0;npm start
: 1493217723:0;cd css_layout
: 1493236373:0;cd ~/Desktop/BC/python/eot
: 1493236872:0;python manage.py engineoftravel.tests
: 1493237144:0;./validate_html.sh eot
: 1493246532:0;git commit -m "more js refactoring"
: 1493289835:0;git checkout SAAM-145
: 1493289944:0;ls engineoftravel/ui_tests
: 1493289954:0;ls engineoftravel/ui_tests/utils
: 1493290336:0;git rm engineoftravel/ui_tests/utils.py
: 1493290595:0;python manage.py test engineoftravel.ui_tests.tests_ui_campaign --liveserver=localhost:8000
: 1493290603:0;python manage.py test engineoftravel.ui_tests.tests_ui_campaigns --liveserver=localhost:8000
: 1493306122:0;xcode-select --install\
: 1493315125:0;cd ~/Desktop/doctordate
: 1493369097:0;git commit -m "minor js refactor"
: 1493369287:0;rm -rm eot/engineoftravel/migrations/*.py
: 1493369292:0;rm -rf eot/engineoftravel/migrations/*.py
: 1493369294:0;rm -rf eot/engineoftravel/migrations/*.pyc
: 1493369310:0;touch eot/engineoftravel/migrations/__init__.py
: 1493369589:0;mvim eot/engineoftravel/migrations
: 1493369671:0;git checkout SAAM-131
: 1493369675:0;git checkout SAAM-130
: 1493369682:0;git checkout SAAM-103
: 1493369712:0;mvim eot/engineoftravel
: 1493371003:0;python manage.py test engineoftravel.tests
: 1493371583:0;ls engineoftravel
: 1493371587:0;ls engineoftravel/migrations
: 1493371640:0;./validate.sh eot
: 1493713795:0;mkdir grpc_demo
: 1493713797:0;cd grpc_demo
: 1493713824:0;go get google.golang.org/grpc
: 1493713889:0;portoc -help
: 1493713891:0;portoc -h
: 1493713898:0;protoc -v
: 1493713901:0;protoc -V
: 1493713904:0;protoc version
: 1493713908:0;protoc -version
: 1493713963:0;go get -u github.com/golang/protobuf/{proto,protoc-gen-go}
: 1493714036:0;cd helloworld/
: 1493714056:0;ls greeter_
: 1493714058:0;ls greeter_client
: 1493714063:0;ls greeter_server
: 1493714069:0;ls helloworld
: 1493714075:0;ls mock
: 1493714092:0;cat helloworld/helloworld.pb.go
: 1493714095:0;cat helloworld/helloworld.pb
: 1493714099:0;cat helloworld/helloworld.proto
: 1493714471:0;go get -u google.golang.org/grpc
: 1493715612:0;$ protoc -I helloworld/ helloworld/helloworld.proto --go_out=plugins=grpc:helloworld
: 1493715747:0;sudo brew install autoconf automake libtool curl make g++ unzip
: 1493716050:0;sudo /opt/local/bin/port install autoconf automake libtool
: 1493716099:0;sudo apt-get install autoconf automake libtool curl make g++ unzip
: 1493716109:0;brew install autoconf automake libtool curl make g++ unzip
: 1493716175:0;protoc -h
: 1493716314:0;cd protobuf-3.3.0
: 1493716321:0;./autogen.sh
: 1493716361:0;./configure
: 1493716759:0;sudo make check
: 1493717115:0;sudo port install protobuf-cpp
: 1493717207:0;man port
: 1493717311:0;port -v
: 1493717320:0;port help
: 1493717525:0;sudo ldconfig
: 1493717672:0;brew tap homebrew/versions
: 1493717693:0;brew instal protobuf
: 1493717700:0;brew install protobuf
: 1493717722:0;brew link --force --overwrite protobuf
: 1493717728:0;protoc --version
: 1493718211:0;protoc -I helloworld/ helloworld/helloworld.proto --go_out=plugins=grpc:helloworld
: 1493722525:0;brew install pypy
: 1493722638:0;cd desktop/bc
: 1493722645:0;mkdir falcon_demo
: 1493722657:0;mkvirtualenv falcon_demo
: 1493722752:0;touch things.py
: 1493722943:0;curl localhost:8000/things
: 1493722967:0;pip install --upgrade httpie
: 1493722975:0;http
: 1493722984:0;http localhost:8000/things
: 1493723091:0;pyp -v
: 1493723094:0;pypy -v
: 1493723103:0;pypy -V
: 1493723163:0;cd desktop/bc/
: 1493723168:0;cd falcon_demo
: 1493723221:0;gunicorn things:app
: 1493723254:0;pip install pypy
: 1493723294:0;pip install falcon
: 1493723314:0;touch helloworld.py
: 1493723347:0;workon falcon_demo
: 1493723348:0;pypy helloworld.py
: 1493723354:0;pypy things.py
: 1493723360:0;python things.py
: 1493974532:0;mvim stratum.proto
: 1493974608:0;touch example_campaign.proto
: 1493974613:0;mvim example_campaign.proto
: 1493992640:0;cd google.golang.org
: 1493992644:0;cd grpc
: 1493992651:0;mvim helloworld
: 1493992789:0;cd helloworld
: 1493992796:0;run greeter_server/main.go
: 1493992799:0;go run greeter_server/main.go
: 1493992806:0;go run greeter_client/main.go
: 1494173658:0;cd priyankpulumati
: 1494173896:0;touch Dockerfile
: 1494173899:0;mvim Dockerfile
: 1494174634:0;git checkout templates/templates_constants.go
: 1494174642:0;git checkout utils/utils.go
: 1494175246:0;ls Godeps
: 1494176444:0;docker run --publish 3001:8080 --name bcintranet
: 1494176553:0;docker run --publish 3001:8080 --name bcintranet --rm bcintranet
: 1494177102:0;docker run -publish 3001:8080 --name bc-image --rm bc-image
: 1494177148:0;sudo mount -t vboxsf bcintranet /go/src/bcintranet
: 1494177156:0;sudo mount -t vboxsf bcintranet $HOME/go/src/bcintranet
: 1494177915:0;docker run --publish 3001:8080 --name bc-image --rm bcintranet
: 1494178362:0;bash
: 1494178385:0;boot2docker
: 1494178391:0;boot2docker up
: 1494178635:0;docker-machine create
: 1494178651:0;docker-machine create "localbox"
: 1494178949:0;docker-machine start
: 1494178952:0;docker-machine start loclabox
: 1494178954:0;docker-machine start localbox
: 1494179044:0;dock-machine ;s
: 1494179045:0;dock-machine ls
: 1494179075:0;docker run localbox --publish 3001:8080
: 1494179125:0;docker run -d --publish 3001:8080 --name bc-image --rm bc-image
: 1494179156:0;docker-machine loclabox ip
: 1494179165:0;docker-machine localbox ip
: 1494179304:0;eval "$(docker-machine env localbox)"
: 1494179506:0;eval $(docker-machine env localbox)
: 1494179515:0;docker run localbox echo This is my first container! Hurayy
: 1494179886:0;docker-machine ip localbpx
: 1494179895:0;env | grep DOCKER
: 1494180013:0;docker run localbox --publish 3001:8080 --name bc-image --rm bc-image
: 1494180025:0;docker run --publish 3001:8080 --name bc-image --rm bc-image
: 1494180147:0;docker run -d -P --name bc-image bc-image
: 1494180232:0;curl 192.168.99.100
: 1494180262:0;curl 192.168.99.100:8080
: 1494180315:0;curl 0.0.0.0:3000
: 1494180317:0;curl 0.0.0.0:3001
: 1494180548:0;docker run -d -P 3000:8080 --name bc-image bc-image
: 1494180562:0;docker run -d --publish 3000:8080 --name bc-image bc-image
: 1494180659:0;docker stop b5aab974bf60
: 1494180679:0;docker run -d -p 3000:8080 --name bc-image bc-image
: 1494180711:0;docker-machine env localbox
: 1494180719:0;docker-machine info
: 1494180724:0;docker-machine --help
: 1494180729:0;docker-machine active
: 1494180740:0;docker-machine inspect loclabox
: 1494180744:0;docker-machine inspect localbox
: 1494180850:0;docker run -p 3000:8080 bc-image
: 1494180987:0;docker run -p bc-image
: 1494181044:0;docker-machine ip localbox
: 1494181121:0;curl 192.168.99.100:3000
: 1494181123:0;curl 192.168.99.100:3001
: 1494181217:0;docker run -p 3001:3000 bc-image
: 1494181357:0;cat secrets
: 1494181872:0;docker ls
: 1494182411:0;docker run -p 3100:3000 3101:3001 bc-image
: 1494182471:0;docker run -d --publish 3100:3000 bc-image
: 1494182601:0;docker run -p 3100:3000 bc-image
: 1494268561:0;cd priyankpulumati/go/src/bcintranet
: 1494268571:0;unset ${}
: 1494268584:0;docker info
: 1494268594:0;docker-machine localbox
: 1494268602:0;docker-machine config localbox
: 1494269008:0;docker run -it 3200:3000 bc-image
: 1494269016:0;docker run -it bc-image
: 1494269554:0;go build bcintranet.go
: 1494269822:0;docker build -t bc-image .
: 1494269825:0;docker run -p 3200:3000 bc-image
: 1494277058:0;docker inspect
: 1494277066:0;docker inspect mongodb_Service
: 1494277068:0;docker inspect mongodb_service
: 1494277456:0;cd /Users/Shared/Jenkins/Home/secrets/initialAdminPassword
: 1494277464:0;sudo cd /Users/Shared/Jenkins/Home/secrets/initialAdminPassword
: 1494277471:0;sudo cd /Users/Shared/Jenkins/Home/secrets/
: 1494277480:0;cd /Users/Shared/Jenkins/Home/secrets/
: 1494277489:0;cd Shared
: 1494277496:0;cd Jenkins/Home/secrets
: 1494277513:0;ls secret
: 1494277534:0;chmod +x
: 1494277541:0;chmod +x secret
: 1494278168:0;rm -rf Jenkins
: 1494278174:0;sudo rm -rf Jenkins
: 1494278267:0;cd Jenkins
: 1494278270:0;cd Home
: 1494278283:0;sudo cd secrets
: 1494278288:0;sudo cd secrets/
: 1494278301:0;chmod +x secrets
: 1494278304:0;sudo chmod +x secrets
: 1494278319:0;sudo cat initialAdminPassword
: 1494279037:0;cd Desktop/doctordate
: 1494279099:0;cd doctordate_backend
: 1494321873:0;cd Desktop/BC
: 1494321884:0;touch example_proto2.proto
: 1494321888:0;mvim example_proto2.proto
: 1494324269:0;protoc -I example_proto2.proto --go_out=plugins=grpc:example_proto2
: 1494324332:0;protoc -I . --go_out=plugins=grpc:example_proto2 example_proto2.proto
: 1494324526:0;protoc -I . --go_out=plugins=grpc:. example_proto2.proto
: 1494324578:0;protoc -I . --python_out=plugins=grpc:. example_proto2.proto
: 1494500479:0;cd ds
: 1494500944:0;python 1d_test.py
: 1494517576:0;mvim 1d_test.py
: 1494524808:0;workon oet
: 1494524829:0;git checkout ENG-193
: 1494524856:0;pip install -r eot/requirements/requirements-base.txt
: 1494538471:0;python 1d_range_query_2.py
: 1494541373:0;python 1d_memorise-me.py
: 1494542486:0;min(a)
: 1494542927:0;python 1d_micro_array_update.py
: 1494544223:0;python 1d_monk.py
: 1494763470:0;from collections import dequqe
: 1494763481:0;from collections import deque
: 1494763492:0;pip install collections
: 1494763512:0;import collections
: 1494789872:0;ping 25.87.145.200
: 1494790440:0;ping 25.87.156.231
: 1494926247:0;arr=[0 for i in range(1000000)]
: 1494926247:0;max=0
: 1494926247:0;maxelement=0
: 1494926247:0;numberSet=raw_input()
: 1494926247:0;numberSet=numberSet.split(' ')
: 1494926247:0;numberSet=map (int , numberSet)
: 1494926247:0;for i in range(entries):\
\
arr[numberSet[i]]=arr[numberSet[i]]+1
: 1494926275:0;python 1d_distinct_count.py
: 1494930498:0;e 1d_biased_chandan.py
: 1494963061:0;python manage.py runserver localhost:8001
: 1494963071:0;wokron doctordate_backend
: 1494963076:0;workon doctordate_backend
: 1494963080:0;workon doctordate
: 1495031069:0;python 1d_speed_7.py
: 1495031346:0;rm new.py
: 1495031360:0;git commit -m "part 1d problems"
: 1495031439:0;git remote add origin git@github.com:priyankcommits/hackerearth.git
: 1495038596:0;python 1d_modify_sequence.py
: 1495043548:0;python 1d_monk_lucky.py
: 1495094064:0;go get -u github.com/golang/lint/golint
: 1495094081:0;golint bcintranet
: 1495094089:0;golint bcintranet.go
: 1495094210:0;golint controllers/project_controller.go
: 1495094518:0;golint controllers/profile_controller.go
: 1495109273:0;mkdir bc_paylsip
: 1495109281:0;cp bcintranet bc_paylsip
: 1495109340:0;cp -R bcintranet bc_paylsip
: 1495109346:0;ls bcintranet
: 1495109350:0;ls bc_paylsip
: 1495109354:0;cd bc_paylsip
: 1495109434:0;rm -rf bc_paylsip
: 1495109446:0;cp -R bcintranet bc_payslip
: 1495109535:0;cat secrets/.env
: 1495110184:0;cd bcintranet
: 1495110209:0;cd bc_payslip
: 1495110260:0;mv bcintranet.go bc_payslip.go
: 1495110269:0;mv bc_payslip.go bcpayslip.go
: 1495110274:0;rm bcintranet
: 1495110284:0;cat Procfile
: 1495110365:0;rm controllers/project_controller.go
: 1495110372:0;rm controllers/approval_controller.go
: 1495110380:0;rm controllers/common_controller.go
: 1495110386:0;rm controllers/users_controller.go
: 1495110389:0;rm controllers/wall_controller.go
: 1495110394:0;rm controllers/dailylog_controller.go
: 1495110398:0;rm controllers/metrics_controllers.go
: 1495110404:0;rm controllers/recruitment_controller.go
: 1495110420:0;rm templates/announcements.html
: 1495110425:0;open
: 1495111062:0;mv bc_payslip bcpayslip
: 1495111097:0;cd bcpayslip/
: 1495133892:0;go get -v
: 1495181936:0;rm controllers/profile_controller.go
: 1495183207:0;mv Dockerfile Test_Dockerfile
: 1495183227:0;export bc_mongo_db=payslip
: 1495183834:0;mongo help
: 1495183839:0;mongo -help
: 1495183854:0;mongo -h
: 1495183857:0;mongo
: 1495183910:0;su
: 1495183938:0;sudo mkdir -p /data/db
: 1495183979:0;sudo chown -R $USER /data/db
: 1495187391:0;rm templates/approvals_payslips.html
: 1495187396:0;rm templates/edit_profile.html
: 1495187406:0;rm templates/payslip_history.html
: 1495187411:0;rm templates/view_profile.html
: 1495187416:0;rm templates/about.html
: 1495187423:0;ls templates
: 1495187432:0;ls controllers
: 1495190340:0;golint
: 1495190404:0;touch validate_go.sh
: 1495190692:0;validate_go.sh
: 1495190832:0;sudo ./validate_go.sh
: 1495190847:0;ls -l validate_go.sh
: 1495190856:0;chmod a+x validate_go.sh
: 1495190982:0;find $project -name "*.py"
: 1495190987:0;find . -name "*.py"
: 1495190995:0;find . -name "*.go"
: 1495191034:0;find . -name "*.go" -not -path "vendor"
: 1495191038:0;find . -name "*.go" -not -path "/vendor"
: 1495191045:0;find . -name "*.go" -not -path "./vendor"
: 1495191065:0;find . -name "*.go" -not -path "vendor/*.*"
: 1495191069:0;find . -name "*.go" -not -path "vendor/*"
: 1495191286:0;golint controllers/payslip_controller.go
: 1495223791:0;./vendor
: 1495224050:0;golint *.go
: 1495224057:0;golint -R *.go
: 1495224077:0;golint .
: 1495224088:0;golint .//
: 1495224090:0;golint ./.
: 1495224097:0;golint ./models
: 1495224150:0;golint ./*
: 1495224153:0;golint ./
: 1495224161:0;golint ./.*
: 1495224167:0;golint ./
: 1495224168:0;golint ./ .
: 1495224200:0;golint ./models ./store
: 1495224258:0;find ./*
: 1495224262:0;find ./
: 1495224265:0;find .
: 1495224267:0;find
: 1495224276:0;find /*.*
: 1495224279:0;find /*.go
: 1495224283:0;find ./*.go
: 1495224312:0;find . -name "*.go" -not -path "./vendor/*"
: 1495224351:0;golint (find . -name "*.go" -not -path "./vendor/*")
: 1495224361:0;golint | find . -name "*.go" -not -path "./vendor/*"
: 1495224424:0;golint ./controllers/auth_controller.go
: 1495228732:0;mkdir tests
: 1495293519:0;go test tests/unit_test.go
: 1495293650:0;rm media/123456789012.pdf
: 1495293658:0;rm unit_test.go
: 1495293799:0;got test -cover
: 1495297091:0;go get "sourcegraph.com/sourcegraph/go-selenium"\
)
: 1495297101:0;go get sourcegraph.com/sourcegraph/go-selenium
: 1495298387:0;go get "github.com/tebeka/selenium"
: 1495298403:0;cat Godeps/Godeps.json
: 1495298695:0;[200~java -jar selenium-server-standalone-2.24.1.jar~
: 1495298711:0;java
: 1495298713:0;java -jar selenium-server-standalone-2.24.1.jar
: 1495298907:0;/Users/priyankpulumati/Downloads/geckodriver
: 1495299261:0;brew install chromdriver
: 1495299288:0;chromedriver
: 1495318214:0;go run feature_test.go
: 1495318259:0;mv features.go
: 1495318266:0;mv feature_test.go features.go
: 1495318467:0;go run feature
: 1495318605:0;curl localhost:4444
: 1495318618:0;curl http://localhost:4444
: 1495318630:0;curl http://localhost:4444/wd/hub
: 1495318637:0;curl somfewwef.com
: 1495318953:0;go get "github.com/knq/chromedp"
: 1495319250:0;go run features.go
: 1495319478:0;mv features.go feature_test.go
: 1495362213:0;mkdir sms
: 1495362216:0;cd sms
: 1495362220:0;mkvirtualenv sms
: 1495362255:0;pip install smsapi
: 1495436012:0;go test -cover
: 1495458180:0;cd medhas\ latest
: 1495481208:0;ls do
: 1495481212:0;ls downloads
: 1495548212:0;python 1d_unique_subarray.py
: 1495572016:0;git commit -m "V1"
: 1495572064:0;git remote add origin git@github.com:priyankcommits/bcpayslip.git
: 1495636763:0;go test feature_test.go -h
: 1495658971:0;service
: 1495658978:0;_services
: 1495658983:0;services
: 1495695679:0;git remote add git@github.com:beautiful-code/bcpayslip.git
: 1495695689:0;git remote add origin git@github.com:beautiful-code/bcpayslip.git
: 1495698413:0;cat Test_Dockerfile
: 1495698455:0;rename Test_Dockerfile Dockerfile
: 1495698460:0;mv Test_Dockerfile Dockerfile
: 1495698541:0;docker image rmi 2260a5d6a4b3
: 1495698571:0;docker run bc-image
: 1495698844:0;docker rm $(docker ps -a -f status=exited -q)
: 1495698943:0;docekr run bcpayslip
: 1495698949:0;docker run bcpayslip
: 1495701412:0;curl localhost:3000
: 1495701414:0;curl localhost:3001
: 1495701420:0;curl localhost:8001
: 1495701424:0;curl localhost:8000
: 1495701427:0;curl localhost:8002
: 1495701437:0;curl localhost:3200
: 1495701445:0;curl localhost:8080
: 1495701489:0;docker run -p 3200:3000 bcpayslip
: 1495701740:0;go -version