辞职了

终于辞去了这份旷日持久的工作
说不出的轻松和舒爽啊

标签:,

相关日志

作为程序员应有10项权利

My Bill of Rights as a Programmer

http://www.spoiledtechie.com/post/My-Bill-of-Rights-as-a-Programmer.aspx

下面是来自javaeye的翻译

1.每位程序员应该拥有一个安静的工作环境
(每天办公室里乌泱乌泱的,比菜市场还热闹)

2.每位程序员应该拥有听音乐的权利
(用耳机听没问题)

3.每位程序员应该拥有一台高性能的PC
(想加条内存都得墨迹,那便宜的)

4.每位程序员可以选择适合自己的键盘和鼠标
(老子自己买的鼠标和鼠标垫)

5.每位程序员应该拥有良好的网络环境
(无数人挂迅雷,想好也好不了啊)

6.每位程序员应该拥有两台或更多的监视器
(一台17的LCD真的不够用)

7.每位程序员应该拥有一把舒适的椅子
(这个还好,就是背上靠着老出汗)

8.每位程序员应该拥有合适的开发工具

9.每位程序员应该拥有PC管理员权限的权利

10.每位程序员每年至少有一次允许出席开发者讨论会
(很遗憾,只有内部无聊的所谓讲座……)

标签:, ,

相关日志

Ubuntu 8.04 LTS

迫不及待的装上,完整安装中文支持
一个伟大的进步是:从此告别了字体美化的历史,默认字体(应该是文泉驿正黑)完全可以满足大多数人的需要

并且如果是用alternate cd从文字界面安装
在引导菜单刚出来就可以选择语言
可以看到ubuntu在平民化方面的努力

立即下载安装
快速指南

标签:, , ,

相关日志

一个完整的表格样式

一坨针对IE的HACK

  1. table.default {
  2.     background: #C1DCF7 none repeat scroll 0%;
  3.     border: 1px solid #C1DCF7;
  4.     color: #000000;
  5.     width: 98%;
  6.     border-collapse: collapse;
  7.     margin: 0 auto;
  8. }
  9.  
  10. table.default caption {
  11.     background:transparent url(http://blog.sunshow.net/wp-content/uploads/2008/04/bg_list.gif) repeat-x scroll 0%;
  12.     height: 30px !important;
  13.     line-height: 30px;
  14.     text-align: left;
  15.     padding-left: 10px;
  16.     font-size: 14px;
  17.     font-weight: bold;
  18.     color: #FFFFFF;
  19. }
  20.  
  21. table.default caption a:link, table.default caption a:visited {
  22.     color: #000000;
  23.     font-size: 12px;
  24.     text-decoration: underline;
  25. }
  26.  
  27. table.default caption a:hover {
  28.     font-size: 12px;
  29.     color: #14568A;
  30. }
  31.  
  32. table.default thead tr {
  33.     background: #C1DCF7 none repeat scroll 0%;
  34.     color: #000000;
  35.     height: 25px;
  36.     line-height: 25px;
  37.     text-align: center;
  38.     font-size: 13px;   
  39. }
  40.  
  41. table.default thead tr th {
  42.     border-color: #C1DCF7;        /* fix for IE */
  43. }
  44.  
  45. table.default tbody {
  46.     background: #FFFFFF none repeat scroll 0%;
  47.     text-align: left;
  48. }
  49.  
  50. table.default tbody tr {
  51.     height: 25px;
  52.     line-height: 25px;
  53.     event: expression(
  54.         (this.onmouseover = function() {this.className += ' over';}) &&
  55.         (this.onmouseout = function() {this.className = this.className.replace(' over', '');})
  56.     );
  57. }
  58.  
  59. table.default tbody tr:hover, table.default tbody tr.over {
  60.     background-color: #E8F0FF;
  61. }
  62.  
  63. table.default tbody tr td {
  64.     font-size: 12px;
  65.     padding: 0 0 0 5px;
  66.     border-color: #C1DCF7;        /* fix for IE */
  67. }
  68.  
  69. table.default tbody tr td {    /* fix for IE when align="center" or align="right" */
  70.     padding-left: expression(
  71.         (((this.align == 'center') || (this.align == 'right')) ? '0px' : '5px')
  72.     );
  73.     padding-right: expression(
  74.         ((this.align == 'right') ? '5px' : '0px')
  75.     );
  76. }
  77.  
  78. table.default tbody tr td[align="center"] {
  79.     padding: 0;
  80. }
  81.  
  82. table.default tbody tr td[align="right"] {
  83.     padding: 0 5px 0 0;
  84. }

效果展示:

提示:您可以先修改部分代码再运行

标签:, ,

相关日志

IE6又一bug?

总结一下就是类似#gisarrow.over、#gisarrow.expanded这样的选择符
在使用javascript动态更改className的时候只有最先定义的一个样式有效

在IE6运行以下例子,然后删掉#gisarrow.over做个对比
IE7下还没试

提示:您可以先修改部分代码再运行

标签:, , , , ,

相关日志
Page 1 of 6512345»...Last »
京ICP备05059555号