Skip to content

Instantly share code, notes, and snippets.

@seungwon0
seungwon0 / dcscrap
Created March 2, 2011 15:10
Scrap images from dcinside gallery
#!/usr/bin/env perl
#
# dcscrap - scrap images from dcinside gallery
#
# dcscrap downloads image files from dcinside gallery.
#
# Dcinside is a South Korean internet forum. Initially established as
# a community dedicated to digital cameras and photography, it has met
# broad notoriety in Korea due to its unique nature.
#
@seungwon0
seungwon0 / Whatthecommit
Created January 30, 2011 02:56
Random commit message generator
#! /bin/sh
#
# whatthecommit - Random commit message generator
#
# Show random commit message from http://whatthecommit.com/.
#
# Seungwon Jeong <[email protected]>
#
# Copyright 2011 by Seungwon Jeong
@seungwon0
seungwon0 / lotto-generator
Created January 22, 2011 06:00
Lotto Number Generator
#!/bin/sh
#
# lotto-generator - Lotto Number Generator
#
# Seungwon Jeong <[email protected]>
#
# Copyright (C) 2011 by Seungwon Jeong
echo `shuf -n 6 -i 1-45 | sort -n`
@seungwon0
seungwon0 / commandlinefu
Created January 20, 2011 14:59
Simple shell script using commandlinefu.com API
#!/bin/sh
#
# commandlinefu - Simple shell script using commandlinefu.com API
#
# All commands sorted by date:
# % commandlinefu
#
# All commands sorted by votes:
# % commandlinefu -v
#
@seungwon0
seungwon0 / kspeller
Created January 17, 2011 04:46
Simple Korean Spell Checker using WebService::KoreanSpeller
#!/usr/bin/env perl
#
# kspeller - Korean Spell Checker
#
# Simple Korean Spell Checker using WebService::KoreanSpeller
#
# Seungwon Jeong <[email protected]>
#
# Copyright (C) 2011 by Seungwon Jeong