Skip to content

Instantly share code, notes, and snippets.

@hugcis
hugcis / _index.md
Created March 8, 2023 09:29
Resume source markdown+HTML in my personal website
description
Hugo Cisneros' resume

Resume

For a PDF version, see here


@hugcis
hugcis / publish.el
Created June 16, 2021 14:08
Elisp script with functions to export my notes to Hugo-markdown with ox-hugo
;;; publish --- Summary
;;; Commentary:
(require 'find-lisp)
;;; Code:
(defun hugcis/publish-note (file)
"Publish a note in FILE."
(with-current-buffer (find-file-noselect file)
(projectile-mode -1)
(setq org-hugo-section "notes"
@hugcis
hugcis / cfg_install.sh
Last active January 20, 2022 12:48
Install script for my personal configuration
# Original file https://bitbucket.org/durdn/cfg/raw/master/.bin/install.sh
# Config is stored in $HOME as a bare git repo
git clone --bare https://github.com/hugcis/dotfiles.git $HOME/.cfg
function config {
/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME $@
}
mkdir -p .config-backup