- Express.js web application serving 100 million yearly users
- Translations microservice using MySql backend
- Render start time optimization
- Elasticsearch + Redis microservice for search query suggestions
- Developed custom markdown syntax and parser enable content team to easily author new language guide articles
- https://www.spanishdict.com/guide/el-or-la-an-introduction-to-spanish-articles
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Parcel Sandbox</title> | |
<meta charset="UTF-8" /> | |
</head> | |
<body> | |
<div id="app" class="grid game"> | |
<div class="row"> |
- Express.js web application serving 100 million yearly users
- Translations microservice using MySql backend
- Render start time optimization
- Elasticsearch + Redis microservice for search query suggestions
- Developed custom markdown syntax and parser enable content team to easily author new language guide articles
https://goo.gl/maps/LicqzR5oKjJ2 todos los sitios a donde fuí.
Nosotros alquilamos carro en el aeropuerto para poder manejar y tener más flexibilidad. Lo único es que conseguir un carro bajito nos causo dificultades ya que la mayoría de las carreteras no son muy buenas.
Pasamos aquí 4 noches y nos gustó mucho. Es buen sition para relajarse, ir a cafés y estar relajado un rato. Es un buen sition para basarse y explorar otras partes, pero el pueblo en si se alcanza a turistear en dos días.
- Laureles
- El Poblado
- Free walking tour of downtown http://www.realcitytours.com/
- Parque Arví https://goo.gl/maps/ubUD3doaaYQ2
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
console.log('test'); |
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
struct Action { | |
_type: String, | |
amount: u32 | |
} | |
fn update_counter(state:u32, action: Action) { | |
let Action {_type, amount} = action; | |
return match _type.as_ref() { | |
"INCREMENT" => state + amount, | |
"DECREMENT" => state - amount, |
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
struct Action { | |
_type: String, | |
amount: u32 | |
} | |
fn update_counter(state:u32, action: Action) { | |
let Action {_type, amount} = action; | |
return match _type.as_ref() { | |
"INCREMENT" => state + amount, | |
"DECREMENT" => state - amount, |
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
struct Action { | |
_type: String, | |
amount: u32 | |
} | |
fn update_counter(state:32, action: Action) { | |
let Action {_type, amount} = action; | |
return match _type.as_ref() { | |
"INCREMENT" => state + amount, | |
"DECREMENT" => state - amount, |
NewerOlder