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 / tstp_sizes.cc
Created May 4, 2016 20:52
Small application to print TSTP sizes.
#include <network.h>
#include <utility/ostream.h>
using namespace EPOS;
OStream cout;
int main()
{
while(true) {
@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 / .block
Last active March 3, 2017 03:19 — forked from mbostock/.block
Multi-Foci Force Layout
license: gpl-3.0
[{"name":"Angola","region":"Sub-Saharan Africa","income":[[1800,359.93],[1820,359.93],[1913,556.12],[1950,3363.02],[1951,3440.9],[1952,3520.61],[1953,3598.81],[1954,3450.82],[1955,3672.08],[1956,3549.04],[1957,3827.94],[1958,3966.42],[1959,3917.76],[1960,4006.21],[1961,4463.83],[1962,4269.28],[1963,4413.6],[1964,4826.49],[1965,5102.21],[1966,5308.14],[1967,5522.78],[1968,5346.63],[1969,5408.12],[1970,5651.88],[1971,5526.21],[1972,5473.29],[1973,5722.02],[1974,5470.21],[1975,3430.85],[1976,3050.32],[1977,3008.65],[1978,3070.82],[1979,3064.89],[1980,3074.75],[1981,2953.41],[1982,2756.95],[1983,2584.56],[1984,2527.47],[1985,2492.83],[1986,2220.61],[1987,2430.21],[1988,2728.53],[1989,2730.56],[1990,2777.42],[1991,2730.85],[1992,2627.85],[1993,1869.92],[1994,1851.45],[1995,1989.02],[1996,2157.35],[1997,2277.14],[1998,2384.48],[1999,2417.18],[2000,2446.65],[2001,2479.69],[2002,2773.29],[2003,2785.39],[2004,3007.11],[2005,3533],[2006,4069.56],[2007,4755.46],[2008,5228.74],[2009,5055.59]],"population":[[1800,1567028]
@paladini
paladini / IPTables - Block all websites except some of them
Last active August 26, 2019 08:37
IPTables - Blocking all websites except a few of them.
// This isn't the final version of the script. The third may be incorrect.
iptables -I OUTPUT -p tcp -m tcp --dport 443 -j REJECT --reject-with icmp-port-unreachable // blocking https sites
iptables -I OUTPUT -p tcp -m tcp --dport 80 -j REJECT --reject-with icmp-port-unreachableBlock // blocking http sites
iptables -A OUTPUT -s 150.162.0.0/16 -j ACCEPT // accepting ips from 150.162.*.*
@paladini
paladini / The HEX and RGB code for the Bitcoin orange color
Last active January 25, 2021 23:22
The HEX / RGB code for the orange color from Bitcoin logo
Do you want know what's the orange color from Bitcoin logo? Here's the colours:
Hexadecimal:
#FF9900
RGB
(255,153,0)
Any suggestions are welcome!
Fonts: http://www.color-hex.com/color/ff9900 and https://bitcointalk.org/index.php?topic=224522.0
@paladini
paladini / How to Open Ports for Guild Wars 2 on Ubuntu and other Linux distros.md
Last active March 21, 2021 14:22
How to open / allow Guild Wars 2 ports on Linux / Ubuntu

Opening ports needed by Guild Wars 2 when running on Lutris in Ubuntu 20.04 or any other Linux distributions.

Based on instructions listed here.

1) Allow Port 6112

Open Your Terminal and enter the following commands to open port 6112 UDP and TCP:

sudo ufw enable
@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