Skip to content

Instantly share code, notes, and snippets.

View cactail's full-sized avatar
🌵
Software Engineer... in the making

Francisco Correa cactail

🌵
Software Engineer... in the making
  • Valtech
  • Resistencia, Chaco, Argentina
View GitHub Profile
;; -*- mode: emacs-lisp -*-
;; This file is loaded by Spacemacs at startup.
;; It must be stored in your home directory.
(defun dotspacemacs/layers ()
"Configuration Layers declaration.
You should not put any user code in this function besides modifying the variable
values."
(setq-default
;; Base distribution to use. This is a layer contained in the directory
@cactail
cactail / new_todo.py
Last active February 1, 2018 21:25
Helper to manage my daily task lists
import re
import sys
import os
from os.path import join, isfile
from datetime import date
TODOS_LOCATION = '/home/cactus/Org/todos'
ARCHIVE_LOCATION = '/home/cactus/Org/todos/archive'
WEEK_DAYS = {0: 'lun', 1: 'mar', 2: 'mié',
3: 'jue', 4: 'vie', 5: 'sáb', 6: 'dom'}
@cactail
cactail / my_conkyrc
Created November 13, 2015 21:31
conkyrc config
conky.config = {
alignment = 'top_right',
background = true,
border_margin = 5,
border_width = 5,
cpu_avg_samples = 2,
default_color = 'e1e1e1',
default_outline_color = 000000,
default_shade_color = 000000,
double_buffer = true,