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 / sublime-like-atom.json
Created April 29, 2024 15:42
Theme Override to color a Sublime Text 4 tree view in orange/green/red for modified/added/deleted files
// Activate the 'Default Dark' theme and then customise it
// Drop this in the editor
{
"extends": "Default Dark.sublime-theme",
"variables": {
"vcs_untracked": "var(--greenish)",
"vcs_modified": "var(--orangish)",
"vcs_missing": "var(--redish)",
"vcs_staged": "var(--bluish)",
"vcs_added": "var(--greenish)",
@nicholaswmin
nicholaswmin / polymerES6.html
Last active April 24, 2016 08:15
Polymer element using ES6
<base href="https://polygit.org/components/">
<script src="webcomponentsjs/webcomponents-lite.min.js"></script>
<link href="polymer/polymer.html" rel="import">
<link href="paper-input/paper-input.html" rel="import">
<dom-module id="x-example">
<template>
<paper-input value="{{name::input}}"></paper-input>
<h4>{{name}}</h4>
@nicholaswmin
nicholaswmin / paperKMeans.js
Last active April 16, 2016 18:10
Clustering Paper.js Elements together using the K-means algorithm.
/**
* Clusters a number of Paper Elements as Paper Groups.
* Clustering is based on distance between elements,
* using K-means clustering.
* - This method DOES NOT preserve z-order of items, so use with caution
*
*
* - Dependent on clusterfck.js.
* See: https://github.com/NathanEpstein/clusters
* and download browser .js file.
@nicholaswmin
nicholaswmin / catmull-rom.js
Last active February 15, 2025 00:25
catmull-rom
/* Catmull-Rom interpolating splines in ES6
----
authors: Nicholas Kyriakides (2017) & Unknown
from: "A class of local interpolating splines"
Catmull, Edwin; Rom, Raphael | University of Utah, 1974
Barnhill, Robert E.; Riesenfeld, Richard F. (eds.).
Computer Aided Geometric Design.
@summary