The script to check the signal strength that comes with standard ibdriver 1.3.2 (iBurst Wireless Internet Modem Driver) sometimes doesn't work. Error about invalid arguments etc.
This is my modified version of ibapplet-kde.sh
added: level=`echo "scale=0; $level / 1" | bc -l`
============= myib.sh ===============
#!/bin/sh
ifname=${1:-ib0}
dcopref=`kdialog --title "ibApplet" --progressbar "iBurst Signal Strength" 100`
prev=""
while true ; do
if [ `dcop $dcopref wasCancelled` = "true" ] ; then
break
fi
curr=`cat /proc/net/wireless`
if [ "$curr" != "$prev" ] ; then
prev=$curr
level=`echo "$curr" | awk "/$ifname:/ {print \\$4}"`
level=`echo "scale=0; $level / 1" | bc -l`
dcop $dcopref setProgress $level
fi
sleep 1
done
dcop $dcopref close
============= end ===============
Tuesday, March 13, 2007
ibapplet-kde.sh fix
ChARMeD Disassembler BETA 0.1 for POCKET PC mistake in readme
To disassemble a file dont put the test.exe file in the same directory as charmed
put it in your devices root i.e. \test.exe
Friday, March 2, 2007
News for next betas of ChARMeD
It looks like ChARMeD stirred up some interest :)
So I will be developing it further
along with a few other projects for Windows Mobile! :)
I have a significantly large amount of code to write for charmed to work on more devices, but I have already begun the process, just a bit busy at the moment.
Thank you for your patience and interest :)
Post back soon
Sunday, February 25, 2007
ChARMeD Disassembler BETA 0.1 for POCKET PC and Windows Mobile
Charmed for Pocket PC has been totally rewritten
It is now stable, fast and small :)
And has an open dialog ;)
Works on Pocket PC 2003 and up
Doesn't look as pretty as it used to though, but working on that ;)
It is very useful if you want to look at PE/MZ header information, DLL imports, and Sections information,
The disassembler only disassembles the first 29 lines (part of the pretty problem will be fixed soon)
Thank you for your patience
Release Notes
Download BETA 0.2 NOW!
Download PC Version of ChARMeD Pocket PC Disassembler
Bookmarking links Furl -
del.icio.us -
Technorati -
BlinkList -
Digg -
Google -
StumbleUpon -
My Yahoo -
reddit
Friday, February 16, 2007
People Still Use ChARMeD Disassembler? and OllyDbg 2.0 coming out?
It seems people still use my Pocket PC / ARM Disassembler: ChARMeD...
If you are one of those people please leave a comment or e-mail me and
Let me know what you use ChARMeD for,
If you would like ChARMeD to be developed again...
And what you would like to see in ChARMeD :)
And it looks like OllyDbg 2.0 may come out soon!!!
http://www.ollydbg.de/
Tuesday, February 13, 2007
Problems Internet Connection Sharing using PCLinuxOS and I-Burst
Symptoms:
The Windows client machines will have limited connectivity,
i.e. MSN won't work, and some sites will time out (Usually HTTPS sites),
Some machines may even connect perfectly
Solution:
Download TCP Optimizer from http://www.speedguide.net/downloads.php
and set the MTU to that advised by your iburst service provider (I use 1321 or 1392) for every machine
(Alternatively there is a way to recompile the kernel so that this problem doesn't occur, but forgot Embarrassed )
Friday, February 9, 2007
BitTorrent Slow Using PCLinuxOS Internet Connection Sharing
If you are using BitTorrent and your downloads seems slow,
And you are using PCLinuxOS to share your internet connection
edit your /etc/shorewall/rules
and add the following rule...
DNAT net loc:ipaddress_of_machine_running_bittorrent tcp bittorrent_port
e.g.:
DNAT net loc:192.168.1.220 tcp 51234