Skip to content

Instantly share code, notes, and snippets.

View nicholaswmin's full-sized avatar
💭
I may be slow to respond.

Nicholas Kyriakides nicholaswmin

💭
I may be slow to respond.
View GitHub Profile
@nicholaswmin
nicholaswmin / pretty-syntax-error.js
Last active November 25, 2024 03:05
A pretty-printed SyntaxError for compilers/tokenizers/lexers
/*
Pretty Syntax Errors
> @nicholaswmin, MIT License
A SyntaxError that pretty-prints the and higlights error line & column,
in your source.
This is only useful if you're building a compiler/lexer/tokenizer.
Although it is an `instanceof SyntaxError`, their similarities end there.
This file has been truncated, but you can view the full file.
// highlighted.js
// patched to adapt to external layout changes
/*! (c) Andrea Giammarchi @webreflection ISC */
!function(){"use strict";var e=function(e,t){var n=function(e){for(var t=0,n=e.length;t<n;t++)r(e[t])},r=function(e){var t=e.target,n=e.attributeName,r=e.oldValue;t.attributeChangedCallback(n,r,t.getAttribute(n))};return function(o,a){var l=o.constructor.observedAttributes;return l&&e(a).then((function(){new t(n).observe(o,{attributes:!0,attributeOldValue:!0,attributeFilter:l});for(var e=0,a=l.length;e<a;e++)o.hasAttribute(l[e])&&r({target:o,attributeName:l[e],oldValue:null})})),o}};function t(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function n(e,n){var r="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!r){if(Array.isArray(e)||(r=function(e,n){if(e){if("string"==typeof e)return t(e,n);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(
@nicholaswmin
nicholaswmin / web-component.js
Last active December 10, 2024 11:24
Encapsulated Web Component (native, zero dependencies)
const template = document.createElement('template')
template.innerHTML = /*html*/`
<style>
* {
font-size: 200%;
}
span {
width: 4rem;
display: inline-block;
@nicholaswmin
nicholaswmin / package-sizecheck.json
Created November 19, 2024 22:38
bundle, minify, gzip and print total bytes
{
"scripts": {
"size": "rm -rf .tmp/ && npx ncc build index.js -o .tmp -m -q && gzip .tmp/index.js && wc -c < .tmp/index.js.gz | xargs",
}
}
@nicholaswmin
nicholaswmin / css-controls.js
Last active November 17, 2024 08:37
data-bound CSS custom properties
/*
UI controls bound to CSS Custom Properties for on-the-fly tweaks.
Also draws an auto-updating grid.
> - updates to this gist must republish a new gisthostfor.me
> - only works for numeric props for now
It's a native WebComponent, so it can be dropped in style guides
without affecting or being affected by the environmental CSS.
@nicholaswmin
nicholaswmin / excessive-abstraction.rb
Last active November 29, 2024 15:55
Excessive abstraction/indirection in Ruby
# Problem set: You need to instantiate `Pages` from `Files`,
# picked up using the standard `File.read` method.
#
# For whatever reason, the `path` is the filename.
# and the `data` are the contents of the File.
# ----
# Modelling:
#
# To decouple the persistence layer and the domain layer,
# I introduce a new class `Entry` which acts as an intermediary.
@nicholaswmin
nicholaswmin / authors.md
Last active December 8, 2024 10:22
reading
@nicholaswmin
nicholaswmin / CONTRIBUTING.md
Last active October 9, 2024 19:56
minimal rulesets

Contributions

The key words must, must not, required, shall, shall not
should, should not, recommended, may, and optional in this
document are to be interpreted as described in [RFC 2119][rfc-2119].

  • The runtime, source code & Github defaults are the only 1st-class citizens.
    Anything else, including process & conventions are undesirable dependencies.
  • Dependencies should be lightweight, familiar to use & well-defined.
  • A robust & well-defined test suite is more valuable than the code.
@nicholaswmin
nicholaswmin / install-cc-hook.sh
Last active July 21, 2024 02:31
Conventional Commits message linter as a "commit-msg" Git hook
#!/bin/bash
# Conventional Commits "commit-msg" git hook #
#
# Installs a "Conventional Commit" commit-msg Git hook
# See more: https://www.conventionalcommits.org/
#
# Usage:
# - Copy this file to your repo
# - Run it once: bash install-cc-hook.sh
@nicholaswmin
nicholaswmin / README.md
Last active October 6, 2024 21:09
A shell function that removes a key from a JSON file

Readme

Important:

I wrote this function to manipulate my package.json.
This is a suboptimal solution; the correct way is via the official [npm-pkg][pkg].

Authors

@nicholaswmin