Skip to content

Instantly share code, notes, and snippets.

@seungwon0
seungwon0 / melon_http_server.py
Created October 19, 2012 11:34
Melon HTTP Server for Android
import os
import SimpleHTTPServer
os.chdir('/sdcard/melon')
SimpleHTTPServer.test()
@seungwon0
seungwon0 / barcode_scanner.pl
Created October 19, 2012 11:33
Barcode Scanner for Android
use Android;
my $android = Android->new();
my $barcode = $android->scanBarcode();
my $result = $barcode->{result}{extras}{SCAN_RESULT};
print $result, "\n";
@seungwon0
seungwon0 / wlan-channel.pl
Created August 3, 2012 16:48
shows WLAN channel and frequency
#!/usr/bin/env perl
#
# wlan-channel.pl - shows WLAN channel and frequency
#
# Shows WLAN channel and frequency.
#
# Seungwon Jeong <seungwon0@gmail.com>
#
# Copyright (C) 2012 by Seungwon Jeong
#
@seungwon0
seungwon0 / weather-notify.pl
Created July 30, 2012 11:37
Weather Forecast of Seoul
#!/usr/bin/env perl
#
# weather-notify.pl - Weather Forecast of Seoul
#
# Shows weather forecast of Seoul using Google's weather API.
#
# Requires notify-send.
#
# Copyright (C) 2012 by Seungwon Jeong
#
@seungwon0
seungwon0 / mac-lookup-gui.pl
Created July 30, 2012 07:04
looks up MAC vendor information
#!/usr/bin/env perl
#
# mac-lookup-gui.pl - looks up MAC vendor information
#
# Looks up MAC vendor information using Net::MAC::Vendor module.
#
# Seungwon Jeong <seungwon0@gmail.com>
#
# Copyright (C) 2012 by Seungwon Jeong
#
@seungwon0
seungwon0 / qrencode-gui.pl
Created July 30, 2012 02:24
Simple GUI for qrencode
#!/usr/bin/env perl
#
# qrencode-gui.pl - Simple GUI for qrencode
#
# Requires qrencode.
#
# Seungwon Jeong <seungwon0@gmail.com>
#
# Copyright (C) 2012 by Seungwon Jeong
#
@seungwon0
seungwon0 / mp3tag.pl
Created July 21, 2012 16:41
changes MP3 tag encoding (CP949 -> UTF-8)
#!/usr/bin/env perl
#
# mp3tag.pl - changes MP3 tag encoding (CP949 -> UTF-8)
#
# Changes MP3 tag encoding from CP949 to UTF-8.
#
# 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
@seungwon0
seungwon0 / weather.pl
Created July 21, 2012 07:47
Weather Forecast of Seoul
#!/usr/bin/env perl
#
# weather.pl - Weather Forecast of Seoul
#
# Shows weather forecast of Seoul using Google's weather API.
#
# 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
@seungwon0
seungwon0 / fortune-hackersays.pl
Created July 16, 2012 04:04
creates a fortune file for hackers
#!/usr/bin/env perl
#
# fortune-hackersays.pl - creates a fortune file for hackers.
#
# Creates a fortune cookie file containing quotes from hackersays.com.
#
# Usage Example:
# $ ./fortune-hackersays.pl
# $ strfile hackersays
# $ fortune hackersays
@seungwon0
seungwon0 / fortune-ko.sh
Created July 10, 2012 11:38
fortune for Korean
#!/bin/sh
#
# fortune-ko.sh - fortune for Korean
#
# http://korea.gnu.org/people/chsong/fortune/
#
# Seungwon Jeong <seungwon0@gmail.com>
#
# Copyright (C) 2012 by Seungwon Jeong
#