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
| ╭─── Claude Code v2.1.12 ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮ | |
| │ │ Tips for getting started │ | |
| │ Welcome back Jonny! │ Run /init to create a CLAUDE.md file with instructions for Claude │ | |
| │ │ │ | |
| │ │ ───────────────────────────────────────────────────────────────── │ | |
| │ ▐▛███▜▌ │ Recent activity |
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
| int elapsed = millis() - lastTime; | |
| if (elapsed >= 5000){ | |
| image(goodCandy[rand], randX, goodY, randCandyW, randCandyH); | |
| goodY = goodY + (candySpeed * yDirCandy); | |
| lastTime = millis(); | |
| } |
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
| [ | |
| { | |
| "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 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
| <!-- | |
| ## 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 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
| // 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 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
| 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 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
| NODE_ENV=development gatsby develop |
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
| // Tasks for processing and p5 | |
| // only for Windows | |
| { | |
| "version": "0.1.0", | |
| "command": "cmd", | |
| "isShellCommand": true, | |
| "showOutput": "always", | |
| "args": ["/C"], | |
| "tasks": | |
| [ |
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
| int w = 500; | |
| int h = 500; | |
| int r, g; | |
| void setup() { | |
| size(500, 555); | |
| noStroke(); | |
| background(255); | |
| } |
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
| .centrar{ | |
| position: absolute; | |
| top: 50%; | |
| left: 50%; | |
| /*El translate hace que el punto de anclaje esté en el centro.*/ | |
| transform: translate(-50%, -50%); | |
| } |
NewerOlder