Skip to content

Instantly share code, notes, and snippets.

View ainvyu's full-sized avatar
🔥
Beating burnout

Yongjin Jung ainvyu

🔥
Beating burnout
  • Samsung Electronics
  • Korea, Republic of
View GitHub Profile
/**
* Created by eniv on 2015. 12. 27..
*/
let fetch = require('node-fetch');
let _ = require('lodash');
async function getCurrency(from, to) {
let res = await fetch('http://finance.yahoo.com/webservice/v1/symbols/allcurrencies/quote?format=json');
let currency_data = await res.json();
@ainvyu
ainvyu / gdm_downloader_with_coro.pl
Created September 29, 2013 18:25
Game Developer Magazine Digital Edition Archives downloader
#!/usr/bin/env perl
use common::sense;
use Web::Query;
use Readonly;
use Coro;
use Coro::LWP;
use Coro::Semaphore;
use WWW::Mechanize;