maugustyniak

My work and projects

Gentoo SysCP Installation – fcgid and suexec

July 2nd, 2010 by misiek

The goal is to install syscp and run share hosting on fcgid and suexec. This article will be recently updated 1. Emerge syscp from my overlay http://www.maugustyniak.com/2010/07/02/my-gentoo-overlay-misiek303/ . The ebuild for the last 1.4.2.2 version Add the package to package.keywords echo ‘www-apps/syscp’ >> /etc/portage/package.keywords Add below flags to /etc/portage/package/use mail-mta/postfix sasl dev-lang/php bcmath ctype filter [...]

My Gentoo Overlay – misiek303

July 2nd, 2010 by misiek

First emerge layman emerge layman Some tips for configurations are here http://en.gentoo-wiki.com/wiki/Overlay then install my my overlay layman -f -o http://overlays.maugustyniak.com/misiek303.xml -a misiek303 Currently packages are: * sys-apps/tpcfan * net-misc/acstatus * gnome-extra/talika * gnome-extra/mumbles * www-apps/syscp

tpcfan

June 4th, 2010 by misiek

ThinkPad Controlling Fan. I wrote this package for my business laptop Lenovo t61p which gets very hut more then usual. I did a lot of research on this subject. T61p has some issues with the fan speed and critical temperature. Critical temperature is set to 125 degrees which is a way too much. When I [...]

Billing Module

June 3rd, 2010 by misiek

I’d like to introduce the activeCollab Billing Module written by me which allows you to track the billing time for tickets, tasks and milestones and move them to Qickbooks. http://activecollab.realnets.com/

misiek-paypal

June 3rd, 2010 by misiek

http://wordpress.org/extend/plugins/misiek-paypal/

misiek-photo-album

June 3rd, 2010 by misiek

http://wordpress.org/extend/plugins/misiek-photo-album/

misiek-page-category

June 3rd, 2010 by misiek

http://wordpress.org/extend/plugins/misiek-page-category/

activeCollab Status application

June 2nd, 2010 by misiek

acstatus is app to display notificaitons from activeCollab status plugin. I wrote this app to personal usage but its pretty cool and worth to share. Written in C++ and requires QT libraries. Application runs as systray process, (below image icons, second from the right) Right click on the icon will give you Preferences Dialog with [...]

Rails Thinking Sphinx and Gentoo Sphinx engine

June 2nd, 2010 by misiek

First emerge sphinx gentoo package emerge app-misc/sphinx Then thinking-sphinx from http://gemcutter.org gem install thinking-sphinx –source http://gemcutter.org Install necessary gems gem install bluecloth cucumber yard jeweler rspec Install plugin to your rails app script/plugin install git://github.com/freelancing-god/thinking-sphinx.git and you are set at this point Follow http://freelancing-god.github.com/ts/en/ site to find more info about indexing and searching

Feed on Rails

June 2nd, 2010 by misiek

View Feed Rss on your site Install the plugin from my svn repository. script/plugin install http://svn.maugustyniak.com/plugins/rails/feed Create public/feeds folder and make it writable Add column to your table def self.up add_column :table :feed_url, :string end Next in model add has_feed, this association has default options, but :as is required. The line below means associate my [...]