Skip to content

Instantly share code, notes, and snippets.

View iz-ben's full-sized avatar

Ben iz-ben

View GitHub Profile
@iz-ben
iz-ben / gist:1cb950743fd591ef7764f95281411dd9
Created September 28, 2023 12:47
Laravel sail init after cloning
docker run --rm \
-u "$(id -u):$(id -g)" \
-v $(pwd):/var/www/html \
-w /var/www/html \
laravelsail/php82-composer:latest \
composer install --ignore-platform-reqs
@iz-ben
iz-ben / closure_compiler_arguments.txt
Created February 15, 2017 08:42
Arguments for the Google Closure Compiler
--charset VAL : Input and output charset for all files
. By default, we accept UTF-8 as input
and output US_ASCII
--closure_entry_point VAL : Entry points to the program. Must be g
oog.provide'd symbols. Any goog.provid
e'd symbols that are not a transitive
dependency of the entry points will be
removed. Files without goog.provides,
and their dependencies, will always b
e left in. If any entry points are spe