好物!
列印, 複製的限制都可以解開.
http://freemypdf.com/
bamil 發表在 痞客邦 留言(0) 人氣(969)
在cmd下執行
dir /b > filelist.txt
dir /b /s > filelist.txt
bamil 發表在 痞客邦 留言(0) 人氣(550)
Problematic code:
int *A;
int B[5];
A = &B;
bamil 發表在 痞客邦 留言(0) 人氣(313)
bamil 發表在 痞客邦 留言(0) 人氣(12)
http://www.mathsisfun.com/binary-decimal-hexadecimal-converter.html
bamil 發表在 痞客邦 留言(0) 人氣(81)
| Code | Meaning | Description |
|---|
? |
what? |
It's not a file in CVS. CVS knows nothing about this file |
A |
Added |
This is a file you just added to CVS but not yet committed. You have to commit it before others can see it. |
C |
Conflicted |
A Conflict occurred when you did CVS update. The conflicted lines are marked with special characters and you need to manually resolve the conflicts. |
M |
Modified |
You have modified this file. It's different from what's in CVS and you need to commit (check in) the file to persist your changes in CVS |
P |
Patched |
This file was patched when you did CVS update. The effect is the same as U (update), but the changes were so small that CVS decided to send a patch (P) instead of a whole file (U). |
U |
Updated |
This file was updated when you ran CVS update. It could be a file that already existed on the local drive, or a new file brought down from the CVS repository. |
R |
Removed |
You asked CVS to remove this file but you haven't committed the removal. |
bamil 發表在 痞客邦 留言(0) 人氣(35)
Error Message:
AABBCC.o: In function `XXYYZZ':
AABBCC.c:(.text+0x6e): relocation truncated to fit: R_X86_64_PC32 against symbol `XD' defined in COMMON section in DDEEFF.o
bamil 發表在 痞客邦 留言(0) 人氣(152)
bamil 發表在 痞客邦 留言(0) 人氣(5)
Using markers and buffers
| Command | Description |
|---|
mf |
set marker named ``f'' |
`f |
go to marker ``f'' |
´f |
go to start of line containing marker ``f'' |
"s12yy |
copy 12 lines into buffer ``s'' |
"ty} |
copy text from cursor to end of paragraph into buffer ``t'' |
"ly1G |
copy text from cursor to top of file into buffer ``l'' |
"kd`f |
cut text from cursor up to marker ``f'' into buffer ``k'' |
"kp |
paste buffer ``k'' into text |
bamil 發表在 痞客邦 留言(0) 人氣(35)
ma : set a marker at cursor position
`a : move from here to marker a
'a : move from here to line marked a
bamil 發表在 痞客邦 留言(0) 人氣(16)