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
import os | |
import SimpleHTTPServer | |
os.chdir('/sdcard/melon') | |
SimpleHTTPServer.test() |
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
use Android; | |
my $android = Android->new(); | |
my $barcode = $android->scanBarcode(); | |
my $result = $barcode->{result}{extras}{SCAN_RESULT}; | |
print $result, "\n"; |
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 | |
# | |
# wlan-channel.pl - shows WLAN channel and frequency | |
# | |
# Shows WLAN channel and frequency. | |
# | |
# 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 | |
# | |
# 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 | |
# |
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-gui.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 | |
# | |
# qrencode-gui.pl - Simple GUI for qrencode | |
# | |
# Requires qrencode. | |
# | |
# 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 | |
# | |
# 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 |
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 | |
# | |
# 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 |
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 | |
# | |
# 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 |
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 | |
# | |
# fortune-ko.sh - fortune for Korean | |
# | |
# http://korea.gnu.org/people/chsong/fortune/ | |
# | |
# Seungwon Jeong <[email protected]> | |
# | |
# Copyright (C) 2012 by Seungwon Jeong | |
# |