Posts

Showing posts with the label programming

Listing Twitter Followers from Array Text to Excel Spreadsheet

Image
One Friday morning I realized it was #FF Follow Friday, it came to my mind how do I list everyone in text of spreadsheet then just copy paste it so I can promote all of my followers on friday? Everyone knows that when you click followers in Twitter website it will come out with list complete with all the followers details like username, nickname, description, location and picture of them. If I have few hundred of follower that can be a problem for me to copy every single name to tweet. So I googled 'Listing Twitter Followers' so I end up with results from Twitter API sites, and some forums, after reading I found a very nice example then modified it to make it simpler. Since it was php so it was easy to implement. Just have to download a php compiler , with internet connection this can be done without any server setup of any-kind. So in the end I came up with this code in pure Php: 1: <?php 2: $cursor = -1; 3: $account_from = 'account'; 4: $result =...

Assembly: Tambah Nombor Genap & Dapatkan purata

Kadang-kadang aku pun konpius tapi soalan mcm ni biasa keluar: Write an assembly language program segment to add two even number N1 and N2. The average is computed and stored in a varible named AVG(Assume AVG has been declared as an 8 bit length) jawapan(aku rasa x berapa bagus): .MODEL SMALL .STACK 64 .DATA TWO db ? i dw ? count dw ? Sum dw ? AVG db ? N1 dw ? N2 dw ? .CODE main proc far MOV Sum,0 MOV TWO,2 MOV count, 0 MOV i,0 start: INC i Mov AX,i Mov N2, AX ;AX to N2 DIV TWO CMP AH, 1 ;Kalau nombor ganjil bahagi dua mesti dapat baki 1 JE start ADD BX, i ;N1 + N2 Mov N1, BX INC count ;Kira berapa kali nombor genap ditambah CMP i, 10 JGE stop JMP start stop: MOV Sum, BX Mov AX, Sum DIV count ; Bahagi jumlah dengan bilangan tambah MOV AVG, AL ; Masuk nilai purata ke dalam AVG INT 21h main endp end main Mari kita fahamkan sesama: Bila bahagi degan operasi DIV, AX akan ada dua nilai berbeza dekat...

Popular posts from this blog

7 Tips Kegagalan sebagai Seorang Pelajar

Sabda Dokong - Hati Kita Umpama Besi