Node.js is just JavaScript running on the server side. That's it. That's all there is to it.
- Express Docs, if you want to get started and already know JavaScript this is the place to be
| yaourt --m-arg "--skippgpcheck" -S {{ package }} | |
| ### | |
| --skipinteg | |
| Do not perform any integrity checks (checksum and PGP) | |
| on source files. | |
| --skipchecksums | |
| Do not verify checksums of source files. |
| alias accio=wget | |
| alias avadaKedavra='rm -f' | |
| alias imperio=sudo | |
| alias priorIncantato='echo `history |tail -n2 |head -n1` | sed "s/[0-9]* //"' | |
| alias stupefy='sleep 5' | |
| alias wingardiumLeviosa=mv | |
| alias sonorus='set -v' | |
| alias quietus='set +v' |
| #!/bin/zsh | |
| # Script to generate thumbnails of a video and combine into one tile image. | |
| # | |
| # CAUTION: | |
| # FFprobe might fail to extract duration info from a MKV container. Use | |
| # ffmpeg -i video.mkv -c:v copy -c:a copy video.mp4 | |
| # to swap to an MP4 container. | |
| # | |
| # Dependencies: | |
| # 1. ffmpeg |
Node.js is just JavaScript running on the server side. That's it. That's all there is to it.
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # | |
| # Video of this screencast: https://vimeo.com/57296525 | |
| # | |
| # | |
| from __future__ import print_function, division, absolute_import | |
| from PIL import Image as pImage | |
| import numpy |
| echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
| . ~/.bashrc | |
| mkdir ~/local | |
| mkdir ~/node-latest-install | |
| cd ~/node-latest-install | |
| curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
| ./configure --prefix=~/local | |
| make install # ok, fine, this step probably takes more than 30 seconds... | |
| curl https://www.npmjs.org/install.sh | sh |