Nokia confirmed the Lumia 2520 tablet with Windows RT last month. At the time they offered details on the tablet itself as well as the price. We were expecting Nokia to release this in the US sometime soon, and it looks like those details have just been made official. The Nokia Lumia 2520 tablet is […]
Nokia Lumia 2520 tablet reaches AT&T on November 22nd for $400 on contract (video)
Posted in: Today's ChiliIf you’ve been jonesing for that other flagship Windows RT tablet, you won’t have long to wait. AT&T has just announced that it will release the Nokia Lumia 2520 on November 22nd for $400 when paired with a two-year data contract. It will launch only in black, unfortunately, rather than the vibrant colors you see above. However, there is a perk if you’re going all-in on Nokia hardware — buy a Lumia 925, 1020 or 1520 at the same time and the carrier will drop the 2520’s price down to $200 with a two-year agreement. If you’re eager to learn more about the LTE slate, you can check out AT&T’s quick tour video after the break.
Update: We’ve since confirmed with AT&T that the Lumia 2520 will be available for $500 contract-free, as Nokia originally promised.
Filed under: Tablets, Mobile, Nokia, AT&T
Source: AT&T
This article was written on September 03, 2010 by CyberNet.
I use screenshot tools all the time no matter what computer I’m on. One interesting Windows screenshot tool that I came across recently is called Greenshot. It’s not the most feature-packed utility that you can find, but I’d say it ranks pretty highly seeing that it does come with its own image editor.
Once I started using Greenshot there were some things that immediately popped out to me. The first is something that you can clearly see in the screenshot to the right, and it’s that it highlights the region that will be captured along with providing the dimensions. You don’t have to capture a region though… there are also options to grab a window or the entire screen.
The screenshot editor is simple, but useful. With it you’re able to add some common shapes and text so that the image can be more easily understood by the recipient. You can also highlight or obfuscate parts of the capture. I was a bit surprised when I used the obfuscate feature because it doesn’t blur it out the same way that many other apps do. Instead of being a smoothly blurred area it will be heavily pixelized, which in some ways I actually l like better.
If you dive into the settings you can customize options like the default action you want done after you’ve taken a screenshot. It can open it in the image editor, copy it to the clipboard, send it to a printer, display a dialog to save the file, save it to a pre-defined destination, or email it. One of those options are bound to be what you’re looking for.
Overall I’d say that Greenshot is pretty nice, but will obviously lack features that paid applications like SnagIt offer. It only uses around 16MB when sitting idle though, which is a comfortable amount for a utility like this.
Greenshot Homepage (Windows only; Freeware)
Copyright © 2013 CyberNetNews.com
We’re sure many of you Facebook users have been enjoying how simple it is to log into several applications with nothing more than a simple press of the Facebook one-click login feature. Sure – the app could potentially end up ruining your feed with notifications, but the price of convenience is pretty expensive these days. For now, only Android and iOS users have been able to enjoy the one-click login feature on their devices, but it looks like Windows 8 and Windows Phone 8 may soon be benefiting from this feature as well. (more…)
Windows 8, Windows Phone 8 Will Be Getting Facebook One-Click Login original content from Ubergizmo.
Android and iOS users have long been using their Facebook account for single click logging in to apps, and soon Windows 8 and Windows Phone users will be able to do the same. While the feature’s is still in its early stages (on WP8, it’s still in beta) Microsoft has announced that Foursquare, Adobe (Revel, Photoshop Express) and iHeartRadio are the first to get in on the action. Similar to Facebook Login on other platforms, using it will make it easier to share content from within the app, and connect your account info without punching in the credentials yet again. Foursquare will post your check-ins, the Adobe apps will let you upload photos easily, and you can share the station you’re listening to on iHeartRadio. Facebook users will probably want to keep an eye on their privacy settings to avoid oversharing, while holdouts from the social network can remain assured that Microsoft’s own account system is still positioned as the primary way to log in on the platform.
Filed under: Mobile
Source: Microsoft (1), (2), Facebook
Dell’s XPS 11 convertible and refreshed XPS 13 now available starting at $1,000
Posted in: Today's ChiliDell’s Yoga competitor, the flexible XPS 11, has made its way into availability in the US and other select countries, with the refreshed XPS 13 also tagging along. As we mentioned in our hands-on, the 11.6-inch ultrabook’s keyboard folds all the way back to transform into a tablet with an impressive 2,560 x 1,440 IPS display. The updated XPS 13 laptop, on the other hand, has gained a touchscreen option, as well as new Haswell processors like those in the XPS 11. Both devices are now up for sale on Dell’s own site for at least $1,000, depending on specs. As always, the bigger the SSD storage space and the RAM, the more expensive it is. Almost all the laptops will ship with Windows 8.1 preinstalled, except the non-touch XPS 13 that’s keeping things dated with Windows 7 Home Premium. If you like your PC hardware a little cheaper (or costlier), the company’s also releasing the OptiPlex 3020 desktop ($499) and the Precision M3800 business laptop ($1,799). For a reminder of the XPS 11’s acrobatic ways, we’ve added our hands-on video right after the break.
[Thanks, Louis]
Fans of Flipboard’s curated content experience that are running Windows 8.1 have had to go without a native app on their Microsoft-powered machines, until today. That’s right folks, after promising it was coming, the app is finally here. And with it comes the ability to pin specific sections, magazines or a general Flipboard live tile to your Start screen. Naturally, this version of Flipboard’s been tailored to take advantage of Win8’s gestures as well, so a swipe up provides buttons to subscribe, refresh, edit and flip things, while pulling down from the top lets you see additional content from contributors or stuff others are reading. And, the app supports Windows’ snap feature, so you can use Flipboard side-by-side with other programs. Should you wish to see for yourself before you decide to download, a video walkthrough awaits after the break.
Filed under: Software
This article was written on August 20, 2010 by CyberNet.
I normally don’t post scripts and batch files that I use, but I wanted to share this particular script because I use it all the time. VBScript files are nice because typically they are simply coded, and work across virtually all Windows-powered machines. You just have to throw the code in a .VBS file, and from there it can be executed in your batch files very easily.
The contents of the file are below, and once set up you’ll be able to send emails using any Gmail account straight from the command prompt. In the code there are two things that you need to configure: the email address and password of the account you want to send as. When executing the VBScript file you simply pass it three parameters: recipient email address, subject line, and the body of the email. There is an optional fourth parameter that it accepts which is the file path to a file you want to attach to the email. That’s it.
Why do I use this all the time? I can easily call this file from other scripts or batch files so that it sends me an email notification whenever something completes. Sometimes I use it just to have a nice history of when some of my batch files complete (or to verify that they even ran), but other times I will insert “dynamic” text into the body of the email. For example, if an error occurred I may have it put the error message in the body of the email. An alternative to that would be attaching a log file using the optional fourth parameter.
The nice thing about the way this script works is that you’ll be able to send emails without setting up an SMTP server on your machine. Of course you won’t be able to send out mass quantities of emails since Google limits you to around 500 sent messages per day, but that should be more than adequate for personal purposes.
Let’s take a look at what the code looks like…
Code begins here:
'Usage: cscript sendemail.vbs <email_recipient@example.com> "<subject_line>" "<email_body>" "<optional:email_attachment_path>" 'Ex. No attach: cscript sendemail.vbs example@gmail.com "test subject line" "test email body" 'Ex. W/ attach: cscript sendemail.vbs example@gmail.com "test subject line" "test email body" "c:\scripts\log.txt" '*********** '****CONFIGURE THE FROM EMAIL ADDRESS AND PASSWORD Const fromEmail = "email_sender@gmail.com" Const password = "password" '****END OF CONFIGURATION '*********** Dim emailObj, emailConfig Set emailObj = CreateObject("CDO.Message") emailObj.From = fromEmail emailObj.To = WScript.Arguments.Item(0) emailObj.Subject = WScript.Arguments.Item(1) emailObj.TextBody = WScript.Arguments.Item(2) If WScript.Arguments.Count > 3 Then emailObj.AddAttachment WScript.Arguments.Item(3) End If Set emailConfig = emailObj.Configuration emailConfig.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "smtp.gmail.com" emailConfig.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 465 emailConfig.Fields("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 emailConfig.Fields("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 emailConfig.Fields("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = true emailConfig.Fields("http://schemas.microsoft.com/cdo/configuration/sendusername") = fromEmail emailConfig.Fields("http://schemas.microsoft.com/cdo/configuration/sendpassword") = password emailConfig.Fields.Update emailObj.Send Set emailobj = nothing Set emailConfig = nothing
^ That is the end of the code (Download the Script) ^
You can see that the code starts with example usage of how you can call the VBScript file. Given the nature of executing VBScript files you may or may not have to include the “cscript” portion, but in general you are always better off having it there to ensure that it will run on your computer just fine. Here’s an example of what it looks like when being executed from the command prompt:
Note: The “sendemail.vbs” file was located at the root of the C Drive when I ran this.
Armed with this script you should be able to take it and throw it into batch files, or call it from anywhere that can execute things via the command line. One thing you may want to consider is creating an extra email account just for sending these emails. Not only will that keep your “sent mail” clean in your primary Gmail account, but it will also be a bit more secure since the password for the sender account is stored in plain text within the script.
Here is a nicely formatted version of the VBScript from above that you can download, and have all ready to go for you (after you fill in the two email/password inside the script file, of course):
Download a Zipped Copy of the VBScript
Copyright © 2013 CyberNetNews.com
Creating a Log File in Notepad
Posted in: Today's ChiliThis article was written on September 08, 2011 by CyberNet.
Notepad (in Windows) has a unique feature that a lot of people don’t know about. If you open a file in Notepad where the first line contains “.LOG” you will automatically see the current time and date appended to the end of the file. Here is how it works:
- Open Notepad.
- Type .LOG on the first line, and press ENTER to go to the next line.
- Save the file (you can save it with any file extension).
- Each time you open the file you’ll see the time/date appended on a new line, and your cursor will automatically be placed on the line following the time/date.
Why would something like this be useful? I’ve used it in the past when I’ve need to keep a running log of events that I had to manually track. That way whenever something would happen that I needed to log I’d just open the text file, type what I needed, save it, and close it. It may not necessarily be the most elegant solution for something like this, but it works without the need for any third-party apps.
Microsoft Support: How to Use Notepad to Create a Log File
Copyright © 2013 CyberNetNews.com
Download XP SP3
Posted in: Today's ChiliThis article was written on April 23, 2008 by CyberNet.
So Windows XP SP3 was finally completed on Monday which goes along with the release schedule that we had previously provided. TechNet and MSDN subscribers were furious that they would not be given the download until after it was released to the public, and looked at it as a slap in the face from Microsoft. The negative publicity obviously wasn’t what Microsoft wanted, and so today they made the download available to those subscribers.
Does it even matter now? Not really… the 316MB XP SP3 download is appearing on sites all across the Internet. A good example of this is over at two of my favorite places: Major Geeks and Softpedia. They’ve already posted the full download, and have mirrored it in several different locations. That essentially means that it is already publicly available despite the fact that Microsoft won’t officially be posting it on their own site until Monday.
So if you want to get XP SP3 (build 5512) a little early head on over to Major Geeks or Softpedia. The download speeds won’t be blazing fast, but it sure beats tinkering around with a torrent.
Copyright © 2013 CyberNetNews.com