Skip to content

Instantly share code, notes, and snippets.

View lzhbrian's full-sized avatar
😎
Interesting

Tzu-Heng Lin lzhbrian

😎
Interesting
View GitHub Profile
@lzhbrian
lzhbrian / ajax_form.js
Last active November 28, 2017 04:28
Send form using javascript
// Post the data
var fd = new FormData();
fd.append("name", "some_filename.jpg");
fd.append("image", dataurl);
fd.append("info", "lah_de_dah");
$.ajax({
url: '/ajax_photo',
data: fd,
cache: false,
contentType: false,
@lzhbrian
lzhbrian / pandas_melt.py
Created September 5, 2017 09:22 — forked from rainsunny/pandas_melt.py
Turn certain columns to key-value rows ( and the reverse )
"""
Turn this
location name Jan-2010 Feb-2010 March-2010
A "test" 12 20 30
B "foo" 18 20 25
into this
location name Date Value