View Resume
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
# Saul Feliz | |
Austin, TX | 646-634-7594 | 646634@gmail.com | Github: [saulhappy](https://github.com/saulhappy) | LinkedIn: [saul-feliz](https://www.linkedin.com/in/saul-feliz/) | Portfolio: [saulfeliz.com](https://saulfeliz.com/) | |
## Software Engineer | |
Experienced in JavaScript and Ruby programming with extensive experience in data analytics. Focused on transitioning a successful data science and analytics career to software engineering. Experienced in team-leading, agile project management, high impact cross-functional teamwork and mentoring. | |
## Technical Skills | |
**Languages and Frameworks:** JavaScript, Ruby, React.js, HTML, Ruby on Rails, Node.js, SQL, Express, NoSQL (MongoDB), CSS, Bootstrap, JWT Auth, Jest (testing) || **Architectural Design & Other:** MVC, RESTful API development, Object-Oriented Programming(OOP), CRUD, Version Control (Git /Github), JIRA |
View current_san_antonio_cust.sql
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
SELECT account_id, account_name, first_name, last_name, address_line1,address_line2,address_city,address_state,address_zip | |
FROM accounts_account a | |
INNER JOIN accounts_contact ac USING (account_id) | |
WHERE a.active IS TRUE | |
AND address_zip IN ('78023', '78056', '78073', '78109', '78112', '78154', '78201', '78202', '78203', '78204', '78205', '78207', '78208', '78209', '78210', '78211', '78212', '78213', '78214', '78215', '78216', '78217', '78218', '78219', '78220', '78221', '78222', '78223', '78224', '78225', '78226', '78227', '78228', '78229', '78230', '78231', '78232', '78233', '78234', '78235', '78236', '78237', '78238', '78239', '78240', '78242', '78243', '78244', '78245', '78247', '78248', '78249', '78250', '78251', '78252', '78253', '78254', '78255', '78256', '78257', '78258', '78259', '78260', '78263', '78264', '78266') |
View 0_reuse_code.js
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |