This file contains 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
int elapsed = millis() - lastTime; | |
if (elapsed >= 5000){ | |
image(goodCandy[rand], randX, goodY, randCandyW, randCandyH); | |
goodY = goodY + (candySpeed * yDirCandy); | |
lastTime = millis(); | |
} |
This file contains 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
[ | |
{ | |
"author": "〇", | |
"content": "Dialogar con otras personas es encontrarte a ti mismo." | |
}, | |
{ | |
"author": "Oscar Wilde", | |
"content": "Everything in the world is about sex except sex. Sex is about power." | |
}, | |
{ |
This file contains 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
<!-- | |
## Introduction | |
Learn how to create your first AMP email. This sample covers the basic structure of AMP emails. | |
--> | |
<!-- --> | |
<!-- Doctype declaration is required. --> | |
<!doctype html> | |
<!-- This tells everyone that this is an AMP email. `<html amp4email>` works too. --> |
This file contains 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
// Forma elegante de sacar un item al azar de un array desde una función. | |
Array.prototype.random = function () { | |
return this[~~(Math.random() * this.length - 1)] | |
} |
This file contains 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
version: '3.8' | |
services: | |
mysql: | |
image: mysql:5.7 | |
restart: unless-stopped | |
ports: | |
- "3306:3306" | |
container_name: mysql | |
environment: | |
MYSQL_ROOT_PASSWORD: csb |
This file contains 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
NODE_ENV=development gatsby develop |
This file contains 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
// Tasks for processing and p5 | |
// only for Windows | |
{ | |
"version": "0.1.0", | |
"command": "cmd", | |
"isShellCommand": true, | |
"showOutput": "always", | |
"args": ["/C"], | |
"tasks": | |
[ |
This file contains 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
int w = 500; | |
int h = 500; | |
int r, g; | |
void setup() { | |
size(500, 555); | |
noStroke(); | |
background(255); | |
} |
This file contains 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
.centrar{ | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
/*El translate hace que el punto de anclaje esté en el centro.*/ | |
transform: translate(-50%, -50%); | |
} |
This file contains 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
/* Created by Antonio Ferreiro Ferrero AKA "a3cAnton" 09-05-2012 */ | |
/*Usando Stylish, con el tema FaceBlack de Antonio Ferreiro, + la extensión Hide Likes, se ocultan | |
casi por completo los "likes" o "reacciones". Poner dentro del "Code 1" en el estilo antes mencionado.*/ | |
@namespace url(http://www.w3.org/1999/xhtml); | |
._a7s ._524d a, | |
._a7s ._50u4, | |
._1ysv ._1g5v ._3t54 ._ipp { | |
display: none; | |
pointer-events: none; |
NewerOlder