View gist:0b4eb2b7f89c85a77efc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am Enchufa2 on github. | |
* I am enchufa2 (https://keybase.io/enchufa2) on keybase. | |
* I have a public key whose fingerprint is F432 0B54 CF67 6936 3D02 0832 7EE8 1A3F 563B 3315 | |
To claim this, I am signing this object: |
View dropbox-downloader.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# coding=UTF8 | |
# Author: Iñaki Ucar <i.ucar@enchufa2.es> | |
# Description: Dropbox recursive downloader | |
import os, sys | |
from urllib2 import urlopen, unquote | |
from bs4 import BeautifulSoup | |
from subprocess import call |
View get_wikipedia_events.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# coding=UTF8 | |
# Author: Iñaki Ucar <i.ucar86@gmail.com> | |
# Description: Download all events, births and deaths from Wikipedia | |
import sys, requests, locale | |
from datetime import date, timedelta as td | |
from pypandoc import convert # <3 | |
MAX_TITLES = 50 |
View chirp.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
clap = audioread('clap.wav'); | |
fs = 96e3; % sampling frequency | |
N = 40; % steps | |
ssize = 0.15; % step size | |
delay = ssize * 2 / 340; | |
samples = round(delay * fs); | |
stairs = zeros(samples * N + length(clap) + N, N); | |
for i = 1:N | |
samples = samples + 1; | |
indexes = (i-1)*samples+1 : length(clap)+(i-1)*samples; |
View Fancontrol-hv2.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Fancontrol via Hardware PWM for Raspian | |
Author: 2h4u | |
Date: 19.01.2013 | |
Version 2: | |
Now with dynamic PWM regulation! | |
*/ | |
#include <stdio.h> |
View loadhdf5data.R
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#' @param h5File HDF5 file path | |
#' @param dataset data frame path in the HDF5 file | |
#' @examples | |
#' df <- loadhdf5data("/path/to/file.hdf5", "/path/to/dataset") | |
#' | |
loadhdf5data <- function(h5File, dataset) { | |
require(h5) # available on CRAN | |
f <- h5file(h5File) | |
nblocks <- h5attr(f[dataset], "nblocks") |
View yield.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <setjmp.h> | |
#include <math.h> | |
#include <time.h> | |
typedef struct process { | |
double *now; | |
double (*run)(struct process *); | |
jmp_buf buf; |
View init.coffee
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
View .vimrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let mapleader="," | |
set laststatus=2 | |
set colorcolumn=81 | |
highlight ColorColumn ctermbg=8 | |
set number | |
set cursorline | |
set wildmenu | |
set showmatch |
View cloudsend.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
############################################################ | |
# | |
# cloudsend.sh | |
# | |
# Uses curl to send files to a shared | |
# Nextcloud/Owncloud folder | |
# | |
# Usage: ./cloudsend.sh <file> <folderLink> |
OlderNewer