Saturday, November 20, 2010
Password Generator
I've started using a random password generator for anything I don't have to remember, but that I will have in a file for webpage or something to use. I have it set for the max Godaddy database password's can handle. Godaddy says passwords must start with a letter though.
Javascript Decimal Error
(59.97-29.98-12.32-17.67) says it is off by -3.552713678800501e-15. Somehow it is off on the 15th decimal place. Weird. Happens all the time in Javascript. This article explains why: http://javascript.about.com/od/hintsandtips/a/Floating-Point-And-Javascript.htm
Friday, October 16, 2009
IE Trusted Sites not working
I was playing with Trusted Sites in IE. I set the security settings: Internet to High and Trusted Sites to Medium. I added youtube to the Trusted Site. I went to watch a video and it said I had the javascript turned off, which shouldn't have been true since I added it to the Trusted list. What I didn't add to the Trusted list was the domain that the Javascript and CSS files were coming from, which was http://s.ytimg.com. In case you were wondering, I viewed the source of the site to find where the JS and CSS files were coming from. I added it to the list and viola, worked. Had the same issue with NFL.com but same solution worked.
Labels:
Ie,
Internet Explorer,
trusted site not working,
trusted sites
Monday, October 5, 2009
Six Flags Over Georgia
No Backpacks. Fanny Packs are OK.
Price to get in about 40.
Price to not wait in line an extra 43. I think it is the only way to go. Instead of doing about 5 things you get to do 13. Might as well just say it costs $85.
Move Outlook 2000 PST File
Move the file to the location you wish.
When you reopen Outlook it will say that your file can't be found. Browse to the new location. Do NOT open default folders if prompted to do so.
Close Outlook. Reopen. You will get a message saying the location has been changed for your folders, blah, blah, blah. Select Yes/OK to that.
That's all there is to it.
Found @ http://www.computing.net/answers/office/move-pst-file-outlook-2000/4768.html
To find PST
- In the Folders’ Navigation Pane, right-click Personal Folders or the name that appears for your .PST file, and then click on the Properties in the context menu.
Note: This folder will always be a top-level folder in the Navigation Pane, in Mail.
- Click Advanced.
- In the Filename text box, the complete path and file name of the .PST file will be shown.
Tuesday, June 16, 2009
Table Dimensions
Ping Pong Table dimensions 9 ft × 5 ft × 30 inches high
Pool Table dimensions and room size minimums
- A 4 1/2 x 9 foot table = 14 1/2 x 19 feet of floor space
- A 4 x 8 or "bar" table = 14 x 18 feet of floor space
- A 3 1/2 x 7 foot table = 13 1/2 x 17 feet of floor space
I often wonder so I figured I would put it here so I could easily find it.
Thursday, May 28, 2009
VB Functions for mm/dd/yyyy
Private Function getMonth(tmpDate As String) As Integer
Dim tmpMonth As String
Dim tmpMonthLoc As Integer
tmpMonthLoc = InStr(1, tmpDate, "/")
getMonth = Mid(tmpDate, 1, tmpMonthLoc - 1)
End Function
Private Function getDay(tmpDate As String) As Integer
Dim tmpDay As String
Dim tmpDayLoc As Integer
tmpDayLoc = InStr(1, tmpDate, "/")
getDay = Mid(tmpDate, tmpDayLoc + 1, Len(tmpDate) - 5 - tmpDayLoc)
End Function
Private Function getYear(tmpDate As String) As Integer
getYear = Right$(tmpDate, 4)
End Function
Subscribe to:
Posts (Atom)
