- New! Weekly: Saturday Mornings, Code & Coffee
- TAFF Expo on.fb.me/1I0jrNS
- LBTech: reorganizing of the Board ... DW stepped down as Executive Director. Added Michael Evans as Treasurer. Eventually looking to expand the Board and add also looking for Advisory members.
- polymer: paper element
- webcomponents.js
- flexbox
framework: ember, angular, backbone dart, typescript
`
<script src="webcomponents/webcomonents.js"></script>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* cloud9: ide.c9.io | |
* iojs https://iojs.org/en/index.html | |
* https://github.com/google/traceur-compiler | |
* https://github.com/google/ | |
* ecmascript 6 : https://www.google.com/search?client=ubuntu&channel=fs&q=full+stack+javascript+development+with+pies&ie=utf-8&oe=utf-8#newwindow=1&channel=fs&q=ecmascript%206 | |
* http://github.com/c9/architect | |
* https://www.polymer-project.org/ | |
* express: stackoverflow.com/questions/19411135/what-does-express-js-do-in-the-mean-stack#answer-19411233 | |
* jade (templating) sass | |
* gss (grid stylsheets) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
PROGRAMS="$HOME/Programs" | |
# Bash script to install latest version of ffmpeg and its dependencies on Ubuntu 12.04 or 14.04 | |
# Inspired from https://gist.github.com/faleev/3435377 | |
# Remove any existing packages: | |
sudo apt-get -y remove ffmpeg x264 libav-tools libvpx-dev libx264-dev | |
# Get the dependencies (Ubuntu Server or headless users): |
- Feb 11: Wednesday LBTech Mixture
- Feb 19-22: SCaLE 13x at Hilton Los Angeles Airport
- May 11-15 2015: Drupalcon Los Angeles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##------------------------------------ | |
# NGINX VHOST TEMPLATE FOR DRUPALPRO | |
# Based on: http://wiki.nginx.org/Drupal | |
#------------------------------------- | |
# | |
# FIND AND REPLACE ##__VARIABLES__## in text editor | |
# | |
# ##__SERVER_TLD__## -- FQDN (aka URL) Example: foobar.dev, *.foobar.dev, AwesomeWebsite.com (multiple comma separated URI's is ok). | |
# ##__PATH_TO_SITE__## -- ABSOLUTE PATH TO DRUPAL Example: /home/drupalpro/websites/foobar.dev/www | |
# ##__D7_D8__## Drupal 7-8, Find & ERASE these variables |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# git/hooks/post-receive | |
# add this script to a git repo on a 'remote' server | |
# to automatically deploy a git branch to either staging or production (or do nothing) | |
WORK_TREE_PROD=$HOME/production # assumes logged in user HOME/production path is webroot | |
WORK_TREE_STAGE=$HOME/staging # assumes logged in user HOME/staging path is webroot | |
GIT_DIR=$HOME/git # assumes remote git repo is in HOME/git (no dot - not hidden) | |
============================
This is an example of how to use Drupalpro, to manually setup a Drupal7 website called foobar.dev. This does not make use of the addon drush scripts to automate the process, but demonstrates how to manually add a website.
- Create website root folder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Setup Script to configure Ubuntu 14.04 as an NGINX webserver configured for | |
# Drupal. This script will install and configure NGINX + PHP5-FPM + MARIADB and | |
# Optionally instal and configure additional development and desktop software. | |
# | |
# THE MIT LICENSE | |
# Copyright (C) 2014, Michael Stewart www.zaferia.net | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
# |