Skip to content

Instantly share code, notes, and snippets.

View namomo's full-sized avatar

Dongho, Shin namomo

View GitHub Profile
@akent
akent / code.html
Created November 10, 2014 12:55
Android referrer code using invite:// intent with fallback to play store link
<html>
<body>
<div id='fallback-msg' class='hidden'>
<p>If you are not redirected shortly, you may not have the app installed.</p>
<p><a id='market-link' href="#">Install the app.</a></p>
</div>
<script type='text/javascript'>
var code = 'extract your code here';
if (/Android/i.test(navigator.userAgent)) {
@hdragomir
hdragomir / sm-annotated.html
Last active March 5, 2024 08:57
The deferred font loading logic for Smashing Magazine. http://www.smashingmagazine.com/
<script type="text/javascript">
(function () {
"use strict";
// once cached, the css file is stored on the client forever unless
// the URL below is changed. Any change will invalidate the cache
var css_href = './index_files/web-fonts.css';
// a simple event handler wrapper
function on(el, ev, callback) {
if (el.addEventListener) {
el.addEventListener(ev, callback, false);
@benelog
benelog / git.md
Last active January 19, 2021 13:14
버전관리 유랑기, Git 적응기

버전 관리 시스템 유랑기, 그리고 Git 적응기

2011년 6월 9일11월 10일에 열린 세미나에서 두 번 발표했던 내용을 글로 정리했습니다.

지금까지 다양한 버전관리 시스템을 쓴 경험과 Git의 장점이라고 느낀 점에 대해서 발표했었습니다.

버전관리를 거의 안 하던 시절

버전관리는 먼 나라의 이야기?

Git에 대해 이야기를 하기 전에 지금까지 어떻게 버전관리를 해왔는지 되돌아보겠습니다. 아마 비슷한 경험을 하시고 공감하실 분들이 많으실 듯합니다.