Common Lisp implementation of some data compression algorithms — Run-Length, Huffman, and Shannon–Fano Encodings — that I have written during my graduate course "Data Compression".
Jun 20, 2013
Internet connection sharing using iptables
Scenario ― I have several virtualbox GUEST machines, using an internal network on my PC. Now, I wanted to share host machine's internet connection to guest machines. I searched on the web how to do it using iptables. Most of the solutions seem too complex. Here is a working simple solution (found on centos documentation)
On Host Machine — type these commands in Terminal.
That's it. Now you can access the external network of host machine from guest machines. To access Internet, you may need to edit /etc/resolve.conf in your guest machine.
On Host Machine — type these commands in Terminal.
thura @ ~ $ sudo iptables -A FORWARD -i vboxnet0 -j ACCEPT thura @ ~ $ sudo iptables -A FORWARD -o eth1 -j ACCEPT thura @ ~ $ sudo iptables -t nat -A POSTROUTING -o eth1 -j MASQUERADE
That's it. Now you can access the external network of host machine from guest machines. To access Internet, you may need to edit /etc/resolve.conf in your guest machine.
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8) # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN nameserver 8.8.8.8
Jun 19, 2013
if_nametoindex, if_indextoname functions for python using ctypes
I needed to use if_nametoindex, if_indextoname functions for one of my packet capturing programs. So, here is my python wrapper for those functions using ctypes.
PS: You will need this only for python2.x. Those functions are available in socket module starting since python 3.3.
Jun 13, 2013
Using Prolink Wireless Nano USB Adapter on Ubuntu
Recently, I purchased a prolink nano usb wireless adapter WN2001. However, when I tried to plug it into my ubuntu box, I am getting "hardware disabled errors".
This can be fixed by reloading the wireless module with swenc option.
trhura @ ~ $ sudo rfkill list 0: phy0: Wireless LAN Soft blocked: no Hard blocked: yes
This can be fixed by reloading the wireless module with swenc option.
trhura @ ~ $ sudo rmmod -f rtl8192cu; sudo modprobe rtl8192cu swenc=1 debug=5
Apr 6, 2012
Python Module for Myanmar Language Processing
I am writing a crawler, to crawl Burmese phrases from the Web, in python currently. Since non-unicode encodings — such as wininnwa and zawgyi — are also used commonly in Myanmar websites, I needed to convert those texts into unicode.
So, I ported Thanlwinsoft's Myanmar converter, written in javascript, to python. Since, converting those encodings is a common task in Myanmar language processing, I am releasing it here.
I have also written a python script, which can be used to convert those encodings from command line.
Please note that I haven't tested it throughly, and this is an alpha release. So, don't use it without backing up first.
For debian/ubuntu users, you can just grab the deb package and install. For other platforms, download the archive and run this command in extracted folder.
Using myanmar python module
Using myanmar-converter script
So, I ported Thanlwinsoft's Myanmar converter, written in javascript, to python. Since, converting those encodings is a common task in Myanmar language processing, I am releasing it here.
I have also written a python script, which can be used to convert those encodings from command line.
Please note that I haven't tested it throughly, and this is an alpha release. So, don't use it without backing up first.
Install
For debian/ubuntu users, you can just grab the deb package and install. For other platforms, download the archive and run this command in extracted folder.
python setup.py install
Usage
Using myanmar python module
>>> import myanmar.converter as converter
>>> converter.get_available_encodings ()
['zawgyi', 'wwin_burmese', 'wininnwa', 'unicode']
>>> print converter.convert (u'ydkifoGefy½dk*&rfrif;', 'wininnwa', 'unicode')
ပိုင်သွန်ပရိုဂရမ်မင်း
Using myanmar-converter script
trhura @ ~ $ myanmar-converter -h
Usage: myanmar-converter [OPTIONS...] [FILE...]
Convert between Myanmar legacy encodings and unicode.
Options:
--version show program's version number and exit
-h, --help show this help message and exit
-l, --list List supported encodings.
-f ENCODING, --from=ENCODING
Convert characters from ENCODING
-t ENCODING, --to=ENCODING
Convert characters to ENCODING
-o FILE, --output=FILE
Write output to FILE
trhura @ ~ $ echo 'wmrDe,frStokH;ðyykH' | \
myanmar-converter -f 'wwin_burmese' -t 'unicode'
တာမီနယ်မှအသုံးပြုပုံ
Subscribe to:
Posts (Atom)