Category Archives: Technical

Technical parts

SSI - Server Side Includes

To include HTML (or other extension) files into another HTML file, <!--#include VIRTUAL="/filetoinclude.html" --> is the line to use. VIRTUAL is used when file path is not local, such as when "/" is used. Otherwise, it can be replaced by … Continue reading

Posted in Technical | Leave a comment

WindowsAndroid

With so many virtual platform to test Android apps, I'd better catch up.

Posted in Reflection, Technical | Leave a comment

YAAI error: $80040209

Yet Another Avi Info is a very good tool to fix out of sync Audio/Video files. But sometimes, the xvid codec/decoder causes problem. when i try to sync audio with YAAI i get the following massege: " The operation cannot … Continue reading

Posted in Technical | 2 Comments

Download Videos from PBS, Hulu

A teacher had a problem streaming PBS video. I tried Real Player to no avail. So I searched and found StreamTransport. Freeware and seems to be doing a good job, and even able to avoid interrupting ads, unlike Real Downloader.

Posted in Technical | Leave a comment

Labeling wirings

I think it is ridiculous, no, retarded, to think of preferring cable tagging to allocating a server area/room. I actually did a search, there are plenty of such products, of which I would admit I have seen used before. Tagging … Continue reading

Posted in Technical | Leave a comment

Subtitle Downloader - even Chinese

Some firefox plugin(Youtube Caption Downloader) seems to have failed. I am not sure if it's because of Chinese characters. I use Google2Srt instead. Unzipped, ran the bat file. Pasted youtube link into the field, Read, and I got the Srt … Continue reading

Posted in Technical | Leave a comment

Scratch Programming: Best Programming Language for Kids

Great pedagogy for programming and even mathematics. Developed by MIT, Scratch is the current favorite programming tool of mine for teaching programming to much younger children. It used to be Logo. Which I think is still a good teaching tool. … Continue reading

Posted in News, Technical | 1 Comment

New MS Access Expressions (VBA)

Tech on the Net is a good resource. Dsum is a useful function: In Microsoft Access, the DSum function returns the sum of a set of numeric values in a specified set of records (or domain). DSum ( expression, domain, [criteria] … Continue reading

Posted in Technical | Leave a comment

Display Driver ATIKMDAG Stopped Responding and Has Recovered

Thus far the best solution for this "Display driver stopped responding and has recovered", atikmdag in particular (flash video playing slowly, error message box shows up when flash video runs in full screen for a while) is to disable Hardware … Continue reading

Posted in Technical | Leave a comment

Exporting MS Access data into MS Word

Finally, there is an easy way(filling MS Word fields with Access data) in Access using VBA scripting: Private Sub cmdPrint_Click() 'Print customer slip for current customer. Dim appWord As Word.Application Dim doc As Word.Document 'Avoid error 429, when Word isn't … Continue reading

Posted in Technical | Leave a comment