Best Wikipedia hack ever!
Lookie! Lookie! I figured out a hack to make the donation bar on wikipedia go up!
…
Just donate some fucking money. You tards.
I guess this means I am not buying Mirror’s Edge and Armored Core For Answers any time soon.
Work the leavers or get ground up by the gears
{ Monthly Archives }
Lookie! Lookie! I figured out a hack to make the donation bar on wikipedia go up!
…
Just donate some fucking money. You tards.
I guess this means I am not buying Mirror’s Edge and Armored Core For Answers any time soon.
I made a new Shrip package. This is for the new 0.5 release.
http://workhorsy.org/junk/shrip_0.5.0-1_i386.deb
Source packages:
http://workhorsy.org/junk/shrip_0.5.0-1.diff.gz
http://workhorsy.org/junk/shrip_0.5.0-1.dsc
http://workhorsy.org/junk/shrip_0.5.0.orig.tar.gz
Updated:
Here is how to use shrip:
For example to encode episode 1 of Jericho from a DVD ISO to a matroska container with h.264 video and aac audio at 720×480, you would do this:
shrip encode --device=/media/archive2/JERICHO_S1_AC_D1.iso --title=3 --chapters=1-9 --audio=1 --scale=720:480 --crop=0:0:720:480 --container=mkv --video-codec=x264 --video-quality=extreme --audio-quality=10 --passes=1 --audio-codec=aac --normalize --ensure-sync --threads=2 /home/matt/Desktop/jericho_ep_1.mkv
You should be able to just change some of the parameters in the above example.

Lately I’ve been researching how to create Ubuntu packages. For those that don’t know, packages are the Linux way of installing and managing software. Think Windows Update, but for all software on your computer. There are a few differences though: Each package will specify what versions of other packages it requires. This makes it trivial to see if a newer version of some library will break any software on your system. And since everything on your system is managed by one repository, you usually don’t have to worry about each program installing another copy of the same library. This happens on Windows a lot. When you install a game, it tends to install its own private version of DirectX.
The only down side to packaging, is that it takes a few hours to awkwardly walk through making your first package, and many more to properly package more complex programs.
I decided to start by packaging shrip. It is the command-line sister program of ogmrip. It makes it easy to encode DVDs into other containers and formats such as AVI, MPEG, OGG, MKV, et cetera.
I decided on it because, it is a smallish, stand-alone program, which would be much easier than packaging something that is in pieces, like open office. I also wanted to use it for a project I am working on called Ripspread.
I first started learning about packaging by reading the official Complete Ubuntu Packaging Guide. This did not turn out well, as the guide goes off on tangents, and those tangets go off on tangents, and somehow we would end up moving onto the next step, without me understanding which part was actually performed. I muddled through anyway and built the example package. Then I did it again. And again. Even after that I did not retain much of the process.
Then those smarties at ubuntu decided to make a screencast packaging guide. But instead of explaining every possible way of doing it, they focused on how they would do it in real life. And it was nice.
Since then I have been able to package shrip and a few other things. Generally my packages work. But there are some things I have not yet figured out. I want to list them here, so I can refer to them as I continue my research:
I hope to figure out these issues, and make some good packages that make it into ubuntu some day.