- version 3.6
Check those constraints:
$this->anything()
# Hello, and welcome to makefile basics. | |
# | |
# You will learn why `make` is so great, and why, despite its "weird" syntax, | |
# it is actually a highly expressive, efficient, and powerful way to build | |
# programs. | |
# | |
# Once you're done here, go to | |
# http://www.gnu.org/software/make/manual/make.html | |
# to learn SOOOO much more. |
This has been updated and moved here: https://gist.github.com/codeartery/e40316d5bb5fc1ce3424c7707bc342d0
FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.
[push] | |
default = current | |
[alias] | |
fetch = git fetch --tags | |
reflog = git reflog --date=iso | |
st = status | |
ci = commit | |
co = checkout | |
br = branch | |
rz = reset --hard HEAD |
# GET VERSION | |
npm -v (or --version) | |
# GET HELP | |
npm help | |
npm | |
# CREATE PACKAGE.JSON | |
npm init | |
npm init -y (or --yes) |