Showing posts with label HowTo. Show all posts
Showing posts with label HowTo. Show all posts

Thursday, August 20, 2009

hpodder

I wanted to post here about the podcast catching client that I use. First of all I am a banshee user and my mp3 player is an iRiver E100, which I love, but will hopefully go over that another time. My iRiver only has 4GB of storage and a microSD slot, but the two are treated seperately by the iRiver. So I do not have enough storage on my mp3 player to just sync up all of my music. I had was finding it difficult to keep my podcasts and music seperate in Banshee, so I just decided to have another program manage my podcasts, enter hpodder. I am not a command line guy by any means. I have a GUI and like using it, but I am not afraid of the terminal. So when I found hpodder I decided to give it a try and it works great. After installing if you go to a terminal and type

hpodder
it will update all of your podcasts. To add podcasts you find out the feed address and type in
hpodder add [url]
you can also tell it to only get a certain number of the most recent podcasts, you can only update certain podcasts. There are a good number of simple commands that give good functionality to the program, if you ever forget what the commands are typing
hpodder lscommands
will show you all of the commands. I think hpodder is in the debian repos, it can be installed by typing
sudo apt-get install hpodder


Give hpodder a try if you are in need of a podcatcher it is simple and very fast.

Thanks and God Bless,
Aaron

Tuesday, June 2, 2009

Network Manager Shared Internet Connection

Ok so I have been wanting to do this for a while and I finally found a site that had easy directions to create a shared internet connection using your wireless card.
http://bigbrovar.wordpress.com/2009/01/17/share-you-internet-wirelessly-on-ubuntu/

all the info I got came from this site but I wanted to share it here also.
1. install dnsmasq-base on an ubuntu based system.
This can be done by typing sudo apt-get install dnsmasq-base
2. make sure your computer is plugged into the internet
3. click on the network manager icon in your system tray and then click Create New Wireless Network...

4.Create whatever ssid you want and if you want security enable.

That was it for me. I was then able to get on another system and connect then browse.

Thanks and God bless,
Aaron

Monday, June 9, 2008

Facebook Chat


So for all you Facebook people out there as you probably know they just added a chat feature to the site. Well my only complaint is that you can not yet connect to this network except signed in through the site. Well I found a way around this. I found a windows program called Bubbles. It is kind of like Prism that google recently released except I found it a little easier. It just runs a webpage as if it was a desktop application. I have not tried to see if this will run under wine, but it seems to be using IE6 to render the web pages even though it is not my default browser, so it may need IE6 installed under wine to run properly.

thanks and God Bless
Aaron

Friday, April 4, 2008

Facebook and Picasa

So I use Picasa from Google as my photo manager. I wanted to add a Facebook button to Picasa. Facebook has a button that does this for you at http://apps.facebook.com/picasauploader/. This however did not work for me because my Firefox did not have a protocol for Picasa ( in other words the link says picasa://... which Firefox had no idea how to handle). I tried to add the protocol manually but was having no luck. So here is how I added the button without the install script. This worked on Windows for me but should work within any operating system.

Go to your Picasa folder. For me this was c:/Program Files/Picasa2. Then go to the buttons folder. Open up a text editor, ie notepad. Paste this code inside of the file.

<?xml version="1.0" encoding="utf-8" ?><buttons format="1" version="1">
<button id="custombutton/facebookupload" type="dynamic">
<icon name="outputlayout/poster_icon" src="runtime"/>
<label>Facebook</label>
<tooltip>Upload photos to Facebook</tooltip>
<action verb="hybrid">
<param name="url" value="http://webkinesis.com/fbpicasa/picasa-post.do"/>
</action>
</button>
</buttons>


I got this code from http://www.webkinesis.com/fbpicasa/facebook.pbf and take no credit for it at all. Save this file as facebook.pbf. Restart or open Picasa.

Hope this helps anyone having problems.

Thanks an God bless,
Aaron