20 March 2014

Why I Switched From Windows 7 To Elementary OS Luna



from-windows-linux

Bye bye, Windows. Hello, Linux! I have been a Windows user for 15 years now – unhappy with many of its ways, but not willing to give up what’s familar. The only time my computers saw an OS that was not Windows was during a short-lived Linux Mint installation and a failed Hackintosh attempt. But thanks to the Ubuntu-based Elementary OS Luna, I’ve given up Windows for good. What prompted me to try Luna? In what ways does it fare better than my previous OS, Windows 7? Why not a different Linux distro? Here are some answers. I Took The...


Read the full article: Why I Switched From Windows 7 To Elementary OS Luna



Project Morpheus Vs. Oculus Rift, Unreal Engine 4, Flappy Bird Returns [Tech News Digest]



project-morpheus-ps4-vr

Today in Tech News Digest, Project Morpheus and Oculus Rift bring virtual reality back, Unreal Engine 4 debuts, Flappy Bird is returning, Firefox 28 drops Metro, Google Docs phishing, and Mongolia tries to ban swearing on the Web. Project Morpheus For PS4 Detailed Here’s hoping Project Morpheus does better for Sony than this little guy did for Nintendo… http://ift.tt/PT5pIE — Tim Bradshaw (@tim) March 19, 2014 We mentioned Project Morpheus in yesterday’s Tech News Digest, but more details have emerged that make it worth taking a second look. Especially as the level of interest in this virtual reality system for...


Read the full article: Project Morpheus Vs. Oculus Rift, Unreal Engine 4, Flappy Bird Returns [Tech News Digest]



How To Make Bootable Windows USB Without Formatting



CLICK HERE TO SEE FULL POST



We here at Into Windows love installing Windows operating system from USB flash drive. Over the last couple of years, we have posted a number of articles covering methods and free tools out there to create bootable USB drive and install Windows from USB drive or external hard drive. Even though there are plenty of […]

Gmail X Bug



There's an annoying bug in Gmail's desktop interface: a close button displayed at the bottom of the page in the right corner. If you click the small "x" icon, nothing happens. It looks like the buttons used in Gmail's panels for tasks, chat and composing messages.






There is a way to fix this issue. Bookmark this URL: http://ift.tt/1fJnIEZ and use it to open Gmail. This URL is used to load Gmail without enabling labs. Surprisingly, if you manually disable all the Gmail labs experiments, the close button is still there.



Another way to fix this issue is to install AdBlock/Adblock Plus and manually add this rule in the preferences:



mail.google.com##DIV[class="w-asK w-atd"]



Google is working on a fix.

Camera Voice Commands for Android



The Google Search app for Android added voice commands for taking photos and recording videos. Just say: "take a photo", "take a picture", "record a video", "take a video", "shoot a video" and the camera app will launch in the proper mode.



"The first home run in T-ball, the surprise proposal, or just that gorgeous sunset... Sometimes the perfect photo passes you by as you fumble with your phone to open the camera app. Now with the Google Search App on Android, you can just tap the microphone or say 'Ok Google,' then 'take a photo' or 'take a video'," informs Google.








What Tech Topics Are You Passionate About? [We Ask You]



we-ask-you-logo

Technology is a vast and varied field. A quick glance at the list of topics we cover at MakeUseOf demonstrates this fact perfectly, and there are plenty of other technology topics we barely touch on, if at all. You can help us plug these holes in our coverage of all things related to technology, and all by simply answering the following question… No Love For Luddites We want to know, What Tech Topics Are You Passionate About? The direction in which this question is taken is completely up to you. We just ask that you tell us which topics you...


Read the full article: What Tech Topics Are You Passionate About? [We Ask You]



Google Shows Related Topics



Google's Knowledge Graph boxes now include a list of related topics and some excerpts from articles about them. The related topics are usually linked from the corresponding Wikipedia article.



For example, when you search for [equilateral triangle], Google shows these related topics: Equilateral polygon, Square, Regular polygon, Pythagorean theorem.





Google Geometry Calculator



Google has an interactive search widget that solves geometry problems. You can search for [solve triangle], [area of a circle], [volume of a sphere], [perimeter of a trapezoid], [area of a pentagon], [hypotenuse calculator], [triangular prism volume], [calculate the diagonal of a cube with 6mm edge], [volume of a cylinder with radius 4cm and height 8cm], [a^2+b^2=c^2 calc a=4 b=7 c=?] and more.






Click the arrow and Google will show you the solution. Click one of the input boxes and the value is highlighted.









"Supported shapes: 2 and 3 dimensional curved shapes, platonic solids, polygons, prisms, pyramids, quadrilaterals, and triangles. Supported formulas and equations: Area, circumference, law of sines and cosines, hypotenuse, perimeter, Pythagorean theorem, surface area, and volume."



{ Thanks, Jonah Langlieb. }

19 March 2014

4 Cheap Ways To Obtain A Legal Copy Of Windows 7



windows-7-cheap

It seems like Microsoft is hitting the nail with Windows only every other version. So it’s understandable that, if you’re upgrading from Windows XP or looking for a new computer, you want to go for Windows 7 rather than Windows 8. Thing is, Microsoft doesn’t directly sell Windows 7 anymore. Here’s what you can do so you’re running a legal copy of Windows 7. Is Your Hardware Compatible With Windows 7? Before you make the final decision to upgrade, it’s important to ensure that your hardware will be compatible with the new operating system. To check, all you have to...


Read the full article: 4 Cheap Ways To Obtain A Legal Copy Of Windows 7



New Phishing Scam Uses Scarily Accurate Google Login Page



google-docs-phishing

You get a link to a Google Doc. You click it, then sign in to your Google account. Seems safe enough, right? Wrong, apparently. A sophisticated phishing setup is teaching the world yet another lesson about online security. What is phishing, and how do scammers use it? Basically, phishing means getting users to voluntarily type their username and password, often by using a false login page. Such pages are usually easy to spot for net-savvy users, but this recent example of phishing is noteworthy for how realistic the login page looked. It could have fooled just about anyone, and had...


Read the full article: New Phishing Scam Uses Scarily Accurate Google Login Page



Place Google Maps in the Background of your Contact Form



This is a demo of contact form that embeds a Google Map in the background. It isn’t using a static screenshot image of Google Maps in the background but the map is an interactive one — you can zoom in and out, drag the Pegman to turn on street view or even toggle between the Satellite view and the Maps view.


Contact Form with Google Maps


There are basically two layers on the page – one is the map and the other is the form – and we are using the z-index property of CSS to define the stack order. The form has a higher z-index than Google Maps and thus the latter appears in the background. Let’s look at the actual code now.


The HTML — There are two DIV elements – the map will render inside the element with ID #googlemaps while everything that you add inside #contactform will show up in your form. You can even embed a Google Form here.



<div id="googlemaps"></div>
<div id="contactform">
<!-- You can even embed a Google Form here -->
</div>

The CSS — The #googlemaps element occupies the entire height and width of the page while the #contactform has a fixed width. You can also change the opacity level of #contactform to make your forms slightly transparent.



#googlemaps {
height: 100%;
width: 100%;
position:absolute;
top: 0;
left: 0;
z-index: 0; /* Set z-index to 0 as it will be on a layer below the contact form */
}

#contactform {
position: relative;
z-index: 1; /* The z-index should be higher than Google Maps */
width: 300px;
margin: 60px auto 0;
padding: 10px;
background: black;
height: auto;
opacity: .45; /* Set the opacity for a slightly transparent Google Form */
color: white;
}

The JavaScript — Find the latitude and longitude of your place and replace the co-ordinates in line #7. You can then copy-paste the modified JavaScript code in the footer of your HTML page.



<!-- Include the Google Maps API library - required for embedding maps -->
<script src="http://ift.tt/MhUkIj;

<script type="text/javascript">

// The latitude and longitude of your business / place
var position = [27.1959739, 78.02423269999997];

function showGoogleMaps() {

var latLng = new google.maps.LatLng(position[0], position[1]);

var mapOptions = {
zoom: 16, // initialize zoom level - the max value is 21
streetViewControl: false, // hide the yellow Street View pegman
scaleControl: true, // allow users to zoom the Google Map
mapTypeId: google.maps.MapTypeId.ROADMAP,
center: latLng
};

map = new google.maps.Map(document.getElementById('googlemaps'),
mapOptions);

// Show the default red marker at the location
marker = new google.maps.Marker({
position: latLng,
map: map,
draggable: false,
animation: google.maps.Animation.DROP
});
}

google.maps.event.addDomListener(window, 'load', showGoogleMaps);
</script>

You may refer to the HTML source of this contact form for a complete example.




This story, Place Google Maps in the Background of your Contact Form, was originally published at Digital Inspiration on 19/03/2014 under Embed, Google Maps, Internet

Email Apps For Android: 3 Excellent Options To Try In 2014



mailbox

There’s always someone on the Web who’s claiming that email is dead, but your busy inbox tells you otherwise, and these days you often manage it from your mobile device. Android’s native email client does its job well, but with many other excellent (and free!) options available, you may yet find a better way to keep tabs on your email. We have already covered five popular email apps for Android, and we were particularly impressed with K-9 Mail. In this post, we’ll take a look at three options that we haven’t explored yet. CloudMagic A couple of years ago, Dave...


Read the full article: Email Apps For Android: 3 Excellent Options To Try In 2014



PureVPN: Fast, Affordable, Privacy-Conscious VPN Service



purevpn-feat

I know what you did last summer. No, really. I do. When you were uploading your vacation snaps in Starbucks, I sat and captured every packet. Every byte. I even know the password you insist on reusing everywhere. Here’s a tip, buddy; “hunter2″ is not a strong password. I know lots about you; so does your ISP. We like to keep track of you. We both had a chortle at the pics of you in a mankini at the company Christmas fancy-dress party. And we both know what sites you go on when you open up private browsing mode. Er,...


Read the full article: PureVPN: Fast, Affordable, Privacy-Conscious VPN Service



Win Toolkit: Customize And Create Unattended Windows 8/8.1 Installation



CLICK HERE TO SEE FULL POST



Installing recent versions of Windows, including Windows 7, Windows 8 and Windows 8.1, isn’t as time consuming and difficult as it was the case with previous Windows versions but once Windows is installed and running, installing all necessary hardware drivers, installing Service Packs, recent updates, installing your favourite programs and personalizing Windows to your liking […]

Microsoft Releases OneNote 2013 As Free Download for Mac And Windows



Microsoft-Onenote-2013-free-download-mac-windows-android-ios-windowsphone-web

Microsoft’s OneNote is the best note-taking app for Windows 8 and there’s some good news. It’s now completely free and Microsoft has also come out with a version for Mac, which means OneNote is now a cross-platform app available on Web, Windows, Mac, iOS, Android and Windows Phone. OneNote 2013 is completely free for users to download and install, but there is a premium version for Office 365 and Office 2013 users with features like SharePoint support, version history, Outlook integration and more. But the core capabilities are intact in the free version, Microsoft says. Plus, everything is synced with...


Read the full article: Microsoft Releases OneNote 2013 As Free Download for Mac And Windows



Are Your Files Getting Lost in the Cloud? These 4 Cloud Storage Managers Will Help



cloud-storage-servers

How can you keep track of your files when they’re all in different places? With the availability of free cloud storage increasing all the time, and more people using multiple providers, you’ll probably need to answer this question soon. When you have documents and photos all over the Internet, it’s easy to lose track of them. Was that spreadsheet in Dropbox or Google Drive? Is your presentation in OneDrive or SugarSync? Did that picture get uploaded from your phone to Amazon Cloud Drive or Flickr? These four websites promise to help you keep tabs on your cloud accounts. Let’s see...


Read the full article: Are Your Files Getting Lost in the Cloud? These 4 Cloud Storage Managers Will Help



18 March 2014

Let’s Talk Productivity: 7 Podcasts You Should Listen To For Working Awesomely



working-out

Can seven strangers improve the way you work? They can change your life. If you give them your ear. Podcasts are the Web’s gift to people who like to go by the ear. Podcasts won’t cure the vexing problem of rush hour traffic and losing that parking space. But they could help lower your blood pressure if you listen to the right kind. So, instead of overusing the sphygmometer let us talk about productivity — or let these seven life hackers talk about the little things we can do to work awesomely. Plug in…sit back…and listen. If you are driving,...


Read the full article: Let’s Talk Productivity: 7 Podcasts You Should Listen To For Working Awesomely



7 IRS Website Tools That Could Save You Time And Money



money-header

According to Ben Franklin, nothing in this world is certain but death and taxes. Well, I can’t help you avoid death, but I can try to give you a hand with your taxes. Taxes no matter where you live, are a real burden. Unless of course you live somewhere where you don’t have to pay any income tax, in which case please tell me where you live so I can move there. Taxes in the U.S. are especially frustrating. There are just so many forms, so many laws and so many potential loopholes and pitfalls. It’s tempting to just give...


Read the full article: 7 IRS Website Tools That Could Save You Time And Money



How Microsoft’s Windows Could Win Its Users Back



new-windows

With the relatively beloved, somewhat maligned, Windows XP fading into the night, there may be up to 30% of the market looking at operating systems other than Windows. That’s how many devices are still running Windows XP, according to NetMarketShare. With no longer supporting XP, Microsoft may free up the time and resources to face the challenges ahead. Let’s hope they take this opportunity to reflect on past successes and mistakes, get to know their customers again, and put together a new Windows from top to bottom – a Windows that works, a Windows that is lean, and a Windows...


Read the full article: How Microsoft’s Windows Could Win Its Users Back



A Human Touch: 5 Quality Video Websites Curated By Real People



Best-Manually-Curated-Viral-Video-Websites

Right now, 100 hours of video are being uploaded to YouTube per minute. So how do you weed out the junk from the quality content? The best bet, of course, is a recommendation by another human who has seen a video and liked it. There are plenty of great video curation engines on the Web, and some new ones like 5by to watch videos by mood. But it’s easy to game the system in those and unwanted videos rise up the ranks. I used to run a reasonably successful manual curation blog, in which one of the elements was a...


Read the full article: A Human Touch: 5 Quality Video Websites Curated By Real People