Skip to content

Instantly share code, notes, and snippets.

View mingliangfeng's full-sized avatar

Andrew Feng mingliangfeng

  • Melbourne
View GitHub Profile
@mingliangfeng
mingliangfeng / frontendDevlopmentBookmarks.md
Created May 3, 2016 00:52 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.
function foo(args) {
var i, j, k;
// ...
// j acquires some interesting value
// Who called foo when j took this interesting value?
//
var e = new Error('dummy');
var stack = e.stack.replace(/^[^\(]+?[\n$]/gm, '')
.replace(/^\s+at\s+/gm, '')
@mingliangfeng
mingliangfeng / docker.sh
Last active March 7, 2018 05:17 — forked from evanscottgray/docker_kill.sh
kill all docker containers at once...
# list all container IDs
docker ps -aq
# stop all containers
docker stop $(docker ps -q)
# remove all containers
docker rm $(docker ps -aq)
# remove all images
@mingliangfeng
mingliangfeng / completion-for-gradle.md
Last active November 11, 2016 00:57 — forked from nolanlawson/completion-for-gradle.md
Gradle tab completion for Bash. Works on both Mac and Linux.

Gradle tab completion script for Bash

A tab completion script that works for Bash. Relies on the BSD md5 command on Mac and md5sum on Linux, so as long as you have one of those two commands, this should work.

Usage

$ gradle [TAB]
@mingliangfeng
mingliangfeng / README.md
Created June 13, 2018 05:15 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.

OP: @leonardofed founder @ plainflow.