Sunday 16 November 2008
By keyphrene,
Sunday 16 November 2008 at 19:45 :: FreeHD.gadget
Watch WebTV and WebRadios on your Windows Sidebar. Switch Fullscreen, schedule your recordings. Use the Drag & Drop to play your media. FreeHD use VLC activeX. You can use your own playlist.
Read the following
9 comments
:: no trackback
Friday 24 October 2008
By keyphrene,
Friday 24 October 2008 at 08:10 :: FreeHD.gadget
no comment
:: no trackback
Sunday 5 October 2008
By keyphrene,
Sunday 5 October 2008 at 08:04 :: FreeHD.gadget
Howto install Windows Sidebar on XP?
Read the following
no comment
:: no trackback
Saturday 27 September 2008
By keyphrene,
Saturday 27 September 2008 at 13:57 :: Org.keyphrene - 4Py
How to open a sftp connection and list a directory
Read the following
no comment
:: no trackback
Thursday 18 September 2008
By keyphrene,
Thursday 18 September 2008 at 18:01 :: Org.keyphrene - 4Py
no comment
:: no trackback
Wednesday 17 September 2008
By keyphrene,
Wednesday 17 September 2008 at 19:33 :: Org.keyphrene - 4Py
A simple connection
import socket
from org.keyphrene import SSH2
# or
# from ssh4py import SSH2
HOSTNAME = "127.0.0.1"
PORT = 22
LOGIN = "login"
PWD = "password"
# A simple connection
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.connect((HOSTNAME, PORT))
sock.setblocking(1)
ssh = SSH2.Session()
ssh.setBanner(SSH2.DEFAULT_BANNER+" Python (http://www.keyphrene.com/projects/org.keyphrene)")
ssh.startup(sock)
ssh.setPassword(LOGIN, PWD)
# here, your operations
# Execute
channel = ssh.Channel()
channel.execute("echo test")
while 1:
data = channel.read(1024)
if not data: break
print data
channel.close()
# Open a terminal
channel = ssh.Channel()
channel.pty("xterm", "", 0, 80, 24)
channel.shell()
channel.setBlocking(1)
# ...
channel.close()
ssh.close()
no comment
:: no trackback
Wednesday 13 August 2008
By keyphrene,
Wednesday 13 August 2008 at 19:57 :: Webdav server in PHP
How to install a webdav server in PHP
Read the following
40 comments
:: no trackback
Wednesday 3 May 2006
By keyphrene,
Wednesday 3 May 2006 at 17:46 :: Org.keyphrene - 4Py
How to get the DNS server list
from org.keyphrene import winnet
print winnet.getNetworkParams()
Result:
{'DnsServerList': '127.0.0.1', 'Domain': 'keyphrene.com', 'Hostname': 'your-XXXXXX'}
no comment
:: no trackback
Friday 28 April 2006
By keyphrene,
Friday 28 April 2006 at 09:29 :: Org.keyphrene - 4Py
Digest
from org.keyphrene.crypto import Digest, HMAC
########
# SHA 1
d = Digest("sha1")
print "SHA1 Size: %d" % d.get_size()
d.update("naja")
print "SHA1: %s" % d.digest()
########
# MD5 1
d = Digest("md5")
print "MD5 Size: %d" % d.get_size()
d.update("naja")
print "MD5: %s" % d.digest()
List of Digests: sha, sha1, md5, md4, md2, mdc2, rmd160
HMAC
from org.keyphrene.crypto import Digest, HMAC
key = "a key"
digestmod = "md5"
hmac = HMAC(key, digestmod)
hmac.update("your data")
print hmac.final()
List of digestmod: md5, sha, sha1
no comment
:: no trackback
By keyphrene,
Friday 28 April 2006 at 09:26 :: Org.keyphrene - 4Py
Calculate the cyclic redundancy ...
from org.keyphrene import crc64
print crc64.string("your data")
no comment
:: no trackback
By keyphrene,
Friday 28 April 2006 at 09:21 :: Org.keyphrene - 4Py
Hunspell is a spell checker.
from org.keyphrene import hunspell
spell = hunspell.Hunspell("./fr_FR.aff","./fr_FR.dic")
word = "copi"
print spell.spell(word)
print spell.suggest(word)
2 comments
:: no trackback