- Turn it off and turn it back on again
- Unplug it then plug it back in
- http://google.com
- Disconnect from the network and reconnect
- Plug in an ethernet cable
- Call Logan
| [core] | |
| autocrlf = false | |
| [push] | |
| default = matching |
| # Path to your oh-my-zsh configuration. | |
| ZSH=$HOME/.oh-my-zsh | |
| # Set name of the theme to load. | |
| # Look in ~/.oh-my-zsh/themes/ | |
| # Optionally, if you set this to "random", it'll load a random theme each | |
| # time that oh-my-zsh is loaded. | |
| ZSH_THEME="robbyrussell" | |
| # Example aliases |
You don't need to know much about Drupal to get pretty far in building a theme. It's mostly html and a few magic php bits and bobs floating around. The tricky bit is learning what magic bits exist and what they're called. Let's take a look at some kinds of templates in Drupal. The best way to think about Drupal themes is probably to image russian dolls.
This is the stuff that likely doesn't change (although it still can) across your site all that much.
https://github.com/RyanParsley/lessie/blob/master/html.tpl.php
| cd [path/to/site] || exit | |
| unset GIT_DIR | |
| git clean -f | |
| git pull origin develop | |
| chmod -Rf g+w . |
| RewriteEngine on | |
| # Don't rewrite files or directories | |
| RewriteCond %{REQUEST_FILENAME} -f [OR] | |
| RewriteCond %{REQUEST_FILENAME} -d | |
| RewriteRule ^ - [L] | |
| # Rewrite everything else to index.html to allow html5 state links | |
| RewriteRule ^ index.html [L] |
You can extend Photoshop (and the rest of Adobe's lineup) via javascript, but it's pretty dubiously documented. People do this, and presumably make money at it, but it looks to be a maddening process. Perhaps there's better documentation behind a developer login, but this is the extent of help that I've found so far.
Note, there seems to be 3 distinct api changes at these points:
- CS 6
- CC up to but not including 2014
- CC 2014
Choosing a "platform" looks to dictate which tool you should choose.
name: Extend Photoshop with Javascript class: middle, center