Jasiek’s Blog

Jasiek’s Blog header image 4

Entries from February 2005

dotproject

February 22nd, 2005 · No Comments · General, PHP, Programming

GRANT CREATE TEMPORARY TABLES ON dotproject.* to dotproject

[Read more →]

Tags:

OpManager

February 21st, 2005 · Comments Off · General, Microsoft, Tech Suport

While evaluating OpManager I found that it shows service as running and then as being down. The services I was trying to monitor ar Windows Services which use WMI. For this to work properly two criteria must be met:
1. Proper login - select Password and enter login as domainnameuser
To check that this is working go [...]

[Read more →]

Tags:

What is EAD?

February 19th, 2005 · No Comments · General

The Library of Congress has helped develop an international standard for encoding archival finding aids, called Encoded Archival Description (EAD). This standard is maintained by the Library’s Network Development and MARC Standards Office in partnership with the Society of American Archivists.
OAC Toolkit
EAD Version 2002

[Read more →]

Tags:

SMTP Challenge-Response

February 19th, 2005 · No Comments · General

It may be possible to implement a challenge/response spam protection system using custom SMTP Delivery Status Notifications (DSNs) that include an HTML confirmation hyperlink.
http://jamesthornton.com/writing/challenge-response-at-smtp-level.html
CleanMyMailbox
Exim + Spamassassin + TMDA to fight spam
How Challenge/Response Works
How to install a SMTP server [a GNU (GPL) software called exim ] on a Windows 2000 or Windows XP
Petmail is [...]

[Read more →]

Tags:

MS Access and Cash Drawer

February 19th, 2005 · Comments Off · General, Microsoft, Programming

When printing cash receipts in POS application I needed to send control command to open cash drawer. In this case it was Citizen CT-S3000. One way to do it was using the following code:
Private Sub Command0_Click()
Open “LPT1″ For Output As #1
Print #1, “This is a test”
Close #1
End Sub
The above allows direct communication with the printer. [...]

[Read more →]

Tags: