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
.vscode |
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_modules/ |
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
{ | |
"name": "check-crguezl-eloquentjsegg", | |
"version": "1.0.0", | |
"description": "Check the package @crguezl/eloquentjsegg", | |
"scripts": { | |
"compile": "eggc node_modules/@crguezl/eloquentjsegg/examples/one.egg", | |
"run": "evm node_modules/@crguezl/eloquentjsegg/examples/one.egg.evm", | |
"test": "egg node_modules/@crguezl/eloquentjsegg/examples/two.egg", | |
"start": "egg node_modules/@crguezl/eloquentjsegg/examples/sum.egg" | |
}, |
#JavaScript - ANSI Escape Codes
ANSI Escape Codes are special characters which can be used to control formatting, colors or other output preferences in a text terminal. Escape Codes are non-printing code and will not appear in the output directly.
- \033 begins the escape sequence
- [ indicates the color
- 33 is the foreground color for yellow
- m indicates the end of the setting
Note: \033[39m is used set the color back to the terminal defult
- See How TO - CSS/JS Modal at w3schools
Se observan varias conductas an贸malas o bugs en este ejemplo.
- El markdown no parece funcionar en la parte del enunciado.
- Quiero hacer la ventana de entrada del editor mas grande y no lo consigo
- Creo que la regexp deber铆a funcionar sobre la soluci贸n y est谩 fracasando!.
- Parece que cuando hago
click
en el bot贸nsolution
la soluci贸n est谩 TRUNCADA!!!
- Parece que cuando hago
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
/* | |
* Simple Arithmetics Grammar | |
* ========================== | |
* | |
* Accepts expressions like "2 * (3 + 4)" and computes their value. | |
*/ | |
{ | |
function combine(first, rest, combiners) { | |
var result = first, i; |
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 populateacrossdatabases.js | |
desc "mongod on 27000" | |
task :mongo2 do | |
sh "mongod --port 27000 --dbpath /tmp/m2" | |
end | |
desc "mongod on 27001" | |
task :mongo1 do | |
sh "mongod --port 27001 --dbpath /tmp/m1" | |
end |
NewerOlder