Skip to content

Instantly share code, notes, and snippets.

View s-stude's full-sized avatar

Akim (ツ) Khalilov s-stude

View GitHub Profile
@s-stude
s-stude / disk-space.sh
Last active July 13, 2023 16:55
Ubuntu Helpers
# figure out disk space
df -h
# figure out what eats space
# https://askubuntu.com/a/506118/445856
du --max-depth=1 --human-readable / | sort --human-numeric-sort
# kill /var/log/journal files
sudo journalctl --vacuum-size=500M
@s-stude
s-stude / config.js
Created March 12, 2015 16:25
Angular (manual bootstrap) + Protractor Tests
exports.config = {
seleniumAddress: 'http://localhost:4444/wd/hub',
specs: ['todo-spec.js']
};
@s-stude
s-stude / script.js
Created July 2, 2014 10:59
JavaScript "Сlosures" Craziness
// task to fix this: should output 4, 3, 2, 1, 0
this.index = 5;
while(index--){
code = window.setTimeout(function(){
console.log(this.index);
}.bind(this),500);
}
@s-stude
s-stude / image-placeholders.md
Last active November 16, 2015 20:30
List of image placeholders