This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
# | |
# mac-lookup.pl - looks up MAC vendor information | |
# | |
# Looks up MAC vendor information using Net::MAC::Vendor module. | |
# | |
# Seungwon Jeong <[email protected]> | |
# | |
# Copyright (C) 2012 by Seungwon Jeong | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
# | |
# miss_korea_2012.pl - downloads Miss Korea 2012 Photos | |
# | |
# Downloads Miss Korea 2012 photos from http://misskorea.hankooki.com. | |
# | |
# Seungwon Jeong <[email protected]> | |
# | |
# Copyright (C) 2012 by Seungwon Jeong | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
# | |
# 500px.pl - downloads Popular Photos from 500px | |
# | |
# Downloads 20 popular photos from 500px.com. | |
# | |
# Seungwon Jeong <[email protected]> | |
# | |
# Copyright (C) 2012 by Seungwon Jeong | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
# | |
# slf-viewer.pl - Melon lyrics file viewer | |
# | |
# Show lyrics from Melon lyrics file (*.slf). | |
# | |
# Example Usage: | |
# ./slf-viewer.pl 소녀시대_태티서-01-Twinkle-320.slf | less | |
# | |
# Seungwon Jeong <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# ubuntu-wallpaper-slideshow.sh - creates a XML file for wallpaper slideshow | |
# | |
# Creates a XML file like /usr/share/backgrounds/contest/precise.xml | |
# in Ubuntu 12.04. | |
# | |
# Usage example: | |
# ./ubuntu-wallpaper-slideshow.sh ~/Pictures/LOOK/*.jpg > LOOK.xml | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
# | |
# srt2txt - Convert SRT into Text | |
# | |
# Seungwon Jeong <[email protected]> | |
# | |
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (C) 2011 Seungwon Jeong <[email protected]> | |
* | |
* 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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 <[email protected]> | |
* | |
* Copyright (C) 2011 by Seungwon Jeong |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# symlink.py - Nautilus Extension for Symbolic Link | |
# | |
# It adds 'Follow symbolic link' and 'Read symbolic link' menu in | |
# Nautilus. | |
# | |
# In Ubuntu, you can install this program using the following commands: | |
# % sudo apt-get install python-nautilus zenity | |
# % mkdir -p ~/.nautilus/python-extensions | |
# % cp symlink.py ~/.nautilus/python-extensions | |
# % nautilus -q |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
# | |
# classnamer - Random class name generator | |
# | |
# Show random class name from http://www.classnamer.com/. | |
# | |
# Seungwon Jeong <[email protected]> | |
# | |
# Copyright 2011 by Seungwon Jeong |