自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(17)
  • 资源 (20)
  • 收藏
  • 关注

转载 realasking的conky配置

由于realasking的百度帐号被百度封禁,所以,就不上链接了"以下是我(realasking)所使用的conky效果和配置文件,若须转载请勿修改,并附上此信息,本文链接,以及本文所参考的文章的链接。 ──by realasking"配置文件(/home/realasking/.conkyrc)如下:(稍做了下修改,以适用于 kde4.8及我的配置)# Conky sampl

2013-04-13 16:18:55 675

转载 4 Steps to Actually Feeling Happier

来自:http://www.inc.com/marla-tabaka/the-happiness-myth.htmlThere are a lot of myths surrounding the state of mind known as "happiness." Here's how you can break them down and start on your own path

2013-04-13 12:15:01 707

原创 《Thinking in Java》学习笔记——第七章:多形性

第七章:多形性“对于面向对象的程序设计语言,多型性是第三种最基本的特征(前两种是数据抽象和继承。”“多形性”(Polymorphism)从另一个角度将接口从具体的实施细节中分离出来,亦即实现了“是什么”与“怎样做”两个模块的分离。利用多形性的概念,代码的组织以及可读性均能获得改善。7.1 上塑造型取得一个对象句柄,并将其作为基础类型句柄使用的行为就叫作“上溯造型”——因为继承树的画

2013-02-06 15:45:42 628

原创 《Thinking in Java》学习笔记——第六章:类再生

第六章:类再生“Java 引人注目的一项特性是代码的重复使用或者再生。但最具革命意义的是,除代码的复制和修改以外,我们还能做多得多的其他事情。”但这样做必须保证不会干扰原有的代码。我们将介绍两个达到这一目标的方法。第一个最简单:在新类里简单地创建原有类的对象。我们把这种方法叫作“合成”,因为新类由现有类的对象合并而成。我们只是简单地重复利用代码的功能,而不是采用它的形式。第二种方法

2013-02-06 15:44:46 499

原创 《Thinking in Java》学习笔记——第五章:隐藏实施过程

第五章:隐藏实施过程“进行面向对象的设计时,一项基本的考虑是:如何将发生变化的东西与保持不变的东西分隔开。”为解决这个问题,Java 推出了“访问指示符”的概念,允许库创建者声明哪些东西是客户程序员可以使用的,哪些是不可使用的。这种访问控制的级别在“最大访问”和“最小访问”的范围之间,分别包括:public,“友好的”(无关键字),protected 以及private。这是通过Java

2013-02-01 09:41:10 406

原创 《Thinking in Java》学习笔记——第四章:初始化和清除

第四章:初始化和清除4.1 用构建器自动初始化对于方法的创建,可将其想象成为自己写的每个类都调用一次initialize()。这个名字提醒我们在使用对象之前,应首先进行这样的调用。在Java 中,提供了名为“构建器”的一种特殊方法,所以类的设计者可担保每个对象都会得到正确的初始化。构建器的名字与类名相同。请注意所有方法首字母小写的编码规则并不适用于构建器。这是由于构建器的名字必须与类名

2013-02-01 09:40:05 404

原创 《Thinking in Java》学习笔记——第三章:控制程序流程

第三章:控制程序流程“就象任何有感知的生物一样,程序必须能操纵自己的世界,在执行过程中作出判断与选择。”在Java 里,我们利用运算符操纵对象和数据,并用执行控制语句作出选择。3.1 使用Java运算符运算符以一个或多个自变量为基础,可生成一个新值。自变量采用与原始方法调用不同的一种形式,但效果是相同的。加号(+)、减号和负号(-)、乘号(*)、除号(/)以及等号(=)的用法与

2013-02-01 09:39:03 514

原创 《Thinking in Java》学习笔记——第二章:一切都是对象

第二章:一切都是对象“尽管以C++为基础,但Java 是一种更纯粹的面向对象程序设计语言”。2.1 用句柄操纵对象每种编程语言都有自己的数据处理方式。有些时候,程序员必须时刻留意准备处理的是什么类型。您曾利用一些特殊语法直接操作过对象,或处理过一些间接表示的对象吗(C 或C++里的指针)?所有这些在Java 里都得到了简化,任何东西都可看作对象。因此,我们可采用一种统一的语法,任何地方

2013-02-01 09:37:06 641

原创 《Thinking in Java》学习笔记——第一章:对象入门

第一章:对象入门思考对象的时候,需要采用形象思维,而不是程序化的思维。1.1 抽象的进步所有编程语言的最终目的都是提供一种“抽象”方法。一种较有争议的说法是:解决问题的复杂程度直接取决于抽象的种类及质量。这儿的“种类”是指准备对什么进行“抽象”?OOP 允许我们根据问题来描述问题,而不是根据方案。然而,仍有一个联系途径回到计算机。每个对象都类似一台小计算机;它们有自己的状态,而且可要求

2013-01-28 01:30:14 582

原创 linux学习笔记——显示文件

showfile 471less是一个分页程序,使用less的基本语法如下:less [-cCEFmMsX] [+command] [-x tab] [file...]其中command是less自动执行的一条命令,tab是希望使用的制表间距,file是文件名称less来自于一个笑话,那就是"less is more"-c(clear,清除)选项:从顶端向下显示每一屏数

2012-08-18 12:44:54 651

原创 linux学习笔记——filesystem

filesystem 569文件是任意源,有有一个名称,可以从中读取数据;或者是任意目标,有一个名称,可以向其中写入数据。术语“文件”不仅指磁盘文件,还可以指任意的物理设备unix文件有三类:普通文件、目录文件、伪文件在伪文件中,有三种最为常见:特殊文件、命名管道、proc文件普通文件或者常规文件是大多数人在使用单词“文件”时所指的文件。普通文件包含数据,位于某种类型的存储

2012-08-18 12:43:43 921

原创 linux学习笔记——正则表达式

re-usage ——447正则表达式,通常写作regex或者re,是一种指定字符串模式的简洁方式。使用语法:元字符(基本匹配) 含义 ----------------------------------------------------------------. 除新行字符外,匹配任意的单个字符^ 锚:匹配行的开头$ 锚:匹配行的末尾

2012-08-18 12:41:13 491 1

原创 linux学习笔记——pipe

pipe 307标准输入默认是键盘,标准输出默认是屏幕如果希望将命令的输出写入到文件中,可以在命令的后面键入>字符,后面跟着文件名称即可,例如:sort>names,这将新建names或者清空names的已有数据如果希望将数据添加到已有数据的后面,可以用>>,也就是sort>>names当将标准输出发送给文件时,称为重定向标准输出如果不希望>命令替换已有文件,可以设置shell

2012-08-18 12:40:09 398

原创 linux学习笔记——shell

shell(bash) 212一般可以将shell理解为一个命令处理器:一个读取并解释所输入命令的程序。其次,shell还支持一些shell脚本。使用的shell类型,可以查看环境变量echo $SHELL系统可用的shell路径存储在 /etc/shells改变登录shell可以使用chsh(change shell)命令,语法为:chsh [-s shell] [u

2012-08-18 12:38:59 474

原创 linux学习笔记——过滤器

filters 333过滤器就是任何能够从标准输入读取文本数据并向标准输出写入文本数据(每次一行)的程序。通常大多数过滤器能够出色完成一件任务。catcat代表catenate,来自拉丁语,意思是chain,可能这是最简单的过滤器,它从标准输入读取数据,并将数据不加修改的写入到标准输出,数据可以来源于标准输入或者一个或多个文件,语法为:cat [-bns] [file...

2012-08-18 12:36:08 726

原创 linux学习笔记——vi

vi 505vi的诞生经历了ed、en、ex等,最初的作者是Joy,C-shell、BSD的作者,SUN公司的创始人之一,现在最通用的是vim,ex是面向行的编辑器,vi是面向屏幕的编辑器,visual editor在使用vi时,存放数据的存储区域称为编辑缓冲区,editing buffer,你处理的内容是副本vi有两种模式,命令模式和输入模式,在命令模式中,所键入的键

2012-08-15 22:22:53 852 1

转载 如何在CentOS6设置多媒体

CentOS 为采用不同格式压缩的音效档提供基本的支持,包括 .wav 及 .ogg 文件。当中所提供的 alsa-utils 及 sox 音效播放器是为文字界面(命令行界面)的环境而设;xmms 则可以轻松地用 SRPM 重建。这个受欢迎且功能齐备的 xmms 的播放器很可能是由於所谓的 Fraunhofer 限制及满足非免费的专利条件而被上游删去。对於那些不受以上司法权所管辖的用户

2012-08-15 22:01:10 748

Kindle-gen

kindlegen是亚马逊自家的用于mobi格式电子书制作的软件,本软件用于linux系统

2012-08-18

Java Platform Standard Edition 7 Documentation

JDK 7 is a superset of JRE 7, and contains everything that is in JRE 7, plus tools such as the compilers and debuggers necessary for developing applets and applications. JRE 7 provides the libraries, the Java Virtual Machine (JVM), and other components to run applets and applications written in the Java programming language.

2012-08-18

The Linux System Administrator's Guide

This is the third book in the main LDP series, and assumes knowledge of everything in the Installation and Users' Guides. It will cover all of the aspects of keeping the system running, handling user accounts, backups, configuration of the system, installing and upgrading software, and more. Whereas some of this information is in the Installation Guide (just to get the system off the ground) this book should be much more complete.

2012-08-18

Pocket Linux Guide

The Pocket Linux Guide is for anyone interested in learning the techniques of building a GNU/Linux system from source code. The guide is structured as a project that builds a small diskette-based GNU/Linux system called Pocket Linux. Each chapter explores a small piece of the overall system explaining how it works, why it is needed and how to build it. After completing the Pocket Linux project, readers should possess an enhanced knowledge of what makes GNU/Linux systems work as well as the confidence to explore larger, more complex source-code-only projects.

2012-08-18

Linux Network Administrators Guide

This document is designed to be a resource for those Linux users wishing to seek clarification on Linux/UNIX/POSIX related terms and jargon. At approximately 24000 definitions and two thousand pages it is one of the largest Linux related dictionaries currently available. Due to the rapid rate at which new terms are being created it has been decided that this will be an active project. We welcome input into the content of this document. At this moment in time half yearly updates are being envisaged.

2012-08-18

Linux on the Road

Though there are laptop, notebook, PDA and mobile phone related HOWTOs available already, this guide contains a concise survey of documents related to mobile computer devices. Also Linux features, such as installation methods for laptops, notebooks and PDAs as well as configurations for different (network) environments are described. Although there are some caveats, Linux is a better choice for mobile computer devices than most other operating systems. Because it supports numerous installation methods, works in many heterogenoues environments and needs smaller resources.

2012-08-18

Guide to Managing Media and Public Relations in the Linux Community

This guide provides useful information on how to generate positive public relations and news media coverage for Linux.

2012-08-18

Linux Filesystem Hierarchy

This document outlines the set of requirements and guidelines for file and directory placement under the Linux operating system according to those of the FSSTND v2.3 final (January 29, 2004) and also its actual implementation on an arbitrary system. It is meant to be accessible to all members of the Linux community, be distribution independent and is intended discuss the impact of the FSSTND and how it has managed to increase the efficiency of support interoperability of applications, system administration tools, development tools, and scripts as well as greater uniformity of documentation for these systems.

2012-08-18

Linux Dictionary

This document is designed to be a resource for those Linux users wishing to seek clarification on Linux/UNIX/POSIX related terms and jargon. At approximately 24000 definitions and two thousand pages it is one of the largest Linux related dictionaries currently available. Due to the rapid rate at which new terms are being created it has been decided that this will be an active project. We welcome input into the content of this document. At this moment in time half yearly updates are being envisaged. Please note that if you wish to find a 'Computer Dictionary' then see the 'Computer Dictionary Project' at http://computerdictionary.tsf.org.za/

2012-08-18

Linux From Scratch

Derived from the popular Linux-From-Scratch-HOWTO, this book describes the process of creating your own Linux system from scratch from an already installed Linux distribution, using nothing but the sources of software that are needed. More information can be found at http://www.linuxfromscratch.org.

2012-08-18

Introduction to Linux - A Hands on Guide

This guide was created as an overview of the Linux Operating System, geared toward new users as an exploration tour and getting started guide, with exercises at the end of each chapter. For more advanced trainees it can be a desktop reference, and a collection of the base knowledge needed to proceed with system and network administration. This book contains many real life examples derived from the author's experience as a Linux system and network administrator, trainer and consultant. We hope these examples will help you to get a better understanding of the Linux system and that you feel encouraged to try out things on your own.

2012-08-18

GNU-Linux-Tools-Summary.pdf

This document is an attempt to provide a summary of useful command-line tools available to a GNU/Linux based operating system, the tools listed are designed to benefit the majority of users and have being chosen at the authors discretion. This document is not a comprehensive list of every existent tool available to a GNU/Linux based system, nor does it have in-depth explanations of how things work. It is a summary which can be used to learn about and how to use many of the tools available to a GNU/Linux-based operating system.

2012-08-18

Emacspeak User's Guide.pdf

This document helps Emacspeak users become familiar with Emacs as an audio desktop and provides tutorials on many common tasks and the Emacs applications available to perform those tasks.

2012-08-18

Custom-Porting-Guide.pdf

This guide describes a work in progress, to port Linux to a custom PowerPC-based board. This means making the operating system work on unfamiliar hardware. Anyone, who is on the same track might benefit from reading this paper, as it highlights the pitfalls and problematic points along the way.

2012-08-18

Bash-Beginners-Guide

Bash guide for beginners, txt

2012-08-18

Bash-Beginners-Guide.pdf

Bash guide for beginners, pdf

2012-08-18

Advanced Bash-Scripting Guide.mobi

This document is both a tutorial and a reference on shell scripting with Bash. It assumes no previous knowledge of scripting or programming, but progresses rapidly toward an intermediate/advanced level of instruction. The exercises and heavily-commented examples invite active reader participation. Still, it is a work in progress. The intention is to add much supplementary material in future updates to this document, as it evolves into a comprehensive book that matches or surpasses any of the shell scripting manuals in print.mobi format

2012-08-18

Advanced Bash-Scripting Guide.pdf

This document is both a tutorial and a reference on shell scripting with Bash. It assumes no previous knowledge of scripting or programming, but progresses rapidly toward an intermediate/advanced level of instruction. The exercises and heavily-commented examples invite active reader participation. Still, it is a work in progress. The intention is to add much supplementary material in future updates to this document, as it evolves into a comprehensive book that matches or surpasses any of the shell scripting manuals in print.

2012-08-18

Mobipocket Creator v4.2 build 41

一款用于windows系统上的电子书制作软件,可以将txt、html、pdf、doc格式的文档转换为prc或者mobi格式,适用于亚马逊kindle电纸书、黑莓手机以及其他智能手机上阅读。产生的prc文件可以直接在kindle上阅读,如果是多看系统,将后缀名改成mobi就可以了,阅读效果非常好。

2012-08-09

空空如也

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

TA关注的人

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