Thursday, February 27, 2014

Cyberoam client in Python

### THIS IS THE CYBERROAM CLIENT IMPLEMENTATION USING PYTHON
def cyberoamClient(a):
from bs4 import BeautifulSoup
import urllib,urllib2
#import win32api
res = ""
while res != u'LIVE':
pswd = raw_input('Please enter the pswd: ') ;
data = urllib.urlencode( {'a':'1370004975642','mode':'191','password':pswd,'username':'User_Name'} );
req = urllib2.Request('http://192.168.1.250:8090/httpclient.html',data)
resp = urllib2.urlopen(req) ;
html = resp.read();
soup = BeautifulSoup(html);
res=soup.select('status');
res = ( (res[0]).contents )[0];
if res == u'LIVE':
print 'Your are connected .'
break
print html ;
view raw gistfile1.py hosted with ❤ by GitHub
### THIS IS THE CYBERROAM CLIENT IMPLEMENTATION USING PYTHON
def cyberoamClient(a):
from bs4 import BeautifulSoup
import urllib,urllib2
#import win32api
res = ""
while res != u'LIVE':
pswd = raw_input('Please enter the pswd: ') ;
data = urllib.urlencode( {'a':'1370004975642','mode':'191','password':pswd,'username':'User_Name'} );
req = urllib2.Request('http://192.168.1.250:8090/httpclient.html',data)
resp = urllib2.urlopen(req) ;
html = resp.read();
soup = BeautifulSoup(html);
res=soup.select('status');
res = ( (res[0]).contents )[0];
if res == u'LIVE':
print 'Your are connected .'
break
print html ;
view raw gistfile1.py hosted with ❤ by GitHub

Sunday, February 5, 2012

Understanding Rule transforms: A very crazy idea

I,over the years have been hearing and seeing a lot of transform from Fourier ,Laplace,Z,Wavelet,......etc all of which happen to be mathematical. But there lay a gap (I think ) in the logical domain where in rules and their interchanges may bring out a better way to view how algorithms work. To make things clear, the algorithm of chess game has two version -the brute force method and the binary tree like searching method....[to be continued]

As the time changes....so does the past version of the future

The times change so fast that slowly the past version of future changes every moment of the present