Thursday, June 12, 2008

[Italy 2007] Duomo, Firenze



撮影日付:19th July 2007
撮影場所:Firenze, Italy. (イタリア)
機材:EOS Kiss digital + EFs 10-22mm

晚上赫然發現,
就職前的義大利旅行已經變成將近一年前的往事了,
時間真是快得令人心驚....

沒整理的照片還是一大堆,
這張是『冷静と情熱のあいだ』Aoi和順正
約定相會的Duomo大教堂,
廣角鏡曲解了然後又重新詮釋了古典建築的線條美。

一年後的最近,我還是用搭地鐵的時間讀著江國香織的小說,
『東京タワー』描寫毫無現實感的超年齡愛情,
我還是不懂那樣充滿架空感的人與人之間的關係,
和東京鐵塔有什麼絕對的關連性,
或許,只是因為symbol存在的必要性吧。

[Cat Note]
SACCH: Slow Associated Control Channel(GSM/signalling)
Find SIT(DL) and MR(UL) on this channel.
Note: GSM SIT not only on SACCH, it also on BCCH like SIB in WCDMA.

23.060/4
GPRS attach: makes MS available for SMS over GPRS, paging via the SGSN, and notification of incoming packet data.
Packet Data Protocol Activation: makes the MS known in the corresponding GGSN, and interworking with data networks can commence.
User data transferred transparently between MS and NW(GGSN) by encapsulation and tunnelling, avoid PLMN to interpret external data protocols.
☆ Each PLMN has two access points to GPRS services:
1) radio interface for mobile access (Um in A/Gb mode and Uu in Iu mode)
2) R reference point used for origination or reception of messages. (between MT & TE; typically supports a standard serial interface.)

printf("Error: %x\n", GetLastError());
MSDN System Error Codes Entering Page
http://msdn.microsoft.com/en-us/library/ms681381(VS.85).aspx

void *memset( void *dest, int c, size_t count );
Usage 0:
CHAR Buffer [BUF_SIZE];
memset(Buffer, 0, BUF_SIZE);

Usage 1:
void main( void )
{
char buffer[] = "Bad Cat says: memset test";
printf( "%s\n", buffer );
memset( buffer, '_', 7 );
// since the second parameter is int, don't forget to add '' for chars.
printf( "%s\n", buffer );
}

[Cat Debugging Note]
Because array starts from 0, don't do this next time:
int clearArray=BUF_SIZE;
while (clearArray>0){
printf("%c", Buffer[clearArray]);
Buffer[clearArray]=0;
clearArray--;
}
Correct:
int clearArray=BUF_SIZE-1;
while (clearArray>-1){
printf("%c", Buffer[clearArray]);
Buffer[clearArray]=0;
clearArray--;
}