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
/* | |
* See: https://www.google.com/fonts/license/productsans | |
*/ | |
/* cyrillic */ | |
@font-face { | |
font-family: 'Product Sans'; | |
font-style: normal; | |
font-weight: 400; | |
src: local('Product Sans'), local('ProductSans-Regular'), url(https://fonts.gstatic.com/s/productsans/v9/HYvgU2fE2nRJvZ5JFAumwRdwxCXfZpKo5kWAx_74bHs.woff2) format('woff2'); | |
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; |
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> | |
<meta charset="utf-8"> | |
<title>Tampermonkey form auto-fill</title> | |
<style> | |
label{display: inline-block; margin:5px 0px;} | |
</style> | |
</head> | |
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
/* ******************************************************************************************* | |
* THE UPDATED VERSION IS AVAILABLE AT | |
* https://github.com/LeCoupa/awesome-cheatsheets | |
* ******************************************************************************************* */ | |
// 0. Synopsis. | |
// http://nodejs.org/api/synopsis.html |
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
/* ============================ | |
* EXAMPLE 1: | |
* ============================ */ | |
var numbers = [0,1,3,4,5,7,8]; // Missing 2,6 | |
var lastNumber = numbers[numbers.length - 1]; | |
var expectedSum = (lastNumber * (lastNumber + 1)) / 2; | |
var actualSum = 0; | |
// Show the difference | |
for (var i = 0; i < numbers.length; i++) { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
# Khoa Nguyen | |
[Github](https://github.com/kdncode) | [Linkedin]( https://www.linkedin.com/in/imkhoa/) | Plano, Texas ♦ (469) 855-3432 ♦ [[email protected]](mailto:[email protected]) | |
---- | |
## EXPERIENCE | |
##### TechX Software Engineer ♦ T-MOBILE U.S. (July 2018 - Present) | |
- Design, build and launch a data visualization dashboard to automatically monitor system availability, visualize all KPIs of the | |
same node types and alert on differences 24/7 using Python, Javascript, GoogleChart, HighchartsJS, Pandas, Numpy. | |
- Manipulate, format large datasets (1M rows) and **accomplish 91%** productivity improvement. | |
- Implement new features: consistency checker to improve phone numbers’ data search for multiple teams. |