Skip to content

Instantly share code, notes, and snippets.

View paladini's full-sized avatar
🏠
Working from home

Fernando Paladini paladini

🏠
Working from home
View GitHub Profile
@paladini
paladini / .block
Last active March 3, 2017 03:19 — forked from mbostock/.block
Multi-Foci Force Layout
license: gpl-3.0
@paladini
paladini / .block
Last active March 2, 2017 12:15 — forked from mbostock/.block
Bubble Chart
license: gpl-3.0
height: 880
border: no
@paladini
paladini / aws-ec2-redis-cli.md
Last active February 20, 2024 04:05 — forked from todgru/aws-ec2-redis-cli.md
AWS redis-cli without redis server on AWS EC2

Setup redis-cli without the whole Redis Server on AWS EC2

This fast tutorial will teach you how to install redis-clion AWS EC2 without having to install the whole Redis Server. Firstly, SSH into your EC2 instance and run the following command:

$ sudo yum install gcc

This may return an "already installed" message, but that's OK. After that, just run:

$ wget http://download.redis.io/redis-stable.tar.gz && tar xvzf redis-stable.tar.gz && cd redis-stable && make && sudo cp src/redis-cli /usr/local/bin/ && sudo chmod 755 /usr/local/bin/redis-cli