ProxyCap is an excellent lightweight application to manage various application on windows, windows mobile or mac computers to a proxy server with SOCKS4/5 or HTTPS access.
It's not that expensive and does the job good. It has options for exe-file, ports, ip-destination, host-name, transport protocol (TCP/UDP), windows authentication and more.
If you have specific application that should use a proxy connection or if all applications should use a proxy connection with some application exceptions this could be a nice tool to solve it.
Of cause you need a proxy server service, or you could use it to route some application away from your mandatory proxy.
http://www.proxycap.com/
Wednesday, December 22, 2010
Tuesday, December 7, 2010
Export Messages from Windows Live Mail (WLM) to Outlook
Open Windows Live Mail.
Select File.
Go to Export and select Accounts.
Under format select "Microsoft Exchange". Despite the name not saying so, it also works for transfering to Outlook.
Click Next.
Select the folders you want copy to Outlook and click Ok.
Finish the wizard and the mail should be in Outlook.
Select File.
Go to Export and select Accounts.
Under format select "Microsoft Exchange". Despite the name not saying so, it also works for transfering to Outlook.
Click Next.
Select the folders you want copy to Outlook and click Ok.
Finish the wizard and the mail should be in Outlook.
How to get 25 GB on a free network drive in the cloud
http://www.nirmaltv.com/2010/02/02/how-to-map-skydrive-as-network-drive-in-windows/
It's a bit slow and file limit is 50 MB :( but hey it's free and 25GB.
I use the free version of Gladinet to mount several cloud services as disk drives in windows.
http://gladinet.com/
I only use it for pictures and documents because of the file size limit, but its fine when it is set up.
If you like to break the 50MB limit Gladinet has a paid version which can split files larger than 50MB and merge them again automatically.
It's a bit slow and file limit is 50 MB :( but hey it's free and 25GB.
I use the free version of Gladinet to mount several cloud services as disk drives in windows.
http://gladinet.com/
I only use it for pictures and documents because of the file size limit, but its fine when it is set up.
If you like to break the 50MB limit Gladinet has a paid version which can split files larger than 50MB and merge them again automatically.
Listen to Pandora outside US in Chrome Browser
I will take no response ability for breaking any terms of use or any other licensing!
First you need a US Proxy address, this you can buy a subscription for or pick a free web proxy from this list:
http://www.hidemyass.com/proxy-list/search-62
Of cause you can use any proxy you want, it just have to change the IP-address to a US address.
After you have found a proxy server/port you should install a proxy manager. This could be a Chrome Extension like Proxy Switchy!
Other browsers like Firefox does have similar Plug-ins.
Proxy Switchy! can be set up to automatic switch to a specific proxy server on specific URL's like this:
This should be saved along with the proxy profile where the IP-address and port should be.
Now just navigate to www.pandora.com and you should be good to go, but check the terms of use before initiating.
First you need a US Proxy address, this you can buy a subscription for or pick a free web proxy from this list:
http://www.hidemyass.com/proxy-list/search-62
Of cause you can use any proxy you want, it just have to change the IP-address to a US address.
After you have found a proxy server/port you should install a proxy manager. This could be a Chrome Extension like Proxy Switchy!
Other browsers like Firefox does have similar Plug-ins.
Proxy Switchy! can be set up to automatic switch to a specific proxy server on specific URL's like this:
This should be saved along with the proxy profile where the IP-address and port should be.
Now just navigate to www.pandora.com and you should be good to go, but check the terms of use before initiating.
Tuesday, August 24, 2010
Prevent automatic window focus change in Windows 7
Open the regestry editor (regedit.exe)
Set the registry value to this:
[HKEY_CURRENT_USER\ControlPanel\Desktop]
ForegroundLockTimeout = 0
and reboot the system.
This also works in XP and Vista.
Set the registry value to this:
[HKEY_CURRENT_USER\ControlPanel\Desktop]
ForegroundLockTimeout = 0
and reboot the system.
This also works in XP and Vista.
Monday, May 10, 2010
Use a .NET Windows Form as a Console application also
Some times I want to command line my windows form applications and get the output from it direct to the command line. This is nice to have when I want to batch or run the program with-in another program.
I use it if I have some methods I want to use in both a Windows Form and command line application and I don't want to write separate applications or wrappers.
I don't want to make a Console application and start a Windows Form, because the console windows will always be visible. I want a Windows Form application to also work as a Console application with arguments and output.
To do this I had to use the kernel32.dll as shown below:
[DllImport("kernel32.dll", SetLastError = true)]
private static extern bool AttachConsole(int processId);
[ DllImport("kernel32.dll", SetLastError = true)]
private static extern bool ReleaseConsole();
DllImport namespace is System.Runtime.InteropServices
AttachConsole(int processID) takes the console process ID to which it will output to, -1 is current.
ReleaseConsole() releases the attached console.
Example:
[STAThread]
static void Main(string[] args)
I use it if I have some methods I want to use in both a Windows Form and command line application and I don't want to write separate applications or wrappers.
I don't want to make a Console application and start a Windows Form, because the console windows will always be visible. I want a Windows Form application to also work as a Console application with arguments and output.
To do this I had to use the kernel32.dll as shown below:
[DllImport("kernel32.dll", SetLastError = true)]
private static extern bool AttachConsole(int processId);
[ DllImport("kernel32.dll", SetLastError = true)]
private static extern bool ReleaseConsole();
DllImport namespace is System.Runtime.InteropServices
AttachConsole(int processID) takes the console process ID to which it will output to, -1 is current.
ReleaseConsole() releases the attached console.
Example:
[STAThread]
static void Main(string[] args)
{
try
{
if (args.Length == 0)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new WindowsTestForm(args));
}
else
{
AttachConsole(-1);
WindowsTestForm testForm= new WindowsTestForm (args);
}
}
catch (Exception)
{
}
finally
{
ReleaseConsole();
}
}
#region Use Console in Windows Forms
[DllImport("kernel32.dll", SetLastError = true)]
private static extern bool AttachConsole(int dwProcessId);
[DllImport("kernel32.dll", SetLastError = true)]
private static extern bool ReleaseConsole();
#endregion
Wednesday, May 5, 2010
drPodder Media Importer 0.3.1.0 released
Change log :0.3.1.0 (Beta)
-Fix database with Not existing album art on device
-Detect album art files on restore and clear in db if not existing (eg. restore on full erased USB partition)
-Clear downloaded flag if media files (episodes) are missing on device
-Clear downloaded and new flag if media files (episodes) are missing on device. Can be used if the restore (from eg. wobOS Internals Save/Restore
-Downloading files flaged as downloaded but does not exist on device if drPodder is capable of deleting (does not work if the download tickets in downloadhistory.db in webOS are erased eg. data erease, firmware flash I think).
download
Tuesday, March 30, 2010
show upcoming Google calender appointments on webOS
How to show upcoming Google calender appointments on the wallpaper on a webOS device:
Download the Ultimate Wallpaper app http://www.precentral.net/app-gallery/beta/ultimate-wallpaper
Get the URL of your Google calender as described in this link:
http://www.google.com/support/calendar/bin/answer.py?hl=en&answer=37648
It's a long URL, so you could send it to you email on the webOS device and copy it from there.
Open the Ultimate Wallpaper on the webOS device and set it up with News and paste the copied URL into the RSS feed in the app.
Now you got your calender in the wallpaper
Download the Ultimate Wallpaper app http://www.precentral.net/app-gallery/beta/ultimate-wallpaper
Get the URL of your Google calender as described in this link:
http://www.google.com/support/calendar/bin/answer.py?hl=en&answer=37648
It's a long URL, so you could send it to you email on the webOS device and copy it from there.
Open the Ultimate Wallpaper on the webOS device and set it up with News and paste the copied URL into the RSS feed in the app.
Now you got your calender in the wallpaper
Tuesday, March 16, 2010
drPodder media importer alpha released
Now I just released an alpha version of the drPodder media importer software
http://helioxware.wordpress.com/2010/03/15/drpodder-media-importer-alpha-release-0-1-3/
http://helioxware.wordpress.com/2010/03/15/drpodder-media-importer-alpha-release-0-1-3/
Subscribe to:
Posts (Atom)