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
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Daniela Zapata", | |
"label": "Engineering Leader", | |
"email": "[email protected]", | |
"phone": "", | |
"url": "https://dzapatariesco.dev", | |
"summary": "Results-driven technology leader with 12 years of expertise spanning machine learning, artificial intelligence, and fintech domains. Demonstrated track record of scaling high-performing engineering teams and delivering complex technical solutions. As an engineering manager, successfully grew and mentored cross-functional teams from 2 to 15 engineers, establishing robust development processes and fostering a culture of technical excellence. Previously contributed as a senior/staff software engineer and technical consultant, architecting ML/AI solutions that drove measurable business outcomes. Combines deep technical acumen with strategic leadership to transform business requirements into scalable, production-ready systems wh |
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
import Test.{doWhat, findColorById, findColorById2, findColorByName} | |
import TrafficLightColorById.{Green, Red, TrafficLightColorById, Yellow} | |
import scala.util.Try | |
/* | |
Enums (id, name) with default id incremental | |
*/ | |
object TrafficLightColor extends Enumeration { | |
val Red = Value(0, "RED") |
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
var path = require('path'); | |
var express = require('express'); | |
var bodyParser = require('body-parser'); | |
var app = express(); | |
app.set('port', (process.env.PORT || 3000)); | |
app.use('/', express.static(path.join(__dirname, 'public'))); | |
app.use(bodyParser.json()); |
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
sudo brew uninstall node | |
brew update | |
brew upgrade | |
brew cleanup | |
brew install node | |
sudo chown -R $(whoami) /usr/local | |
brew link --overwrite node | |
sudo brew postinstall node |