Skip to content

Instantly share code, notes, and snippets.

@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 <seungwon0@gmail.com>
#
# Copyright (C) 2011 by Seungwon Jeong
@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 / lotto-generator
Created January 22, 2011 06:00
Lotto Number Generator
#!/bin/sh
#
# lotto-generator - Lotto Number Generator
#
# Seungwon Jeong <seungwon0@gmail.com>
#
# Copyright (C) 2011 by Seungwon Jeong
echo `shuf -n 6 -i 1-45 | sort -n`
@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 <seungwon0@gmail.com>
#
# Copyright 2011 by Seungwon Jeong
@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 / classnamer
Created March 6, 2011 06:01
Random class name generator
#! /bin/sh
#
# classnamer - Random class name generator
#
# Show random class name from http://www.classnamer.com/.
#
# Seungwon Jeong <seungwon0@gmail.com>
#
# Copyright 2011 by Seungwon Jeong
@seungwon0
seungwon0 / symlink.py
Created March 14, 2011 05:07
Nautilus Extension for Symbolic Link
@seungwon0
seungwon0 / print-source.c
Created April 2, 2011 08:36
Print the source code of itself
/*
* print-source.c - Print the source code of itself
*
* print-source prints the source of itself without using file I/O.
*
* http://www.indidev.net/forum/viewtopic.php?p=150
*
* Seungwon Jeong <seungwon0@gmail.com>
*
* Copyright (C) 2011 by Seungwon Jeong
@seungwon0
seungwon0 / hex-plugin.vala
Created May 3, 2011 07:56
Hexadecimal Converter Plug-in for Synapse
/*
* Copyright (C) 2011 Seungwon Jeong <seungwon0@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
@seungwon0
seungwon0 / srt2txt.pl
Created February 4, 2012 15:19
Convert SRT into Text
#!/usr/bin/env perl
#
# srt2txt - Convert SRT into Text
#
# Seungwon Jeong <seungwon0@gmail.com>
#
# Copyright (C) 2012 by Seungwon Jeong
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by