TODO: Add price informations
TODO: Add App Store Addresses
###Chrome
One browser for your computer, phone and tablet
| javascript:(function() { | |
| var relativeTimeElements = window.document.querySelectorAll("relative-time"); | |
| relativeTimeElements.forEach(function(timeElement){ | |
| timeElement.innerHTML = timeElement.innerHTML +" -- "+ timeElement.title; | |
| }) | |
| }()) |
| // Clone the repo | |
| git clone --depth=1 git://someserver/somerepo dirformynewrepo | |
| // Remove the .git directory | |
| rm -rf !$/.git |
| Add to .gitignore file | |
| node_modules | |
| Then call: | |
| git rm -r --cached node_modules | |
| git commit -m "Remove node_modules now that they're ignored!" | |
| git push origin master |
| WP REST API: Internals and Customization | |
| http://code.tutsplus.com/tutorials/wp-rest-api-internals-and-customization--cms-24945 | |
| Submit WordPress Posts from the Front-End with the WP-API | |
| https://apppresser.com/wp-api-post-submission/ | |
| Demo plugin using wp.Backbone.View and the WP JSON REST API v2 | |
| https://github.com/brianhogg/wp-backbone-view-rest-api-demo | |
| A Swift iOS application that demonstrates using WordPress API |
TODO: Add price informations
TODO: Add App Store Addresses
###Chrome
One browser for your computer, phone and tablet
| /* | |
| Gulpfile.js file for the tutorial: | |
| Using Gulp, SASS and Browser-Sync for your front end web development - DESIGNfromWITHIN | |
| http://designfromwithin.com/blog/gulp-sass-browser-sync-front-end-dev | |
| Steps: | |
| 1. Install gulp globally: | |
| npm install --global gulp |
| <?php | |
| /** | |
| * Skeletal sample shortcode | |
| */ | |
| add_shortcode( 'pilau-sample', 'pilau_sample_shortcode' ); | |
| function pilau_sample_shortcode( $atts ) { | |
| extract( shortcode_atts( array( | |
| 'text' => '' | |
| ), $atts ) ); |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |