Here are some notes on the various ways to check disk space usage on linux:
Disk usage of all (non-hidden) files and folders
Using the du
command (disk use) with the -s
(summarize) and -h
(human-readable) options.
du -sh *
Hi I'm Ilan, I work at Datadog, a monitoring and analytics platform for large-scale applications and infrastructure. I've been at Monitorama this week and figured I'd make it easy to find the talks from the conference.
Datadog is hiring! Come join me
Optimizing for Learning - Logan McDonald (BuzzFeed)
#!/bin/sh | |
alias dm='docker-machine' | |
alias dmx='docker-machine ssh' | |
alias dk='docker' | |
alias dki='docker images' | |
alias dks='docker service' | |
alias dkrm='docker rm' | |
alias dkl='docker logs' | |
alias dklf='docker logs -f' |
" ============= " VIMRC file for David Winterbottom (@codeinthehole) " =========== | |
" Inspiration {{{ | |
" ----------- | |
" Videos: | |
" - http://www.youtube.com/watch?v=aHm36-na4-4 | |
" | |
" Articles: | |
" | |
" - http://alexpounds.com/blog/2014/06/06/the-vimrc-antiques-roadshow |
import random | |
from enum import Enum, IntEnum | |
class BRAIN(str, Enum): | |
SMALL = "small" | |
MEDIUM = "medium" | |
GALAXY = "galaxy" | |
def __str__(self) -> str: |