Skip to content

Instantly share code, notes, and snippets.

@azu
azu / tsconfig + gulp-typescript.md
Last active August 18, 2020 07:19
tsconfig + gulp-typescript

azu/typescript1.5-es6module-npm at tsconfig-gulp

tsconfigが未対応なtsc1.4でもtsconfig.jsonをただの設定ファイル置き場として使う例。 filesGlobはatom-typescriptの独自拡張だけど

.
├── README.md
├── build
│   ├── bundle.js
@ntopulos
ntopulos / Multiple PHP versions on Ubuntu 16.04.md
Created June 10, 2016 15:00
Steps to get multiple versions of PHP running alongside on separate Apache virtual hosts using phpfarm

Multiple PHP versions on Ubuntu 16.04

Steps to get multiple versions of PHP running alongside on separate Apache virtual hosts using phpfarm.
The guide uses the example of PHP v5.4.45 and v7.0.7, but installation of any version and any number of versions will be done this same way.

Prerequisites

Update the machine:

@blackzphoenix
blackzphoenix / para_shell.sh
Last active March 27, 2019 23:46
parameter cal
$* : holds all command line parameters or arguments.
$# : holds the number of positional parameters.
$- : holds flags supplied to the shell.
$? : holds the return value set by the previously executed command.
$$ : holds the process number of the shell (current shell).
$! : hold the process number of the last background command.
$@ : holds all command line parameters or arguments.