One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
As a freelancer, I build a lot of web sites. That's a lot of code changes to track. Thankfully, a Git-enabled workflow with proper branching makes short work of project tracking. I can easily see development features in branches as well as a snapshot of the sites' production code. A nice addition to that workflow is that ability to use Git to push updates to any of the various sites I work on while committing changes.
| /* Regular jQuery */ | |
| $('.hideable').on('click', function() { | |
| $(this).hide(); | |
| }) | |
| /* Compatibility Mode */ | |
| jQuery('.hideable').on('click', function() { | |
| jQuery(this).hide(); | |
| }) |
| // Expire events | |
| if ($expireTransient = get_transient($post->ID) === false) { | |
| set_transient($post->ID, 'set for 1 minutes', 1 * MINUTE_IN_SECONDS ); | |
| $today = date('Y-m-d H:i:s', current_time('timestamp', 0)); | |
| $args = array( | |
| 'post_type' => 'events', | |
| 'posts_per_page' => 200, | |
| 'post_status' => 'publish', | |
| 'meta_query' => array( | |
| array( |
| diskutil list | |
| diskutil unmountDisk /dev/disk2 | |
| diskutil eraseDisk FAT32 SANDISK /dev/disk2 |