Skip to content

Instantly share code, notes, and snippets.

View icorradi's full-sized avatar

Igor Corradi icorradi

View GitHub Profile
@icorradi
icorradi / introducao-vim.md
Last active August 31, 2021 21:16
Breve artigo sobre introdução ao vim para iniciantes.

Vim - Um editor viciante!

Igor Corradi - 14-04-2014

Esse artigo destina-se a pessoas que estão iniciando o aprendizado com VIM. Aqui contém alguns dos comandos mais utilizados e mais comuns no uso desse poderoso editor.

Viciante?
Sim! Viciante! Depois que comecei a usar, não consegui mais largar.

viciado_vim

# -*- coding: utf-8 -*-
# Copyright (C) 2012, Almar Klein, Ant1, Marius van Voorden
#
# This code is subject to the (new) BSD license:
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
@icorradi
icorradi / tmux-cheatsheet.markdown
Created October 8, 2015 12:25 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@icorradi
icorradi / ssl.py
Created October 8, 2015 12:21
(test) Código SSL v1 - Homologação Cielo
# -*- coding: utf-8 -*-
import ssl
import requests
from requests.adapters import HTTPAdapter
from requests.packages.urllib3.poolmanager import PoolManager
CIELO_URL = 'https://qasecommerce.cielo.com.br/servicos/ecommwsec.do'
version = '1.2.1';