albertf Archive

Archive and backup for tweets

You are sitting in front of your PC and thinking about the previous days. Surely, you will miss your tweets those you posted about a year ago. You are thinking, “Wish I could get those days back”. You have nothing regret now, because Tweet ...Read More

Ordering CSS3 Properties

While writing CSS3 properties, generally we try to put the Vendor prefixes at the beginning and  the ‘real’ property at the last. It should look like this: .not-a-square { -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; } But what will happen if we do it ...Read More

How to get remote file size by CURL

CURL is one of the familiar debugging tools for web developers. Basically it is a command line tool for transferring data with URL syntax, supporting DICT, FILE, FTP, FTPS, GOPHER, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, ...Read More