Skip to content

Instantly share code, notes, and snippets.

View sytabaresa's full-sized avatar

Sebastian Tabares Amaya sytabaresa

View GitHub Profile
@SMUsamaShah
SMUsamaShah / List of JavaScript GUI libraries.md
Last active September 4, 2024 01:08
dat.gui alternatives to create GUI from JavaScript object

JavaScript GUI libraries

These libraries can be used to quickly create a GUI for configureable parameters using sliders, checkboxes, colors pickers etc

  1. Tweakpane https://github.com/cocopon/tweakpane Demo: https://cocopon.github.io/tweakpane/
  2. control-panel https://github.com/freeman-lab/control-panel
  3. ControlKit https://github.com/automat/controlkit.js
  4. guify https://github.com/colejd/guify Main site is down, here is the demo https://jons.website/projects/guify/index
  5. oui https://github.com/wearekuva/oui
  6. Palette.js https://github.com/lehni/palette.js
@poeli
poeli / install_docker.sh
Created April 5, 2018 21:26
Install and Use Docker on CentOS 7
# Install and Docker on CentOS 7
# Reference:
# https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-centos-7
sudo yum check-update
# It will add the official Docker repository, download the latest version of Docker, and install it:
curl -fsSL https://get.docker.com/ | sh
# start the Docker daemon
sudo systemctl start docker
@samrat
samrat / gist:fe9ec27ec1f9e3640632b542d7c5ff7a
Created July 21, 2017 02:40
Tiva C launchpad (GDB + OpenOCD)
Start OpenOCD in a separate terminal:
openocd -f /usr/share/openocd/scripts/board/ek-lm4f120xl.cfg
$ cat gdb.cmd
target remote localhost:3333
set arm abi APCS
monitor reset halt
file main.elf
load
@krt
krt / redis_asm.lua
Last active July 4, 2018 15:01
Approximate string match in Redis.
--[[
redis_asm.lua
approximate string matching for redis
Copyright (c) 2015 Masato Yamaguchi
This software is released under the MIT License.
http://opensource.org/licenses/mit-license.php
@electronut
electronut / Makefile
Created April 30, 2014 15:03
Makefile for programming the ATtiny85
# Makefile for programming the ATtiny85
# modified the one generated by CrossPack
DEVICE = attiny85
CLOCK = 8000000
PROGRAMMER = -c usbtiny
OBJECTS = main.o
# for ATTiny85
# see http://www.engbedded.com/fusecalc/
FUSES = -U lfuse:w:0x62:m -U hfuse:w:0xdf:m -U efuse:w:0xff:m