I don’t like to wait another month to keep my hands on iPad, while US people can.
And I’m not ALONE….
Full procedure to order like US customer
LOL
I don’t like to wait another month to keep my hands on iPad, while US people can.
And I’m not ALONE….
Full procedure to order like US customer
LOL
Very simple guide to jailbreak you iPod Touch to 1.1.2, with no pain.
Metacafe post a video that explain how to increase the range of your wireless with virtually no cost.
The procedure is very simple!
Watch it!
Su questo sito trovare una serie di guide per convertire i vostri video da un formato ad un altro.
I found an interesting post: how to create your own GPS tracking device that use a GSM card to send its location.
More details here
If you wont your computer to act a web server, you must register a domain and do some little configuration. I have a dynamic ip, changed every time I connect to the net.
These are the steps needed to make it works:
1. Create a dynamic DNS service
2. Configure the Web domain
Starting from now, if the DNS client is on, your computer will be reachable.
If you have the need to connect to my home mac, but your company firewall will not allow youto use vnc, this is the post for you!!
So, this is a way to connect using a vpn using only open source software.
Don’t’ forget to make a donation if you like the software!!!!
What you need:
1. Server Installation
1.1 OS X VNC Server
Download VNC Server and install on your OS X.
Set a password for the incoming connection and configure for Startup at System startup (you may be required to confirm with admnistrator password).
1.2 Open VPN Server
Uninstall the package. Then configure e compile it with the following commands:
./configure
make
make install
Now you have to generate encrypting keys:
cd easy-rsa
. ./vars
./clean-all
./build-ca
enter the informations requested.
./build-key-server server
./build-key client1
./build-key client2
./build-key client3
The keys generated will be stored in the keys directory.
Now, we have to create the configuration:
sudo mkdir /etc/openvpn
cp keys/* /etc/openvpn
cd /etc/openvpn
now we create a file called home.config
and paste the following lines:
port 443
proto tcp-server
dev tun
ifconfig 10.8.0.1 10.8.0.2
secret /etc/openvpn/server.key
keepalive 10 60
ping-timer-rem
persist-tun
persist-key
At this point the server configuration is done.
you can launch the openvpn server with the following command:
sudo /usr/local/sbin/openvpn –config /etc/openvpn/home.conf &
The last step: copy the /etc/openvpn/server.key to the computer that needs to connect to your mac.
2. Client Installation
2.1 OpenVPN Client
Install the openVPN windows client.
copy the server.key taken from your mac to the C:/WINDOWS directory
Now from the openvpn client select “Edit Config” and paste the following line:
remote <Your_IP_Address>
dev tun
ifconfig 10.8.0.2 10.8.0.1
secret C:/WINDOWS/server.key
;comp-lzo
keepalive 10 60
ping-timer-rem
persist-tun
persist-key
proto tcp-client
port 443
save it.
2.2 VNC Viewer
Install the VNC Viewer on you system.
3 Connect to your Mac
Now this is the simple procedure.
1) lauch openvpn selecting “connect”
2) lauch vnc and enter the following address
10.8.0.1
3) at this you’ll be asked for a password, you have to enter the one you choose
for the VNC Server in step 1.1
Have fun!!