Skip to content

Instantly share code, notes, and snippets.

View lifofernandez's full-sized avatar
🎯
Focusing

Lisandro Fernández lifofernandez

🎯
Focusing
View GitHub Profile
@kaypeter87
kaypeter87 / SSTP-Setup-on-Linux.md
Created May 10, 2019 13:52
SSTP Setup on Linux using Network Manager

SSTP Setup on Linux using Network Manager

These are valid for Arch Linux distribution but may work with any other distribution:

Pre-requisite:

  1. networkmanager-sstp - NetworkManager VPN plugin for SSTP
  2. sstp-client - SSTP VPN implementation that allows remote access to Microsoft Windows 2008 Server

Optional:

  • network-manager-applet - Applet frontend for managing network connections
@rcarmo
rcarmo / gist:01ecea6a5e93e0de89d8d5d4c411638b
Created August 20, 2016 18:05 — forked from tofarley/gist:8285845
My Blender render farm ansible playbook.
---
- name: Create render slaves on Rackspace Cloud
hosts: renderslaves
user: root
connection: local
gather_facts: False
tasks:
- name: Provision a set of instances
local_action:
module: rax
@0XDE57
0XDE57 / config.md
Last active May 30, 2024 19:04
Firefox about:config privacy settings

ABOUT

about:config settings to harden the Firefox browser. Privacy and performance enhancements.
To change these settings type 'about:config' in the url bar. Then search the setting you would like to change and modify the value. Some settings may break certain websites from functioning and rendering normally. Some settings may also make firefox unstable. I am not liable for any damages/loss of data.

Not all these changes are necessary and will be dependent upon your usage and hardware. Do some research on settings if you don't understand what they do. These settings are best combined with your standard privacy extensions (HTTPS Everywhere No longer required: Enable HTTPS-Only Mode, NoScript/Request Policy, uBlock origin, agent spoofing, Privacy Badger etc), and all plugins set to "Ask To Activate".

@pisculichi
pisculichi / radios_nacionales.txt
Last active May 29, 2024 11:48
URLs de radios nacionales de Argentina, para poder escuchar en la terminal con mplayer o vlc
# alias radio='function __radio(){ r=`grep -v "#" radios_nacionales.txt | grep -m 1 -i $1 | cut -d" " -f1`; cvlc $r 2> /dev/null; }; __radio'
# podria utilizarse mplayer en vez de vlc
AMs Nacionales
http://cdn.instream.audio:9288/stream Radio Madre 530
https://streaming1.hostingmontevideo.com:7019/; Radio Colonia 550
http://server.laradio.online:25224/live.mp3 Radio Argentina 570
http://playerservices.streamtheworld.com/api/livestream-redirect/CONTINENTAL_SC Continental 590
https://streammax.alsolnet.com/radiorivadavia Rivadavia 630
# Hello, and welcome to makefile basics.
#
# You will learn why `make` is so great, and why, despite its "weird" syntax,
# it is actually a highly expressive, efficient, and powerful way to build
# programs.
#
# Once you're done here, go to
# http://www.gnu.org/software/make/manual/make.html
# to learn SOOOO much more.
@notthetup
notthetup / soxplot.sh
Created April 5, 2014 14:13
Whole file spectrum using SOX and gnuplot.
sox $1 -n stat -freq 2>&1 | sed -n -e :a -e '1,15!{P;N;D;};N;ba' | gnuplot -p -e 'set logscale x; plot "-" with linesp'