Skip to content

Instantly share code, notes, and snippets.

View ariel17's full-sized avatar
🏠
Working from home

Ariel Gerardo Ríos ariel17

🏠
Working from home
View GitHub Profile
@ariel17
ariel17 / .vimrc
Last active March 20, 2021 19:20
From zero to ViM: vim
" Visuals
set number " show line numbers
set ruler " cursor position
set cursorline " highlight current line
set colorcolumn=80 " 80 chars mark
au BufRead,BufNewFile *.md setlocal textwidth=80
au BufRead,BufNewFile *.apib setlocal textwidth=80
" Pathogen configuration
execute pathogen#infect()
@ariel17
ariel17 / .gvimrc
Last active March 22, 2021 23:08
From zero to ViM: gvim
set guifont=Source\ Code\ Pro:h18
@ariel17
ariel17 / trello-cards-parsing-and-archive.py
Created January 11, 2024 00:51
Trello cards parsing to markdown links format and archive them
import os
import requests
API_KEY = os.environ["API_KEY"]
TOKEN = os.environ["TOKEN"]
WIKI_TODO_LIST_ID = os.environ["WIKI_TODO_LIST_ID"]
class Trello: