Skip to content

Instantly share code, notes, and snippets.

View naumstory's full-sized avatar
👨‍🎨
Infinite creating

Dmitry Naumenkov naumstory

👨‍🎨
Infinite creating
View GitHub Profile
@Daniel-ltw
Daniel-ltw / from.yaml
Last active August 25, 2023 21:11
Github Actions repository_dispatch example
name: Build Artifacts
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
@fourjuaneight
fourjuaneight / scripts.11ty.js
Created July 29, 2019 22:38
Babel + Terser 11ty Pipeline
const { readFileSync } = require('fs');
const babel = require('@babel/core');
const Terser = require('terser');
// file paths
const color = readFileSync('assets/js/color.js', 'utf8', data => data);
const noise = readFileSync('assets/js/noise.js', 'utf8', data => data);
const outputFile = 'scripts.js';
module.exports = class {

FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.


Effective Engineer - Notes

What's an Effective Engineer?

@joyrexus
joyrexus / README.md
Last active September 6, 2025 15:46 — forked from liamcurry/gist:2597326
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})