Skip to content

Instantly share code, notes, and snippets.

-----> Ruby app detected
-----> Compiling Ruby/Rails
-----> Using Ruby version: ruby-2.2.1
-----> Installing dependencies using bundler 1.13.7
Running: bundle install --without development:test --path vendor/bundle --binstubs vendor/bundle/bin -j4 --deployment
Fetching gem metadata from https://rubygems.org/..........
Fetching version metadata from https://rubygems.org/..
Fetching dependency metadata from https://rubygems.org/.
Using rake 10.4.2
Installing i18n 0.7.0
@miguelsalazar
miguelsalazar / vegan-month.md
Created July 19, 2017 02:06 — forked from chap/vegan-month.md
Vegan Month Curriculum

Vegan Month Logo

Back in Melbourne circa 2010/11, Jodie, Jared and I used to run a [monthly vegan mentoring group][vegan-month]. I have gone back through the mailing lists and collected much of the curriculum and information from the program into this single document, so that I can distribute it more widely. The program was designed not just to get you through the first month nutritionally, but to expose you to a variety of foods and ideas that may be new to you. It emphasises that veganism is a shift sideways, not a sacrifice.

Keybase proof

I hereby claim:

  • I am miguelsalazar on github.
  • I am miguelsalazar (https://keybase.io/miguelsalazar) on keybase.
  • I have a public key whose fingerprint is E826 AACC D370 DD27 17C7 B4AC 27B8 BE62 4C7B 05C2

To claim this, I am signing this object:

Casper
- Proof-of-Work basics
"https://bitcoin.stackexchange.com/questions/54216/why-are-there-always-some-unconfirmed-transactions"
- Proof of Stake Made Simple
"http://www.scs.stanford.edu/17au-cs244b/labs/projects/moindrot_bournhonesque.pdf"
- On Settlement Finality
"https://blog.ethereum.org/2016/05/09/on-settlement-finality/"
- Proof of Stake FAQ
"https://github.com/ethereum/wiki/wiki/Proof-of-Stake-FAQ"
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
@font-face {
font-family: "Suisse Light";
src: url("/static/fonts/suisse/SuisseIntl-Light.woff2") format("woff2"),
url("/static/fonts/suisse/SuisseIntl-Light.woff") format("woff");
font-weight: 300;
font-style: normal;
@miguelsalazar
miguelsalazar / app.js
Last active March 19, 2024 17:50
CTRL+MED css + js
// Password visibility toggle and form validation
document.addEventListener('DOMContentLoaded', function () {
const passwordInput = document.getElementById("password");
const visibilityButton = document.getElementById("visibilityButton");
const ingresarButton = document.querySelector(".btn-primary");
const emailInput = document.getElementById("correo_electronico");
visibilityButton.addEventListener("click", function() {
if (passwordInput.type === "password") {
passwordInput.type = "text";