完全同意茜茜莉亞
https://choicecilia.spaces.live.com/blog/cns!EA55593E0331507E!1929.entry
說話
大多數人都不知道自己不能專心聽別人說話,這也不難理解。
最詭異的情況是喜歡說話的人不明白自己說的都是廢話,他說話的時間越多,大家的時間就被浪費得越嚴重。無法專心聆聽
Some notes on rewrites in Apache .htaccess files
Since I keep rediscovering this every so often, here's what I know aboutrewrite rules in .htaccess files so that I can just read it here thenext time around.
Some basics:
- you need a '
RewriteEngine on' statement, even if the rewrite engineis already on in the main configuration. - the 'URLs' that you match against in
RewriteRuleare relative tothe directory the.htaccessis in. However, Apache variables like%{REQUEST_FILENAME}that you use inRewriteCondare the full
創作中
並且接受別人對他的懷疑
沒有人會了解這樣的惶惑
無論如何努力都變得多餘
內地看不到youtube的朋友,請...
https://blog.sina.com.cn/yuenmimingblog
雅珍妮的課室風雲

The crucial difference between online and offline backups
At one level, the difference between online backups and offline backupsis that online backups are, well, online; you can make them and get atthem without having to load tapes (or hard drives ),connect your external USB hard drive, or whatever. There are twoadvantages of online backups; they involve little or no physicalshuffling around of things, and they make for very rapid restores ofdata.
These advantages should not be understated. It's much easier to automateyour backups and make sure that
One reason for Unix's permission checking timing
Unix has a slightly odd way of handling file access permissions, inthat they're only checked when a file is opened, not every time thatyou attempt to do something with the file handle. While the choice isdefensible, in many ways checking permissions on access would be moreconvenient, since it would enable things like immediately revokingaccess to files, and very few programs actually care about this.
(And these days, it would fit better into network filesystems, manyof which operate this way anyways.)