Skip to content

Instantly share code, notes, and snippets.

View rubemlrm's full-sized avatar
:octocat:
Focusing

rubemlrm rubemlrm

:octocat:
Focusing
View GitHub Profile
@Met4tron
Met4tron / notes.md
Last active January 3, 2024 17:36
Golang - Q&A + FAQ

Motivos

  1. Porque aprender Golang e não Rust?
  2. Porque aprender Golang e não JS/TS?
  3. O quão custoso é a simplicidade do Golang?
  4. Quais os pontos negativos do Golang?

Mercado

  1. Quais os principais players/empresas que utilizam Golang no BR?
@Kranzes
Kranzes / guide.md
Last active July 17, 2024 05:07
SSH Resident Key Guide

Initial checks

Start by checking that there aren't any previous ssh keys inside the FIDO2 authenticator of your YubiKey. You can check if they exist by running the command below:

nix shell nixpkgs#yubikey-manager -c ykman fido credentials list

If the command above outputs a string mentioning "ssh" or "openssh", then you have already got a key generated and store on your YubiKey.

Evaluating additional authentication factors

Before generating a new ssh key to store on your YubiKey you must consider which additional required authentication factors you want to use. Below you can see a table with the available factors and their corresponding command:

@matusnovak
matusnovak / README.md
Last active June 20, 2024 11:27
Matrix (Synapse + Riot) in Docker with Traefik and federation

Matrix

matrix.org chat is split into two parts, the server and the client. The server we are going to use is called Synapse and the client is Riot.im. The Synapse will also need Postgres database and Redis for caching.

0. Folders

Make sure your folder structure looks like this.

example/
@cderv
cderv / 00-New setup.md
Last active May 12, 2024 17:29
New computer setup
# installed by winget
winget install PowerShell-Preview
winget install git
git config --global user.name "Christophe Dervieux"
git config --global user.email christophe.dervieux@gmail.com
winget install rstudio
winget install vscode
winget install -e R
winget install Github.GithubDesktop
@FFY00
FFY00 / recursos.txt
Last active January 28, 2019 23:37
Algebra Linear - Recursos do Técnico
(APONTAMENTOS)
https://fenix.tecnico.ulisboa.pt/disciplinas/AL8/2013-2014/1-semestre/teoria
(VIDEOS)
MOOC Técnico: Valores Próprios – Introducao
https://www.youtube.com/watch?v=npPpVDfGGvU
@mattstauffer
mattstauffer / blog.md
Last active January 24, 2019 09:00
Hacktoberfest 2017 for Tighten

Hacktoberfest logo

Every year Digital Ocean runs Hacktoberfest, which is a fun program that rewards developers for making pull requests to open source software. This year you could get stickers and a free t-shirt for participating!

Looking for some code you can write on Laravel-related applications for Hacktoberfest? Here are a few issues we have open. :)

Collect

  • Test the automatic-split tester called "Collector" to see if we can move to doing automatic splits per #2

Symposium

@Geoyi
Geoyi / install virtualenv ubuntu 16.04.md
Created September 16, 2017 12:19 — forked from frfahim/install virtualenv ubuntu 16.04.md
How to install virtual environment on ubuntu 16.04

How to install virtualenv:

Install pip first

sudo apt-get install python3-pip

Then install virtualenv using pip3

sudo pip3 install virtualenv 

⚠️ this is now stupidly out of date

Computers

  • 13" Macbook Pro 3.3 GHz i7 (late 2016)
  • Microsoft Surface Book (2016)

Peripherals

@akaxxi
akaxxi / RPi-aria2-with-webui.sh
Created October 11, 2016 12:21
Install Aria2 and webui on Raspberry Pi with one simple script.
#!/bin/sh
DOWNLOAD_DIR="${HOME}/MiniDLNA"
CONFIG_DIR="${HOME}/.aria2"
RPC_TOKEN="changeIt"
RPC_PORT="6800"
change_apt_source(){
if [ -f /etc/apt/sources.list ]; then
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak