Direkt zum Hauptbereich

Posts

Custom error page 404 @ stackoverflow

:D

open7x0client - the last

ClickOnce deployment is crapy! too sad that ms dropped the setup projekt type. whatever...: here is the latest and probably last version of my open7x0client. Major updates: MP4 target format - looks great on my android MP4 Tags are now written (filled with EPG Infos from vdr.info ) Batch encoding of multiple selected recordings - aim and forget ;) More guifeedback while indexing the box (still a hack) download it from here: http://seeland.biz/blog/m740/open7x0OneClickDeployment/publish.htm

Debian - Find diskeating directories

the disk of my vps is running out of space i had no idea what was the cause http://wiki.debian.org/FreeSpace gave me the hint to use ncdu. it was dead easy to find out a directory is using quite the half space i have in my vps. ncdu is great! thanks to Yoran Heling. by the way... the disk was filled by the podcatcher. i forgot podget which harvested some podcasts since 2010 ... i wrote about it http://debianisttoll.blogspot.com/2010/06/castget-podget-podcatcher-usable-with.html . podget is great.

Exclude mediafiles (pics, mp3, ...) from your stock player or galary - Samsung Galaxy *

If use some apps which create mediafiles which appear after some time in the mp3 player.... and just hitting play all stopped to make fun because it also plays non-music-mp3s... Solution - Exclude Directories from Media Scanner: Create in every Directory which you want to exclude a file with the name .nomedia . You can use something like es explorer to do that. or you can use http://market.android.com/details?id=ch.droida.nomedia after that you have to restart your phone to get your change recognized by your system (media scan should run on startup) in my case i had to clear the data of the application media storage: Go to settings. Click All Applications tab. Click Media Storage. Click Clear Data. Click OK.

Google 404 Custom Errorpage

pdf to dxf

if you get a cad plan in pdf format you have a problem: Pdf can not be loaded in most cad programs. I used pstoedit to solve this problem. Pstoedit is a free tool to convert pdfs to dxf. What you have to do: Install pstoedit Install ghostscript shot at your pdfs: pstoedit.exe <pdfSource> <dxfOutput> -f dxf thanks to the author of pstoedit! Here is the pstoedit.exe -help output: No output format specified (-f option) and format could not be uniquely deduced from suffix .dxf of output file Available formats :     psf:            .fps:    Flattened PostScript (no curves)     (built-in) -------------------------------------------     ps:            .spsc:    Simplified PostScript with curves     (built-in) -------------------------------------------     debug:         ...

Create Mp4 with C#

I found a way to encode to mp4 and h264 with mencodersharp. Videoparameter: -vf dsize=16/9,scale=-10:-1,harddup -of lavf -lavfopts format=mp4 -ovc x264 -sws 9 -x264encopts nocabac:level_idc=30:bframes=0:bitrate=512:threads=auto:turbo=1:global_header:threads=auto Audioparameter: -oac faac -faacopts mpeg=4:object=2:raw:br=128 This worked with an mpeg2ps stream as source. See http://code.google.com/p/mencoder-sharp for mencodersharp