Skip to content

Instantly share code, notes, and snippets.

View arxdsilva's full-sized avatar
:octocat:
Working from home

Arthur Silva arxdsilva

:octocat:
Working from home
View GitHub Profile
@myitcv
myitcv / output.txt
Last active April 25, 2019 16:47
github.com/sirupsen/logrus pain
$ GO111MODULE=off go get github.com/myitcv/gobin
$ gobin github.com/rogpeppe/gohack
Installed github.com/rogpeppe/[email protected] to /home/gopher/gopath/bin/gohack
$ gobin github.com/rogpeppe/gomodmerge
Installed github.com/rogpeppe/[email protected] to /home/gopher/gopath/bin/gomodmerge
$ cd $(mktemp -d)
$ go mod init example.com/hello
$ cat <<EOD >main.go
package main
@yinzara
yinzara / github_bitbucket_multiple_ssh_keys.md
Last active April 14, 2025 20:57
Managing SSH keys and repo cloning using multiple accounts on GitHub and BitBucket

Why Multiple SSH keys?

There are numerous reasons you may need to use multiple SSH keys for accessing GitHub and BitBucket

You may use the same computer for work and personal development and need to separate your work.

When acting as a consultant, it is common to have multiple GitHub and/or BitBucket accounts depending on which client you may be working for.

You may have different projects you're working on where you would like to segregate your access.

@turicas
turicas / brasil_io.py
Last active February 17, 2025 16:55
Exemplo de código para acessar dados do Brasil.IO
import csv
import gzip
import io
import json
from urllib.parse import urlencode, urljoin
from urllib.request import Request, urlopen
class BrasilIO: