2.03.2006
Gmail browser cache full message
This only happens when using Gmail via the secure https method: https://mail.google.com/mail
caused by the Advanced option in Internet Explorer (in IE: tools/internet options/Advanced tab, security section) setting: "Do not save encrypted pages to disk" When this option is checked, gmail believes the cache is full because the pages won't be saved to disk, thus gmail thinks the cache is full. Uncheck the box or ignore/hide the error message.
1.18.2006
Renaming device files in Tru64
# hwmgr show scsi -type tape
-get hwid of old device
-in this case tape1 was hwid 165
# hwmgr delete -id 165
hwmgr: Delete operation was successful
Second, move the new device file to the old name.
# dsfmgr -m tape2 tape1
Alpha Server performance
Quick way to gauge how a CPU upgrade will increase performance on your
Alpha box:
http://h18002.www1.hp.com/alphaserver/performance/perf_by_name.html
1.17.2006
Frontpage error submitting form
Problem: Can't submit frontpage developed form. The error message in the browser is: Frontpage error. In the application event log on the server hosting the frontpage extended web the following two entries will appear:
Event Type: Warning
Event Source: FrontPage 5.0
Event Category: None
Event ID: 1000
Description:
Microsoft FrontPage Server Extensions:
(OS Error #13 Message: Permission denied)
Event Type: Warning
Event Source: FrontPage 5.0
Event Category: None
Event ID: 1000
Description:
Microsoft FrontPage Server Extensions:
http://frontpageserver - Error #2005d Message: The server extensions were unable to access the file "service.lck". Please check the file permissions.
Solution: http://frontpageserver/_vti_bin/_vti_adm/fpadmdll.dll?page=webadmin.htm Click on 'Check server health' choose 'Tighten security', detect and fix for the web or subweb that is experiencing the problem
That solved the issue I was experiencing.
12.26.2005
Good vi tutorial
I like the % command which moves the cursor to the next matching bracket or paren. set showmatch to have it move to the beginning match when closing the bracket.
12.23.2005
New Dell and Sonic Update Manager
Which points to the following: http://consumer.installshield.com/kb.asp?id=Q111006
I just downloaded and ran the first program listed. Then ran the second program listed on the installshield.com web page. The message never reappeared since....
12.21.2005
Source of tech news: digg.com
Open source Linux home theatre software: freevo and A/D converter
How to build a Linux analog to digital converter: http://linuxgazette.net//118/chong.html
12.20.2005
Gmail 'operation' aborted in IE
This seems to happen only when using gmail via SSL: https://mail.google.com/mail You can view the message without any problems via gmail and standard http - http://mail.google.com/mail The problem only seems to happen in IE; using https://mail.google.com/mail via FireFox, I have no problems opening the emails. Another way around the issue is to open the email in a new window: turn on the keyboard shortcuts for gmail and then do a shift-o to open the message in a new window; it will open just fine that way. Sometimes just trying to open the message after a few times will get it to open successfully. Another thing that works is to open the message first using the standard http interface: http://mail.google.com/mail, then without closing the browser, change the URL to secure http - https://mail.google.com/mail then view the message without a problem.
The above was tested using fully patched IE6 on Windows XP, SP2 and using FireFox 1.5. It may act the same way with different versions of both IE and firefox.
12.10.2005
TCP/IP filtering and security in Windows 2003
Microsoft Windows Server 2003 TCP-IP Implementation Details - http://www.microsoft.com/technet/prodtechnol/windowsserver2003/technologies/networking/tcpip03.mspx
Configure TCP/IP to use TCP/IP filtering - http://www.microsoft.com/technet/prodtechnol/windowsserver2003/library/ServerHelp/676ec0f3-4200-43d4-a512-7c637493c387.mspx
List of IP protocol numbers from IANA - http://www.iana.org/assignments/protocol-numbers
Some common IP protocols are:
1 - ICMP
6 - TCP
17 - UDP
12.09.2005
Open Source M database / compiler
GT.M High end database + MUMPS compiler -
http://sourceforge.net/projects/sanchez-gtm
Possible alternative to Intersystems Cache?
12.07.2005
See your IP address
Browser Capabilities and browscap.ini
http://www.microsoft.com/windows2000/en/server/iis/default.asp?url=/windows2000/en/server/iis/htm/asp/comp3xx0.htm
http://www.w3schools.com/asp/asp_browser.asp
http://support.microsoft.com/kb/311227
12.06.2005
vdump to tape and file simultaneously
type : advfs
advfs id : 0x3cbae55e.010baf45.b
FCA2684 and EMC ClARiiON Cx500
#
# Entry for CLARiiON Storage
#
Type = disk
Stype = 2
Name = "DGC"
#
PARAMETERS:
#
TypeSubClass = hard_disk, raid
BlockSize = 512
BadBlockRecovery = disabled
DynamicGeometry = true
DisperseQueue = false
TagQueueDepth = 32
PwrMgmt_Capable = false
LongTimeoutRetry = enabled
ReadyTimeSeconds = 90
InquiryLength = 120
RequestSenseLength = 120
#
ATTRIBUTE:
#
# Disable PR/AWRE/ARRE and enable I/O Barrier
#
AttributeName = "DSBLflags"
Length = 4
ubyte[0] = 25
#
ATTRIBUTE:
#
# Disable Start Unit with every VPD Inquiry
#
AttributeName = "VPDinfo"
Length = 16
ubyte[6] = 4
#
ATTRIBUTE:
#
# Report UDID value in hwmgr -view devices
#
AttributeName = "rpt_chgbl_dev_ident"
Length = 4
ASP code to log events to application event log
Bandwidth speed test for broadband connections
This one much more to offer: a latency and upload speed test and has links for pasting results in forums and what-not.
http://www.speedtest.net/
12.04.2005
modify Tru64 kernel parameters
see sysconfigdb -l proc to see what values are recorded in /etc/sysconfigtab
sysconfig -q proc max-threads-per-user max-proc-per-user > dave
vi dave
proc:
max-threads-per-user = 8192
max-proc-per-user = 8192
sysconfigdb -m -f dave proc
sysconfig -q pts nptys > dave
vi dave
pts:
nptys = 2048
sysconfigdb -m -f dave proc
sysconfig -q ipc sem-msl sem-mni shm-max > dave
vi dave
ipc:
sem-msl = 50
sem-mni = 128
shm-max = 2147483648
sysconfigdb -m -f dave ipc
restart the system
verify the values:
sysconfig -q proc max-threads-per-user max-proc-per-user
sysconfig -q pts nptys
sysconfig -q ipc sem-msl sem-mni shm-max