Skip to content

Instantly share code, notes, and snippets.

@kdncode
kdncode / Product Sans
Created January 10, 2018 22:48
Product Sans
/*
* 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;
@kdncode
kdncode / tampermonkey_form_demo.html
Created January 18, 2018 21:47 — forked from jameshibbard/tampermonkey_form_demo.html
Tamper monkey form demonstration
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Tampermonkey form auto-fill</title>
<style>
label{display: inline-block; margin:5px 0px;}
</style>
</head>
@kdncode
kdncode / nodejs-cheatsheet.js
Created January 24, 2018 16:02 — forked from LeCoupa/nodejs-cheatsheet.js
Complete Node.js CheatSheet --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
/* *******************************************************************************************
* THE UPDATED VERSION IS AVAILABLE AT
* https://github.com/LeCoupa/awesome-cheatsheets
* ******************************************************************************************* */
// 0. Synopsis.
// http://nodejs.org/api/synopsis.html
@kdncode
kdncode / missing_int_from_array.js
Created June 27, 2018 04:31 — forked from amaxwell01/missing_int_from_array.js
How to find the missing numbers from an array of integers. Q: You’re given an array of N integers. N may be very large. You know that every integer 1-N appears once in the array, except there is one or more integer(s) missing.
/* ============================
* 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.
@kdncode
kdncode / Khoa_Nguyen_MS_Resume
Last active October 8, 2019 22:10
Khoa Nguyen's Microsoft LEAP Resume
# 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.