Skip to content

Instantly share code, notes, and snippets.

View realprocrastinator's full-sized avatar
🤪
Overclocking!

realprocrastinator

🤪
Overclocking!
  • Xiaomi
  • Shanghai
View GitHub Profile
@realprocrastinator
realprocrastinator / apkinstall.bat
Created December 16, 2021 05:19
Install apks from Windows system to a single Adroid device
@REM This is a batch script for installing multiple apks in a given folder via ADB tool
@REM Also this is for self learning batch scripting as well :)
@ECHO OFF
@REM SETLOCAL EnableDelayedExpansion
@REM To get the <backspace><space><backspace> (delete character) we spawn another prompt
for /F "tokens=1,2 delims=#" %%a in ('"prompt #$H#$E# & echo on & for %%b in (1) do rem"') do (
set "DEL=%%a"
)
@realprocrastinator
realprocrastinator / gist:0eb1aea77fa29ad296b36994d95b7237
Created November 25, 2021 06:32 — forked from bessarabov/gist:674ea13c77fc8128f24b5e3f53b7f094
One-liner to generate data shown in post 'At what time of day does famous programmers work?' — https://ivan.bessarabov.com/blog/famous-programmers-work-time
git log --author="Linus Torvalds" --date=iso | perl -nalE 'if (/^Date:\s+[\d-]{10}\s(\d{2})/) { say $1+0 }' | sort | uniq -c|perl -MList::Util=max -nalE '$h{$F[1]} = $F[0]; }{ $m = max values %h; foreach (0..23) { $h{$_} = 0 if not exists $h{$_} } foreach (sort {$a <=> $b } keys %h) { say sprintf "%02d - %4d %s", $_, $h{$_}, "*"x ($h{$_} / $m * 50); }'
@realprocrastinator
realprocrastinator / PY0101EN-1-1-Types.ipynb
Created September 14, 2019 03:37
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.