Skip to content

Instantly share code, notes, and snippets.

View skvggor's full-sized avatar
📚
Rust saga 🛩️

Marcos Lima skvggor

📚
Rust saga 🛩️
View GitHub Profile
@skvggor
skvggor / index.html
Created January 4, 2012 11:57
Basic HTML.
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<title>Modernizr</title>
</head>
<body>
<section>
<h1>My Header</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
@skvggor
skvggor / index.html
Created January 18, 2012 20:06
Aula05
<!doctype html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/text.css" />
<link rel="stylesheet" href="css/960.css" />
<link rel="stylesheet" href="css/custom.css" />
<script src="js/source.js"></script>
<title>Javascript: Condições e Loops</title>
@skvggor
skvggor / custom.css
Created January 18, 2012 20:09
custom
#header,
#footer {
background:#000;
color:#FFF;
height:auto;
}
@skvggor
skvggor / rw
Created January 25, 2012 21:46
reserved words
PALAVRAS RESERVADAS
--------------------
abstract boolean break byte case catch char class const continue debugger default
delete do double else enum export extends false final finally float for function goto
if implements import in instanceof int interface long native new null package private
protected public return short static super switch synchronized this throw throws
transient true try typeof var volatile void while with
@skvggor
skvggor / access-font.js
Created January 30, 2012 10:13
Aumentar/Diminuir fonte
/*
* AUMENTAR/DIMINUIR font
* ----------------------
* by Marcker || @marcker || marckfree@gmail.com
* MIT License;
* ----------------------
*
* Uso:
*
* HTML
@skvggor
skvggor / access-font.html
Created January 30, 2012 10:15
Aumentar/Diminuir fonte
<!doctype html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<script src="js/access-font.js">
</script>
<title>
Aumentar / Diminuir
</title>
@skvggor
skvggor / bin2dec.js
Created January 30, 2012 10:21
Binary to Decimal
/* Binary to Decimal Converter
by Marcker - marckfree@gmail.com
MIT License - < http://opensource.org/licenses/mit-license.php >
*/
function bin2dec(bin) {
var a, c, d, e, i, j, k;
a = bin.split();
c = [];
d = [];
@skvggor
skvggor / doctype.sublime-snippet
Created February 7, 2012 11:39
doctype snippet (sublime text)
<snippet>
<content><![CDATA[<!doctype html>]]></content>
<tabTrigger>doctype</tabTrigger>
<description><!doctype html></description>
</snippet>
@skvggor
skvggor / html.sublime-snippet
Created February 7, 2012 11:40
html snippet (sublime text)
<snippet>
<content><![CDATA[<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="css/" />
<script src="js/"></script>
<title>$1</title>
</head>
<body>
$0
@skvggor
skvggor / jquery.sublime-snippet
Created February 7, 2012 12:24
jquery document ready function
<snippet>
<content><![CDATA[
\$(document).ready(function() \{
$0
\});]]></content>
<tabTrigger>jq</tabTrigger>
<description>document ready</description>
</snippet>