Month: June 2009

  • Elevator Speech about KRC

    I wrote this elevator speech about KRC at last night’s APIAVote training: Hi, my name is Yongho Kim and I work with KRC, not to be confused with KFC. Actually, we’re kind of like KFC. We are crunchy and engaging. Did your parents ever get yelled at a government office for not understanding English? That’s […]

  • Customize Google Spreadsheet Forms – simplified

    I stripped down GOS’s excellent how-to on using javascript to display a custom message instead of sending users to the unfriendly-looking Google Spreadsheet Forms confirmation page. The simplified code follows: function custommsg() { document.getElementById(“form-message”).style.display=””; document.getElementById(“form-message”).innerHTML=”THANK YOU MESSAGE HERE”; } PASTE YOUR FORM CODE HERE