Skip to content

Instantly share code, notes, and snippets.

View sofiendhouib's full-sized avatar

Sofien Dhouib sofiendhouib

View GitHub Profile
@deparkes
deparkes / latex_publications.tex
Created May 30, 2016 13:57
A sample file for creating a publications list in a thesis or dissertation, separate fromt the references list.
\documentclass{article}
\usepackage{natbib}
\usepackage{bibunits}
\begin{document}
% bibunit to list our publications
\begin{bibunit}[plain]
\renewcommand{\bibsection}{\large \textbf{\begin{center}
Publications
\end{center}}}
@agramfort
agramfort / lasso_ista_fista.py
Created January 31, 2016 14:33
Lasso with ISTA and FISTA
#!/usr/bin/env python
#
# Solve LASSO regression problem with ISTA and FISTA
# iterative solvers.
# Author : Alexandre Gramfort, first.last@telecom-paristech.fr
# License BSD
import time
from math import sqrt