File tree 3 files changed +25
-4
lines changed
3 files changed +25
-4
lines changed Original file line number Diff line number Diff line change 1
1
Place to put small code scraps and pull in other small repos.
2
2
3
+ scripts:
4
+ qrclip - capture qr code from webcam/img to clipboard
5
+ entropy - monitor entropy available by showing every 1 second
6
+
3
7
greasemonkey:
4
8
collapsetips - script to collapse ChangeTips on /r/bitcoin
5
9
6
- From other repos/gists:
7
-
8
- subgit - nice script for easily managing sub-projects (like these)
9
- bkkcoins - useful stuff for Bitcoin
10
+ from other repos/gists:
11
+ subgit - nice script for easily managing sub-projects (like these)
12
+ bkkcoins - useful stuff for Bitcoin
10
13
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env python
2
+
3
+ import time
4
+
5
+ while True :
6
+ with open ('/proc/sys/kernel/random/entropy_avail' , 'r' ) as f :
7
+ print (f .read ().rstrip ())
8
+ time .sleep (1.0 )
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ if [ -z " $1 " ]; then
4
+ zbarcam --raw | xclip -selection c
5
+ elif [ " $1 " = " btc" ]; then
6
+ zbarcam --raw | sed ' s/.*\://' | xclip -selection c
7
+ else
8
+ zbarimg -q --raw " $1 " | xclip -selection c
9
+ fi
10
+
You can’t perform that action at this time.
0 commit comments