嘿嘿… 情况A: 前同事,求网站编辑类工作… 一年以上网络编辑工作经验。 情况B: 前同事,男,PHP程序员。两年以上PHP开发经验。 情况C: 前同事,男,前端工程师。三年以上工作经验。 情况D: 前同事,女,中文系在读,求实习工作,薪水不限,有两年网站活动策划,产品设计相关实习经验。
加起来好像开个公司的各种人都全了啊。可以考虑批发….. 我的联系方式:xurenlu#126.com #请换成@
————————————- 以上各位同学已经上班了
Mono是这样一个Project:
Mono provides the necessary software to develop and run .NET client and server applications on Linux, Solaris, Mac OS X, Windows, and Unix. Sponsored by Novell (http://www.novell.com), the Mono open source project has an active and enthusiastic contributing community and is positioned to become the leading choice for development of Linux applications.
翻译过来是:
Mono为在linux/Solaris,Mac OS X,和Windows下开发和运行.NET客户端和服务程序提供了必要的软件支持。这个Mono 开源项目由Novell发起,拥有一批积极并且热心的开发者社区,希望能成为Linux 程序开发的首选。
第一步:安装Mono.我的pc是Fedora ,因此是yum install Mono, 如果在debian/ubuntu系列,应该用apt-get . 如果您没有类似在线包安装工具,那么您需要到http://www.go-mono.com/mono-downloads/download.html去下载并手动安装。 第二步:开始写了… #cd Program/Mono/ #vim hello.cs hello.cs的内容如下: class Hello{ static void Main(){ System.Console.Write(”Hello World\n”); } } 第三步:编译: mcs hello.cs 第四步:试运行: #mono hello.exe Hello world # 这个hello.exe您看到了,是以exe为后缀的。没错儿!它可以直接运行在Windows下!
64位机器就是不方便,包的测试总是不够全面。前几天发现一个依赖性问题,昨天更新又发现问题了 Missing Dependency: libx264.so.56 is needed by package mencode 这个提示有时是 Missing Dependency: libx264.so.56 is needed by package ffmpeg-libs 反正更新多媒体播放类软件时总是出现。 Google到了解决办法: 先updatedb一下,然后locate libx264,找到: /usr/lib64/libx264.so.58 好了,现在运行yum remove /usr/lib64/libx264.so.58,这个命令在我的机器上的实质结果是把x264删了。 ,再运行安装命令(我之间是yum install amarok),就能成功了。这次,又顺道把libx264.so.*给我装上了。
今天想把fedora8升级到fedora9,结果先把fedora-release*的包升级以后,发现系统fedora源已经全部变成fedora9的了,但是因几个基本包有问题,我用yum安装什么包都装不了了。 只好回退,结果遇上这样一个问题: Cannot retrieve repository metadata (repomd.xml) for repository:/var/cache/yum/fedora/mirrorlist.txt 到处查,都搞不懂为什么。最后只好自己查查yum的源代码,再加上我天才般的瞎猜,终于整出来了: 记下过程: 手工建立/var/cache/yum/fedora/和/var/cache/yum/updates两个目录。 编辑/var/cache/yum/fedora/mirrorlist.txt为 # repo = fedora-8 arch = x86_64 country = CN country = RU country = JP country = HK country = KR country = TW country = TH country = IN http://fedora.candishosting.com.cn/pub/fedora/linux/releases/8/Everything/x86_64/os http://opensource.nchc.org.tw/fedora/linux/releases/8/Everything/x86_64/os http://ftp.twaren.net/Linux/Fedora/linux/releases/8/Everything/x86_64/os http://linux.ntcu.net/ftp/dists/fedora/releases/8/Everything/x86_64/os http://ftp.yz.yamagata-u.ac.jp/pub/linux/fedora/linux/releases/8/Everything/x86_64/os http://ftp.hostrino.com/pub/fedora/linux/releases/8/Everything/x86_64/os ftp://ftp.rhd.ru/pub/fedora/linux/releases/8/Everything/x86_64/os http://ftp.cse.yzu.edu.tw/pub/Linux/Fedora/releases/8/Everything/x86_64/os http://ftp.chg.ru/pub/Linux/fedora/linux/releases/8/Everything/x86_64/os http://ftp.jaist.ac.jp/pub/Linux/Fedora/releases/8/Everything/x86_64/os http://ftp.ncnu.edu.tw/Linux/Fedora/linux/releases/8/Everything/x86_64/os http://allotter.yandex.net/fedora/linux/releases/8/Everything/x86_64/os http://ftp.kddilabs.jp/Linux/packages/fedora/releases/8/Everything/x86_64/os http://ftp.kaist.ac.kr/pub/fedora/linux/releases/8/Everything/x86_64/os ftp://ftp.sfc.wide.ad.jp/pub/Linux/Fedora/releases/8/Everything/x86_64/os http://ftp.riken.jp/Linux/fedora/releases/8/Everything/x86_64/os http://spreader.yandex.net/fedora/linux/releases/8/Everything/x86_64/os 编辑/var/cache/yum/updates/mirrorlist.txt为: # repo = updates-released-f8 arch = x86_64 country = RU country = JP country = HK country = CY country = SG country = TW country = TH country = IN http://spreader.yandex.net/fedora/linux/updates/8/x86_64 http://ftp.kddilabs.jp/Linux/packages/fedora/updates/8/x86_64 http://allotter.yandex.net/fedora/linux/updates/8/x86_64 http://ftp.hostrino.com/pub/fedora/linux/updates/8/x86_64 http://ftp.riken.jp/Linux/fedora/updates/8/x86_64 ftp://ftp.oss.eznetsols.org/linux/fedora/updates/8/x86_64 ftp://ftp.sfc.wide.ad.jp/pub/Linux/Fedora/updates/8/x86_64 http://opensource.nchc.org.tw/fedora/linux/updates/8/x86_64 http://ftp.jaist.ac.jp/pub/Linux/Fedora/updates/8/x86_64 http://mirrors.cytanet.com.cy/linux/fedora/linux/updates/8/x86_64 大功告成。 再运行yum install mplayer,一切正常。 原因(个人瞎猜版): /var/cache/yum/下是yum的缓存目录。当我运行yum clean all时,把这两个目录下的一些文件清空了。但是可能yum存在一个bug, /var/cache/yum/fedora/repomd.xml能重新下载生成,/var/cache/yum/fedora/mirrotlist.txt却不能正常生成。因此需要我们手工构造这个文件。 那我是怎么构造这个文件的内容的呢? 注意看/etc/yum.repos.d/fedora.repod文件,中有 mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch $releasever应该是8(我用的是fedora 8),$basearch是架构的意思,我的是x86_64,替换上,访问之,得到: # repo = fedora-8 arch = x86_64 country = CN country = RU country = JP country = HK country = KR country = TW country = TH country = IN http://fedora.candishosting.com.cn/pub/fedora/linux/releases/8/Everything/x86_64/os http://opensource.nchc.org.tw/fedora/linux/releases/8/Everything/x86_64/os http://ftp.twaren.net/Linux/Fedora/linux/releases/8/Everything/x86_64/os http://linux.ntcu.net/ftp/dists/fedora/releases/8/Everything/x86_64/os http://ftp.yz.yamagata-u.ac.jp/pub/linux/fedora/linux/releases/8/Everything/x86_64/os http://ftp.hostrino.com/pub/fedora/linux/releases/8/Everything/x86_64/os ftp://ftp.rhd.ru/pub/fedora/linux/releases/8/Everything/x86_64/os http://ftp.cse.yzu.edu.tw/pub/Linux/Fedora/releases/8/Everything/x86_64/os http://ftp.chg.ru/pub/Linux/fedora/linux/releases/8/Everything/x86_64/os http://ftp.jaist.ac.jp/pub/Linux/Fedora/releases/8/Everything/x86_64/os http://ftp.ncnu.edu.tw/Linux/Fedora/linux/releases/8/Everything/x86_64/os http://allotter.yandex.net/fedora/linux/releases/8/Everything/x86_64/os http://ftp.kddilabs.jp/Linux/packages/fedora/releases/8/Everything/x86_64/os http://ftp.kaist.ac.kr/pub/fedora/linux/releases/8/Everything/x86_64/os ftp://ftp.sfc.wide.ad.jp/pub/Linux/Fedora/releases/8/Everything/x86_64/os http://ftp.riken.jp/Linux/fedora/releases/8/Everything/x86_64/os http://spreader.yandex.net/fedora/linux/releases/8/Everything/x86_64/os 这就是/var/cache/yum/fedora/mirrorlist.txt的内容了。 对应地,查看/etc/yum.repos.d/fedora-updates.repo,去访问对应的地址,取得内容写入到/var/cache/yum/updates/mirrorlist.txt.
今天突然发现,什么软件都号称自己重新发现了世界。 Amarok:slogan是:Rediscover your music mozilla products页,主推的两个产品是: * Firefox: Rediscover the Web * Thunderbird: Reclaim Your Inbox
一上网,发现netvibes的口号是:(Re)mix the web 老外也这么没创意? 照这思路,过两天IE的口号会变成ReExplorer The world,Word的口号会变成Re-write your Document…
1.关于prototype:这里prototype是javascript的一个特性,不是那个有名的prototype框架:
2.关于变量作用域,和IE,firefox对js的不同处理,这里有几个例子,有几个是原来从别处看到的记的笔记,有的是我自己挖掘出来的. 2.1 2.2 2.3: … Click me! 2.4 … Click me! 2.5 Click me! … 2.6 Click me! … 2.7 Click me! … 2.8 Click me! … 2.9 Click me! … 2.10 2.11 2.12 2.13 2.14: 注意这三个html文件的结果有什么不同. a.html: b.html: c.html:
2.15 看看IE,firefox下分别运行有何不同:
这几天发现一些新的Fedora下的软件,马上更新了 1.claws-mail: 这是除开thunderbird之外的又一个outlook的替代品。 注意,thunderbird下需要装一个插件来支持outlook的会议邀请,claws-mail下同样需要装一下,这个插件叫vclendar。 2.avant-window-navigator,这个就是传说中装上之后能跟Mac一样炫的东东。 3Wine升级到了0.9.55,嘿嘿 ,改进了Direct3D支持。 4。据说openoffice2.4中的powerpoint切换时也有3D效果了… 5.VirtualBox 也升级了,这次有中文版了,嘿嘿,innotek也被Sun收购了。同Mysql一样,刚被收购,网站上马上出来消息了。 6.发现一个背单词的软件,reciteword.背了几天了,老婆今天还笑我,背的单词全是她会的。我反驳:别笑我,当年我可也是过了四级的…. 7.发现64位机器下很多插件用不了….
1.我和几个同事下了火车,万事通覃同学一早已经打听到下火车后5分钟就能到酒店,于是从机场坐到城站火车站时,我们就在四处瞅瞅,看是否能看到红楼酒店。结果瞅来瞅去,没发现,红楼酒店就在我们背后,老大的字,我们都看不见。
2.徐鹏同学和几个同事去西湖玩了回来,打车。车行至红星大酒店,徐鹏以为到了,下了车,发现是红星酒店,于是又招一的士,前行200米,才看到红楼。于是,买单下车。
3.黑夜路人同学更生猛:走出火车站,便拦了一出租车,说要去红楼大酒店。师傅说,就在旁边,你走过去就行了。黑夜路人果然是极为生猛极为黑夜,大怒:你还拒载啊,我要投诉你!于是师傅让他上车,把计价器按下来,掉个头,指着红楼大酒店几个字说,这就是红楼大酒店了。车费10元,谢谢。
连续几周,都在跟进一个播放器的活儿。 美国同事那边发邮件,我这边要第二天才能收到。然后我发的邮件,美国那边也得等上十几个小时。 那边同事忍无可忍,再三要求开个电话会议。 我深知一开电话会议,完全就露馅儿了,我那就只有短短几行的mail,也是绞尽脑汁,查了词典,才整出来的。 于是,每次我回邮件,就当没看到他们提出的开电话会议的要求。还振振有词:让他们说汉语的话,这个电话会议我倒是很乐意开啊。 但是老拖着也不是办法,最后终于在今天早上一大早,美国那边正是临下班的时候,开了个电话会议。我们这边出了一个英语最好的MM,但是实际沟通起来效果还是不好。我基本上除开最后老美一句“Thank you ,Thank you for the morning”之外,就啥都没整清楚。 当然会议也是相当有成效的,那就是:老美终于明白了,跟偶这样没文化的人,电话沟通就是浪费电话费。 当然,何MM的英语是相当不错的,至少她的听力是很棒的,虽说说的时候不顺畅,基本上还是能听个差不多。 看来我也确实需要好好学习下了。大学老是很得意地说,我可是相当地爱国,英语这么多年就没学进去过。内心里,也觉得英语这东西,其实也用不上。现在终于受惩罚了。