Macbook clean install
Brew
Install Brew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"`
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"`
const routes: Routes = [ | |
{ | |
path: 'en', | |
children: allRoutes, | |
canActivate: [FeaturesGuard], | |
data: { feature: 'i18n' } as FeaturesGuardModel | |
} | |
] |
{ | |
"scripts": { | |
"differential:disable": "yarn ts-node --project ./build-scripts/tsconfig.ts-node.json ./build-scripts/skip-differential-loading" | |
} | |
} |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>name</key> | |
<string>PSPad</string> | |
<key>settings</key> | |
<array> | |
<dict> | |
<key>settings</key> |
<?php | |
/* columnizer | |
* | |
* Getresources output into columns | |
* | |
* PARAMETERS: | |
* &idx: always should be [[+idx]] | |
* &total: always should be [[+total]] | |
* &columns: number of columns (1 -6) | |
* &startTpl: html for column (can use chunk) |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
<? | |
/** | |
* getActiveClass: get html class for navigation (multi-level) | |
* | |
* PARAMETERS: | |
* &docid: Document ID | |
* &class [optional]: custom html class name (default: "active") | |
* &self [optional]: add class also on self document (default: 1) | |
* | |
* EXAMPLES: |
# MODX htaccess for BABEL (idealab settings) | |
RewriteEngine On | |
RewriteBase / | |
php_flag display_startup_errors on | |
php_flag display_errors on | |
php_flag html_errors on | |
# redirect all requests to /de/favicon.ico and /nl/favicon.ico |
<a href="http://youtu.be/[[getPlaceholder? &id=`[[+parent]]` &placeholder=`tv.video`]]" target="_blank"> | |
<img src="[[!pthumb? &input=`http://img.youtube.com/vi/[[getPlaceholder? &id=`[[+parent]]` &placeholder=`tv.video`]]/0.jpg` &options=`&w=480&h=270&zc=1`]]"> | |
</a> |
/*------------------------------------------ | |
Responsive Grid Media Queries - 1280, 1024, 768, 480 | |
1280-1024 - desktop (default grid) | |
1024-768 - tablet landscape | |
768-480 - tablet | |
480-less - phone landscape & smaller | |
--------------------------------------------*/ | |
@media all and (min-width: 1024px) and (max-width: 1280px) { } | |
@media all and (min-width: 768px) and (max-width: 1024px) { } |