Sunday, February 04, 2007

windows can nat too!

some times ago, my friend, vanya kurmanov try to setup home network with internet access via vpn. first problem - router is windows xp machine. second - nat.

today i try to connect our mac os x notebooks to internet via usb modem (motorola surfboard SB5100), installed on windows machine.

resolution:

1. modify registry entry


HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
IPEnableRouter=1


2. in cmd.exe


netsh routing ip nat install
netsh routing ip nat add interface "YOUR INTERNET/VPN CONNECTION NAME" full
netsh routing ip nat add interface "YOUR LOCAL INTERNET INTERFACE NAME" private

Sunday, December 17, 2006

photoshop cs3 mac no crack -)

no need for crack!

photoshop cs3 mac healing:

in terminal

mv /Applications/Adobe\ Photoshop\ CS3/Adobe\ Photoshop\ CS3.app/Contents/Resources/AMT/application.sif /Applications/Adobe\ Photoshop\ CS3/Adobe\ Photoshop\ CS3.app/Contents/Resources/AMT/application.sif_

Sunday, December 03, 2006

blue hive: new milestone with nokia support

only nokia series support added



download as always: link

Tuesday, September 26, 2006

blue hive 1.0m2.2

my notes program updated.

version 1.0m2.2

• fixed wrong use of last device checkbox
• added types conversion for omit warnings
• removed annoying messages to log
• now sends texts with name «note-yyyymmdd-hhmmss.*»

link

Monday, September 25, 2006

sending notes via bluetooth

tonight i wrote app, which sends notes to sonyericsson phones - t630, z550 and m600i



you can download this app from my site

update (1.0m2.1):

fixed bug with sending texts to sonyericsson smartphones

Thursday, September 14, 2006

cats are wonderful

peoples with cats too

me, tblkba and our cat





other peoples too:

linux-powered cat



cat herding



other photos of my cat
i started seeing this error when i used CPAN to fetch stuff:


Fetching with LWP:
ftp://ftp.planetmirror.com/pub/perl/CPAN/modules/02packages.details.txt.gz
LWP failed with code[400] message[FTP return code 000]
Fetching with Net::FTP:
ftp://ftp.planetmirror.com/pub/perl/CPAN/modules/02packages.details.txt.gz
Couldn't fetch 02packages.details.txt.gz from ftp.planetmirror.com
Fetching with LWP:
ftp://cpan.nas.nasa.gov/pub/perl/CPAN/modules/02packages.details.txt.gz
LWP failed with code[400] message[FTP return code 000]
Fetching with Net::FTP:
ftp://cpan.nas.nasa.gov/pub/perl/CPAN/modules/02packages.details.txt.gz
Couldn't fetch 02packages.details.txt.gz from cpan.nas.nasa.gov
Fetching with LWP:
ftp://cpan.llarian.net/pub/CPAN/modules/02packages.details.txt.gz


• rootless solution:

add string

export FTP_PASSIVE=1

to your profile (~/.profile)

• permanent solution for all users with editing system files (needs root):

the fix for linux is simple but not particularly easy to track down.

this is likely happening because you are behind a NAT or firewall, and you need to do ftp in passive mode.

find your perls libnet.cfg file:

% locate libnet.cfg
/usr/local/share/perl/5.6.1/Net/libnet.cfg

edit that file and change the ftp_int_passive setting to 1.