Skip to content

Instantly share code, notes, and snippets.

View felipeblini's full-sized avatar

Felipe Blini felipeblini

  • Planet: Earth, Region: Brazil
View GitHub Profile
@felipeblini
felipeblini / index.html
Created October 7, 2015 04:53 — forked from giancorzo/index.html
Bootstrap initial template
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Plantilla Bootstrap 101</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
@felipeblini
felipeblini / Gulpfile.js
Created July 1, 2016 05:22
Iniciando o arquivo Gruntfile.js
var gulp = require('gulp');
@felipeblini
felipeblini / link.html
Created August 27, 2016 03:12
um link qualquer
// criando a superclasse Natureza
function Natureza(nome, cor) {
this.nome = nome;
this.cor = cor;
};
// Adicionando comportamntos em seu objeto prototype
Natureza.prototype.nascer = function () {
console.log(this.nome + ' ' + this.cor + ' nascendo...');
}
var MyClass = function() {};
var properties = {
p: {
value: 42,
writable: false,
enumerable: true,
configurable: false
}
};
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<dl>