"Panzer Dragoon 1k" is a 2D remake of Panzer Dragoon in 1k of JavaScript for JS1K 2014 by @greweb
Use your Dragoon to prevent enemies from escaping.
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
| <title>Styling a poem</title> | |
| <style type="text/css"> | |
| /* Left-aligned text in a centered block (mangles text in Adobe Digital Editions 1.7, so search an alternative if you need to support it) */ | |
| .poem { | |
| display: table; | |
| margin-right: auto; |
| ; This is a snippet of the original file in https://github.com/geyslan/SLAE/blob/master/1st.assignment/shell_bind_tcp.asm | |
| global _start | |
| section .text | |
| _start: | |
| ; syscalls (/usr/include/asm/unistd_32.h) | |
| ; socketcall numbers (/usr/include/linux/net.h) |
"Panzer Dragoon 1k" is a 2D remake of Panzer Dragoon in 1k of JavaScript for JS1K 2014 by @greweb
Use your Dragoon to prevent enemies from escaping.
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.
| ;(function ($, window) { | |
| var intervals = {}; | |
| var removeListener = function(selector) { | |
| if (intervals[selector]) { | |
| window.clearInterval(intervals[selector]); | |
| intervals[selector] = null; | |
| } |
| { | |
| "@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", |
| server { | |
| listen 80; | |
| server_name wordpress.app; | |
| root "/home/vagrant/Code/wordpress"; | |
| index index.html index.htm index.php; | |
| charset utf-8; | |
| location / { |
| <?php | |
| $words = 0; | |
| $posts = query_posts([ | |
| 'posts_per_page' => -1, | |
| 'year' => '2014', | |
| ]); | |
| foreach ($posts as $post) { | |
| $words += str_word_count($post->post_content); |