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 node | |
var assert = require('assert'); | |
// Each lexed token is a array of three integers: | |
// 1. the "token type": an index into the list of token patterns. | |
// 2. the index into the input string marking the start of this token. | |
// 3. the length of the token. | |
// The list of "token types" which our lexer understands: |
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
server { | |
listen 443 ssl; | |
root /path/to/www; | |
index index.php index.html; | |
server_name your-site-domain.tld; |
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
{% assign total_items = items.size %} | |
{% for item in items %} | |
{% if forloop.index > 1 %} | |
{% if forloop.index != total_items %}, {% else %} and {% endif %} | |
{% endif %} | |
{{ item }} | |
{% endfor %} |
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
<style> | |
div { | |
width: 200px; | |
height: 200px; | |
background: lime; | |
border-radius: 100%; | |
position: relative; | |
} | |
span { | |
position: absolute; |
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
function magicMethods (clazz) { | |
// A toggle switch for the __isset method | |
// Needed to control "prop in instance" inside of getters | |
let issetEnabled = true | |
const classHandler = Object.create(null) | |
// Trap for class instantiation | |
classHandler.construct = (target, args) => { | |
// Wrapped class instance |
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($_GET['r'])) { | |
echo '<p style="color:red;">Missing `r` parameter.</p>'; | |
exit; | |
} | |
// <https://developer.github.com/apps/building-oauth-apps/creating-an-oauth-app> | |
$user = '03d2df6cd302*******'; // client ID |
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
/** | |
* This code is based on <https://github.com/pourquoi/ckeditor5-simple-upload> | |
* and will be implemented by <https://github.com/mecha-cms/extend.c-k-editor> in the future! | |
*/ | |
// The upload adapter | |
var Adapter = function(loader, urlOrObject, t) { | |
var $ = this; |
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
/* | |
A full list of simple easing equations inspired by GIST from greweb - https://gist.github.com/gre/1650294 | |
Equations source - http://gsgd.co.uk/sandbox/jquery/easing/ | |
*/ | |
{ | |
linear: function(t) { | |
return t | |
}, | |
inQuad: function(t) { |
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
// Reply for <https://medium.com/@Dewey92/cleaner-code-dengan-function-composition-137f30d928e4> | |
function compose() { | |
var i, arg = arguments, | |
output = arg.pop(); | |
for (i = 0; i < arg.length; ++i) { | |
if (typeof arg[i] !== "function") continue; | |
output = arg[i](output); | |
} | |
return output; |