Probably what you're looking for
[a]
Alternate (alternate version of the game, usually trying a different output method)[p]
Pirate
/** | |
* eslint.recommended (annotated) | |
* ================ | |
* Annotated defaults based on eslint.recommended | |
* | |
* @author: wassname | |
* @license: MIT | |
* @website https://gist.github.com/wassname/4693303388396c5f074b10865a969b43 | |
* @date 2017-11-13T23:08 | |
* @eslint-version: 4.11.0 |
s/biblio:Paper/schema:ScholarlyArticle/g | |
s/bibo:shortTitle/schema:alternateName/g | |
s/cal:dtend/schema:endDate/g | |
s/cal:dtstart/schema:startDate/g | |
s/cal:location/schema:location/g | |
s/cal:Vevent/schema:Event/g | |
s/cc:license/schema:license/g | |
s/dcterms:abstract/schema:abstract/g | |
s/dcterms:contributor/schema:contributor/g | |
s/dcterms:creator/schema:creator/g |
<?php | |
$words = 0; | |
$posts = query_posts([ | |
'posts_per_page' => -1, | |
'year' => '2014', | |
]); | |
foreach ($posts as $post) { | |
$words += str_word_count($post->post_content); |
server { | |
listen 80; | |
server_name wordpress.app; | |
root "/home/vagrant/Code/wordpress"; | |
index index.html index.htm index.php; | |
charset utf-8; | |
location / { |
{ | |
"@context": [ | |
"http://www.w3.org/ns/activitystreams", | |
{ | |
"mf": "http://microformats.org/wiki/", | |
"vcard": "http://www.w3.org/2006/vcard/ns#", | |
"jf2": "https://github.com/w3c-social/Social-Syntax-Brainstorming/wiki/jf2#", | |
"iwc": "http://indiewebcamp.com/", | |
"Adr": "mf:h-adr", |
;(function ($, window) { | |
var intervals = {}; | |
var removeListener = function(selector) { | |
if (intervals[selector]) { | |
window.clearInterval(intervals[selector]); | |
intervals[selector] = null; | |
} |
extension_id=jifpbeccnghkjeaalbbjmodiffmgedin # change this ID
curl -L -o "$extension_id.zip" "https://clients2.google.com/service/update2/crx?response=redirect&os=mac&arch=x86-64&nacl_arch=x86-64&prod=chromecrx&prodchannel=unknown&prodversion=44.0.2403.130&x=id%3D$extension_id%26uc"
unzip -d "$extension_id-source" "$extension_id.zip"
Thx to crxviewer for the magic download URL.