Winmm.dll

很奇怪,有時候開firefox都會有一個很像X檔案電影那種音樂...
後來用 Process Explorer 去看他的thread ..
有一個 WINMM.DLL!timeGetSystemTime+0x44的東西
當我把它 suspended 後,音樂就停了..

後來查了一下 winmm.dll果然就是撥音樂用的dll

Name:
Winmm.dll
Author: Burt Abreu
Date: December 20, 1997

Description: We explore the WINMM multimedia dll for 32 bit windows; we'll see the associated functions declare statements, explain what the parameters mean and show you how to use it with some simple samples. Remember, we'll be covering this at a level for beginner's; there may be other things you'll want to explore at sites geared to more advanced programers.

The Windows 95 Multimedia System consists of low-level and high-level functions. There are a lot more low-level functions than high-level. They allow you to access the device drivers directly and do some other things which the high-level functions cannot; on the downside they require a lot more programming and are more complex. The high-level functions handle some of the more common multimedia tasks and hide the complexity of the low-level interface by sending messages to it and allowing it to perform its wizardry unseen. Sort of the way that Visual Basic is able to hide some of the complexity of the underlying API from us much of the time. For the purposes of our beginners tutorials we will be dealing mostly with the high-level interface. Note: Not all of the multimedia functions live in winmm.dll.
Controls needed: N/A
Level: All Levels.

MSN - UBX

MSN ubx

(your buddy),狀態、譬如誰改變了個人訊息、目前播放音樂等等.

> UBX passport@hotmail.com xxx\r\n
My Personal Message
 > UBX passport@hotmail.com xxx\r\n
\0Music\01\0{0} - {1}\0Song Title\0
Song Artist\0Song Album\0{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}\0

CHG [STA]

[STA = NLN ; AWY; BSY ... ]

更改了自己的狀態 , 離線離開忙碌..

GreaseMonkey for google images

var nextLink = document.getElementById("nn").parentNode ;
var nextLinkPath = nextLink.href ;
window.location = nextLinkPath ;

這些就可以抓到下一頁的路徑,基本上window.location 會改變你目前的頁面位址

所以這樣寫的話他會一直往下一頁一直跳一直跳,跳到沒有 "nn"這個id 的時候才停下來

可以試試看...(其實我是想寫成自己設定 quick keyboard)

照片地圖 - Google Panoramio














如果你的照片有GPS位置的EXIF資訊

可以把照片傳到這個 Google Panoramio 來

他會把照片顯示在地圖上面,而且有全世界的地圖


或許你會問 , 現在很多相簿等等的不是本來就有這個功能了嗎 ?

重點是

Google Map / Google Earth / Google Picasa等等其他服務

也會將你的照片顯示在該軟體上

彼此是互通的

別人在用 Google earth 的時候如果有將 panoramio 的顯示照片選項打開

他就可以在上面看到你的照片

另外一提就是如果你的照片沒有GPS也沒有關係

他在上傳照片後也可以在網頁上編輯你的照片位置~~


Panoramio
http://www.panoramio.com/

我的
http://www.panoramio.com/user/513558

好用的 Firefox 的 DOM (Document Object Model)觀察器

格良 :
http://caterpillar.onlyfun.net/Gossip/AjaxGossip/DOMInspector.html

W3C DOM :
http://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html

Javscript :
http://stuck.myweb.hinet.net/c/js/default.htm
http://www.w3schools.com/htmldom/default.asp [eng]

DOM struct :
http://www.javascriptkit.com/domref/windowmethods.shtml [nice]

Element Node Attribute :
  • nodeName
  • nodeValue
  • nodeType

nodeType

Element type NodeType
Element 1
Attribute 2
Text 3
Comment 8
Document 9
( FF Dom Inspect : #text - > 3)

form : W3C SCHOOL
這邊裡面有相當多的教學,網頁相關的都有
而且它的結構相當的清晰