Skip to content

Instantly share code, notes, and snippets.

View gukandrew's full-sized avatar
🇺🇦

gukandrew

🇺🇦
View GitHub Profile
@gukandrew
gukandrew / README.md
Created July 3, 2022 18:33 — forked from Informatic/README.md
openlgtv webOS hacking notes

This is just a dump of some interesting undocumented features of webOS (3.8 specifically, on early 2018 4k LG TV) and other development-related tips.

Homebrew app ideas

@gukandrew
gukandrew / fuse-ext2_install.command
Created March 12, 2022 18:18
Script to install fuse-ext2 on M1 Mac
#!/bin/zsh
# Script to install fuse-ext2 on M1 Mac
# Install dependencies
#brew install e2fsprogs m4 automake autoconf libtool pkg-config
cd ~/
if [ ! -d ~/fuse-ext2 ]; then
git clone https://github.com/alperakcan/fuse-ext2.git
// create a bookmark and use this code as the URL, you can now toggle the css on/off
// thanks+credit: https://dev.to/gajus/my-favorite-css-hack-32g3
javascript: (function() {
var styleEl = document.getElementById('css-layout-hack');
if (styleEl) {
styleEl.remove();
return;
}
styleEl = document.createElement('style');
styleEl.id = 'css-layout-hack';
@gukandrew
gukandrew / easing.js
Created May 22, 2018 11:44 — forked from gre/easing.js
Simple Easing Functions in Javascript - see https://github.com/gre/bezier-easing
/*
* Easing Functions - inspired from http://gizma.com/easing/
* only considering the t value for the range [0, 1] => [0, 1]
*/
EasingFunctions = {
// no easing, no acceleration
linear: function (t) { return t },
// accelerating from zero velocity
easeInQuad: function (t) { return t*t },
// decelerating to zero velocity