Create a Shortcut Key for Restoring a Specific Window [AutoHotkey Answers]

Posted by Nikos | Posted in General | Posted on 10-02-2010-05-2008

0

Windows only: If you’ve ever wanted to assign a shortcut key directly to your favorite applications, you can do so easily with this simple AutoHotkey script.

The general idea of the function is that you can assign a specific hotkey to a specific window—when you press the shortcut key once, the window will come to the foreground, and if you press it again, the window will minimize. This way you can toggle between the windows you use most often, without having to bother with Alt-Tab.

To make your own AutoHotkey script for restoring a specific window, create a new *.ahk script and paste in the following code:


ToggleWinMinimize(TheWindowTitle)
{
SetTitleMatchMode,2
DetectHiddenWindows, Off
IfWinActive, %TheWindowTitle%
{
   WinMinimize, %TheWindowTitle%
}
Else
{
   IfWinExist, %TheWindowTitle%
   {
     WinGet, winid, ID, %TheWindowTitle%
     DllCall("SwitchToThisWindow", "UInt", winid, "UInt", 1)
   }
}
Return
}

Now that you have the function, you can start using it to create your own hotkeys for specific applications with a line similar to this one, which would assign Alt+X to toggle Firefox between being minimized and active.

!x::ToggleWinMinimize("Mozilla Firefox")

If all this AutoHotkey is a little more than you can understand, be sure to check out our beginner’s guide to AutoHotkey, where we explain how you can use this simple scripting language to turn any action into a keyboard shortcut.

This script is courtesy of the Lifehacker Coders group over on Productive Geek forums, and reader bobbo33 is the AutoHotkey wizard that figured out how to make it work for any window, and solved a long-standing problem I’ve personally had with the WinRestore function. Thanks, bobbo33!


Munster: Apple will sell more than 36 million iPhones worldwide in 2010

Posted by Nikos | Posted in General, Twitter | Posted on 06-01-2010-05-2008

0

Filed under: ,

The wizard of tech on Wall Street, Piper Jaffray’s Gene Munster, is bullish on AAPL.

Not only does the senior research analyst (who looks nothing like our artistic portrait at right) project that the company will sell 36 million iPhones in 2010, but he believes that the number is conservative for international sales and doesn’t take into account any expansion to other U.S. cell carriers — Verizon, for instance. Munster’s prognostications were published in a note to investors this morning, where he noted that this will be the first full year of sales with new carriers in the U.K., Canada, and France, and also the first full year of sales in China.

Munster also believes that a new iPhone model will arrive around the usual June – July time frame, and that will drive sales as well. While the estimates seem rather optimistic, Munster says that his models are actually quite conservative, particularly when international sales are taken into account. For example, the Piper Jaffray models show that AT&T alone will sell 15.8 million iPhones to their customer base of 82.5 million customers, while a composite figure for three Russian carriers shows 1.8 million iPhones being sold to a combined base of 160 million subscribers.

Looking ahead for calendar year 2011, Munster sees a worldwide total sales figure of 48.5 million iPhones, once again based on a model that he considers conservative.

[via AppleInsider]

TUAWMunster: Apple will sell more than 36 million iPhones worldwide in 2010 originally appeared on The Unofficial Apple Weblog (TUAW) on Wed, 06 Jan 2010 12:15:00 EST. Please see our terms for use of feeds.

Read | Permalink | Email this | Comments

Random House launches iPhone apps for its authors, partners with Mobile Roadie

Posted by Nikos | Posted in General | Posted on 21-12-2009-05-2008

0

IMG_0493Although there’s raging debate over how to pull the publishing world into the digital age, there seems to be consensus that one important way to do so is via mobile applications. Today Random House announced its first initiative in that space, in a partnership with Mobile Roadie, a service that bands and artists use to create their own iPhone apps.

(Other recent moves to take publishing mobile include an iTunes for magazines from Conde Nast and others.)

Random House has created iPhone apps for three of its most popular authors—Steve Berry, Sophie Kinsella, and Karen Marie Moning. These free apps, available now in iTunes, let fans preview books, access bonus content, interact with other fans, read about the author, find where they’re appearing, listen to audiobook clips, and more.

The apps give authors a platform for promoting and selling their books, publicizing appearances, streaming podcasts or other content, and generally creating a brand around themselves instead of around a single book.

IMG_0490If successful, these apps—which, thanks to Mobile Roadie’s system, aren’t especially difficult to build—will likely be followed by many more, from within the Random House family as well as outside of it.

Thanks to Mobile Roadie’s app wizard, creating such an iPhone app, albeit one that may not look terribly unique, is something anyone can do for about $500. It costs $.01 per user per month to maintain the app. For authors, artists, bands, athletes, and more, it’s an easy, code-free way to launch an iPhone app.

The mobile app ecosystem is really only starting to find its legs, but traditional publishers seem to be exploring the ecosystem for new business models—which bodes well for the publishing industry, and for consumers.

Mobile Roadie was founded in 2008 in Los Angeles, and is currently backed by private angels and in the middle of raising its first institutional round of funding.


Facebook Rolls Out New, Simplified, and Improved Privacy Features [Privacy]

Posted by Nikos | Posted in General | Posted on 09-12-2009-05-2008

0

There’s been a lot of talk recently about Facebook and privacy (with good reason), but the settings weren’t always user-friendly. Today, Facebook began rolling out their new simplified, yet feature-rich security settings to keep its users on top of their privacy.

It doesn’t appear to be out for all accounts yet (my account has yet to change), but if your account has been switched, you should be prompted to set your security settings as soon as you log in. In fact, it will keep bugging you until you do set them—forcing users to take an active role in their privacy (which, for the many users who haven’t even looked at their privacy settings since 2005, is probably a good thing).

The settings in the wizard have been narrowed down a lot to avoid confusion, and really only give you two choices—Facebook’s recommended setting for that feature, or your old settings. However, once you go through the wizard, you will have a new feature on your profile that allows you to set who can see each individual status update, wall post, or any other individual post you make: everyone, friends of friends, only friends, or something more specific (blocking certain people, for example). Regional networks have been done away with in favor of this simpler “friends of friends” approach that, with how large networks have become since the college-only days, makes quite a bit more sense. What do you all think of the new privacy features? Sound off in the comments.



Change the Guest Account Name in Windows 7 for Better Security [Windows 7 Tip]

Posted by Nikos | Posted in General | Posted on 07-12-2009-05-2008

0

Windows 7 features a guest account that can make it easy for friends and housemates to quickly check their email or the web on your system. Giving it a different name, however, makes it a bit more secure.

We’re not talking totally, hacker-proof, locked-down secure, here—but giving the Guest Account a different name makes it just a little harder for those trying to guess username/password combinations to your computer, remotely or through malicious software. When Guest Account is just “Guest Account,” in other words, it’s an easy way in for anyone, or any software, that knows that account exists.

At the How-To Geek’s home away from Lifehacker, writer Mysticgeek runs down the process for changing the Guest Account name in Windows 7, which requires a little switch and name change by an administrator. Want to pull off the same kind of trick in Windows Vista? Try DotNet Wizard’s guide.



Improve Google Maps by Reporting Problems [Google Maps]

Posted by Nikos | Posted in General | Posted on 07-10-2009-05-2008

0

Ever followed Google Maps direction to a “t” only to end up staring down the wrong way of a one-way street (or some other bum direction)? Now you can help them fix the problem so that, hopefully, it won’t happen again.

As you can see in the video, whether a street’s name has changed, a new road exists, or a park was built, reporting a problem is simple. Just right-click the map, walk through the problem wizard, and let them know where they went wrong.

You could just ignore the error—after all, you know that Google doesn’t have it right after the first time the mis-map burned you—but think of all the good karma you’ll be scoring for the rest of the folks who won’t end up with bad directions.

Your world, your map [Google Lat Long Blog]


Vista Services Optimizer Updates to Support Windows 7 Tweaking [Downloads]

Posted by Nikos | Posted in General | Posted on 02-10-2009-05-2008

0

Windows Vista/7: If you liked the ease of use and wizard-driven tweaking found in Vista Services Optimizer and miss it now that you’ve upgraded to Windows 7, you’ll definitely want to check out the new Windows 7-friendly version.

We first shared Vista Service Optimizer with you earlier this year, when it was Vista-only. Since then it has been updated to support Windows 7.

It still has great time-saving features like automating customization, the ability to create profiles for various tweaks—some tweaks you’d only want applied when you’re trying to max out system resources for gaming, for example—and a rescue center which will undo changes made by Vista Optimizer and other applications that tweak your Windows services.

Vista Services Optimizer is free, open source, portable, and available for both Windows Vista and Windows 7.


Add Facebook Connect Features to Your Site in Three Steps

Posted by Nikos | Posted in General, SEO, Twitter | Posted on 30-09-2009-05-2008

0

facebookconnectwizardOver the last ten months, Facebook Connect has flourished as a tool to not only minimize login and sign-up minutiae, but to allow developers and content creators to add a social link to their sites and services.

Yesterday, Facebook introduced Translations for Facebook Connect as a way to make site translation faster and easier. In blog post, Facebook also introduced two additional tools: the Facebook Connect Wizard and Playground as a way to make implementing Facebook Connect easier for developers and content creators alike.

facebookconnectplayground

The Facebook Connect Wizard is just what it sounds like – a way to incorporate Facebook Connect into your website in three steps. Just enter in your URL, upload a file to your server so that Facebook Connect can talk to your site, and then find the social markup and integration tools you want to add on the backend of your site. Playground for Facebook Connect provides code samples for adding Facebook Connect buttons, profile images and friends to your site.

Facebook says it will continue to add samples and resources to the Playground and that it will continue to improve the Facebook Connect resources. If you have wanted to add Facebook Connect to your existing website, these tools might be just the helping hand you need.

Do you use Facebook Connect on your sites? How did you set up the implementation?


Reviews: Facebook

Tags: facebook, facebook connect, facebook connect playground, facebook connect wizard


Turn Your Windows 7 PC Into a Wireless Hotspot [Windows 7]

Posted by Nikos | Posted in General | Posted on 28-09-2009-05-2008

0

Everybody’s got a wireless network at home, but if you’ve ever wanted to get your iPod touch, iPhone, or other wireless device connected but all you’ve got is a wired network at work, school, or elsewhere, Windows 7 makes this process trivial.

Not using Windows 7 yet? You can accomplish the same thing in Windows Vista, XP, and even OS X—the Windows Vista method is almost identical to Windows 7, but XP requires a few more steps.

Before we begin, you should make sure that you’ve got a laptop or desktop with a wireless card that isn’t currently connected—if your laptop is connected to the wired network, your wireless card should be free, and we can use it to allow access to the internet. Note that you have to be plugged into a wired connection in order to share the connection wirelessly with others, or have a second wireless card. Readers should also note that this won’t work on (some) work networks that use group policies to enforce TPS report cover sheet boredom and prevent you from having any fun at all.

You’ll want to start out by heading into the Network and Sharing Center through the Control Panel, or you can quickly get to it by right-clicking on the network icon in the system tray. Once you are there, find the link for “Set up a new connection or network”.
You’ll be prompted with a wizard that allows you to connect to VPNs, dial-up, or create a new ad hoc wireless network, which is what we want to do. You can easily use an ad hoc network to share files back and forth between two computers, but today we’ll be using it for sharing the internet connection.

You’ll need to give your network a name and choose some security options—remember that WEP is extremely easy to crack, and you’ll want to make sure to use at least a decent sized key even for WPA2. The really important option on this page is to remember to check the box for “Save this network”.


At this point your ad hoc network should be running and ready to start connecting your devices, but you’ll want to hold off just a minute.

You’ll notice that the ad hoc networks that you create get added to the quick-select wireless network list-when you disconnect from your ad hoc network—it’s the same as stopping it. Connecting to the network is the same as starting it back up; this way you can quickly switch back and forth between connections with just a few clicks.

The last step is enabling connection sharing through your regular network card, which will allow anybody connected to your ad hoc wireless to use your internet connection. To do so, you’ll want to head into the Network and Sharing Center, click the “Change adapter settings” link on the left, and then find your network connection in the list—it’s very important that you only enable internet connection sharing on the adapter that is actually connected to the internet. In this case, my internet access at work goes through my Local Area Connection, so I’ve enabled it there.

At this point, you should be able to connect any wireless device to your new ad hoc network and access the internet, or even share files directly with your laptop.


Have you been able to successfully get your wireless device connected to your PC? Tell us about your experience in the comments.

The How-To Geek is having fun downloading apps to his iPod Touch while sitting at his desk at work. His geeky articles can be found daily here on Lifehacker, How-To Geek, and Twitter.


Windows 7 Transfers Your Wireless Settings Easily [Windows 7]

Posted by Nikos | Posted in General | Posted on 15-09-2009-05-2008

0

After discovering how easily WEP can be cracked and creating a long, secure WPA2 key, you’ve probably noticed it’s a pain to get friends connected to your Wi-Fi network when they stop by. Windows 7 makes this process easy.

Over at the How-To Geek site (my home away from Lifehacker), guest blogger Ciprian writes up the quick and easy process of transferring your wireless network settings from your Windows 7 PC to any other machine running XP, Vista, or Windows 7. To transfer the settings for yourself, head into the Network and Sharing Center, click on Manage Wireless Networks, and then in the properties for your wireless network you’ll find the link to open the wizard that will copy all your settings onto a flash drive.

Once you’ve got the settings backed up, you can use the bundled setupSNK.exe file on the flash drive to restore the settings onto another computer. Sure, you can always save the key to a text file, but having this feature built into the OS is very useful, especially since you don’t have to mess around with wireless settings.


Get Adobe Flash playerPlugin by wpburn.com wordpress themes

Powered by Yahoo! Answers