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
# Taken from https://superuser.com/a/1321654 | |
echo "File Count Dir Size Directory" | |
echo "---------- ---------- -------------------------" | |
for d in *; do | |
if [[ -d $d ]]; then | |
echo `find $d -type f | wc -l` | awk '{printf "%10s ", $0;}' | |
echo `du -h --max-depth=0 $d` | cut -d\ -f 1 $1 | awk '{printf "%10s ", $0;}' | |
echo $d | |
fi | |
done | sort -n -k1 |
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
0.0.0.0 aamsqec.com | |
0.0.0.0 aapwdqx.in | |
0.0.0.0 aawgiow.biz | |
0.0.0.0 acfwftg.com | |
0.0.0.0 adbnsrt.me | |
0.0.0.0 aekqtdz.org | |
0.0.0.0 aemmfiu.cc | |
0.0.0.0 afcytwc.com | |
0.0.0.0 afgnckn.com | |
0.0.0.0 agcdnsk.org |
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
aamsqec.com | |
aapwdqx.in | |
aawgiow.biz | |
acfwftg.com | |
adbnsrt.me | |
aekqtdz.org | |
aemmfiu.cc | |
afcytwc.com | |
afgnckn.com | |
agcdnsk.org |
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
aamsqec.com | |
aapwdqx.in | |
aawgiow.biz | |
acfwftg.com | |
adbnsrt.me | |
aekqtdz.org | |
aemmfiu.cc | |
afcytwc.com | |
afgnckn.com |
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
"use strict"; | |
// Load plugins | |
const autoprefixer = require("autoprefixer"); | |
const browsersync = require("browser-sync").create(); | |
const cp = require("child_process"); | |
const cssnano = require("cssnano"); | |
const del = require("del"); | |
const eslint = require("gulp-eslint"); | |
const gulp = require("gulp"); |
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
ssh -nNT -L 0.0.0.0:9000:localhost:4000 user@remoteserver | |
This allow to access localhost:9000 on your local machine and see what it's been served on the remoteserver on the port 4000 |
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
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
import logging | |
import argparse | |
import codecs | |
import configparser | |
import errno | |
import glob | |
from operator import itemgetter |
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
version: '2' | |
services: | |
wallabag: | |
image: wallabag/wallabag:latest | |
restart: always | |
ports: | |
- "8888:80" | |
tty: true | |
links: | |
- wallabag-db:wallabag-db |
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
ECHO OFF | |
cd /d %~dp0 | |
for /f "tokens=2* delims= " %%F IN ('vagrant status ^| find /I "default"') DO (SET "STATE=%%F%%G") | |
ECHO Close this window if it remains open, and http://localhost:8081 is responsive | |
IF "%STATE%" NEQ "saved" ( | |
ECHO Starting Vagrant VM from powered down state... | |
vagrant up | |
) ELSE ( |
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
Ping all AWS EC2 IPs from http://ec2-reachability.amazonaws.com/ |
NewerOlder