Javascript 的噩梦可以结束了
Firebug 是针对Firefox 的一个插件,它与Firefox 很好的集成到了一起,帮助你分析与网页在客户端的一切行为,当然,获益最大的大概就是Javascript 的调试了。
下面是一个例子,红色部分代表遇到了一个脚本错误。
点开后,Firebug 指示出了错误文件与相关代码行。
再继续查看,就直接定位到了相关上下文,这里我们可以看到,是在line 22 多了一个额外的注释标记 "*/",导致此错误。
修复后,显示正常状态。
如果错误不太容易找到,还可以设置断点进行调试,直接在行号部分点击即可设置断点,然后刷新一次网页重新执行脚本,执行到断点处会自动停下,可以像通常调试工具一样选择执行进度,观察并设置变量。
Firebug 是完全免费的,要了解更多的功能,请参考考官方网站 。
CSS 被不期望的下载了多次
前日看网站日志,发现IE 与Firefox 在对待外联CSS 上的一些细微差别。
<link rel="stylesheet" type="text/css" href="http://www.aiview.com/css/screen.css" media="screen" /> <link rel="stylesheet" type="text/css" href="http://www.aiview.com/css/screen.css" media="projection" />
对待这样的CSS定义,Firefox 会把screen.css 完整下载两次,而IE 仅仅会有一次访问。
123.112.2.228 - - [12/Apr/2007:09:34:10 -0700] "GET /css/screen.css HTTP/1.1" 200 5327 "http://www.aiview.com/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" 123.112.2.228 - - [12/Apr/2007:09:39:11 -0700] "GET /css/screen.css HTTP/1.1" 200 5327 "http://www.aiview.com/" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.11) Gecko/20070312 Firefox/1.5.0.11" 123.112.2.228 - - [12/Apr/2007:09:39:12 -0700] "GET /css/screen.css HTTP/1.1" 200 5327 "http://www.aiview.com/" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.11) Gecko/20070312 Firefox/1.5.0.11"
但是对于另外一项,它们却有不同的表现。
<link rel="alternate stylesheet" type="text/css" href="http://www.aiview.com/css/print.css" media="screen" title="PrintPreview"/>
<link rel="stylesheet" type="text/css" href="http://www.aiview.com/css/print.css" media="print" />
Firefox 针对print.css 访问了一次,而IE 则有两次,第二次是http 304 ,也属于正常。
123.112.2.228 - - [12/Apr/2007:09:34:10 -0700] "GET /css/print.css HTTP/1.1" 200 1486 "http://www.aiview.com/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" 123.112.2.228 - - [12/Apr/2007:09:34:11 -0700] "GET /css/print.css HTTP/1.1" 304 256 "http://www.aiview.com/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" 123.112.2.228 - - [12/Apr/2007:09:39:12 -0700] "GET /css/print.css HTTP/1.1" 200 1486 "http://www.aiview.com/" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.11) Gecko/20070312 Firefox/1.5.0.11"
再来看另外一个例子,screen.css 与screen-clearstyle.css 均引用了base.css 和extend.css 。
<link rel="stylesheet" type="text/css" href="http://www.aiview.com/css/screen.css" media="screen" title="GetStyleBack" /> <link rel="stylesheet" type="text/css" href="http://www.aiview.com/css/screen-clearstyle.css" media="screen" title="ClearStyle" />
@import "base.css"; @import "extend.css";
对于多个CSS 文件引用的同一个CSS,Firefox 不会再去检查文件修改日期,而IE 照例进行了多次访问,虽然后续仅访问了header,如果引用比较复杂的话,还是有一些可观流量的。
123.112.2.228 - - [12/Apr/2007:09:34:10 -0700] "GET /css/screen.css HTTP/1.1" 200 5327 "http://www.aiview.com/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" 123.112.2.228 - - [12/Apr/2007:09:34:10 -0700] "GET /css/base.css HTTP/1.1" 200 1484 "http://www.aiview.com/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" 123.112.2.228 - - [12/Apr/2007:09:34:11 -0700] "GET /css/base.css HTTP/1.1" 304 256 "http://www.aiview.com/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" 123.112.2.228 - - [12/Apr/2007:09:34:11 -0700] "GET /css/extend.css HTTP/1.1" 200 1964 "http://www.aiview.com/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" 123.112.2.228 - - [12/Apr/2007:09:34:11 -0700] "GET /css/extend.css HTTP/1.1" 304 256 "http://www.aiview.com/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" 123.112.2.228 - - [12/Apr/2007:09:39:11 -0700] "GET /css/screen.css HTTP/1.1" 200 5327 "http://www.aiview.com/" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.11) Gecko/20070312 Firefox/1.5.0.11" 123.112.2.228 - - [12/Apr/2007:09:39:11 -0700] "GET /css/base.css HTTP/1.1" 200 1484 "http://www.aiview.com/css/screen.css" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.11) Gecko/20070312 Firefox/1.5.0.11" 123.112.2.228 - - [12/Apr/2007:09:39:11 -0700] "GET /css/extend.css HTTP/1.1" 200 1964 "http://www.aiview.com/css/screen.css" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.11) Gecko/20070312 Firefox/1.5.0.11"
通过这次测试,还学习了一点额外的东西,对于浏览器来说,F5 与CTRL+F5 有一些区别,虽然都是刷新,但F5 仅仅会重新获取相比cache 有所更新的文件,CTRL+F5 则强制性重新获取所有文件。另外提一点,在Firefox 中,F5 与工具栏中的刷新按钮,或者是菜单中的刷新项(CTRL+R),效果都一样,IE 也是如此。
顺便把CSS 切换功能 给取消了,还是保持简单点好。因此上面的部分代码,在页面源文件中已经找不到了,下面是个完整的参考:
<link rel="stylesheet" type="text/css" href="http://www.aiview.com/css/common.css" /> <link rel="stylesheet" type="text/css" href="http://www.aiview.com/css/screen.css" media="screen" title="GetStyleBack" /> <link rel="alternate stylesheet" type="text/css" href="http://www.aiview.com/css/screen-linestyle.css" media="screen" title="LineStyle" /> <link rel="alternate stylesheet" type="text/css" href="http://www.aiview.com/css/screen-clearstyle.css" media="screen" title="ClearStyle" /> <link rel="alternate stylesheet" type="text/css" href="http://www.aiview.com/css/print.css" media="screen" title="PrintPreview" /> <link rel="stylesheet" type="text/css" href="http://www.aiview.com/css/screen.css" media="projection" /> <link rel="stylesheet" type="text/css" href="http://www.aiview.com/css/print.css" media="print" /> <link rel="stylesheet" type="text/css" href="http://www.aiview.com/css/aural.css" media="aural" /> <script type="text/javascript" language="javascript" src="http://www.aiview.com/switch-css.js"></script>
使用Firxfox 1.5 访问Gmail 时指定https://
故障现象
输入域名 mail.google.com 或者 gmail.com 访问Gmail,Firefox 显示空白页,无任何提示,同一时间使用IE 却可以正常访问。
解决方法
造成大多数人无法访问的根源在于下面的第一条,如果无法解决再尝试后面2条。
- 在域名之前加上 https://,指定 http:// 或者仅输入域名均无法访问
- 确认Firefox 选项设置中允许SSL连接
- 如果安装有防火墙,检查设置
在IE 中无需特别指定https,以任意方式输入,均会跳入正常页面。
放弃2.0
从前使用1.5 遇到过这个问题,升级到2.0 后问题自然消失,也就没有深究。最近发现2.0 响应速度很慢,经常把CPU 用到100%,切换一个Tab 要花费几秒钟,开始以为是Flash 插件惹的祸,安装了Flashblock 禁用Flash 之后,问题依旧,也排除了页面script、打开页面太多等问题。今天装回到1.5 版本,响应慢的问题也随之解决。不过gmail 的问题又回来了,google 了一下,发现问题很普遍 ,答案也多种多样,比如:域名解析、SSL、TLS、防火墙、代理设置、Pop Block,证书等等。但我经过测试,其实真正的原因只有一个,就是大家输入域名的习惯问题,省略了"https://" 或者其中的 "s"。把https://gmail.com 或者 https://mail.google.com 加入收藏夹即可。
对于大多数默认安装的Firefox 1.5 来说,上述其它方面导致问题的概率比较低。
google.com 域名一直存在大陆访问不稳定的问题,mail.google.com 也曾经受累一段时间,不过现在,mail.google.com 已经比较稳定了。在你发现IE 可以访问gmail,但Firefox 无法访问时,十有八九本文可以帮到你。
欢迎大家反馈。
IE vertical scrollbar and maxheight problem, Resolved
I use <pre> to wrap the programming code in my pages. What I want is:
- the code within <pre> would not have any unexpected line wrap.
- display horizontal or/and vertical scrollbar only as need to have.
- I don't want the fixed width. it should be flexible with the window width change, and would not exceed to the menu part. the horizontal scrollbar would have if needs.
- I want to have the flexible height that depends content, but maximum 450px. the vertical scrollbar would have if exceeds.
That's all I want, but it won't work out with both Firefox and IE without hacks. I had this style first.
pre {overflow: auto;border: 1px solid #ccc;width: 90%;max-height: 450px;padding: 8px;}
overflow: auto tells to have scrollbar as need. maxheight tells the limitation of the height. I soon found that maxheight is not supported in IE. IE would extend the height as far as the content need. And that's not all, IE push it much. With overflow: auto, you will get the unexpected vertical scrollbar that follows horizontal scrollbar. The reason is that IE will see the horizontal scrollbar as a part of content, then it will give the stupid vertical scrollbar like this. (you'll see an unexpected vertical scrollbar below if you use IE)
Here's a simple for test IE vertical scroll bar problem. When this line is long enough to exceed container that makes IE have a horizontal scrollbar, then the vertical scrollbar comes. If this line is not long enough for your screen yet, please decrease your screen size.The style this object using:<pre style="border: 1px solid #cccccc; padding: 8px; overflow: auto; width: 90%">
There's solution found here and here(none English, none Chinsese, only see the code) , they use IE hacks to resolve the vertical scrollbar problem. It do works, but I still prefer to have the limited height. I got this IE hack for having maxheight in IE. Below's the style.
pre {overflow: auto;border: 1px solid #ccc;width: 90%;max-height: 450px;padding: 8px;}* html pre { /* IE hacks */height: expression(this.scrollHeight > 450 ? "450px" : "auto");}
For the damn vertical scrollbar in IE I got an idea from the code in this post. The idea is to encrease the height after IE calculated the object height. Here's a show, the damn vertical scrollbar in the example above will be removed.About IE scrollHeight logic there's more detail, here's an artible for it.
Here's a simple for test IE vertical scroll bar problem. When this line is long enough to exceed container that makes IE have a horizontal scrollbar, then the vertical scrollbar comes. If this line is not long enough for your screen yet, please decrease your screen size.This style remove the unexpected verticle scrollbar.<pre style="border: 1px solid #cccccc; padding: 8px; overflow: auto; height: expression(this.scrollHeight+15); width: 90%">
It works but new problem came. This style width: 90% is not going to act as expect if I use above code. IE will confuse the base line between window width and container(div) width for the objects having scrollHeight > 450. I have to have below code with it together in IE hack to resolve. IE brings too much issue!
height: expression(this.scrollHeight > 450 ? "450px" : this.scrollHeight+15);width: expression(this.scrollHeight > 450 ? "62%" : "90%");
62% is an experience value that works for me. For you it depends your page structure and your favor. Finally, I had my things done. Below is the finally code in my style sheet. The image code.gif is a cool idea to personalize your code area. CSS Selector ":before" and ":after" could do the similar thing but it's only supported by CSS 3. Currently CSS 2 is widely supported. Another article(Chinese) about CSS Selector.
pre {margin: 16px;overflow: auto;padding: 40px 0 20px 60px;max-height: 450px;background: transparent url(/images/code.gif) left top no-repeat;}* html pre { /* IE hacks */height: expression(this.scrollHeight > 450 ? "450px" : this.scrollHeight-40);width: expression(this.scrollHeight > 450 ? "62%" : "90%");}
get more Firefox Extentions
I'm not sure exactly what the difference of Plugins and Extentions on Firefox is.
There're Plugins such as Flash, WMP, Shockwave.
There're plenty of Extentions which add various features into Firefox.
I'm seeking an Extention which acts like what screen copy does.
I installed Follwing Extentions.
NOTE: I must install them by running the hdd version of Firefox because I run my Firefox on my RAM disk. otherwise all installed Extentions will be lost after a reboot.
infoRSS
infoRSS 1.01.
Displays RSS, Atom, HTML and NNTP feed in the status bar. Compatible with podcasting RSS.
It's also a good Gmail notifier.
Flickr Sidebar
Flickr Sidebar 0.1.1, by Richard Klein, released on December 23, 2005
This Flickr sidebar is used for viewing and searching photo lists. You can access it by the command key Ctrl+Shift+F, the toolbar button, or clicking on the menu option View|Sidebars|Flickr Sidebar. Once you have authorized the extension to work with your flickr account, you can search through or view a full list of your photos, your favorites, everyones photos, your individual contacts, or your groups. Double clicking a photo opens it's page in the current tab. You can also use all the standard link modifiers to open in tabs and windows.
Finally, I found the Extention what I want at outside of Firefox Addons.
Pearl Crescent Page Saver
Pearl Crescent Page Saver 1.0
a free extension for Mozilla Firefox that lets you save an image of a web page to a file in PNG format. Options let you control whether images are saved at full size (which is the default) or scaled down to a smaller size. The Page Saver extension uses the new canvas feature that was introduced in Firefox 1.5.
Reference
- Mozilla Update :: Extensions - Add Features to Mozilla Software
https://addons.mozilla.org/extensions/ - Pearl Crescent Page Saver
http://pearlcrescent.com/products/pagesaver/
running firefox on Ram disk
I had ever moved my IE temporary files folder into a Ram disk for reducing the disk IO during surfing.
When I play with Firefox, I don't find any option for moving its temporary files folder like IE does. But finally I found it, not just moving the firefox's profiles, even for firefox.exe itself.
There're 3 level solutions you may choose.
- Enable built-in memory cache feature to speed firefox up.
- Move profile folder to Ram disk including temporary files folder.
- Run both firefox.exe and profile folder on Ram disk.
The 1th solution is most simple, the 3th solution is most complex but has the maximum of reducing disk IO.
The steps for the 1th solution refer to:- Specify the memory cache usage
http://www.mozilla.org/support/firefox/tips#oth_memcache
Before starting to do the next 2 solutions, you will have to create a Ram disk on your computer. I use this tool called RamDisk, download it at:
- http://www.greendown.cn/Software.asp?id=530
The steps for the 2th solution refer to:
Specify where to store the cache
http://www.mozilla.org/support/firefox/tips#oth_cache- Just simply set the cache path to Ram disk.
The steps for the 3th solution:
- Copy the Firefox application folder and your profile folder to the Ram disk. In this example we will use R:\Firefox for the application folder and R:\FFProfile as the profile folder, assuming the drive letter for the Ram disk is R:.
- Create a simple batch file called R:\Firefox.bat with the following line:
start R:\Firefox\firefox.exe -profile R:\FFProfiles
- Optionally, you may don't want to lose the bookmarks saved in Ram disk after reboot. Move bookmark file back to harddisk folder by entering about:config in the address field of firefox and set
browser.bookmarks.file=C:\\Documents and Settings\\Alex\\Application Data\\Mozilla\\Firefox\\Profiles\\ve6luvh6.default\\bookmarks.html
- Make system copy firefox application and profile folder from hard disk to Ram disk automatically at each boot time by adding following lines to file C:\AUTOEXEC.BAT.
rd /S /Q R:\Firefox
rd /S /Q R:\FFProfiles
del R:\Firefox.bat
xcopy /E /H /K "%APPDATA%\Mozilla\Firefox\Profiles\ve6luvh6.default\*" R:\FFProfiles\*
xcopy /E /H /K "C:\Program Files\Mozilla Firefox\*" R:\Firefox\*
echo start R:\Firefox\firefox.exe -profile R:\FFProfiles>R:\Firefox.bat
R:\Firefox.bat - Optionally, disable firefox memory cache to reduce memory usage because the whole program and profiles are running in Ram by setting
browser.cache.memory.enable=false
- Notes: With this solution, all settings made in Ram disk will be lost after system reboots. If you want the settings to be used after rebooting, should make the setting change by running firefox based on harddisk, and then re-copy all folder from hard disk to Ram disk by running AUTOEXEC.BAT.
- Refer to:
Run Firefox from removable media
http://www.mozilla.org/support/firefox/tips#oth_usb
Refer to
- Firefox Help - Online Help for the Mozilla Firefox Web Browser
http://www.mozilla.org/support/firefox
Tested on
- OS: Windows xp professional
- Firefox: version 1.5
继续阅读 "running firefox on Ram disk" 的剩余内容
![]()
标签订阅|Tag Subscription
Skip over subscriptonIf you use an RSS reader, you can subscribe to a feed of all future entries tagged 'Firefox'. [What is this?]
最近更新|Recent Entries
Skip over recent entries- 升级Pentax *istDS 固件到V2.02
- Nokia E71 杂记
- Gentoo Linux on T43 (17) VGA输出
- Gentoo Linux on T43 (16) 蓝牙传输文件
- 升级到openoffice 2.3.1 宋体显示为方块
- vmware: 利用已有Windows 安装创建虚拟机
- 在linux 下运行PowerDesigner 15 Beta 2
- 奥运会第三阶段剩余门票查询
- Gentoo Linux: 我安装的软件
- Gentoo Linux on T43 (15) Fn + Keys
- Linux 支持鼠标、键盘即插即用
- TestDisk 找回丢失的硬盘分区表
- mysqld 启动失败一例
- DB2 connect 错误 SQLEUCCM: SQL0969N
- Gentoo Linux: /var/db/pkg 这个文件夹很重要!
不定期更新|Handy Entries
Skip over handy entries其它标签|Other Tags
Skip over tags- *istDS (1)
- 135 (1)
- 3d (1)
- 61板 (1)
- 70CM (1)
- Active Directory (1)
- ActiveSync (1)
- Alphabet (1)
- Apache (3)
- APS (1)
- ascii (1)
- Ascii Art (1)
- awstats (4)
- awstats,日志统计 (1)
- backup (2)
- batch (3)
- bios (1)
- blog (2)
- Blogroll (1)
- blue screen (1)
- bluetooth (2)
- Bruce Lee (4)
- C (1)
- chinese (2)
- Cluster (1)
- cms (1)
- commit (1)
- conf (1)
- CPU (1)
- crash (1)
- css (3)
- CW (1)
- D700 (1)
- Data Minning (1)
- Database (12)
- db2 (2)
- DB2 (13)
- DB2 Administration (13)
- DB2 Development (24)
- debug (1)
- DIY (5)
- dma (1)
- DOS (2)
- dreamhost (1)
- Dreamhost (3)
- driver (2)
- DSLR (1)
- dvd (1)
- Dynamic SQL (1)
- E71 (1)
- Editlet (5)
- emacs (1)
- eMule (1)
- English (1)
- EnhancedEntryEditing (2)
- environment (1)
- export (1)
- ext3 (1)
- FAQ (3)
- Favicon (1)
- feed (1)
- fingerprint reader (1)
- Firefox (7)
- firmware (1)
- Flickr (2)
- Fn (1)
- font (1)
- fonts (1)
- ftp (1)
- Gentoo (1)
- gentoo (20)
- gmail (1)
- Gmail (5)
- Google (3)
- Gtalk (1)
- hdaps (1)
- hdd (7)
- HF (1)
- Highlighting (1)
- Hotmail (1)
- hotplug (1)
- https (2)
- ibmdl (1)
- IE (3)
- import (2)
- index (1)
- International (1)
- IPA (1)
- iso-88591 (1)
- J2ME (1)
- java (1)
- Javascript (5)
- jdk (1)
- JKD (5)
- Kenko (1)
- Kenwood (1)
- kernel configuration (1)
- Latin-1 (1)
- latin-1 (1)
- LED (1)
- Lens (1)
- linux (22)
- Linux (16)
- live.com (1)
- Load (1)
- locale (1)
- log (2)
- lrc (1)
- Media Player (1)
- MIT (1)
- Morse (2)
- mount (1)
- msn messenger (3)
- msn spaces (2)
- mt (1)
- MT (22)
- MySQL (3)
- mysql (1)
- NAT (1)
- nokia (1)
- OCW (1)
- openoffice (1)
- optimize (1)
- Oracle (2)
- partition table (1)
- Password (2)
- pcmcia (1)
- PDA (4)
- Pentax (6)
- perl (2)
- Phonetic (1)
- picasa (1)
- PIO (2)
- PK (6)
- plugin (7)
- PowerDesigner (4)
- PPC (1)
- Procedure (3)
- ps (2)
- Python (1)
- ramdisk (2)
- Rational Rose (1)
- RawDevice (1)
- rebuildpkgdb (1)
- Redhat (1)
- refine (2)
- Ricoh (1)
- rss (2)
- Samba (2)
- Sandbag (1)
- sftp (2)
- Shell (8)
- SimSun (1)
- Skype (1)
- software (2)
- SQL (1)
- SQL0969N (1)
- SQLEUCCM (1)
- ssh (1)
- ssl (1)
- Study notes (9)
- study notes (1)
- subtitle (1)
- subversion (2)
- sunset (1)
- svn (1)
- SVN (1)
- synchronize (1)
- t43 (14)
- table function (1)
- Tablespace (1)
- tablespace status (1)
- Tag (2)
- telnet (1)
- testdisk (1)
- thinkpad (12)
- Thinkpad (9)
- TinyMCE (4)
- tmpfs (1)
- tomcat (1)
- tortoiseSVN (1)
- UDMA5 (1)
- UHF (2)
- Ultra Slim (4)
- UltraEdit (3)
- unicode (3)
- update (2)
- upgrade (4)
- usb2.0 (1)
- UTF-16 (1)
- UTF-8 (2)
- utf-8 (1)
- VGA-Out (1)
- VHF (1)
- vi (1)
- vmware (1)
- w3c (1)
- WAS (1)
- Water (1)
- web 2.0 (2)
- Websphere (1)
- widget (1)
- wikipedia (3)
- windows (1)
- wine (1)
- winxp (4)
- wireless (1)
- Wireless (1)
- WWF (1)
- wysiwyg (6)
- x300 (1)
- XDA III (1)
- xml (1)
- xsl (1)
- 三峡 (2)
- 三角架 (1)
- 东芝 (1)
- 中文 (1)
- 主板 (1)
- 书 (4)
- 乱码 (1)
- 云台 (2)
- 云蒙山 (2)
- 京东第一瀑 (2)
- 代理 (1)
- 侄子 (1)
- 保险 (2)
- 健康 (1)
- 全球化 (1)
- 公益 (1)
- 关节 (1)
- 关键词 (2)
- 凌阳单片机 (1)
- 函数 (1)
- 刘家峪 (1)
- 刻录 (1)
- 动物园 (1)
- 十三陵 (1)
- 升级 (2)
- 单板 (1)
- 历史 (1)
- 唐朝 (1)
- 喷墨打印机 (1)
- 器材 (1)
- 四姑娘山 (2)
- 固件 (1)
- 增倍镜 (1)
- 备份 (1)
- 外包 (1)
- 多普达 (1)
- 天线 (6)
- 头灯 (1)
- 奥运门票 (1)
- 字符 (1)
- 字节 (1)
- 存储过程 (1)
- 学习笔记 (14)
- 安全 (1)
- 安全漏洞 (1)
- 安装 (1)
- 宋体 (1)
- 宾得 (6)
- 小五台 (3)
- 履历 (2)
- 川北 (2)
- 工具 (1)
- 帆船 (1)
- 建伍 (1)
- 录音笔 (1)
- 徒步 (2)
- 微软 (3)
- 感悟 (1)
- 慈善活动 (1)
- 慈善组织 (1)
- 慧灵 (1)
- 截拳道 (5)
- 截拳道课程 (6)
- 户外 (19)
- 手册 (1)
- 手台 (2)
- 抗战 (1)
- 拉扑楞寺 (2)
- 指纹 (1)
- 捐助 (1)
- 捕食 (1)
- 推荐 (2)
- 搜索引擎 (1)
- 摄影 (3)
- 摄影包 (1)
- 数据库 (15)
- 数码单反 (1)
- 日志统计 (2)
- 日立 (1)
- 日语 (3)
- 晚霞 (1)
- 智障 (1)
- 月全食 (1)
- 朗木寺 (2)
- 术语 (2)
- 杂志 (1)
- 权限 (1)
- 李小龙 (4)
- 杨靖宇 (1)
- 松山 (1)
- 概念模型 (2)
- 模型 (1)
- 模板 (2)
- 樱花 (1)
- 橡筋动力飞机 (1)
- 活动目录 (1)
- 测试 (1)
- 清理键盘 (1)
- 清理风扇 (1)
- 游泳 (3)
- 滑雪 (1)
- 演讲 (1)
- 灵山 (3)
- 照片 (1)
- 爬山 (10)
- 父亲 (1)
- 特殊符号 (1)
- 状态机 (1)
- 猎鹰 (1)
- 玉渊谭 (1)
- 玩具 (1)
- 环境 (2)
- 理光 (1)
- 甘南 (2)
- 电台 (1)
- 电源线 (1)
- 电键 (1)
- 百科全书 (1)
- 百花山 (1)
- 短波 (1)
- 硅两瓦 (1)
- 硬盘 (2)
- 空手道 (2)
- 穿越 (9)
- 索引 (1)
- 维基百科 (1)
- 绿野 (1)
- 编码 (1)
- 网易水版 (3)
- 羽毛球 (1)
- 肌肉 (1)
- 花卉 (1)
- 英雄 (1)
- 药品 (1)
- 莫尔斯码 (2)
- 蓝牙 (1)
- 蔡司 (1)
- 虚拟主机 (1)
- 蜘蛛侠 (1)
- 蜻蜓 (1)
- 蝌蚪 (1)
- 补丁包 (2)
- 裸设备 (1)
- 计划 (2)
- 订阅 (1)
- 训练 (3)
- 设计 (4)
- 诗 (3)
- 读书笔记 (1)
- 谷丫 (1)
- 资料片 (1)
- 跆拳道 (1)
- 转接线 (1)
- 软件 (1)
- 逆风 (1)
- 通信 (1)
- 避雷 (1)
- 那曲 (2)
- 部署 (1)
- 重构 (1)
- 野鸭湖 (1)
- 锁 (1)
- 镜头 (4)
- 长坪沟 (2)
- 长江 (2)
- 长线 (1)
- 隔离级别 (2)
- 集群 (1)
- 馈线 (1)
- 马拉松 (1)
- 骨骼 (1)
- 高亮 (1)
- 鲑鱼 (1)
- 鸿程道馆 (2)
- 黄草梁 (1)
- 黑土 (1)
- 黑龙潭 (2)
- 黑龙秘径 (2)
分类栏目|Categories
Skip over categories按月归档|By Month
站内链接|Site Links
Skip over site links- Flickr: Collection - Sets - Tags
- 旧版入口



Movable Type 3.34

