标签 上网技巧 下的文章

提问的智慧
提问的智慧(How To Ask Questions The Smart Way)一文最早是由Eric Steven Raymond所撰写,说明了作者所认为一位发问者事前应该要做好什么,而什么又是不该做的。作者认为这样能让问题容易令人理解,而且发问者自己也能学到较多东西。

此文在网络上受到欢迎,被广泛转载而广为人知甚至奉为经典。该文也有简体中文与繁体中文的翻译版本被流传着,所以在华人界也是很有名的文章。著名的两个缩写STFW(Search the fxxking web)以及RTFM(Read the fxxking manual)就是出自本文。

有些人认为文中部分用词对新手不太友善,所以作者后来也在新版中做了较委婉的修饰。目前作者仍持续进行更新本文,最近一次更新是2013年4月23日。--来自 维基百科
英文版 http://www.catb.org/~esr/faqs/smart-questions.html
中文版 http://doc.zengrong.net/smart-questions/cn.html

GitHub https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way
GitHub中文版 https://github.com/FredWe/How-To-Ask-Questions-The-Smart-Way/blob/master/README-zh_CN.md
衍生版:
图说:提问的智慧
提问的智慧
如何成为一名黑客
smart_questions
提問的智慧繁体版


转自:让网页定时关闭
下面是代码:直接复制,Chrome下,Ctrl+Shift+I,粘贴回车即可

javascript:console.log('%c本页面一小时后关闭', 'background-image:-webkit-gradient( linear, left top, right top, color-stop(0, #f22), color-stop(0.15, #f2f), color-stop(0.3, #22f), color-stop(0.45, #2ff), color-stop(0.6, #2f2),color-stop(0.75, #2f2), color-stop(0.9, #ff2), color-stop(1, #f22) );color:transparent;-webkit-background-clip: text;font-size:5em;');var t = 3600;function fun(){t--;console.warn(t+'秒');if(t<=0){window.opener = null;window.open('', '_self');window.close();clearInterval(inter);}}var inter = setInterval('fun()',1000);

代码这样看比较乱,其实加上换行,就很清楚明了了:(代码中的换行违反语法规则,这样写只是为了看起来方便)

console.log('%c本页面一小时后关闭', '
background-image:-webkit-gradient(
linear, left top, right top,
color-stop(0, #f22),
color-stop(0.15, #f2f),
color-stop(0.3, #22f),
color-stop(0.45, #2ff),
color-stop(0.6, #2f2),
color-stop(0.75, #2f2),
color-stop(0.9, #ff2),
color-stop(1, #f22)
);
color:transparent;
-webkit-background-clip: text;
font-size:5em;
');
var t = 3600;
function fun(){
t--;
console.warn(t+'秒');
if(t<=0){
window.opener = null;
window.open('', '_self');
window.close();
clearInterval(inter);
}
}
var inter = setInterval('fun()',1000);

Ubuntu Linux 操作系统默认支持PPTP协议的VPN登陆,
但是随着网络环境的复杂化,
我们需要使用L2TP协议的VPN登陆,
下面,我们只需要简单的几条命令即可登陆L2TP协议的VPN。

  1. 添加PPA: sudo apt-add-repository ppa:seriy-pr/network-manager-l2tp
  2. 刷新软件包: sudo apt-get update
  3. 安装network-manager-l2tp:sudo apt-get install network-manager-l2tp-gnome
  4. 后续命令1: sudo service xl2tpd stop
  5. 后续命令2:sudo update-rc.d xl2tpd disable

最后,重启机器使配置生效后,即可添加L2TP协议的VPN配置信息了。