Angry Birds Transformers soft launches in NZ and FI; There is more than meets the eye with one
Back in June Rovio let it be known that yet another big movie named title would get the Angry Birds treatment. This time around it would be Angry Birds Transformers. I had fully expected Rovio to do a similar take as they did with the Star Wars themed variants. That is certainly not the case though. A game play trailer has recently been released which shows us a small look at what to expect, and it certainly doesn’t carry a sling shot with it.
See what I mean. Not your typical Angry Birds style game. Instead you run along in almost a 2D platform runner style game taking out pigs in the distance with your various weapons. You also notice a little transforming going on to move along faster to avoid falling objects. Taking a quick look back at the original landing page that was set up months ago we see a fun old school VHS style video that was released back in August and little blurbs about HASBRO Angry Birds Transformer Telepods and the ability to utilize your friends robots to complete missions. Why do I have a feeling there will be a whole Angry Birds Transformers line of plush toys and animated shorts coming too.
Rovio seems to have the new title available in New Zealand and Finland right now for a soft launch on iOS devices with a full blown iOS launch slated for October 15th. Us Android users will need to wait for the Play Store rollout which is set set for October 30th. Lets hope Rovio managed to fine tune the game play and IAP options by then to make it worth the download.
Source: Angry Birds Transformers Via Droid-Life
The post Angry Birds Transformers soft launches in NZ and FI; There is more than meets the eye with one appeared first on AndroidSPIN.
.CPlase_panel display:none;
TfL wants to make sure you’ll never get caught short on the Tube
You know how it is. You’re traversing the Jubilee Line, nearing Waterloo and feel the need for a number two. Does Waterloo provide toilet facilities? Unless you’ve got encyclopaedic knowledge of TfL’s toilet facilities, or have access to its trusty PDF map, you run the risk of being caught short (Waterloo is fully equipped by the way). Luckily, the city’s travel authority now believes such information is important enough to be made available to app developers. How’s that likely to affect you? Well, it means that travel apps (like CityMapper) can now fold in the locations of TfL’s public facilities if they choose to. Could be great news for that next night out in Clapham, when you don’t make a trip to the bathroom before embarking on the journey home.
[Image credit: Sarah, Flickr]
Filed under: Transportation, Internet, Software
.CPlase_panel display:none;
Even San Francisco is thinking about cracking down on Uber
The world’s authorities must have something of a love/hate relationship with ridesharing companies. On one hand, it’s a disruptive new technology that encourages competition, which they love, but it’s also a regulatory nightmare for all involved. After all, someone has to think about the unwitting customers who expect that these cars have the same rules and regulations as a licensed taxi, which isn’t often the case. That’s what prompted the district attorneys of both San Francisco and Los Angeles to write a letter to Uber, Lyft and Sidecar to warn them that if they don’t change their business practices, they could face some serious consequences.
In the same way that Berlin banned Uber for using “unverified drivers in unlicensed vehicles,” an Uber driver in San Francisco was recently charged with punching a passenger. While this driver had passed the company’s own background check, authorities found that they’d been previously convicted of both violent crimes and drug offenses. SF Gate is reporting that further investigation by authorities has found that the companies pledges to screen out offenders with DUIs, driving and sexual assault convictions is “patently untrue.”
In order to avoid a crackdown, San Francisco DA George Gascón, the man behind the smartphone kill-switch, wants the companies to remove their claims that they run background checks on their drivers. The letter also accuses Uber and Lyft of violating state law with their ride-sharing fee calculations, and by not securing the right permits in order to pick up passengers at airports.
The only company that’s responded so far is Sidecar, with CEO Sunil Paul claiming that Gascón’s letter is “shocking and baffling.” Paul has also launched a Change.org petition to stop what he describes as “overzealous regulators,” influenced by “big taxi companies” from shutting his company down. In the meantime, Uber, Lyft and Sidecar have until October 8th to sit down with the DA’s representatives to try and hammer out a solution. If not, then we might expect to see plenty more stories with the words “Uber,” “Fined” and/or “Banned” in the headline.
Filed under: Transportation, Internet, Software
.CPlase_panel display:none;
Goodreads on iOS looks and acts a lot like Facebook now
Short of appearing on Kindle products, since Amazon bought Goodreads we haven’t seen much new in the application. That’s all changed, however, as the iOS app has gotten an overhaul. As TechCrunch notes, upon opening it you’re greeted with a news feed that’s filled with your pals’ activity (including books reviewed and read), and you can like or comment on it as such. There’s a new navigation pane at the bottom of the application, too, that offers quick access to the home screen and a barcode scanner for adding tomes to your “to read” list, among other things. What’s more, creating a custom bookshelf for, say, your list of favorite tween-zombie-romance-nonfiction books is apparently pretty easy now as well. There isn’t an update for the Android version just yet, but we’ve embedded screenshots after the break if you want a preview of what the app’ll look like on your iDevice.
[Image credit: Shutterstock / Tony Taylor stock]

Filed under: Cellphones, Software, Mobile, Amazon
Via: TechCrunch
Source: iTunes
.CPlase_panel display:none;
What is the Shellshock Bash bug and why does it matter?
By now you may have heard about a new bug found in the Bash shell. And unless you’re a programmer or security expert, you’re probably wondering if you should really worry. The short answer is: Don’t panic, but you should definitely learn more about it, because you may be in contact with vulnerable devices.
This bug, baptized “Shellshock” by Security Researchers, affects the Unix command shell “Bash,” which happens to be one of the most common applications in those systems. That includes any machine running Mac OS X or Linux. The “shell” or “command prompt” is a piece of software that allows a computer to interact with the outside (you) by interpreting text. This vulnerability affects the shell known as Bash (Bourne Again SHell), which is installed not only on computers, but also on many devices (smart locks, cameras, storage and multimedia appliances, etc.) that use a subset of Linux.
But, what is it?
The bug is a little hard to explain without getting technical and mentioning some programming terminology, but bear with us, because it’s not difficult to understand. Basically, an attacker can run code by simply asking for basic information from your computer, a server or an “internet of things” (IoT) device. Now, your computer is most likely unaffected because you are (and should be) running a firewall and blocking external requests not initiated locally by the software already authorized to run, but servers and IoT devices are a different issue.
Let’s start with your computer. If you have a Mac OS X or Linux system, open the Terminal and run this line of code:
env x='() :;; echo vulnerable’ bash -c ‘echo this is a test’
If you see the word “vulnerable” as an answer, your system is, well… vulnerable.
Your Bash shell is simply running more code after a function (the “() :;;” part), and that shouldn’t be happening. The function is the “allowed” code, while everything after it is where the potentially “malicious” code could be installed.
What can an attacker do?
The remote execution (over the internet or a network) of extra code could let an attacker load malware on a system and steal private information, delete files, activate your camera, open a lock and, well, do pretty much anything with a little know-how. However, as we mentioned, this is not something that should matter much on a user’s computer with a working firewall, because it hasn’t been proven possible to take advantage of the bug under that scenario.
A server, well, that’s a completely different story, because a server has to listen to requests in order to “serve” (pun intended) its purpose. This means that by requesting almost any data and running malicious code, an attacker can infect any affected server, which is about 60 percent of web servers out on the internet, most routers (even your home router) and many consumer devices (including security cameras and “smart” appliances — which don’t seem so smart right about now). This is because smart appliances are a form of servers.
How can this problem be solved?
It’s super simple to solve this problem. Many software developers have already issued patches and more are being released by the hour. Two of the most popular Linux distributions, Red Hat and Ubuntu, already have patches available, and we suspect Apple will soon release its fix. Updating a system takes almost no time. It’s a simple process and it’s a common task for most users. The problem is with systems that are not often updated. For example: It’s not very common to update the software on your router, and even less common to update something like a door lock, a light switch or a security camera.
The internet of things complicates the situation because there are many more devices that should be updated, and for some, the manufacturers may not even issue patches. However, most of the devices are configured to function in a secure manner, behind a firewall. Regardless, if you suspect your “things” use a version of Linux (and there’s a really good chance they do), we recommend you check for updates and even inquire about them from the manufacturer.
The bottom line is: this is a serious bug, but patches are available and should be installed promptly. But, there’s no doubt we’ll be hearing plenty more about Shellshock and the problems it can cause in the coming days and weeks — especially since it’s gone unnoticed for around 25 years. There’s a lot of holes out there to patch.
Filed under: Internet, Software
.CPlase_panel display:none;
Instagram’s Hyperlapse app gets a sped-up selfie mode
Regular selfie vids just won’t cut it anymore. We live in the age of Hyperlapse after all, and now Instagram is offering the high-speed option for that front-facing cam. With a new update to its standalone iOS app, the filter-driven outfit allows you to employ its time-lapse tool to document those vacation selfie moments and more. All you have to do is tap the appropriate icon on the app’s home screen to toggle between cameras before capturing the footage and beaming it to Instagram, Facebook or your phone’s library. The new version is live in the iTunes App Store now, so have at it.
Source: iTunes
.CPlase_panel display:none;
Amazon’s latest free Android app bundle includes a $59 dictionary
Amazon sure loves giving away free apps, and today sees the start of its third Appstore promotion in almost as many months. If you’re not following, Amazon’s Android Appstore already offers a different piece of paid software for free each day. Lately, though, it’s been discounting collections of apps for a limited time, like with the new “work, play & watch” bundle. In total, there are 27 apps worth around $135/£100 up for grabs until September 27th (this Saturday). It’s not the most attractive buffet, but Riptide GP2, SketchBook Pro and the Swype keyboard are notable inclusions, with the most expensive being OfficeSuite Professional 7 (usually $14.99/£9.36) and the latest edition Merriam-Webster dictionary (normally $59/£34.44). Anyway, you may as well check out the full selection in case you spot anything you like; and remember, Amazon’s Appstore isn’t just available on its own hardware, but to anyone with an Android device and a few spare minutes.
Filed under: Cellphones, Tablets, Software, Mobile, Amazon
Source: Amazon (US), (UK)
.CPlase_panel display:none;
Game Shout Out: Fire Jumpers by RedBlox
Every gamer has experienced this scenario at least once – you play this great game but no one else knows about it. Even in this day and age, many great games go unplayed by the masses. With this series of articles I hope to shine at least the faintest of light on those games.
Fire Jumpers by Redblox is a game about fighting wildfires. Each level is set in a different place with a unique scenario. You command a fire rescue team to try your best to contain each fire. Each unit has their purpose, it is up to you to use them to your their best ability:
- Cut Team- They are used to create barriers
- Hose Team- Attach them to a water source to spray down an area.
- Helicopter- Used as transportation and water dropsWater
- Bombers- After a certain time limit they can be used to carpet an area with water
If you are looking for a Real Time Strategy game for your Android device look no further. This game can played on most devices but I recommend playing on the plus size screens. Each mission does not take long to complete so its perfect for those in between moments of casual gaming.
If that is not enough to convince you to buy this game, which costs $0.99 USD, 5% of all sales goes to the Fire Fighters 1st organization. Although this is a fun game, it also helps spread awareness of what goes on in those situations. So remember, kids: only you can percent forest fire.
The post Game Shout Out: Fire Jumpers by RedBlox appeared first on AndroidSPIN.
.CPlase_panel display:none;
Apple explains how to fix its busted iOS 8 update, new one coming soon
Went ahead and downloaded the newest, freshest version of iOS for that new iPhone 6? Then immediately regret doing so? Apple’s released a statement saying that users who have lost carrier service or Touch ID functionality should reinstall the initial version of iOS 8, until version 8.0.2 is ready to go. The company says this will take a few more days. We’ve got the full statement after the break.
“We have a workaround for iPhone 6 and iPhone 6 Plus users who lost cellular service and Touch ID functionality today after updating to iOS 8.0.1. Affected users can reinstall iOS 8 through iTunes, for more information visit http://support.apple.com/kb/HT6487. We apologize for the great inconvenience experienced by users, and are working around the clock to prepare iOS 8.0.2 with a fix for the issue, and will release it as soon as it is ready in the next few days.”
Filed under: Cellphones, Software, Mobile, Apple
.CPlase_panel display:none;
‘Bash’ command flaw leaves Linux, OS X and more open to attack
Apparently, the internet has more deep-seated security bugs to worry about than Heartbleed. Researchers have discovered a longstanding flaw in a common Unix command shell (bash) for Linux and Macs that lets attackers run any code they want as soon as the shell starts running. They can effectively get control of any networked device that runs bash, even if there are limits on the commands remote users can try. That’s a big problem when a large chunk of the internet relies on the shell for everyday tasks — many web servers will call on it when they’re running scripts, for example.
…for example, here is the bash bug in action on Mac OS X pic.twitter.com/nfDCUdRnb5
– Robert Graham (@ErrataRob) September 24, 2014
There are already patches for multiple Linux variants (CentOS, Debian, Redhat), and big internet services like Akamai have already taken action. However, the age and sheer ubiquity of the exploit means that there are some older servers and other internet-connected devices that won’t (and in some cases, can’t) be fixed. In other words, there’s a chance that everything from poorly maintained websites to your home security camera will remain vulnerable. Some devices will be protected, however, as security researcher Paul McMillan notes that many embedded devices “use BusyBox, which is not vulnerable.” It’s unlikely that hackers will breach many of the major sites you visit thanks to their quick responses to the flaw, and many of your existing gadgets are probably safe. Having said this, it’s hard to know exactly how far reaching the damage may be — it could take years before there’s no longer a significant threat.
[Image credit: Robert Graham, Twitter]
Filed under: Internet, Software
Source: Red Hat Security Blog, Debian.org, US-CERT
.CPlase_panel display:none;













