Skip to content

Instantly share code, notes, and snippets.

View davidcortesortuno's full-sized avatar
🍊

David Ignacio Cortes davidcortesortuno

🍊
  • Universidad Técnica Federico Santa María
  • Chile
View GitHub Profile
@octocat
octocat / .gitignore
Created February 27, 2014 19:38
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
@gadenbuie
gadenbuie / md2beamer.sh
Created February 19, 2014 17:42
A simple USF color pandoc-beamer template
#!/bin/bash
# Requires: pandoc -- http://johnmacfarlane.net/pandoc/
# Usage: ./md2beamer.sh Content.md ==> Content.pdf (beamer presentation)
name=`echo $1 | cut -f1 -d'.'`
pandoc $1 -o $name.pdf -t beamer --template=usf_simple.beamer --latex-engine=xelatex --highlight-style=tango
@sixtenbe
sixtenbe / analytic_wfm.py
Last active February 14, 2025 21:52 — forked from endolith/peakdet.m
Peak detection in Python
#!/usr/bin/python2
# Copyright (C) 2016 Sixten Bergman
# License WTFPL
#
# This program is free software. It comes without any warranty, to the extent
# permitted by applicable law.
# You can redistribute it and/or modify it under the terms of the Do What The
# Fuck You Want To Public License, Version 2, as published by Sam Hocevar. See