如何有效地提出尖锐的问题?

| Life

一直想知道这个……很明显这样的问题不那么容易下决心出口,有时候也由于种种问题不好意思问……

参与评论

[全面披露] delphij.net所用的反垃圾策略

| Security

对于所有进入的连接:

阅读全文…( 本文约 356 字,阅读大致需要 1 分钟 )

脆弱

| Diary Excerpt

在家里待了两天,感觉自己比一两年前变得脆弱了,不知道是为什么,也许对一些事情已经开始厌倦,也许是需要面对的东西太多一时难以招架,或者是别的什么,总之,我不知道。有很多时候,我开始寻找一种精神的寄托——以前不是这个样子的。

阅读全文…( 本文约 119 字,阅读大致需要 1 分钟 )

如何正确地配置Internet域

| Security

http://www.dnsreport.com/ 提供了一项检查服务,帮助你查找自己域名DNS配置中存在的问题。过去曾经以为自己很明白如何配置Internet域及其服务,查了才知道差很多,然后才加以改正。

阅读全文…( 本文约 1095 字,阅读大致需要 3 分钟 )

继intel.com.cn之后……

| Security

如题。

没别的,啥都不说了。

大家都闭嘴,闭嘴,啥都不要说了。他们让咱说的时候也啥都不说了。

参与评论

一道奥赛入门题

| Life

专业选手就不用看了,主要是给没听说过OI的同学玩的。

阅读全文…( 本文约 85 字,阅读大致需要 1 分钟 )

Metallica - One zz

| Shared Chaos

I can’t remember anything
Can’t tell if this is true or dream
Deep down inside i feel to scream
This terrible silence stops me

Now that the war is through with me
I’m waking up, i cannot see
That theres not much left to me
Nothing is real but pain now

Hold my breath as i wish for death
Oh please god wake me

Back in the womb it’s much to real
In pumps life that i must feel
But can’t look forward to reveal
Look to the time when i live

阅读全文…( 本文约 206 字,阅读大致需要 1 分钟 )

也许……

| Life

没有也许。

参与评论

全国网站集中备案截止期日益临近 尚未报备的网站须尽快补办备案手续zz

| Shared Chaos

按照国家统一部署,信息产业部会同有关部门从今年 2 月起,联合开展对我国境内互联网站进行集中备案。目前,全国绝大部分网站主办者( ICP )已经通过 「 信息产业部 ICP/IP 地址信息备案管理系统 」 (网址是 http://www.miibeian.gov.cn )报备了网站相关信息。但是,仍有部分网站没有依法履行备案义务,尚未补办备案手续。对此 , 信息产业部提醒尚未补办备案手续的网站主办者:务必在 12 月 12 日 24 时前,集中向备案管理系统报备相关信息,履行法定的备案义务。

阅读全文…( 本文约 427 字,阅读大致需要 1 分钟 )

关于system call

| Kernel

FreeBSD 开发手册 中,有一部分内容介绍了关于系统调用。里面有这样一段话:

Linux is a UNIX like system. However, its kernel uses the same system-call convention of passing parameters in registers MS-DOS does. As with the UNIX convention, the function number is placed in EAX. The parameters, however, are not passed on the stack but in EBX, ECX, EDX, ESI, EDI, EBP:

open:
  mov eax, 5
  mov ebx, path
  mov ecx, flags
  mov edx, mode
  int 80h

This convention has a great disadvantage over the UNIX way, at least as far as assembly language programming is concerned: Every time you make a kernel call you must push the registers, then pop them later. This makes your code bulkier and slower. Nevertheless, FreeBSD gives you a choice.

可能有人会问了,为什么说 UNIX way (将参数压栈) 更好呢?

阅读全文…( 本文约 606 字,阅读大致需要 2 分钟 )