Blogs of Seby Manalel Isaac

Thursday, April 20, 2006

Another unfruitful day

Filed under: Activity, Links — seby @ 18:19

Nothing happened as it should have!

Opened an account in imageshack.us for uploading images. from office mail. Put one pic from geocities at http://img159.imageshack.us/img159/4175/sebypp17mc.jpg. Blogs at http://blog.imageshack.us/content.php?page=photoblog. BTW, what to call those people who posts their imageshack login urls on del.icio.us ?

Some links:

  1. http://www.adelaider.com/google Google cheat sheet
  2. http://www.avesh.com/blog/DesktopZenReducingVisualClutterOnYourDesktop.aspx Apt for me with a cluttered desktop!
  3. http://www.digilife.be/quickreferences/quickrefs.htm Good collection
  4. http://www.googleguide.com/advanced_operators_reference.html Good googleGuide
  5. http://www.ilovejackdaniels.com/cheat-sheets A good collection
  6. http://www.netcoole.com/VB6TOCS/vbhtml/vbfuncs.htm VB v/s C# cheat sheet
  7. http://www.petefreitag.com/item/455.cfm Cheat sheet roundup
  8. http://poignantguide.net/ruby The guide to Ruby on Rails!
  9. http://www.rubyonrails.org
  10. http://search.cpan.org/~nwclark/perl-5.8.7/pod/perlcheat.pod The pearl cheat sheet
  11. http://www.tagworld.com Dating ?
  12. http://www.thedailywtf.com Really good site
  13. http://wiki.ehow.com/Exercise-Your-Eyes A must see and follow site

Wednesday, April 19, 2006

Protected: Del.Icio.us

Filed under: Acc — seby @ 19:18

This post is password protected. To view it please enter your password below:

TimeStamp Issues

Filed under: Learnings — seby @ 14:50

I found out that when changing the time stamp to a future time, you have to wait till the UTC time is reached to read your blog !

 Further, Do take backups of your blog! RSS is the best option

Hello World

Filed under: Activity, Links, VBA — seby @ 14:40

Today I singned up for the WordPress blog. Thought that my daily varying interests need to be captured somewhere, so that at the end of a period, I can analyse my follies.

Some good sites seen today:

  1. http://www.batchgeocode.com where yu can create your own map
  2. http://www.bekkoame.ne.jp/~poetlabo/COMP/Excel/TIPS/Hex.htm with some excel tips
  3. http://www.dailydoseofexcel.com Blogs on excel, which prompted me to start my own blog
  4. http://www.dicks-blog.com/archives/2004/12/22/replacing-the-analysis-toolpak-addin-part-4 Part of the same as above
  5. http://www.excelforum.com/showthread.php?t=332741 Excel VBA GET and Open statement help I took today
  6. http://www.jkp-ads.com/Articles/ExcelArticles.htm Good articles and downloads on excel
  7. http://www.seldenhouse.com/vba/filevba.htm VBA for Dummies
  8. http://seby.wordpress.com This blog site

My Activities today:

  1. Excel VBA for reading a binary file byte by byte, putting it into hex strings and then formatting the hex strings for output

[CODE]

Sub main(FileName As String) 
    Dim oneByte As Byte, hexString As String 
    FileN = FreeFile() 
    Open FileName For Binary Access Read As FileN Len = 1 
    While Not EOF(FileN) 
        Get FileN, , oneByte 
        hexString = hexString + Hex(oneByte) 
    Wend 
    Close 
    Debug.Print hexBreak(hexString, 16) 
End Sub 
Function hexPrint(inputString As String) 
    For i = 1 To Len(inputString) - 2 Step 2 
        hexPrint = hexPrint & Mid(inputString, i, 2) & " " 
    Next 
    hexPrint = hexPrint & Mid(inputString, Len(inputString) - 2, 2) 
End Function 
Function hexBreak(inputString As String, breakAt As Integer) 
    For i = 1 To Len(inputString) Step 2 
        hexBreak = hexBreak & Mid(inputString, i, 2) 
        If i Mod (breakAt + 1) = 0 Then 
            hexBreak = hexBreak & vbCrLf 
        Else 
            If i < (Len(inputString) - 2) Then hexBreak = hexBreak & " " 
        End If 
    Next 
'    hexBreak = hexBreak & Mid(inputString, Len(inputString) - 2, 2) 
End Function 
Sub ReadFile() 
    Dim hFile As Long 
    Dim strFile As String 
    Dim strData As String * 4      

hFile = FreeFile 
    strFile = "c:t.mid" 
    Open strFile For Binary Access Read As hFile Len = 1 
    Get hFile, 1, strData 
    Close hFile 
    MsgBox strData 
End Sub

[/CODE]

Theme: WordPress Classic. Blog at WordPress.com.

Follow

Get every new post delivered to your Inbox.