自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(25)
  • 资源 (34)
  • 收藏
  • 关注

转载 原型编程 from ruby

function Dog() {             this.sit = function () { return "i am sitting"}        }    var dog = new Dog()    // 构建对象,将对象的原型(__proto__)设定为 Dog.prototype, 然后调用Dog函数, 返回新生成的对象,     alert (

2012-07-29 15:04:40 637

转载 oracle的多表关联更新或者插入

http://blog.csdn.net/yuzhic/article/details/1896878http://blog.csdn.net/macle2010/article/details/5980965该命令使用一条语句从一个或者多个数据源中完成对表的更新和插入数据. ORACLE 9i 中,使用此命令必须同时指定UPDATE 和INSERT 关键词,ORACLE

2012-07-26 22:20:08 10311

转载 playbook都可以telnet到mac上了

Mac OS X Tips: enabling the telnet daemon, ssh daemonSubmitted by Hoff on November 30, 2010 - 03:40 IP Mac OS X Networks UnixLaunching telnet daemon (telnetd) on Mac OS X c

2012-07-22 12:38:25 1510

原创 ruby的mac下使用

利用macports进行软件升级还是很方便的:sudo port install ruby然后就可以安装ruby的其他包了 gem install builder

2012-07-22 10:57:26 694

转载 28个Unix/Linux的命令行神器

28个Unix/Linux的命令行神器2012-07-11 09:14 | 1472次阅读 | 来源:CoolShell 【已有5条评论】发表评论关键词:Unix,Linux | 作者:陈皓 | 收藏这篇资讯下面是Kristóf Kovács收集的28个Unix/Linux下的28个命令行下的工具(原文链接),有一些是大家熟悉的,有一些是非常有用的,有一些是不为

2012-07-11 21:07:16 1482

原创 GO 语言资料汇总

http://golang.org/pkg/time/

2012-07-08 11:57:13 634

转载 关于Linux线程的线程栈以及TLS

说明:a.本文描述Linux NPTL的线程栈简要实现以及线程本地存储的原理,实验环境中Linux内核版本为2.6.32,glibc版本是2.12.1,Linux发行版为ubuntu,硬件平台为x86的32位系统。b.对于Linux NPTL线程,有很多话题。本文挑选了原则上是每线程私有的地址空间来讨论,分别是线程栈和TLS。原则山私有并不是真的私有,因为大家都知道线程的特点就是共享地

2012-07-08 11:46:38 877

原创 GO语言的并发

package mainimport ("fmt"       "runtime"       "time")func hello(s string) {     for i := 0; i          runtime.Gosched();         fmt.Println("here:", s);         time.Sleep(

2012-07-08 11:32:58 876

原创 boost编译

./bootstrap.sh./b2 install link=shared threading=multi runtime-link=shared --prfix=/usr/local

2012-07-07 21:24:43 453

原创 GO入门

package main   // 定义当前包名称 import  "fmt"  import  "math"   // 上述可以合并为 import ("fmt" "math") func main() {     fmt.Println("hello ", math.Pi, "world"); //首字母大些的才会从包中导出,其他的符号都是不可见的。}func

2012-07-07 18:48:08 576

原创 boost单元测试实例

test.cpp#define BOOST_TEST_MAIN#define BOOST_TEST_DYN_LINK#include "boost/test/unit_test.hpp"int add(int i, int j) {    return i + j + 3;}BOOST_AUTO_TEST_SUITE(minimal_test)

2012-07-01 19:44:42 1593

转载 Enhancing Applications by Directing Linker Symbol Processing

Print-friendly VersionBy Greg Nakhimovsky, August 2002 Modern linkers, such as the linker in Sun's Solaris Operating Environme

2012-07-01 10:50:00 773

转载 Linker and Libraries Guide Appendix D Linker and Libraries Updates and New Features

This appendix provides an overview of the updates and new features that have been added to releases of the Solaris OS.Solaris 10 5/08 ReleaseGlobal auditing can now be enabled by recordi

2012-07-01 09:48:16 989

转载 Linker and Libraries Guide Appendix C Establishing Dependencies with Dynamic String Tokens

A dynamic object can establish dependencies explicitly or through filters. Each of these mechanisms can be augmented with a runpath, which directs the runtime linker to search for and load the require

2012-07-01 09:47:37 665

转载 Linker and Libraries Guide Appendix B Versioning Quick Reference

ELF objects make available global symbols to which other objects can bind. Some of these global symbols can be identified as providing the object's public interface. Other symbols are part of the obje

2012-07-01 09:47:01 1004

转载 Linker and Libraries Guide Appendix A Link-Editor Quick Reference

The following sections provide a simple overview, or cheat sheet, of the most commonly used link-editor scenarios. See Link-Editing for an introduction to the kinds of output modules generated by th

2012-07-01 09:46:29 525

转载 Linker and Libraries Guide Chapter 9 Mapfile Option

The link-editor automatically and intelligently maps input sections from relocatable objects to segments in the output file being created. The-M option with an associated mapfile enables you to chan

2012-07-01 09:45:58 626

转载 Linker and Libraries Guide Chapter 8 Thread-Local Storage

The compilation environment supports the declaration of thread-local data. This data is sometimes referred to as thread-specific, or thread-private data, but more typically by the acronym TLS. By decl

2012-07-01 09:45:23 1020

转载 Linker and Libraries Guide Chapter 7 Object File Format

This chapter describes the executable and linking format (ELF) of the object files produced by the assembler and link-editor. Three significant types of object file exist.A relocatable object

2012-07-01 09:44:22 2600

转载 Linker and Libraries Guide Chapter 6 Support Interfaces

The link-editors provide a number of support interfaces that enable the monitoring, and modification, of link-editor and runtime linker processing. These interfaces typically require a more advanced u

2012-07-01 09:42:25 1335

转载 Linker and Libraries Guide Chapter 5 Application Binary Interfaces and Versioning

ELF objects processed by the link-editors provide many global symbols to which other objects can bind. These symbols describe the object's application binary interface (ABI). During the evolution of a

2012-07-01 09:41:41 782

转载 Linker and Libraries Guide Chapter 4 Shared Objects

Shared objects are one form of output created by the link-editor and are generated by specifying the -G option. In the following example, the shared object libfoo.so.1 is generated from the input fi

2012-07-01 09:40:58 2042

转载 Linker and Libraries Guide Chapter 3 Runtime Linker

As part of the initialization and execution of a dynamic executable, an interpreter is called to complete the binding of the application to its dependencies. In the Solaris OS, this interpreter is r

2012-07-01 09:40:13 1524 1

转载 Linker and Libraries Guide --Chapter 2 Link-Editor

The link-editing process creates an output file from one or more input files. Output file creation is directed by the options that are supplied to the link-editor and the input sections provided by th

2012-07-01 09:39:17 1714

转载 Linker and Libraries Guide Chapter 1 Introduction to the Solaris OS Link Editors

This manual describes the operations of the Solaris OS link-editor and runtime linker, together with the objects on which the link-editors operate. The basic operation of the Solaris OS link editors i

2012-07-01 09:38:19 767

python 2.7 pkgs

python scipy 7z

2017-07-04

fast processing for spark 2

fast spark processing with spark 2

2016-12-18

java-rs-examples

java rest ful examples code for chat 2

2015-11-12

clojure-1.6

clojure-1.6 java jvm

2014-06-04

插件tc支持sftp

totalcommander sftp plugin

2014-05-28

git emacs purcell 配置

git emacs purcell 配置

2014-05-20

groovy 入门经典

groovy 入门经典

2014-03-13

java core 2 part2

java core 2 part2

2014-02-12

java core part 2

java core part 2

2014-02-12

java core 1 part2

java core 1 part2

2014-02-11

java 核心技术 1

java 核心技术 1 part 1

2014-02-11

Practices_of_An_Agile_Developer

Practices of An Agile Developer

2013-10-31

version control with git

version control with git

2013-10-30

suse bible

suse bible 11 server bible

2013-10-08

awk and sed

awk and sed , second edition.

2013-09-29

programming in lua 3rd

programming in lua 3rd, english

2013-09-23

搜狐拼音输入法

搜狐拼音输入法

2013-08-25

cpp unit gtest

cpp unit gtest

2013-08-20

git 1.7.10.4源码

git 1.7.10.4源码压缩包, 可以编译安装

2013-07-29

curl 7.31.0 源码

curl 7.31.0 源码, 可以进行编译和安装

2013-07-29

365日历windows版本

365日历软件 记录每一天的信息,windows版本,估计是应该好用的!

2013-07-06

Essentials of Programming Languages.pdf

Essentials of Programming Languages.pdf

2012-08-18

拼音输入法1

sohu pingyin input method, very good!

2012-03-19

lisp in a box

lisp in a box part 2 , as following part 1

2012-03-14

lisp in a box 1

lisp in a box, only part 1 , then part 2

2012-03-14

emacs-lisp

emacs lisp dea cedet 更好的使用emacs

2011-10-02

perl 入门书籍

perl 入门书籍 中文清晰版 很不不错的。

2011-09-18

emacs color theme resource

emacs color theme resource

2011-09-18

python核心编程

python核心编程

2008-08-02

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除