Skip to content

Instantly share code, notes, and snippets.

View atmosmps's full-sized avatar
👨‍💻
Focusing

Atmos Maciel atmosmps

👨‍💻
Focusing
View GitHub Profile
@atmosmps
atmosmps / configure-proxy-settings-in-ubuntu-and-fedora.md
Last active May 11, 2024 10:02
Configure Proxy Settings in Ubuntu and Fedora.

Proxy Config Format:

proxy_http=username:password@proxy-host:port

Single User Temporary Settings

When you do not need to force the system to be under the proxy.

  1. Open a Terminal window where you need proxy access.
  2. Set and export the HTTP_PROXY variable.
@atmosmps
atmosmps / MeuGuiaDefinitivoAmbientacaoEmPython.md
Last active November 29, 2019 20:55
Meu guia definitivo de ambientação em Python

Meu guia definitivo de ambientação em Python

Baseado em: Guia Definitivo Para Organizar Meu Ambiente Python

Segue as adaptações para minhas necessidades:

  1. Quero poder incluir outros interpretadores como PyPy e Anaconda;
  2. O Python3 tem que ser meu padrão pra tudo.
  3. Quero ter apenas um Jupyter Notebook que funcione com Python3 e que ele detecte se tem um virtualenv ativado quando eu executar o comando jupyter notebook.
  4. Quero ter apenas um iPython Console para Python3, ou seja, nada de ficar instalando iPython no virtualenv dos meus projetos;
@atmosmps
atmosmps / RemoteWorkGuide.md
Last active March 23, 2022 14:49
Remote Work Guide

Remote Work Guide

Este é um pequeno guia para quem quer começar a desbravar no mundo do trabalho remoto.

Outras iniciativas de trabalhos/jobs remotos

Outros repositórios que também ajudam pessoas a desbravar no mundo do trabalho remoto.

https://github.com/DyegoCosta/trabalhando-remoto

@atmosmps
atmosmps / GitConfigHttpProxy-en-US.md
Last active December 23, 2020 00:20 — forked from evantoli/GitConfigHttpProxy.md
Configure Git to use a proxy - English and Portuguese Version

Configure Git to use a proxy

In Brief

You may need to configure a proxy server if you're having trouble cloning or fetching from a remote repository or getting an error like unable to access '...' Couldn't resolve host '...'.

Consider something like:

@atmosmps
atmosmps / criando-um-jogo-com-pygame-mark3.py
Last active March 5, 2018 14:52
Códigos das etapas de criação do projeto: criando-um-jogo-com-pygame
#! /home/atmosmaciel/.workzone-python-virtual-envs/env-pygame/bin/python
# -*- coding: utf-8 -*-
# PingPong Game!
# By: atmosmaciel.github.io
# Our Games Imports
import sys
import os
import time