flake – Alternative Free Lossless Audio Codec encoder.
http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec
http://flac.sourceforge.net/
WinDbg.1
Debugging a pidgin session using WinDbg. Register watch.
The value of typical registers can be altered.
http://en.wikipedia.org/wiki/Processor_register
The fc command lists, edits, or re-executes commands previously entered to a shell
fc is used to list or edit and re-execute commands from the history list. FIRST and LAST can be numbers specifying the range, or FIRST can be a string, which means the most recent command beginning with that string. $fc -l 2048 git commit -am "work" 2049 git push -u origin master 2050 ls 2051 ps x 2052 ls 2053 git push -u upstream master 2054 ls 2055 git add 26-Phone.png 2056 git commit -am "work" 2057 git push -u upstream master 2058 git push -u origin master 2059 ls 2060 man fc 2061 ls 2062 man fc 2063 ls $fc -e - ls ls 10-Speakers.png 19-Point.png 3.png circle 11-Keyboard.png 20-Line.png 4-Cycle.png ellipse 12-HappyBirthday.png 21-Game-related.png 5-Scooter.png hello-web.pde 13-post-work-using-processing.js.png 22-Game-related-color-change.png 6-House.png line 14-Ellipse.png 23-Battery.png 7-Hat.png point 15-Ellipse.png 24-Glass.png 8-Bat-and-Ball.png quad 16-Ellipse.png 25-Toothpick-related.png 9-Christmas.png rectangle 17-Ellipse.png 26-Phone.png arc triangle 18-Circle.png 2.png array.pde $
fc
Compares two files and displays the differences between them.
http://en.wikipedia.org/wiki/File_comparison
install.3 [ reading code ]
For no king has any different origin or birth,
but one is the entry into life for all; and in one same way they leave it.
Wisdom 7:5-6
#define PROGRAM_NAME "install"
Proposition.
the value of PROGRAM_NAME is install
chdir
Displays the name of the current directory or changes the current folder.
http://filext.com/faq/directory_folder_definition.php
kill
kill – send a signal to a process
http://www.linuxjournal.com/node/1332/print
readings.2
History of mathematical logic.
http://www.math.uwaterloo.ca/~snburris/htdocs/history.html
part of original file [ stat.c ]
/* stat.c -- display file or file system status
Copyright (C) 2001-2009 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
Written by Michael Meskes. */
/* Temporary hack to match original output until conditional
implemented. */
if (S_ISBLK (statbuf.st_mode) || S_ISCHR (statbuf.st_mode))
{
format =
" File: %N\n"
" Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n"
"Device: %Dh/%dd\tInode: %-10i Links: %-5h"
" Device type: %t,%T\n"
"Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n"
"Access: %x\n" "Modify: %y\n" "Change: %z\n";
}
else
{
format =
" File: %N\n"
" Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n"
"Device: %Dh/%dd\tInode: %-10i Links: %h\n"
"Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n"
"Access: %x\n" "Modify: %y\n" "Change: %z\n";
}
host
DNS lookup utility
http://linux.die.net/man/1/host




