admin

http://www.opennet.ru/base/net/bind_cache_dns.txt.html

libcurl:

http://curl.haxx.se/libcurl/c/curl_easy_setopt.html

http://curl.haxx.se/libcurl/c/example.html

http://curl.haxx.se/libcurl/c/libcurl-errors.html

multi fork and thread

http://pubs.opengroup.org/onlinepubs/009695399/functions/exec.html

http://www.enderunix.org/docs/eng/daemon.php

http://www.yolinux.com/TUTORIALS/LinuxTutorialPosixThreads.html

http://www.yolinux.com/TUTORIALS/ForkExecProcesses.html

http://osix.net/modules/article/?id=641

http://www.utdallas.edu/~kcooper/teaching/5375/fall08/Tutorial8/tutorial8.htm

http://uw714doc.sco.com/en/SDK_sysprog/_Process_Creation_-_fork.html

wxwidgets

http://www.wxwidgets.org/docs/tutorials/hello.htm

http://zetcode.com/tutorials/wxwidgetstutorial/

http://sourceforge.net/apps/mediawiki/wxformbuilder/index.php?title=Tutorials:WhyCantIEditTheGeneratedCode

https://sourceforge.net/apps/mediawiki/wxformbuilder/index.php?title=Tutorials:UsingWxFormBuilder

http://www.wxwidgets.org/docs/book/index.htm

http://docs.wxwidgets.org/2.8/wx_contents.html

configure:

http://wiki.foresightlinux.org/wiki/pages/viewpage.action?pageId=11240233

compiling

http://gcc.gnu.org/ml/gcc-help/2005-03/msg00152.html

http://www.wikihow.com/Compile-a-C-Program-Using-the-GNU-Compiler-(GCC)

http://www.network-theory.co.uk/docs/gccintro/gccintro_11.html

http://www.delorie.com/djgpp/doc/ug/larger/multisrc.html

http://www.metalshell.com/view/tutorial/120/

http://www.cs.duke.edu/~ola/courses/programming/libraries.html

http://www.crasseux.com/books/ctutorial/Compiling-multiple-files.html

library

http://www.cplusplus.com/reference/clibrary/cstdio/

file formats:

http://www.fastgraph.com/help/avi_header_format.html

http://en.wikipedia.org/wiki/List_of_file_signatures

http://en.wikipedia.org/wiki/List_of_file_formats#Video

http://stackoverflow.com/questions/497681/using-mplayer-to-determine-length-of-audio-video-file

http://dranger.com/ffmpeg/tutorial01.html

http://videotranscoding.wikispaces.com/GetVideoMetadata

http://mediainfo.sourceforge.net/ru

http://en.wikipedia.org/wiki/Libavcodec

playing video:

http://www.webupd8.org/2010/10/use-mplayer-with-vaapi-support-hardware.html


Windows Power Shell

calc size:

foreach ($d in gci -Directory -Force) {

'{0:N0}' -f ((gci $d -File -Recurse -Force | measure length -sum).sum/1Gb )+ " Gb" + "`t`t$d"

}


calc files:

foreach ($d in gci -Directory -Force) {

'{0:N0}' -f ((gci $d -File -Recurse -Force ).Count )+ " Tracks"+ "`t`t$d"

}