Skip to content

Instantly share code, notes, and snippets.

View Gonzalo2683's full-sized avatar
🎯
Focusing

Gonzalo Guevara Gonzalo2683

🎯
Focusing
View GitHub Profile
http://renaudgerson.fr/StarterBackgroundChanger
@Gonzalo2683
Gonzalo2683 / index.html
Last active August 29, 2015 14:21
Práctico 4, ejercicios hechos hasta el momento
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>TODO supply a title</title>
@Gonzalo2683
Gonzalo2683 / index.html
Last active August 29, 2015 14:21
Practico 4
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<!DOCTYPE html>
<html>
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/estilos.css"/>
<script src="js/jquery-1.11.3.min.js"></script>
<script src="js/practico6.js"></script>
<!DOCTYPE html>
<html>
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/estilos.css"/>
<script src="js/jquery-1.11.3.min.js"></script>
<script src="js/p7.js"></script>
@Gonzalo2683
Gonzalo2683 / SassMeister-input-HTML.html
Created June 3, 2015 17:23
Generated by SassMeister.com.
<a href="#" class="btn-loco">Hola</a>
<a href="#" class="btn-pill">Hola</a>
@Gonzalo2683
Gonzalo2683 / gist:c4cc0355333a63c95f28
Last active September 11, 2015 13:53 — forked from fajrif/gist:1265203
git clone specific tag
git clone <repo-address>
git tag -l
git checkout <tag-name>
git branch -D master
git checkout -b master
$(document).ready(function () {
$('form').validate({
rules: {
<%= FirstName.Name %>: {
required: true,
minlength: 2,
maxlength: 25
},
<%= LastName.Name %>: {
required: true
@Gonzalo2683
Gonzalo2683 / 0_reuse_code.js
Created April 4, 2017 18:00
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
Falsy Values (using !!)
The empty string ""
null
undefined
The number 0
The number NaN
The Boolean false
Truthy
The String "0", " ", "false"