- 1 taza de leche tibia
- 1 sobrecito de levadura (Fleishmann ActiveDry Yeast) Esperar 10 minutos a ver si la levadura levanta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| PluginName - Plug In Description | |
| by John Polacek (@johnpolacek) | |
| Dual licensed under MIT and GPL. | |
| Dependencies: jQuery | |
| */ | |
| ;(function($) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Instala paquetes necesarios | |
| sudo apt-get install postgresql | |
| sudo apt-get install postgresql-server-dev-9.1 | |
| sudo apt-get install python-pip | |
| sudo apt-get install python-dev | |
| sudo pip install virtualenv | |
| sudo pip install virtualenvwrapper | |
| # Crea y activa entorno virtual | |
| virtualenv <nombre_proyecto> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <assert.h> | |
| typedef unsigned int u32; | |
| typedef unsigned long long u64; | |
| //------------------------------------------------------------------------- | |
| // WorkArea | |
| //------------------------------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| data:text/html, <style type="text/css">#e{position:absolute;top:0;right:0;bottom:0;left:0;font-size:14px}</style><div id="e"></div><script src="http://d1n0x3qji82z53.cloudfront.net/src-min-noconflict/ace.js" type="text/javascript" charset="utf-8"></script><script>var e=ace.edit("e");e.setTheme("ace/theme/monokai");e.getSession().setMode("ace/mode/php");</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ... | |
| <nav> | |
| <ul> | |
| <li> | |
| <a href="/my/app">Home</a> | |
| </li><li> | |
| <a href="/my/app/posts">Posts</a> | |
| </li><li> | |
| <a href="/my/app/posts/1">The First Post</a> | |
| </li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| #-*- encoding: utf-8 -*- | |
| # mac2wepkey Huawei HG520 by [email protected] - 12/2010 | |
| # m2wkuvz (m2wkuvz ubuntu version) by [email protected] - 07/2012 | |
| import os, sys | |
| def uso(): | |
| os.system("clear") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var Twit = require('twit') | |
| var twitterConnection = new Twit({ | |
| /** | |
| * details go here | |
| */ | |
| }) | |
| var openStreams = {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var cronJob = require('cron').CronJob; | |
| module.exports.debug = function(socketId,start){ | |
| new cronJob('*/30 * * * * *', function(){ | |
| sails.sockets.emit(socketId,'debug',{time : new Date()}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| require 'cloudflare' | |
| module CloudFlare | |
| class Connection | |
| public :send_req | |
| end | |
| end |