This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "Installing Redis Desktop Manager 'Medis'" | |
[ -d ~/medis ] || git clone https://github.com/luin/medis.git ~/medis | |
cd ~/medis | |
npm install && npm run pack | |
cp -rf out/Medis-mas-x64/Medis.app /Applications/ | |
cd ~ && rm -rf ~/medis |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 2 | |
docker_defaults: &docker_defaults | |
docker: | |
- image: circleci/node:8.11.1-browsers | |
working_directory: ~/project/repo | |
attach_workspace: &attach_workspace | |
attach_workspace: | |
at: ~/project |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Go to https://config.qmk.fm/#/tada68/LAYOUT_65_ansi and change the layout based in your preferences | |
- Remapping on MAC https://gist.github.com/egstad/03dc892076c5f97e0c1e371013f952d7 | |
- Click in "Compile" button and wait for your bin file to be compiled | |
- After that, click on "Firmware" button to download the firmware to be added in your keyboard | |
- Run these commands | |
``` | |
cd /Volumes/TADA68\ \ | |
cp -r ~/Downloads/tada68_tada68_default.bin . | |
rm -rf . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yarn install -s --production --ignore-scripts --prefer-offline |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""""""""""""""""""""""""""""""" | |
" | |
" PACKAGE MANAGEMENT | |
" | |
"""""""""""""""""""""""""""""""" | |
" not a vi | |
" set encoding=utf-8 | |
set nocompatible " be iMproved, required | |
filetype off " required |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var five = require('johnny-five'); | |
var board = new five.Board(); | |
var buttonCounter = 0; | |
var piezoSongs = ['C4', 'E4']; | |
var buttonsSequence = []; | |
var leds = []; | |
var piezo = {}; | |
var timeoutIds = []; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var five = require("johnny-five"), | |
board, button; | |
board = new five.Board(); | |
board.on("ready", function() { | |
// Create a new `button` hardware instance. | |
// This example allows the button module to | |
// create a completely default instance |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# How to use | |
# chmod +x ./nvm-install.sh | |
# ./nvm-install.sh | |
# | |
# Author: Wilson Mendes | |
echo "" | |
echo ">>> Installing NVM..." | |
echo "" | |
cd $HOME |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# How to setup | |
# | |
# Navigates to your local backup folder | |
# | |
# chmod +x ./list-videos-backup.sh | |
# ./list-videos-backup.sh | |
# | |
CLI_FILES=$(ls) | |
ROOT_FOLDER=$(pwd) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install Chromium Browser | |
wget -qO - http://bintray.com/user/downloadSubjectPublicKey?username=bintray | sudo apt-key add - | |
echo "deb http://dl.bintray.com/kusti8/chromium-rpi jessie main" | sudo tee -a /etc/apt/sources.list | |
sudo apt-get update | |
sudo apt-get install chromium-browser rpi-youtube -y | |
# Disable screen sleep | |
echo "xserver-command=X -s 0 dpms" >> /etc/lightdm/lightdm.conf |