Skip to content

Instantly share code, notes, and snippets.

View kvn219's full-sized avatar
🏄‍♂️
All day everyday

Kevin Nguyen kvn219

🏄‍♂️
All day everyday
View GitHub Profile
@kvn219
kvn219 / .gitconfig
Created April 20, 2018 17:18 — forked from pksunkara/config
Sample of git config file (Example .gitconfig)
[user]
name = Pavan Kumar Sunkara
email = pavan.sss1991@gmail.com
username = pksunkara
[core]
editor = vim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
excludesfile = ~/.gitignore
[sendemail]
smtpencryption = tls
@kvn219
kvn219 / fetchGithub.js
Created April 12, 2018 20:21
Fetch data from the github api.
var axios = require('axios');
handleSubmit: function(){
var username = this.usernameRef.value;
this.usernameRef.value = ‘’;
this.history.pushState(null, “//profile/” + username)
}
function getRepos(username){
return axios.get('https://api.github.com/users/' + username + '/repos');
@kvn219
kvn219 / Spatial_Transformer_Example_Part1.ipynb
Last active December 31, 2020 05:04
Spatial Transformer Networks with Tensorflow: Part I
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kvn219
kvn219 / README.md
Last active March 16, 2016 03:14
NYC School Districts
@kvn219
kvn219 / index.html
Last active January 4, 2016 16:21
Interactive Area Spline Chart
<!DOCTYPE html>
<meta charset="utf-8">
<link href="http://c3js.org/css/c3-b03125fa.css" rel="stylesheet" type="text/css" />
<h1>C3.js - Interactive Area-Spine Chart</h1>
<h2>Count of Crimes by Police District and Day of Week</h2>
<p>Data Source: <a href="https://www.kaggle.com/c/sf-crime/">Kaggle's San Francisco Crime Classification Challenge</a></p>
<body>
<div id="chart" style="margin-top: 30px;"></div>
@kvn219
kvn219 / index.html
Last active January 4, 2016 16:19
Interactive Area Chart
<!DOCTYPE html>
<meta charset="utf-8">
<link href="http://c3js.org/css/c3-b03125fa.css" rel="stylesheet" type="text/css" />
<h1>C3.js - Interactive Area Chart</h1>
<h2>Count of Crimes by Police District and Day of Week</h2>
<p>Data Source: <a href="https://www.kaggle.com/c/sf-crime/">Kaggle's San Francisco Crime Classification Challenge</a></p>
<body>
<div id="chart" style="margin-top: 30px;"></div>
@kvn219
kvn219 / index.html
Last active January 4, 2016 16:17
Interactive Line Chart
<!DOCTYPE html>
<meta charset="utf-8">
<link href="http://c3js.org/css/c3-b03125fa.css" rel="stylesheet" type="text/css" />
<h1>C3.js - Interactive Line Chart</h1>
<h2>Count of Crimes by Police District and Day of Week</h2>
<p>Data Source: <a href="https://www.kaggle.com/c/sf-crime/">Kaggle's San Francisco Crime Classification Challenge</a></p>
<body>
<div id="chart" style="margin-top: 30px;"></div>