Skip to content

Instantly share code, notes, and snippets.

View furenku's full-sized avatar

furenku furenku

  • punksnotdev
  • Mexico
View GitHub Profile
@furenku
furenku / colores.scss
Created December 12, 2016 22:43
colores
$color-background: #0B665F;
$color-text: #FFE0D1;
$color-primary-0: #136F62; // Main Primary color */
$color-primary-1: #86C4BC;
$color-primary-2: #358D81;
$color-primary-3: #004B41;
@furenku
furenku / post.md
Last active January 23, 2017 19:49
Descripción Modelos de Datos

DATOS PROVENIENTES DE API BORDE

  • borde_id: STRING (?)
  • created_at: TIMESTAMP
  • updated_at: TIMESTAMP
  • type: ObjectID del POSTTYPE
  • title: STRING
  • description: STRING
  • content: STRING
  • link: STRING (enlace donde se puede consultar el POST en Borde)
@furenku
furenku / chat.css
Last active February 4, 2017 22:02
chat
* {
outline: 1px solid #def;
}
/* RESETS: */
ul, li {
margin: 0;
padding: 0;
<div class="texto container h-100">
<!-- .col-md-5>h1{Título}+h4>lorem9 -->
<div class="col-md-5">
<h1>Título</h1>
<h4>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nobis!
</h4>
</div>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@furenku
furenku / estilos.css
Created November 7, 2017 03:09
intro css
/* Combinadores */
/* sólo las .cajas que sean hijas directa de .contenedor */
.contenedor > .caja {
/*bgc*/
background-color: green;
}
.contenedor > .caja > .caja {
<!-- html:5 -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Ejemplo Position</title>
<link rel="stylesheet" href="css/estilos-position.css">
</head>
(
(
Server.default.options.memSize= 512000*20;
Server.default.options.numWireBufs= 512;
s = Server.local;
s.boot;
);
~path = thisProcess.nowExecutingPath.dirname;
s.waitForBoot({
(~path ++"/data_definitiva.scd").load;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Introducción a Javascript</title>
</head>
@furenku
furenku / estilos.css
Last active February 24, 2018 19:57
intro css
/* un comentario, no afecta nada */
/*
selector {
propiedad1: valor1;
propiedad2: valor2;
}
*/