Please see: https://github.com/kevinSuttle/html-meta-tags, thanks for the idea @dandv!
Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/
| ּ_בּ | |
| בּ_בּ | |
| טּ_טּ | |
| כּ‗כּ | |
| לּ_לּ | |
| מּ_מּ | |
| סּ_סּ | |
| תּ_תּ | |
| ٩(×̯×)۶ | |
| ٩(̾●̮̮̃̾•̃̾)۶ |
| // This gist is now maintained on github at https://github.com/luetkemj/wp-query-ref | |
| <?php | |
| /** | |
| * WordPress Query Comprehensive Reference | |
| * Compiled by luetkemj - luetkemj.github.io | |
| * | |
| * CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters | |
| * Source: https://core.trac.wordpress.org/browser/tags/4.9.4/src/wp-includes/query.php | |
| */ |
| (function( $ ) { | |
| $.fn.simulateDragDrop = function(options) { | |
| return this.each(function() { | |
| new $.simulateDragDrop(this, options); | |
| }); | |
| }; | |
| $.simulateDragDrop = function(elem, options) { | |
| this.options = options; | |
| this.simulateEvent(elem, options); | |
| }; |
| # Download Sublime Text 2 from http://www.sublimetext.com/2 | |
| # If you aren't root, sudo su | |
| tar -xvjf Sublime\ Text\ 2*.tar.bz2 | |
| mv Sublime\ Text\ 2/ /opt/sublime-text-2/ | |
| ln -s /opt/sublime-text-2 /usr/local/sublime-text-2 | |
| ln -s /usr/local/sublime-text-2/sublime_text /usr/local/bin/sublime_text | |
| rm Sublime\ Text\ 2*.tar.bz2 | |
| # Sublime Text 2 can now be run as normal user with command "sublime_text" |
| // Source: https://groups.google.com/forum/#!topic/angular/hVrkvaHGOfc | |
| // jsFiddle: http://jsfiddle.net/pkozlowski_opensource/PxdSP/14/ | |
| // author: Pawel Kozlowski | |
| var myApp = angular.module('myApp', []); | |
| //service style, probably the simplest one | |
| myApp.service('helloWorldFromService', function() { | |
| this.sayHello = function() { | |
| return "Hello, World!" |
| <!DOCTYPE html> | |
| <html lang="fr" manifest="/manifeste.appcache"> | |
| <head> | |
| <!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge"><![endif]--> | |
| <meta charset="UTF-8"> | |
| <!-- Meta SEO --> | |
| <title>Web App</title> | |
| <meta name="author" content="author"> | |
| <meta name="description" content="Description"> | |
| <!-- RWD --> |
| { | |
| "name": "WebScraping", | |
| "main": "scrap.js", | |
| "dependencies": { | |
| "cheerio": "~0.13.1" | |
| } | |
| } |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.