青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

GLORY | 學(xué)習(xí)·記錄

coding for life

瀏覽器是Firefox 4.0 。

問題出現(xiàn)在寫好文章,點擊發(fā)布,文章正文被清空,并且彈出來“內(nèi)容不能為空!”

辛辛苦苦碼的字就沒了。。。

posted @ 2011-03-07 23:29 meglory 閱讀(1412) | 評論 (8)編輯 收藏

考察

1a3x3
1a3a

就ok。

posted @ 2011-03-07 23:23 meglory 閱讀(383) | 評論 (0)編輯 收藏
 1 #include<stdio.h>
 2 
 3 int main()
 4 {
 5     int i=43;
 6     printf("%d",printf("%d",printf("%d",i)));
 7     
 8     return 0;
 9 }
10 
11 這是一個社區(qū)的驗證碼,讓輸出結(jié)果,很有意思。
12 結(jié)果是4321.
13 printf()的返回值:On success, the total number of characters written is returned.
14 On failure, a negative number is returned.

posted @ 2010-12-23 11:39 meglory 閱讀(361) | 評論 (0)編輯 收藏
文章轉(zhuǎn)自http://www.ugrad.cs.ubc.ca/~cs219/CourseNotes/Unix/commands-links.html
Hard links and Soft links

Links

As was mentioned in the section on file system structure, every file has a data structure (record) known as an i-node that stores information about the file, and the filename is simply used as a reference to that data structure. A link is simply a way to refer to the contents of a file. There are two types of links:

  • Hard links: a hard link is a pointer to the file's i-node. For example, suppose that we have a file a-file.txt that contains the string "The file a-file.txt":
    % cat a-file.txt
    The file a-file.txt
    %

    Now we use the ln command to create a link to a-file.txt called b-file.txt:

    % ls
    ./ ../ a-file.txt
    % ln a-file.txt b-file.txt
    % ls
    ./ ../ a-file.txt b-file.txt

    Hard Links

    The two names a-file.txt and b-file.txt now refer to the same data:

    % cat b-file.txt
    The file a-file.txt
    %

    If we modify the contents of file b-file.txt, then we also modify the contents of file a-file.txt:

    % vi b-file.txt
    ...
    % cat b-file.txt
    The file a-file.txt has been modified.
    % cat a-file.txt
    The file a-file.txt has been modified.
    %

    and vice versa:

    % vi a-file.txt
    ...
    % cat a-file.txt
    The file a-file.txt has been modified again!
    % cat b-file.txt
    The file a-file.txt has been modified again!
    %
  • Soft links (symbolic links): a soft link, also called symbolic link, is a file that contains the name of another file. We can then access the contents of the other file through that name. That is, a symbolic link is like a pointer to the pointer to the file's contents. For instance, supposed that in the previous example, we had used the -s option of the ln to create a soft link:
    % ln -s a-file.txt b-file.txt
    On disk, the file system would look like the following picture:

    Soft Links

But what are the differences between the two types of links, in practice? Let us look at an example that highlights these differences. The directory currently looks like this (let us assume that a-file.txt b-file.txt are both hard links to the same file):

% ls
./ ../ a-file.txt b-file.txt

Let us first add another symbolic link using the -s option:

% ln -s a-file.txt Symbolicb-file.txt
% ls -F
./ ../ a-file.txt b-file.txt Symbolicb-file.txt@

A symbolic link, that ls -F displays with a @ symbol, has been added to the directory. Let us examine the contents of the file:

% cat Symbolicb-file.txt 
The file a-file.txt has been modified again!

If we change the file Symbolicb-file.txt, then the file a-file.txt is also modified.

% vi Symbolicb-file.txt
...
% cat Symbolicb-file.txt
The file a-file.txt has been modified a third time!
% cat a-file.txt
The file a-file.txt has been modified a third time!
% cat b-file.txt
The file a-file.txt has been modified a third time!
%

If we remove the file a-file.txt, we can no longer access the data through the symbolic link Symbolicb-file.txt:

% ls -F
./ ../ a-file.txt b-file.txt Symbolicb-file.txt@
% rm a-file.txt
rm: remove `a-file.txt'? y
% ls -F
./ ../ b-file.txt Symbolicb-file.txt@
% cat Symbolicb-file.txt
cat: Symbolicb-file.txt: No such file or directory

The link Symbolicb-file.txt contains the name a-file.txt, and there no longer is a file with that name. On the other hand, b-file.txt has its own pointer to the contents of the file we called a-file.txt, and hence we can still use it to access the data.

% cat b-file.txt
The file a-file.txt has been modified a third time!

Although it may seem like symbolic links are not particularly useful, hard links have their drawbacks. The most significant drawback is that hard links cannot be created to link a file from one file system to another file on another file system. A Unix file structure hierarchy can consist of several different file systems (possibly on several physical disks). Each file system maintains its own information regarding the internal structure of the system and the individual files on the system. Hard links only know this system-specific information, which make hard links unable to span file systems. Soft links, on the other hand, know the name of the file, which is more general, and are able to span file systems.

For a concrete analogy, suppose that our friend Joel User is a student at both UBC and SFU. Both universities assign him a student number. If he tries to use his UBC student number at SFU, he will not meet with any success. He will also fail if he tries to use his SFU student number at UBC. But if he uses his legal name, Joel User, he will probably be successful. The student numbers are system-specific (like hard links), while his legal name spans both of the systems (like soft links).

Here is an example that demonstrates a situation where a hard link cannot be used and a symbolic link is needed. Suppose that we try to create a hard link from the current working directory to the C header stdio.h.

% ln /usr/include/stdio.h stdio.h
ln: creating hard link `stdio.h' to `/usr/include/stdio.h': Invalid cross-device link
%

The ln command fails because stdio.h is stored on a different file system. If we want to create a link to it, we will have to use a symbolic link:

% ln -s /usr/include/stdio.h stdio.h
% ls -l
lrwxrwxrwx 1 a1a1 guest 20 Apr 20 11:58 stdio.h -> /usr/include/stdio.h
% ls
./ ../ stdio.h@
%

Now we can view the file stdio.h just as if it was located in the working directory. For example:

% cat stdio.h 
/* Copyright (c) 1988 AT&T */
/* All Rights Reserved */

/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
/* The copyright notice above does not evidence any */
/* actual or intended publication of such source code. */

/*
* User-visible pieces of the ANSI C standard I/O package.
*/

#ifndef _STDIO_H
#define _STDIO_H
...
%

The entire output of the cat command was not included to save space.

Note that the long listing (ls -l) of a soft link does not accurately reflect its associated permissions. To view the permissions of the file or directory that the symbolic link references, the -L options of the ls command can be used. For example:

% ln -s /usr/include/stdio.h stdio.h

% ls -l stdio.h
lrwxrwxrwx 1 a1a1 undergrad 20 May 10 15:13 stdio.h -> /usr/include/stdio.h

% ls -l /usr/include/stdio.h
-rw-r--r-- 1 root bin 11066 Jan 5 2000 /usr/include/stdio.h

% ls -lL stdio.h
-rw-r--r-- 1 root bin 11066 Jan 5 2000 stdio.h

posted @ 2010-12-22 16:12 meglory 閱讀(383) | 評論 (0)編輯 收藏

posted @ 2010-12-22 09:49 meglory 閱讀(251) | 評論 (0)編輯 收藏
Vimperator是一個Firefox的插件。Firefox的好處自然就不用多說了,自從我習(xí)慣了Firefox的世界以后,IE對于我來說已經(jīng)變得不可接受了。作為一個比較喜歡簡潔的人,我把Firefox沒有用的按鈕和菜單都去掉了,從而可以最大程度的利用瀏覽空間。而Vimperator的出現(xiàn),讓我感覺到作為一個Firefox用戶的真正好日子來了。

Vimperator能夠把雜七雜八的地址欄收藏欄菜單欄通通隱藏掉(可以通過配置文件調(diào)出來),只是在瀏覽器下方多出現(xiàn)了一個狀態(tài)欄。Vimperator的設(shè)計靈感來源于Vim,是一幫熱愛Vim的人希望能夠把Vim的強(qiáng)大功能移植到Firefox上面。Vim用戶可以迅速上手,因為許多命令都是跟vim類似。

當(dāng)然最吸引我的是,Vimperator可以讓你真正做到雙手不離開鍵盤瀏覽網(wǎng)頁。

想要打開網(wǎng)頁鏈接而不用鼠標(biāo)去點擊?只要一個F鍵就搞定了。

想要打開一個新的網(wǎng)頁而不用先定位到地址輸入框?一個T鍵就搞定了。

裝了插件以后想要重啟?輸入:res就ok了。想要關(guān)閉FF?:q就搞定了。

最最致命的是,想我這種長期瀏覽論壇的人來說,翻頁瀏覽是最煩躁的事情了,在Vimperator下面如何做到翻頁?翻到下頁,點擊]]就搞定了,返回上頁呢?當(dāng)然[[了啊。

這樣一來,我感到我瀏覽網(wǎng)頁的速度明顯提升了,因為我的雙手都在鍵盤上面操作,打過魔獸的童鞋都知道,為什么大家都要快捷鍵呢?因為敲擊鍵盤的比點擊鼠標(biāo)的要快出許多許多,Moon大神可以在暗夜精靈的主基地內(nèi)實現(xiàn)完全的鍵盤操作不用鼠標(biāo)點擊。而我等小羅羅如何向大神們看齊呢?簡單,裝上Vimperator開始你的APM之旅唄。


注:如果想要了解細(xì)節(jié),可以參照這篇文章:http://pchu.blogbus.com/logs/32923406.html
posted @ 2010-12-20 23:13 meglory 閱讀(1930) | 評論 (5)編輯 收藏
推薦一篇很好的文章。
http://forum.ubuntu.org.cn/viewtopic.php?f=65&t=125393&sid=9c593e4e65f4b7e560648c827f97a5ff

以前用Vmware在Windows里面虛擬linux的時候訪問分區(qū)非常方便。現(xiàn)在是在linux里面虛擬了win出來,并且工具變成了virtualbox,麻煩一下子很多,這篇文章完全解決了自己的問題。

posted @ 2010-08-08 00:50 meglory 閱讀(365) | 評論 (0)編輯 收藏
出來混,總是要還。
Linux的命令沒有學(xué)好,今天被問倒了。

查看目錄的大小。

NAME

du - estimate file space usage

SYNOPSIS

du [OPTION]... [FILE]...

EXAMPLES

DESCRIPTION

Summarize disk usage of each FILE, recursively for directories.

Mandatory arguments to long options are mandatory for short options too.

-a, --all
write counts for all files, not just directories
-B, --block-size=SIZE use SIZE-byte blocks
-b, --bytes
print size in bytes
-c, --total
produce a grand total
-D, --dereference-args
dereference FILEs that are symbolic links
-h, --human-readable
print sizes in human readable format (e.g., 1K 234M 2G)
-H, --si
likewise, but use powers of 1000 not 1024
-k
like --block-size=1K
-l, --count-links
count sizes many times if hard linked
-L, --dereference
dereference all symbolic links
-S, --separate-dirs
do not include size of subdirectories
-s, --summarize
display only a total for each argument
-x, --one-file-system
skip directories on different filesystems
-X FILE, --exclude-from=FILE
Exclude files that match any pattern in FILE.
--exclude=PATTERN Exclude files that match PATTERN.
--max-depth=N
print the total for a directory (or file, with --all) only if it is N or fewer levels below the command line argument; --max-depth=0 is the same as --summarize
--help
display this help and exit
--version
output version information and exit


posted @ 2010-08-06 23:33 meglory 閱讀(184) | 評論 (0)編輯 收藏

 1.打開Chrome瀏覽器。選項->高級設(shè)置->(往下面拖一下)網(wǎng)頁內(nèi)容->更改字體和語言設(shè)置

 2.將Serif字體修改成 Sans 16,Sans-Serif字體修改成 Sans 16,寬度固定字體:修改成Monospace 13 ;


posted @ 2010-08-03 22:17 meglory 閱讀(364) | 評論 (0)編輯 收藏
有一句話觸動很大。永遠(yuǎn)年輕,永遠(yuǎn)熱淚盈眶


posted @ 2010-07-19 22:45 meglory 閱讀(162) | 評論 (0)編輯 收藏
僅列出標(biāo)題
共5頁: 1 2 3 4 5 

導(dǎo)航

隨筆分類

隨筆檔案

最新評論

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            日韩亚洲精品在线| 亚洲综合色在线| 久久精品免费看| 亚洲字幕一区二区| 亚洲一区二区成人| 亚洲免费视频中文字幕| 亚洲午夜激情在线| 亚洲在线观看视频| 性8sex亚洲区入口| 久久久久高清| 欧美夫妇交换俱乐部在线观看| 老司机免费视频久久| 亚洲激情网站免费观看| 久久久久久久久蜜桃| 久久久中精品2020中文| 欧美freesex8一10精品| 欧美高清视频在线 | 亚洲日本aⅴ片在线观看香蕉| 亚洲大片在线观看| 99国产精品视频免费观看一公开| 日韩一二三区视频| 久久国产精品久久久久久| 久热综合在线亚洲精品| 亚洲狠狠婷婷| 亚洲国产欧美在线| 亚洲欧美国产视频| 美女日韩欧美| 国产伦理一区| 日韩视频在线观看免费| 久久精品91| 一区二区毛片| 免费不卡在线视频| 国产精品中文在线| 一本到12不卡视频在线dvd| 久久久久国产精品人| 亚洲精品国产精品国自产观看| 欧美亚洲免费在线| 欧美日韩一区在线播放| 在线观看视频免费一区二区三区 | 欧美日韩免费| 亚洲高清资源| 久久国产乱子精品免费女| 亚洲日本免费| 久久精品在线播放| 国产精品一区二区视频| 日韩视频免费看| 欧美91福利在线观看| 亚洲一卡久久| 欧美视频一区二区在线观看| 亚洲国产高清一区二区三区| 久久av一区二区三区| 一区二区三区欧美在线| 欧美大片免费| 亚洲国产日韩欧美| 欧美+日本+国产+在线a∨观看| 亚洲午夜在线| 国产精品成人播放| 一区二区三区欧美成人| 91久久久国产精品| 欧美~级网站不卡| 在线精品亚洲| 蜜臀av一级做a爰片久久| 先锋影音国产一区| 国产日韩在线一区二区三区| 亚洲欧美精品中文字幕在线| 日韩亚洲在线观看| 欧美第十八页| 亚洲精品一区二区三区av| 久久久亚洲午夜电影| 国产一区二区三区av电影| 欧美伊久线香蕉线新在线| 亚洲午夜视频在线观看| 国产伦精品一区二区三区在线观看 | 亚洲国产成人在线播放| 久久在线免费| 亚洲日韩欧美视频一区| 欧美成人免费va影院高清| 老司机一区二区| 亚洲免费观看视频| 一本色道久久综合精品竹菊 | 亚洲娇小video精品| 亚洲黑丝在线| 国产精品qvod| 欧美中文在线视频| 久久国产日韩| 亚洲国内自拍| 99视频一区二区三区| 国产精品入口麻豆原神| 久久国产精品色婷婷| 久久久.com| 日韩小视频在线观看专区| 一区二区三区欧美在线| 国产一区二区日韩精品| 欧美激情免费观看| 国产精品v欧美精品v日韩精品| 欧美一区二区三区免费在线看| 欧美中文字幕久久| 亚洲日本中文字幕区| 亚洲永久在线观看| 亚洲动漫精品| 亚洲午夜小视频| 亚洲国产综合91精品麻豆| 一本色道久久综合狠狠躁篇的优点| 国产日韩一区二区三区在线播放| 亚洲第一黄网| 国产欧美精品一区二区色综合| 女女同性女同一区二区三区91| 欧美日本国产| 久久综合伊人77777蜜臀| 欧美日韩一区在线视频| 欧美777四色影视在线| 国产精品一香蕉国产线看观看| 欧美电影在线播放| 国产日本欧美一区二区三区| 亚洲成人在线免费| 欧美成人视屏| 国产精品综合| 亚洲激情电影中文字幕| 禁久久精品乱码| 欧美日韩视频在线一区二区观看视频| 中文在线资源观看网站视频免费不卡 | 国产亚洲精品bt天堂精选| 亚洲欧洲免费视频| 国外成人在线视频| 亚洲自拍三区| 亚洲永久在线观看| 欧美金8天国| 欧美成人中文字幕| 国外成人在线| 欧美影院午夜播放| 午夜日韩视频| 欧美激情网站在线观看| 狂野欧美激情性xxxx| 国产精品久久久免费| 亚洲美洲欧洲综合国产一区| 亚洲大片av| 蜜桃久久av一区| 欧美激情第三页| 亚洲黄一区二区三区| 玖玖精品视频| 欧美成人在线免费观看| 在线看一区二区| 久久精品一区二区三区不卡牛牛| 久久久99国产精品免费| 国产日韩一区在线| 久久精品视频在线| 免费观看30秒视频久久| 亚洲国产成人av| 免费在线观看一区二区| 欧美国产日韩在线| 亚洲欧洲精品一区二区三区不卡 | 久久久久久久高潮| 国产一区二区三区高清 | 欧美日韩视频在线一区二区| 最新成人在线| 亚洲永久免费av| 国产偷国产偷亚洲高清97cao| 日韩一级欧洲| 在线成人免费观看| 欧美a一区二区| 日韩午夜av电影| 午夜免费在线观看精品视频| 国产亚洲aⅴaaaaaa毛片| 欧美专区在线| 亚洲国产精品精华液2区45| 亚洲精品看片| 欧美视频三区在线播放| 一区二区三区精品国产| 欧美伊人久久大香线蕉综合69| 国产日韩欧美麻豆| 欧美成人精品h版在线观看| 亚洲精品韩国| 久久国产毛片| 亚洲最新在线视频| 欧美 日韩 国产一区二区在线视频| 国产精品日韩欧美一区二区| 午夜一区二区三区在线观看| 久久在线免费观看| 99ri日韩精品视频| 国产亚洲精品美女| 欧美激情一二区| 午夜精品福利一区二区蜜股av| 欧美不卡激情三级在线观看| 中文av一区特黄| 影音先锋亚洲视频| 欧美午夜精品久久久| 久久手机精品视频| 亚洲无亚洲人成网站77777| 免费h精品视频在线播放| 中文在线一区| 亚洲欧洲日本专区| 国产一区三区三区| 欧美香蕉视频| 欧美成人精品激情在线观看| 性视频1819p久久| 99精品视频免费全部在线| 麻豆成人综合网| 久久狠狠亚洲综合| 亚洲欧美韩国| 99视频有精品|