Pages

Showing posts with label Software. Show all posts
Showing posts with label Software. Show all posts

Thursday, January 6, 2011

Good free screen capture software

This screen capture software is free and easy to use. It has many nice features like:

  • dual-monitor support
  • auto scroll
  • portable setup (no installation)
  • sound effects
  • various sharing tools

PicPick can also do a lot of other stuff regarding the screen capture production like:

  • image editing
  • magnifying
  • screen cross-hair and ruler
  • whiteboard feature
I really like this tool because it has most of the stuff I use when I make screen capturing. I can just save it to my USB stick and have it with me, include all my settings.

http://picpick.wiziple.net

Wednesday, January 5, 2011

Unlock files in Windows that is used by other processes

If you can't delete a file if some program is locking it, but you don't know which or do you get a message like this:
  • Cannot delete folder: It is being used by another person or program
  • Cannot delete file: Access is denied
  • There has been a sharing violation.
  • The source or destination file may be in use.
  • The file is in use by another program or user.
  • Make sure the disk is not full or write-protected and that the file is not currently in use.
, then these applications can help you.

I use both and they they do the job well.
Both runs on both 32 and 64 bits Windows.

LockHunter:
http://lockhunter.com/

Unlocker:
http://www.filehippo.com/download_unlocker/

Wednesday, December 22, 2010

Proxy setting for each application even if it doesn't support it

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/

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.

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.

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.

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.

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)

{
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

Wednesday, October 14, 2009

Should Computer Games Adapt To the Way You Play?

Source:    http://games.slashdot.org/article.pl?sid=09/10/13/078247

jtogel writes"Many games use 'rubberbanding' to adapt to your skill level, making the game harder if you're a better player and easier if you're not. Just think of Mario Kart and the obvious ways it punishes you for driving too well by giving the people who are hopelessly behind you super-weapons to smack you with. It's also very common to just increase the skill of the NPCs as you get better — see Oblivion. In my research group, we are working on slightly more sophisticated ways to adapt the game to you, including generating new level elements (PDF) based on your playing style (PDF). Now, the question becomes: is this a good thing at all? Some people would claim that adapting the game to you just rewards mediocrity (i.e. you don't get rewarded for playing well). Others would say that it restricts the freedom of expression for the game designer. But still, game players have very different skill levels and skill sets when they come to a game, and we would like to cater to them all. And if you don't see playing skill as one-dimensional, maybe it's possible to do meaningful adaptation. What sort of game adaptation would you like to see?"


I think adaption should only be applied in a portion of the game, eg.  the start/intro, then the game adapts, and further on when you get better you actually get rewarded for getting relative better than you were before.

Monday, October 5, 2009

Monday, September 21, 2009

SmarterMail - mail server to small biz

SmarterMail - At A Glance - Reviews by PC Magazine.

SmarterMail

This email server could actually be handy for many small companies. 10 email accounts in the free version, and active-sync to mobile devices.

Wednesday, September 16, 2009

Opera Mini 5 Beta, free to download now

http://www.opera.com/mini/next/



This is a nice install on my Nokia 5800 XM, but the keyboard lack the ability to copy/paste with the native clipboard in the S60. Some Java scripts does not format well like the iPhone google reader site, but this is not different from the official 4.2 version. Other than that, the browser looks a lot better and still runs smooth. The password save feature is a really nice add-on and feels a lot like a desktop experience. Also the tab browsing makes the flow easier to swallow. Bottom line: it's a good step toward a better experience.

Thursday, June 25, 2009

Palm Pre: How to Take Screencaptures

Here is the link to the source Take Screencaptures

This article point out how to initiate a screencapture (screen shot) on the Palm Pre mobile phone. This is a very nice feature to have buildin the OS on a mobile phone. I don't recall any other mobile OS to do this out of the box.



Friday, June 19, 2009

Palm webOS 1.0.3 update for the Pre

Taken from the Engadget comments by Jack:

Version information

Version: 1.0.3
Release date: 19 June 2009
Configuration: Sprint 1.5
New applications


No new applications in update 1.0.3

Feature changes to existing applications

Calendar
• Events created in your Google calendar—either in Calendar on your phone or in Google online—that contain a symbol or accented character in the event name can now synchronize. Previously, including a symbol or accented character in an event name prevented the event from synchronizing.
• Changes made to Google events on the phone now sync with Google online within a few minutes.
• The sync interval for Google events has been decreased from every few hours to every 15 minutes.


Clock
• If you create a weekday alarm on a weekend, the alarm sounds only on weekdays. Previously the alarm would sound on the weekend also.


Contacts
• Changes made to Google contacts on the phone now sync with Google online within a few minutes.
• The sync interval for Google contacts has been decreased from every few hours to every 15 minutes.


Email
• Power performance in areas where wireless coverage is sporadic or unavailable has been enhanced.
• Non-SSL Exchange ActiveSync (EAS) mail servers are now supported.


Other
• Miscellaneous updates for Email, Phone, and other applications.


Thursday, June 18, 2009

Twitter client: Gravity on N97 as widget

The well known and pretty advanced twitter client for Symbian Phones is just getting transformed to a widget...

This widget version is just a early dev. stage, but I will look forward to  use the final version ;)

Here is a concept widget from the dev.



Here is the Gravity homepage: http://mobileways.de/products/gravity/gravity/

Here is a picture of the N97 widget home screen with gravity icon and widget:

http://twitpic.com/7mktz

E-Ink Keyboard

http://www.symbian-guru.com/welcome/2009/06/e-ink-keyboards-rock-my-face-off.html

This mobile keyboard on the SGH-u750 Alias 2 has some new and nice features. Several different keyboard layouts supported in both landscape and portrait mode.
Samsung SGH-u740 e-ink keyboard

Samsung SGH-u740 e-ink keyboard

Samsung SGH-u740 e-ink keyboard

Wednesday, June 3, 2009

Twitter client with Facebook support: Seesmic DESKTOP

Seesmic DESKTOP
Help Desk

This is one of the best twitter clients I have used for my windows desktop, and then again, I have not used twitter that long. I tried just a few (round 5 clients on windows 4 on S60), and I must say that Seesmic was the winner for me at the windows platform. This was because it scales nice and intergrade facebook notifications and other features.


It also support mutiple twitter accounts and userlists mixed on both services, save searches with new post notifications and more.


It has some normal, but nice features like add (tiny) URL, image and shrink text. Also the facebook status can be updated like the twitter tweets.


The column look does look like the one known from TweetDeck, but I like this more, and one of the reasons is that twitter and facebook timelines can be mixed together in one timeline or it can be seperated into 2 columns. Also the twitter replies can be mixed and seperated.


Seesmic has also made some footage of the feature updates/changelog