sudo add-apt-repository ppa:kelebek333/kablosuz
sudo apt-get update
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RAR registration data | |
WinRAR | |
Unlimited Company License | |
UID=4b914fb772c8376bf571 | |
6412212250f5711ad072cf351cfa39e2851192daf8a362681bbb1d | |
cd48da1d14d995f0bbf960fce6cb5ffde62890079861be57638717 | |
7131ced835ed65cc743d9777f2ea71a8e32c7e593cf66794343565 | |
b41bcf56929486b8bcdac33d50ecf773996052598f1f556defffbd | |
982fbe71e93df6b6346c37a3890f3c7edc65d7f5455470d13d1190 | |
6e6fb824bcf25f155547b5fc41901ad58c0992f570be1cf5608ba9 |
Note: This gist may be outdated, thanks to all contributors in comments.
adb
is the Android CLI tool with which you can interact with your android device, from your PC
You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.
Don't hesitate to read comments, there is useful tips, thanks guys for this !
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
90008179737137449057850374296041230231448818231836430412891860501369559957934170566478171795337452573291424987820066966816786 | |
11421932734664050282853577818350442368737025841021682351565157149258626742693172908157392514275953021340373789403811298198112 | |
98078491418506031705393320777252539769380080434092015114759613380134199900073766190656627700475488778765198284763526475740644 | |
27316250203873295755542616481830176762741844790191881961666387319684382599128392790817587468185935956109594742996822851456430 | |
69484825595272003071580933663162309410919484264168162456415987660087356646694839288039098048397766765190012006438103559476605 | |
88069969501403804546943579852833051109937002040256969349389081744254318024154760523379227341047257631357870025582656575655762 | |
80287299653975203684260833623532172260301953877104948974634491969795223647429108528213960088039791160860481243853022341993839 | |
24991718535415280310113584497118196223057217585054424117851185779066465713336737557959912721815816999403404005977799509009387 | |
9410563589763257 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.npmjs.com/package/oss-attribution-generator | |
Supports JS. Should be able to generate an attribution file, but shows a | |
failure after seemingly succesfully processing all dependencies. | |
Has capabilities for overriding the licenses. | |
https://github.com/src-d/go-license-detector | |
Supports Go. Detects the license for a single license folder (returning | |
certainty / match factor), but does not support dependency |
FYI: Created blog post with more details
Sometimes git does not exclude files/folders added .gitignore
especially if you had commited them before. Here is how to fix it. I am ignoring node_modules from Angular project as an example
- Update
.gitignore
with the folder/file name you want to ignore. You can use anyone of the formats mentioned below (prefer format1)
### Format1 ###
node_modules/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- assign logical name to macro keyboard | |
-- lmc_assign_keyboard('MACROS') | |
-- lmc_minimize(); | |
-- lmc_reset(); | |
lmc_say('Loading keyboard configuration') | |
lmc.minimizeToTray = false | |
-- lmc_minimize() | |
-- lmc_load('E:\\lmc.lua') | |
-- The function returns title of active window. Useful if you want different behaviour of macros depending of active application. |
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"