Skip to content

Instantly share code, notes, and snippets.

View woile's full-sized avatar

Santiago Fraire Willemoes woile

View GitHub Profile
@woile
woile / designer.html
Created December 10, 2014 17:22
designer
<link rel="import" href="../core-ajax/core-ajax.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
@woile
woile / designer.html
Created December 10, 2014 17:48
designer
<link rel="import" href="../notification-elements/notification-alert.html">
<link rel="import" href="../core-input/core-input.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
@woile
woile / .jshintrc
Created July 1, 2015 18:22
Web development configuration for jslint
{
// JSHint Default Configuration File (as on JSHint website)
// See http://jshint.com/docs/ for more details
"maxerr" : 50, // {int} Maximum error before stopping
// Enforcing
"bitwise" : true, // true: Prohibit bitwise operators (&, |, ^, etc.)
"camelcase" : false, // true: Identifiers must be in camelCase
"curly" : true, // true: Require {} for every new block or scope
@woile
woile / gist:5806185
Last active December 18, 2015 15:39
int i;
void main(){
PORTB=0x00; //Inicialización.
TRISB0_bit=0; //RB0 como salida.
PWM1_Init(4000); //Frecuencia PWM.
@woile
woile / _conkyrc
Created December 1, 2016 14:02
Conky custom cfg
conky.config = {
-- Set to yes if you want Conky to be forked in the background
background = true,
-- Use Xft
use_xft = true,
-- Xft font when Xft is enabled
font = 'Bitstream Monospace:size 9',
@woile
woile / meetup.json
Last active May 9, 2017 18:12
LaPlataJS Meetup logs
[
{
"id": 10,
"date": "2017-03-18",
"location": "Snappler",
"talks": [
{
"title": "Introduccion a PostCSS",
"authors": [{
"name": "Lourdes Montano",

Keybase proof

I hereby claim:

  • I am woile on github.
  • I am woile (https://keybase.io/woile) on keybase.
  • I have a public key ASAdcfbmxKxkJSSdzN654yo8KgWRPc5MBkiP5Q-71YsXZwo

To claim this, I am signing this object:

@woile
woile / cloud-init-config-template.yaml
Last active February 22, 2019 23:12
flash configuration
#cloud-config
# vim: syntax=yaml
#
# The current version of cloud-init in the Hypriot rpi-64 is 0.7.9
# When dealing with cloud-init, it is SUPER important to know the version
# I have wasted many hours creating servers to find out the module I was
# trying to use wasn't in the cloud-init version I had
# Documentation: http://cloudinit.readthedocs.io/en/0.7.9/index.html
@woile
woile / sources.list
Last active December 4, 2019 13:59
Debian testing sources
#------------------------------------------------------------------------------#
# OFFICIAL DEBIAN REPOS
#------------------------------------------------------------------------------#
###### Debian Main Repos
deb http://deb.debian.org/debian/ testing main contrib non-free
deb-src http://deb.debian.org/debian/ testing main contrib non-free
deb http://deb.debian.org/debian-security testing-security main contrib non-free
deb-src http://deb.debian.org/debian-security testing-security main contrib non-free
@woile
woile / debian-to-usb
Created March 29, 2020 15:47
Install debian to usb
# Check wget is installed
sudo apt install -y wget
# Download the debian ISO image
wget https://get.debian.org/cdimage/unofficial/non-free/cd-including-firmware/weekly-builds/amd64/iso-cd/firmware-testing-amd64-netinst.iso
# Find your USB
sudo fdisk -l
# Copy the download iso to the USB you just found before (usually=/dev/sdb)