Skip to content

Instantly share code, notes, and snippets.

View RicardoDeLosSantos's full-sized avatar

Ricardo de los Santos Villodres RicardoDeLosSantos

  • Spain
View GitHub Profile
@RicardoDeLosSantos
RicardoDeLosSantos / GoogleSpreadsheet.html
Created November 14, 2020 16:59 — forked from terrywbrady/GoogleSpreadsheet.html
Sample HTML/JS to parse a Google Spreadsheet
<!doctype html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript">
var spData = null;
function doData(json) {
spData = json.feed.entry;
}
@RicardoDeLosSantos
RicardoDeLosSantos / grub.cfg
Created August 14, 2018 09:38 — forked from Pysis868/grub.cfg
My own configuration file for GRUB2 to boot various live distributions of Linux-based operating systems, along with some system tools. I tried to include a lot of sample configuration entries, even if I don't currently use them, so it may help others. Exceedingly long blog post: http://tehfishyblog.logdown.com/chips/306146-a-homemade-ultimate-bo…
# Config for GNU GRand Unified Bootloader (GRUB) (2)
# /boot/grub/grub.cfg
# or
# /boot/grub2/grub.cfg
# This grub.cfg file was created by Lance http://www.pendrivelinux.com
# Suggested Entries and the suggestor, if available, will also be noted.
# and then improved by Pysis.
/*
Copyright 2011 Martin Hawksey
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
@RicardoDeLosSantos
RicardoDeLosSantos / springer-free-maths-books.md
Created August 2, 2017 18:01 — forked from bishboria/springer-free-maths-books.md
Springer made a bunch of books available for free, these were the direct links
@RicardoDeLosSantos
RicardoDeLosSantos / qnorm.js
Created April 20, 2017 08:14 — forked from dtuite/qnorm.js
qnorm.js
// Originally found at: http://rangevoting.org/Qnorm.html
/** * @(#)qnorm.js * * Copyright (c) 2000 by Sundar Dorai-Raj
* * @author Sundar Dorai-Raj
* * Email: sdoraira@vt.edu
* * This program is free software; you can redistribute it and/or
* * modify it under the terms of the GNU General Public License
* * as published by the Free Software Foundation; either version 2
* * of the License, or (at your option) any later version,
* * provided that any use properly credits the author.
@RicardoDeLosSantos
RicardoDeLosSantos / mdlp.awk
Created July 23, 2016 09:25 — forked from trauber/mdlp.awk
Agnostic literate programming for github flavored markdown.
#!/usr/bin/awk -e { if (/^```/) { i++; next } if ( i % 2 == 1) { print } }
# mdlp - agnostic literate programming for github flavored markdown.
# I release this script into the public domain.
# Rich Traube, Fri Feb 15 09:07:27 EST 2013

Project Name

TODO: Write a project description

Installation

TODO: Describe the installation process

Usage