Friday

WINService in python sample



import win32serviceutil
import win32service
import win32event

class SmallestPythonService(win32serviceutil.ServiceFramework):
_svc_name_ = "SmallestPythonService"
_svc_display_name_ = "The smallest possible Python Service"
def __init__(self, args):
win32serviceutil.ServiceFramework.__init__(self, args)
# Create an event which we will use to wait on.
# The "service stop" request will set this event.
self.hWaitStop = win32event.CreateEvent(None, 0, 0, None)

def SvcStop(self):
# Before we do anything, tell the SCM we are starting the stop process.
self.ReportServiceStatus(win32service.SERVICE_STOP_PENDING)
# And set my event.
win32event.SetEvent(self.hWaitStop)

def SvcDoRun(self):
# We do nothing other than wait to be stopped!
win32event.WaitForSingleObject(self.hWaitStop, win32event.INFINITE)
if __name__=='__main__':
win32serviceutil.HandleCommandLine(SmallestPythonService)



more...

Thursday

port forwarding RDP;cannot connect to localhost


symptoms:
"The client could not connect. You
are already connected to the console of this computer. A new console
session cannot be established".

Procedure:
1. Create a folder (For example c:\TSclient) on your XP box
2. Copy mstsc.exe and mstscax.dll from your XP's %systemroot%\system32
to this folder.
3. Right click mstsc.exe and go to the properties of it.
4. Select the Compatibility tab
5. Check "Run this program in compatibility mode for"
6. Select "Windows 98/ Windows Me"
7. Click on OK
8. Connect your SSH to the remote network or machine
9. Forward another port than 3389, for example 3390
10. Use the newly copied mstsc.exe to connect to 127.0.0.1:3390

more...

run RDP from localhost

mstsc.exe /v:127.0.0.1:3390
more...

Monday

Photoshop online tutorials:


PS Hero - [link]

1.jpg


PSD tuts - [link]


2.jpg


Tutorial 9 - [link]

3.jpg


PSD Learning - [link]

4.jpg


Photoshop Tutorials - [link]


5.jpg


Photoshop Contest - [link]

6.jpg


Luxa - [link]

7.jpg


Tutorial Sphere - [link]
8.jpg


Good Tutorials - [link]
9.jpg


Photoshop Talent - [link]
10.jpg



more...

imagemagic add text to image

rem different types of text annotations on existing images rem cyan yellow orange gold rem -gravity SouthWest rem draw text and anno...