- stund
- Content: server daemon and test client for STUN, RFC-3489 only
- URL does not load, the project seems abandoned
- The code is also available on SourceForge, last update was on January 2012
- TCP and TLS modes not supported
- The server needs two IPs, it’s mandatory and can not be configured
- C++, no extra libraries required, Windows port available
- Version = 0.97 (0.96 package available on Debian, 5 years without updates)
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/bash | |
while : | |
do | |
echo -n " Temperature: " | |
TEMP=`cat /sys/class/thermal/thermal_zone0/temp` | |
TEMP=$[ $TEMP / 1000 ] | |
FREQ=`cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq` | |
FREQ=$[ $FREQ / 1000 ] | |
echo "$TEMP C, CPU Scaling: $FREQ MHz" | |
sleep 1 |
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
get Android source code: http://source.android.com/source/downloading.html | |
$ cd /path/to/android-src | |
$ cd system/core/libmincrypt/ | |
$ gcc -c *.c -I../include | |
$ ar rcs libmincrypt.a *.o | |
$ cd ../mkbootimg | |
$ gcc mkbootimg.c -o mkbootimg -I../include ../libmincrypt/libmincrypt.a | |
$ cd ../cpio | |
$ gcc mkbootfs.c -o mkbootfs -I../include |