Feb 7, 2014

DIY AVR Programming dongle using TTL-RS232C Converter Kit

e-Gizmo TTL to RS232 converter kit is one must-have tool if you work often on microcontroller circuits that requires connections to external RS-232C devices, such as a PC. This kit is just not a RS-232C converter, with the installation of a jumper and a suitable cable, it can be used as well as a programming dongle for early variants of Zilog Encore! microcontroller devices.

A programming dongle for the Atmel AVR series MCUs can be built just as easily using the same TTL to RS232C Converter kit. All you have to do is to build a cable assembly that will reroute the signals coming from the converter into a pin-out arrangement widely used by AVR based modules.

Materials Needed

1. 6-wire ribbon cable, 10 cm to 30 cm long.
2. 2×3 Female Header
3. 2×5 Female Header

Obtaining the headers turned out to the challenge. These headers proved to be very hard to find from the local electronics shop, that I find it much easier to acquire long (i.e. 2×20) PCB mount type header, and then simply cut them to size using a sharp razor blade.

Wiring Diagram

Wire the headers as shown in the wiring schematic. Make sure the pin 1 position of both headers is clearly identified, and must be installed with due care. The TTL to RS-232 kit male headers are not keyed, hence has no way of preventing you from inserting the female header the wrong way. The same is true on the target (2×3 header) end.

Programming Software

The dongle was tested and worked well using the popular PonyProg2000 freeware programming software. Before you can use it with PonyProg, you have to inform the PonyProg the polarity of the programming lines. To do this click

Setup>Interface Setup


The I/O port setup window will appear. Click to turn on INVERT-DIN and INVERT-DOUT check boxes.

Click to turn on Serial Option, and click the PC COM port where your AVR programming cable is installed. Finally click OK, your AVR cable setup is now complete.

Feb 6, 2014

Computer hacker nabbed in Quezon City at Trinoma Mall

MANILA, Philippines—A computer hacker has been arrested by the police at a mall in Quezon City.


Senior Superintendent Gilbert Sosa, Philippine National Police Anti-Cybercrime Group director, said Thursday that ACG elements seized Globe Wimax modems from Alvin Araneta on Wednesday afternoon at Trinoma mall.

This was after Jonjon Masiclat, Security Officer of Globe Telecom Incorporated, sought the help of police in tracking down Araneta for alleged unauthorized selling and distribution of either stolen or hacked Wimax modems through social networking site Facebook.


During the entrapment operation, Araneta was arrested after receiving marked money from a poser buyer, police said.

Two units of Globe Wimax modem worth P2,500‎ were confiscated from the alleged hacker.

Arrested for violating Republic Act 8484, or Access Device Regulation Act of 1998, Araneta is now under the custody of ACG for proper documentation.

Via inquirer

Feb 5, 2014

Reliable System to Switch a PC on and off Remotely

This subject is sometimes also called lights out management (LOM).

The Goal

To switch your computer (or any other hardware) on/off remotely you have a couple of options:
  • Use hardware to cut the power of your device.
  • Use hardware to imitate pressing the power button of your devices.
  • Use software to log in to your device and reboot / shut down. This is only possible if the device doesn’t hang.
In this post I’ll only consider the hardware options.

In general you can use a microcontroller and build this hardware yourself or buy existing hardware. In the case of servers, the vendor may already be offering a hardware solution to restart the server remotely which could be expensive though.

It is useful if the hardware to restart your device is itself on-line on a network and is in general more reliable than the device to control.

An extra can be to include status monitoring in addition to power control. In the case of a computer, this may be monitoring the status of the power LED and the disk activity LED.

Being able to control and monitor your devices via Ethernet and thus also via Internet is useful and having a web interface at your hand instead of just an API would be great. A web interface that works well on mobile devices is another plus.

While the hardware could imitate pressing the buttons of your computer it would be good if it could also directly cut the power line and monitor the power (‘wattage’) that your device draws from the power line.

Another idea is to include logging of [power state, disk state, wattage].

The Plan

What we need is a circuit that is capable of acting like a switch (like a relay for example) to simulate the pressed buttons. As there is usually just a small current passing the switch this can be achieved by eather the digital outputs of the µController themselves or by transistors.

This page describes how you can use a reed relay or an opto coupler to close the contact of something without the problem of potential differences of your two systems.

Existing Projects

Resetbox

The Resetbox is a project using an Atmel AVR microcontroller with the custom firmware project ethersex and they designed a PCB in the form of an extension card for the PCI(?) slot.

NETIO230A

This is a ready-to-buy product by Koukaam and I designed a software to control it: netio230a.

More Custom Electronics Solutions
  • Remote Power Switch For A Computer
Used the AVR based Teensy µC and an IR remote control. Remote Power Switch For A Computer, 

lome6

lome6 is a custom PCB for the AVR platform ethersex using an Atmel AVR MEGA1284-P. See https://github.com/ethersex/ethersex/tree/master/services/lome6/doc.

The switches are connected using PC827 opto-isolators, the power LED using a PC817 opto-isolator. A MAX232 serves as an interface to the device’s / computer’s serial console. A USB headers serves as 5V power supply from the mainboard (no data link). An LCD screen can be connected. A LF33CV serves as voltage regulator for the 5V to 3V3 power supply. Temperature Sensors can be attached via the OneWire bus.

My own plans

Using the Raspberry Pi for LOM

Another idea is to use the RPi for the lights-out-management. I could implement a web interface on the RPi to:
  • virtually press the power button
  • virtually press the reset button
  • read the power LED status
  • read the HDD LED status

Via philippklaus

MS Windows Link Aggregation with LACP and NIC Teaming

Hi All!, been awhile since I posted an article and I don’t think I have ever posted one on Network Link Aggregation!! Link Aggregation is the physical combining of network links into one logical link. There are two main advantages to this practice. First is the increase throughput that you obtain by combining links, for example combining 2x 1GB links will increase your total bandwidth to 2GB.(Keep in mind this will not change your latency…) Secondly, link aggregation grants the benefits of redundancy. Imagine the setup above. If 1 of the 1GB links fails, you would still have the other 1GB link to fall back on, woot!.


Terminology:
  • Link Aggregation Group (LAG) – is the set of physical ports, connections, etc contained within a logical group.
  • EtherChannel/PortGroup/NIC Teaming – are all vendor specific terms for LAGs. The underlying protocol used is explicitly configured by the administrator.
  • Trunk – I’ve heard LAG called a Trunk before…but I don’t like calling it that. When I say trunk i think of a Trunk VLAN Link or a connection that carries multiple VLANs across it.
Protocols

Two commonly used LAG protocols used are 802.3ad LACP and PAgP .

LACP (Link Aggregation Control Protocol)
  • Negotiation –LACP PDUs are sent down each active link with the objective of finding at the other ned of the link an LACP enabled port. Once each link has negotiated that is capable of LACP, it exchanges keys which are used to prevent other unwanted ports from joining the aggregation. Keeps the ports in a LAG consistent.
  • Advantages – IEEE standard, and vendor agnostic.
PAgP (Port Aggregation Protocol)
  • Negotiation — Similar to LACP.
  • Vendor specific –PAgp is a Cisco proprietary protocol and will only work with Cisco devices. Special NICs are required as well.
  • Advantages – Let me know in the comments please…..
LAG modes
  • On – LAG is forced to form without negotiating
  • Off – No LAG will be formed, no matter what is sent to port.
  • Passive/Auto – Port will not initiate a LAG connection, but will listen for LAG negotiation packets.
  • Active/Desirable – Port will form a LAG and initiate a negotiating to the partner port, LAG will form if and only if parter port is in On or Passive mode.
Configuration

Switch Configuration

The switch I used was a Cisco 3750, you can also use this with any Switch that supports LAG or LACP (check with vendor on what they call it)

1. Console into the Switch
2. Create a Port-Channel itnerface

SW1# configure
SW1(config)# interface port-channel 200
SW1(config-if)# switchport
SW1(config-if)# switchport mode access
SW1(config-if)# exit

3. Configure each physical Link that will be part of the Port-Channel.

SW1(config)# interface GigabitEthernet 0/1
SW1(config-if)# switchport
SW1(config-if)# switchport mode access
SW1(config-if)# channel-group 200 mode active
SW1(config-if)# channel-protocol lacp
SW1(config-if)# exit

SW1(config)# interface GigabitEthernet 0/2
SW1(config-if)# switchport
SW1(config-if)# switchport mode access
SW1(config-if)# channel-group 200 mode active
SW1(config-if)# channel-protocol lacp
SW1(config-if)# exit
SW1(config)# exit

4. Double check the etherchannel for both physical lports.

SW1# show etherchannel 200 port-channel

5. Don’t forget to save!

SW1# wr me

Server Configuration

For my example I was using a HP DL380G6 which had an NIC card of HP Ethernet 1Gb 4-port 331FLR Adapter and running Windows Server 2008 R2 64-bit..

1. Install latest NIC drivers, found here. Remember I am using Windows Server 2008 R2 64-bit.
2. Install HP Network Configuration Utility, found here.


3. Open the HP Network Configuration Utility and select the NIC ports you would like to “Team”, and Click Team.


4. On the Team Properties dialog box, change the Team Type Selection to 802.3ad Dynamic with Fault Tolerance. Also name your Team Name to something appropriate like PChannel-100-toCore…


5. Click OK and OK.
6. This will create a new Network Adater.


7. Edit this new Network Adapter with the IP information that you would like.
8. Double check each Network Adapter associated with the NIC Teaming, you should see a new Protocol Adapter bound to the Network Adapter.


Limitations:
  • Each Physical Link has to be the same link speed, for example you cannot mix a 10GB link with a 1GB link to get 11GB.
  • Each Physical Link has to be connected to the same Switching Device (Can be stacked). Cannot span over separate switches. (Check out vPC!!)
Sources:

From Cebu to Bohol Sea Fast Ferries

Backpackers frequent ask question on how-to get there in to Bohol if they are at Cebu city? Well, the answer could be either Supercat, Weesam, Oceanjet and Starcraft. These four big names fastcraft are enough to answer that question, that literally means that you can ride in a fast ferry.

I don’t know… maybe talking about this would give my readers an insight what fast ferry to take if they are planning to go to Bohol. I am no tourist but I can give a review of these fast ferries.

SuperCat


RATE (promo): PhP 500.00 (one way) / PhP 300.00 (return trip) – PhP 25.00 Cebu terminal fee & PhP 11.25 Tagbilaran terminal fee

You go to Cebu Pier 4 to take this ship. Supercat takes 3 trips daily from Cebu to Tagbilaran (vice versa). You can check the schedule in their website: http://www.supercat.com.ph/sched.asp?route=68#dtn Estimated Travel Time: 1 hour and 45 minutes

COMMENT: This vessel had a lot of cancellation trips. I have my own share of frustration about their trip being cancelled. Also, this ship is late most of the time. My friend sometimes quote this vessel as Super Dog instead of Supercat… Super Dog… as in Super Dogay. LOL Well, past is past and I do not intend to pour out my frustrations. The accommodation is nice for their rate. The passengers are not crowded. You can relax pretty well inside the ferry. And I like their TV inside, the crew seems to be friendly.

Weesam Express


RATE (promo): PhP 500.00 (one way) / PhP 100.00 (return trip within 3 days) / PhP 200.00 (return trip within 4 – 7 days) / PhP 300.00 (return trip within 8 -15 days) – PhP 25.00 Cebu terminal fee & PhP 11.25 Tagbilaran terminal fee

The ship’s docking place is in Cebu Pier 4. Weesam also has 3 trips daily from Cebu City to Tagbilaran City (vice versa). Estimated time of arrival: 1 hour and 45 minutes. For more information, you can call their hotline: Cebu City Ticket Office (032) 412-9562 / 231-7737 ; Tagbilaran City Ticket Office (038) 501-8223

SCHEDULE: Departure Cebu – Tagbilaran: 9AM, 2PM and 6:30PM ; Departure Tagbilaran – Cebu: 7AM, 11:20AM and 4:30PM

COMMENT: Weesam is my favorite fast ferry so far especially now that they are having PhP 600.00 promo. If you are a type of person who prefers to go with less crowded people, this ship is okay. The number of ship’s passenger is moderate. Just don’t let Supercat cancel their trips so their passengers won’t be transferring to Weesam. So far, I did not experience any delays. The TV inside is very old. I don’t like watching their movies. I would prefer to sleep with their level of entertainment. LOL

Oceanjet


RATE (promo): Cebu to Tagbilaran & vice versa one-way trip is PhP 500.00. Advanced purchased rates for one way or round trip tickets: ONE (1) day before departure date PhP 400.00 open air accommodation only; TWO (2) days before departure date PhP 500.00; ONE (1) week before departure date PhP 400.00; TWO (2) weeks before departure date PhP 300.00

This ship is found in Cebu Pier 1. It has 5 trips daily from Cebu – Tagbilaran (vice versa). You can check the schedule at their website: http://oceanjet.net/schedule.php?origin=Cebu&destination=Tagbilaran Estimated Arrival Time: 1 hour and 45 minutes

COMMENT: Oceanjet is pretty successful in their promos. Because of their promotions, many people can afford. Because many people can afford, many passengers are waiting in line to get inside the ship. Its very crowded. The seats are pretty small especially in the “open air accommodation”. The TVs inside are fair enough. You can watch the movie if you want. The actual estimated travel time is usually for two hours. Well, I like Oceanjet because it has 5 trips daily which makes Cebu and Tagbilaran more accessible anytime and I like their promotional rates.

Starcraft


Starcraft is the only fast ferry that travels from Cebu City to Tubigon, Bohol and has an estimated arrival time of 45 minutes. This is probably the easiest and most convenient way to reach Bohol. But I live in Tagbilaran City this is the reason why I don’t ride in this ship and I don’t have any comment about this ship. LOL I will try Starcraft sooner…

I have done some research about the ship’s schedules and you can check it here: http://www.flickr.com/photos/iloilocity/4992862722/

So that is all for now folks! If you have any questions, feel free to leave a comment. Thank you for reading.

BancNet ATM Checking Balance Online Comfortably

Working from home has a lot of perks. And since most of our transactions are done at home, even our ATM balance checking is done at home (yes, online). This is very convenient if you have a BanCnet account and don’t want to go out just to check if your salary or any mode of payment has already been posted in your account.


Here are the Banks under Bancnet where you could check your atm account online:
  • Allied Bank
  • Asia United Bank
  • ChinaBank
  • China Trust
  • Citibank
  • Citystate Savings Bank Inc.
  • EastWestBank
  • ExportBank
  • HSBC
  • MetroBank
  • PBCom
  • PhilTrust Bank
  • PNB (Philippine National Bank)
  • Postal Bank
  • PSBank
  • QCRB
  • RCBC
  • RCBC Savings Bank
  • Robinsons Bank
  • Security Bank
  • Standard Charter
  • Sterling Bank of Asia
First go to the website http://www.bancnetonline.com/. If for example, you have an RCBC Savings Bank account (mind you, RCBC and RCBC Savings are two different accounts). You will just fill in your account details and your pin. Note that the numbers on the pin area are scrambled.

RCBC online balance inquiry

Metrobank and PSBank has their own sites where you can check your balance wherein you need to apply the Metrobankdirect and PSBank Online Banking first in your corresponding bank branches.

Godaddy promo code $1.99 domain 2014

Go Daddy is a privately held company that is primarily an internet domain registrar and web hosting company. Go Daddy filed for an IPO in 2006, but later canceled it due to "market uncertainties". In addition to domain registration and hosting Go Daddy also sells e-business related software and services. On June 24, 2011, the Wall Street Journal reported that private-equity firms KKR and Silver Lake Partners, along with a third investor, were nearing a deal to buy the company for between $2–2.5 billion. On July 1, 2011, Go Daddy confirmed that KKR, Silver Lake Partners, and Technology Crossover Ventures had closed the deal. Although the purchase price was not officially announced it was reported to be $2.25 billion, for 65% of the company. As of December 2011, Bob Parsons has stepped down as CEO into the role of Executive Chairman. Current CEO Blake Irving, joined Go Daddy on January 6, 2013.

This promo code will allow you to buy Godaddy domains for just $1.99. Valid for .com .net .org .us .ca

*Also try the following CODE for another $1.99 dot com registration:

RACE199FBB

RACE199FBA

Update:

After spending a fair bit of time searching around and testing many coupon codes and finding some that still work and others that don't, I have put together a list of current codes that seem to be active now november 2013 (have used quite a few myself for registrations and transfers) and wanted to keep the list handy, so thought i'd share with BHW to save some others time searching around.

Godaddy 99c coupons (mostly .com only and icann fee applies)

Code:

99LUV
sm99com
fbtgt9
rocket99
fbtgt10
99coms
cjcrmn99c
gofd2007aa

Godaddy $1.99 coupons (mostly .com only and icann fee applies)

Code:

RECAP
ROCKET199
sigler199
coder199
dog199
rad199
tech199
mma
199nuts
feast

Please share your other domains promo code if you have from other popular domain registrar. Enjoy!

Alcatel One Touch Inspire 2 Snap Review

I was able to get a hands on with the Alcatel One Touch Inspire 2, an affordable Android smartphone from Alcatel. Just a little trivia, Alcatel is a mobile phone brand co-owned by TCL Communication (makers of TCL LCD TVs) and Alcatel-Lucent of France. The OT Inspire 2 looks a lot like the OT Soleil even on the specs. One difference is the Inspire 2 has single core 1GHz processor while the OT Soleil has a dual core 1GHz processor.


Alcatel One Touch Inspire 2 specifications:
  • 1GHz Single Core MediaTek MT6575 processor
  • 512MB RAM
  • 4GB internal memory expandable via MicroSD up to 32GB
  • 4 inch WVGA LCD display (480 x 800 pixels)
  • 5 megapixel rear facing camera
  • VGA front facing camera
  • 3G, WiFi, WiFi hotspot, Bluetooth
  • GPS, A-GPS
  • 1,400 mAh battery
  • Android 4.1 Jellybean
  • P4,990 SRP
  • Free on Smart Postpaid All-In Plan 500


Likes:
  • Design – This is one nice looking device. It has a premium and solid feel when holding it.
  • Affordable – Its below P5,000 mark
  • Android 4.1 Jellybean – Its surprising to know that this device only has a single core processor. Good thing because the device is running Android Jellybean, lags are minimal.
Dislikes
  • Limited RAM- it only has 512 RAM. You cannot play games even those medium sized ones like Candy Crush.
  • Single Core processor – There are even more limitations with because of its single core processor. Many apps in Google Play Store works best with at least a dual core processor. Facebook, Twitter, or any social networking and chat apps will work fine here.
  • Small screen – a 4-inch screen is already small in today’s standards.
  • Camera – The rear facing camera lacks flash and autofocus which is already a standard for a smartphone at this price point. Pictures taken from the 5 megapixel camera looks good on decent lighting but it could be better if it only has autofocus and flash.

Alcatel One Touch Magic : Specs Price and Snap Review

After Chinese New Year spending my time at Pulau Penang, went back  home to KL on Sunday noon and arrived at 11pm after several stop at R&R eating, drinking and resting due to heavy jam. On Monday just visited my favorite IT Supermarket the LowYat Plaza and here's what I have snap on. The Alcatel One Touch Magic is on sale for only RM330 with freebies!


The One Touch Magic is equipped with a 4-inch touchscreen display with 480x800 resolution, 512MB of RAM, 4GB of internal storage, 3.2MP camera, 1300mAh battery and runs on Android 4.2 (Jelly Bean) OS. More details after the jump.


The Alcatel One Touch Magic also uses a low-power dual-core SOC 3G/HSPA+ for entry-level smartphones called MediaTek MT6572 which integrates WiFi, Bluetooth 4.0, FM Radio and GPS. The One Touch Magic comes in black, silver and cherry red colors.

Alcatel One Touch Magic Specifications
  • Dual SIM / Dual Standby
  • 4-inch WVGA (480x800) capacitive display, 233ppi
  • 1.3GHz dual-core Mediatek MT6572 processor
  • ARM Mali-400MP GPU (to be confirmed)
  • Android 4.2 (Jelly Bean)
  • 512MB of RAM
  • 4GB of internal storage
  • microSD support up to 32GB
  • 3.2MP fixed-focus camera (No LED flash)
  • VGA (0.3MP) front-facing camera
  • WiFi 802.11 b/g/n / WiFi Hotspot
  • FM Radio with 3.5mm audio jack
  • microUSB 2.0 / Bluetooth 4.0
  • GPS with A-GPS support
  • 3G/HSPA+ 21Mbps
  • Li-Ion 1,300mAh battery
  • Color: Black, Cherry Red and Silver
Availability/ Release Date: Out now!

Note: If you own this phone, please share some of your experiences and opinions about this phone, so that others may be aware of it. Thanks!

Alcatel One Touch Idol X Snap Review

The Alcatel One Touch Idol X+ is one of the big surprises so far at CES. Looking at the spec sheet it's a powerful smartphone keeping up with the flagships of 2013, but with a low cost that should see it go up against the Motorola Moto G in terms of price.


Alcatel One Touch Idol X Price at LowYat Plaza, Kuala Lumpur, Malaysia

It's coming to the UK in February, and Pocket-lint was treated to a behind closed doors briefing ahead of the official announcement at CES in Las Vegas to see what all the fuss is about.


The specs are these: the Idol X+runs a 2GHz Octa Core processor which, Alcatel claims, offering an 18 per cent power saving over a quad-core chip. But it doesn't stop at eight cores, there's also an impressive 5-inch 1080p IPS 441ppi display that is rich in colours, as you can see from our hands-on photos, and comes with an impressive 170-degree viewing angle. In the hand the screen certainly shines and it's promising to see such a nice screen on such an affordable device.

On the camera front the Idol X+ comes with a 13.1-megapixel camera on the rear and a 2-megapixel snapper in the front for video calling. The camera is also capable of 1080p Full HD video, making it ideal for Skype chatting and, of course, selfie Vine videos.

The Alcatel OneTouch Idol X+ is powered by a 2500mAh battery which it manages to cram into a 7.9mm thin body. Even the speakers are at the top level with SACD 24bit/192KHz playback support and a quick listen in a Vegas hotel room (Daft Punk Get Lucky, it's all they had) sounded remarkably good, considering.

In an attempt to differentiate itself from the vanilla Android crowd, Alcatel has added its own customised skin to the stock Android experience. It's unabashedly a cross between Apple's iOS 7 and Microsoft's Windows Phone operating systems. The Apple OS references are found in the bright colour (the Music logo looks virtually identical) and the folder design and animation, while the Windows Phone influence comes from a vertically scrolling widget page that we've not seen anywhere else on Android. The widgets - which run edge to edge to take advantage of the edge to edge screen - let you display calendar information among other things.

There's also a rather tasty looking photo gallery viewer that runs within the home pages and lets you flick through your photos without going into a dedicated gallery app to view your latest photos either one at a time or in a panel of three.


It's not going to be enough to single-handedly make you pick this phone over any other, but it's all helps. Certainly for older iPhone users looking to move to Android and into one that will cuddle them on the way.

The Idol X+ is expected in the UK in the first quarter with a price that is aggressive enough that it makes people stop and wonder why they are paying top dollar for the latest flagship handsets.

Feb 4, 2014

Unlock Root Tool : How to Root Your Android Device

If you look for the general Android rooting tools, you’ll find that there are many and thousands of devices are compatible with those methods. The Unlock Root Tool is a such tool that supports a handful of devices and provides options to root and unroot devices. The following guide shows how you can use the tool to gain root access on your device. If it works for your device and you successfully rooted your device, make sure you leave us a comment with your device name so others can benefit from it.


I. Before You Begin:

1. This will void the warranty. However, the unrooting feature in the tool allows you to reinstate the warranty of your device.

2. Make sure your device has at least 60% of battery life left.

3. You must have drivers for your device installed on your PC.

4. The following procedure works on Windows based PCs only.

II. Downloading Required Files:

1. Unlock Root Tool

III. Rooting Your Android Device (Using the Unlock Root Tool):

1. Place the Unlock Root Tool file you just downloaded to your Desktop.

2. Double-click on the tool’s executable file and install the program.

3. Once installed, launch it on your PC.

4. Enable the USB debugging option on your device from Menu>>Settings>>Applications>>Development>>USB debugging.

5. Connect the device to your PC using the USB cable.

6. Click on Root button in the tool and it’ll try to detect your device.


Click on the Root button

7. A list of detected devices will appear, select your device from the list.

8. As soon as you select the device, it’ll start the rooting process.

9. Once the rooting’s done, you should get a confirmation message on your screen.

10. Reboot the device.

11. You’re done!

Great! Your device has been successfully rooted and you can confirm the root access by installing the Root Checker app.

How to Unlock Android Lockscreen without loosing everything

Being locked out on your own device is really frustrating especially if you don’t know a way to unlock it. People around you usually want to tinker with your smartphone without your consent and that’s when things start to go bad. Fortunately, I was able to discover a way to unlock an android device even if the password of the Gmail account was forgotten. Hit the break and I’ll tell you how!


First of all, I would like to let you know that I’m not sure if this will work well on other android devices. We all know that there are different android versions out there and one can be significantly different from another. Since they have different softwares installed, it’s kinda hard to predict if it will work. Anyway, there’s no harm in trying, right?

But before I tell you how I was able to do it, I’d like to share the small story first. The locked device was actually not mine and I was just asked to unlock the android device for my girlfriend. She told me that she was asleep when her brother tried to unlock it because he wanted to play Temple Run 2 on the android phone. Due to his persistence in guessing the pattern password, it was locked out cold. The next day I called her, she told me what happened and I was okay with it because I already know a solution for it – root the device then install ClockWorkMod recovery so I can wipe the data and start it again from scratch (stock recovery is a no go). However, as soon as I sat down to fix it, I realized the problem. I cannot install ClockWorkMod without moving around the phone because some steps require it. It hit me, I was left without a clue on how to do it. I don’t want to use ADB and other complicated methods anymore as I’m afraid I might do more harm with it.


After a while, I remembered a tip that I read before that I can somehow access the homescreen by doing a trick. I read this before when I was searching for some information regarding on how to unlock android devices when the user have forgotten their email password because a lot of people have been asking me about this on our Link2SD tutorial. So this is where it all started and it’s the reason why I figured out how to bypass the android lockscreen even without the email password.

*Note: The device that I had success with is an android phone running on Android 4.0.4 Ice Cream Sandwich. We’re not sure if this will work on other versions but you should give it a try.

Tutorial: How to Unlock Android Device if you forgot the Pattern and Email Password
  • The first thing I did was to tap the ‘Emergency Call’ button and ‘Home Button’ alternately and as fast as possible. This way, you’ll be able to enter the homescreen for a while but you need to be alert to get this one because it’ll happen in the middle of your tapping of the emergency and home button. My tip is to slow down occasionally because you can catch it by doing that.
  • The moment I first reached the homescreen, I was locked out again when I tried to open the app drawer and other apps. So I tried to do the trick again and this time I swiped down the notification area and clicked on the ‘Settings’ which allowed me to enter it. Since I already know that I can’t do much inside the Settings, I immediately think of a good move.
  • I switched on the Wi-Fi and synced the attached Gmail account in hopes that it would grab the new password that I will be putting on it. I was able to put a new password because I have a recovery email with it which lets me do a password recovery anytime. If you don’t have one, you’ll be asked with your own security questions that you need to fill up and after that you can type a new password that’ll be used in your Gmail account. If you don’t remember the answer, I’m afraid you need to look somewhere else.
  • From there, I tried to enter the new password in the lockscreen of the android phone that’s connected to Wi-Fi and voila! It suprisingly worked! I managed to unlock the android phone without the forgotten pattern and email password!

Is Rooting An Android Smartphone Dangerous?

Easily root Android phone by installing a program

A blogger has publicized what he says is a “one-click” method for rooting an Android phone, including instructions and files necessary to do so. The author of RyeBrye.com has credited someone using the alias Zinx for a process to root a phone by installing an .apk file on an Android phone that roots the device without requiring additional steps.

The process is much simpler than previous rooting efforts: Install the flashrec.apk, click on Flash Cyanogen Recovery 1.4, and power off/on your phone to ensure that it worked. Just like that, you’ve got a rooted phone.

The danger of rooting a phone has previously been that novice users risked making a mistake that would permanently damage the phone. This decreases the chance of that happening, but Rye says that this process is STILL dangerous and makes no guarantee about whether or not your phone can be damaged.

RyeBrye is hosting the files and explaining the set-up process for a limited time. Read it thoroughly and make sure you know what you’re doing before attempting to root your phone.

[RyeBrye.com]
Known issues:
  • If your phone doesn’t work with cyanogen 1.4’s image (which I believe are 32A based HTC Dreams) you should probably not use this. If recovery fails to boot, you should be able to pull the battery and reboot into the normal phone and then open the recovery flasher app again and “restore” your backed up recovery.img – but no promises… This is all done at your own risk.
  • The exploit used (CVE-2009-2692) in this hack is already patched. The kernel was patched upstream on August 11th, so it is likely that an update will be pushed out from T-mobile VERY quickly to help prevent malicious people from using this same exploit.
  • Apologies in advance to anyone who has to work quickly and work hard to patch this exploit in the wild. (Although it should be noted that if you just shipped phones that weren’t neutered in the first place, it would save us all a lot of work and help us all be on the same team… but that’s a topic for another post.)
Original links:

If my blog goes down, these links are the original source for the files:

http://zenthought.org/content/project/flashrec

Mirrors:

http://g1files.webs.com/Zinx/android-root-20090816.tar.gz
http://g1files.webs.com/Zinx/flashrec-20090815.apk
http://g1files.webs.com/Zinx/flashrec-20090815.tar.gz

Huawei Ascend Y300 rooting without bootloader unlock

How-To Huawei Ascend Y300Rooting without bootloader unlock (no custom firmwares and no recovery)

http://forum.xda-developers.com/showthread.php?t=2290610


Bootloader unlock (for rooting and custom firmware flashing)

Direct from huawei: http://www.huaweidevice.com/worldwide/servicePolicy.do?method=toApplyUnlock
Or

This method DOES NOT WORK. I've tried 5 different devices and each of them comes back with an error.

You have to email Huawei directly at mobile(shift-2)huawei.com with the same info. They'll email you back with the code. They're pretty fast at it too. Or using DC-Unlocker

The information is spread out throughout this very long thread. So here's how it worked for me.

Put your phone in USB Debugging mode. (Settings --> Developer Options

1. Unlock bootloader. This must be done in order to install TWRP or any alternate firmware.

There are instructions about getting a code direct from Huawei, but this never worked for many of us. There is an easy way using the program DC-Unlocker. No cost.

Download DC-Unlocker here: https://www.dc-unlocker.com/downloads
Follow the instructions here: https://www.dc-unlocker.com/free-huawei-bootloader-unlock-tutorial

Download and install the Huawei drivers, if you haven't done so before.
  • Tip 1: Don't forget to change the 'Select Manufacturer' window to 'Huawei Phones'.
  • Tip 2: They tell you to press both Vol+ and Vol- together. Basically, just press in the middle of the long Volume button. The phone should boot up to the purple screen.
  • Tip 3: When finished, you have to pull your battery in order to get out of the purple screen.
Note the bootloader unlock code that DC-Unlocker displays.


http://www.youtube.com/watch?v=U4tyT-noOaA

Custom recovery/firmware
** SIM unlock "might" not work on custom firmwares, so makes sure you have unlocked your SIM already on stock firmware (or have stock firmware backed up BEFORE jumping stock)

For those not well-versed in the geekier side of Android, here is a good guide to unlocking the bootloader, TWRP, Root, and installing a custom rom...

http://www.modaco.com/topic/366286-guide-ascend-y300-100-b182-bootloader-unlock-twrp-root-custom-rom-flash/

Now go to this link: http://huawei-y300.tumblr.com/post/47366836617/how-to-unlock-and-root-huawei-ascend-y300-all

Under 'What you need', download the tool pack called 'Download 1.4'. Unzip the file.

Scroll further down the page to 'Step 2'. This will tell you how to unlock the bootloader and install TWRP.

2. Install another firmware.

In this case, we will install FusionX which seems to work well.

Download it here: http://www.directlinkupload.com/uploads/178.98.18.133/FusionX-B08-Y300-B199.zip

Copy the zip file to an SD card and insert into your phone.

Boot into TWRP by pressing Power and Vol+ at the same time for around10 seconds.
You have to clean out the data left by the previous firmware, so press 'Wipe'. Swipe the arrow at the bottom to the right.

Then press 'Advanced Wipe'. Check 'Davik Cache' and 'Cache'. Swipe the arrow to the right.

Go back 2 screens to the main screen. Select 'Install'.
Select the FusionX firmware from the list.

https://www.dropbox.com/sh/r011q11zjapvigu/PTpcvjKWS9

that's my folder of files.

aokp 4.3
supersu + root
gapps for 4.3
TWRP recovery
all windows drivers

if anyone has any questions just ask.

notes on how to use each -

aokp 4.3 - flash in recovery. must be in latest twrp or CWM that is altered for android 4.3+. you must do a full wipe in recovery before installing this also.

supersu - flash in recovery. reboot. done. rooted. yay.

gapps - flash in recovery after you install any 4.3 rom and only after a fresh reboot.

TWRP - install in fastboot.
to enter fastboot. remove battery. put back in hold power and vol - for 5 seconds until you get stuck at huawei logo. connect to pc. then do what you want.
to enter recovery. remove battery. put back in hold power and vol + for 5 seconds until you see the TWRP splash screen.

drivers - 2 driver packs. 1 for fastboot, storage mode and adb... the other for diagnostic, debugging and engineering.
double click huawei_g300_drivers.exe to install and for the other extract the entire folder and double click driversetup.exe

After you unlock bootloader.
download this. https://www.dropbox.com/s/9c9t5b3z8tda235/InstallTWRPY300.zip

Extract contents and double-click on install-windows and follow instructions on screen.
you can then flash this supersu+root zip to gain root.

https://www.dropbox.com/s/ckgczvi4k17y7r7/UPDATE-SuperSU-v1.25.zip

I think that is what i did.

Here are more custom ROMs for the Y300.
http://www.modaco.com/topic/365268-all-custom-roms-for-huawei-ascend-y300g510/

Anyone who wants their phone to be iOS like should try MIUI V5 custom ROM.
http://www.modaco.com/topic/365182-rom-miui-v5-3927-nfc-support-screen-state-scaler-multilanguage/
http://www.htcmania.com/showthread.php?t=677951

SIM Unlock
** SIM unlock "might" not work on custom firmwares, so makes sure you have unlocked your SIM already on stock firmware (or have stock firmware backed up BEFORE jumping stock)

From ebay (http://www.ebay.ca/sch/i.html?_from=R40&_sacat=0&_nkw=Huawei+Y300+unlock+code&_sop=15) (as low as C $4.35).
or infamouskid (http://forums.redflagdeals.com/fs-bb-huawei-ascend-y300-prepaid-50-now-hot-1413934/22/#post17907253) (USD $5)

Oh, you didn't backup your stock ROM after all did you ? no problem ..

here is a repacked stock rom built for the y300-151
https://www.dropbox.com/sh/61usc99y1jlv2bw/amXT_ERiQN

it is around 600 megs in size and debloated.
this is as close as we get to a full stock rom for now.
build.prop has been included. based on b194

until we get a proper release from huawei this will have to do as a proper fall back.
save the rom to external SD.
wipe everything... click advanced wipe...check mark system, data, cache, dalvik, android and internal sd. to be sure do it 3 times.
press back 2 times then press install. wait for it to complete.
wipe dalvik after it is done and reboot then leave the phone alone for 10 minutes AFTER it boots into android to allow the phone to create back links.

Apps to get you going ?

I've installed MapFactor: GPS Navigation https://play.google.com/store/apps/details?id=com.mapfactor.navigator&hl=en

Here are some of the Apps I have install to get the best performance out of this phone:
Battery Doctor (Battery Saver) https://play.google.com/store/apps/details?id=com.ijinshan.kbatterydoctor_en
Clean Master (Cleaner) https://play.google.com/store/apps/details?id=com.cleanmaster.mguard
Greenify *ROOT: Renew my Phone https://play.google.com/store/apps/details?id=com.oasisfeng.greenify
Lockout https://play.google.com/store/apps/details?id=com.lookout
AppMgr III (App 2 SD) https://play.google.com/store/apps/details?id=com.a0soft.gphone.app2sd

First in-thread cooked ROM:

I just build a custom Rom for me Based on the bell Stock Rom for the Y300-0151 Huawei Phone. I'D like to share it with you for those who want a better experience with the stock rom.

Since the rom is not avalaible yet, i've had to take the files from my TWRP backup. I had to rework the Cust Partition because i didn't backup it...
i'm not a skilled coder or a developer, i have learned how to do things by reading a lot on XDA Forum. So if you found bugs, not sure i'll be able to fix them. i'm using it for few days now and so far everything working fine... so let me know if you find something not working good and i'll see what i can do!!!

Here's what i mod :
  • -Used Dsixda kitchen so Rooted, deodexed, zipalign, busybox,...
  • -Remove the Bell Crap
  • -Remove some huawei stuff like keyboard, backup app, DLNA,...
  • -Remove some Google Stuff like Books, magazines, Google Play music, Talk,... if u need some of them i can provide flashable zip
  • -Added many more languages
  • -Added battery Percent in notification bar
  • -Edit apn-conf.xml for North american Carrier
  • -Edit Build.prop (Tweaks)
  • -Replace Huawei file manager by ES File Explorer
  • -Added MX Video Player
  • -probably others i don't remember.
I know the huawei launcher sucks but i want to keep the rom as much stock as possible (if you want you can download new launcher and install it)

For people having problems with Swiftkey not sticking, found a workaround for this : Install the app, Backup it with Rom Toolbox Pro or Titanium Backup, uninstall the app, Restore from your backup, reboot, reconfigure swiftkey, should now stick after reboot...

Instructions for installation :
  1. 1-Download the file Here (http://d-h.st/HV0)
  2. 2-Enter Recovery (Works with TWRP but not tested with CWM)
  3. 3-Wipe DATA, SYSTEM, CACHE, DALVIK, CUST
  4. 4-Install File
  5. 5-Reboot
  6. 6-Wait 10 Minutes
  7. 7-Reboot
  8. 8-Do first time setup
  9. 9-Update apps in playstore
  10. 10-Update binaries for Superuser
Enjoy!

Via redflagdeals

Huawei Ascend Y210 Review : What does $78 buy you?

I recently raved about the Nokia Lumia 520. It was the first $150 prepaid phone that I’ve tried that didn’t suck. Of course now that you can buy the 520 for $150, many entry-level Android phones are going to have to drop in price to stay competitive.


So now we have a pair of $78 Android phone: the Huawei Ascend Y210 for TELUS which is available exclusively at Walmart and the Huawei Ascend Y201 on Virgin Mobile. We’ll be looking at the Y210 today.

Before I start we need to have a reality check. The Y210 is a $78 phone. That pretty much makes it the cheapest Android phone you can buy. With a fancy phone, a review is usually about its fancy features and what you get. With the Y210 it’s more about what compromises have to be made to hit the $78 price point and whether they’re acceptable.

It’s also worth exploring whether the Y210 and it’s ultra-low price point are a worthwhile alternative to a feature phone.


Huawei Ascend Y210, Apple iPhone 5 (just to compare size)


Huawei Ascend Y210, Y201


Y201 and Y210

The plastic covered screen measures 3.5” with a resolution of 480x320. While the resolution isn’t very high it’s only 3.5” in size so it has a pixel density of PPI 162 which isn’t THAT bad. Still 480x320 isn’t very high so while it’s not that coarse, it does feel a bit cramped at times.


Now you’re obviously not going to get a TFT screen for $78. Still, the Y210’s STN display doesn’t look all that bad. Viewing angles are better than I was expecting. Colour is also pretty nice. There isn’t too much ghosting.

The plastic screen shows a lot of reflections and gets oily very easily.

I haven’t had a chance to use it under direct sunlight yet.

You won’t confuse it with the HTC One’s display but it’s actually not a bad display.

Camera:

There’s a 2 megapixel camera on the back which can record video at 640x480. There’s a long 2 second lag from when you press the shutter button to when it takes the picture.

Now, megapixels are a poor indicator of image quality. So does the Y210 sport a revolutionary new 2 megapixel sensor where each pixel looks perfectly? Unfortunately no. Even with lots of light pictures are slightly foggy looking and aren’t very clean. It reminds me of a camera phone from 6 years ago.

Video isn’t very good either. The sensor isn’t very sensitive so it has to use slow shutter speeds which results in video that is often choppy and blurry. The microphone doesn’t sound all that great either.

Body:

The plastic on the back is hard and unpainted - It reminds me of the dash on my car. Still, overall the Y210 doesn’t feel cheap. It doesn’t creak or shift much when you squeeze it.

One refreshing thing about the Huawei is that its small size makes it very easy to use with just one hand.


Software:

While the latest phones are rocking Android 4.1 and 4.2, the Y210 soldiers on with Android 2.3 (For phones it goes Android 2.3 -> 4.0 -> 4.1 -> 4.2). In the case of the Y210 it’s probably better that it ships with an older version of Android since a newer one would probably require more resources.

If you’re wondering what differences there are between 2.3 and 4.x phones, with regards to the Y210 the most important one is that you can’t kill programs from the task switcher. While I don’t normally have to worry about killing programs, this ability actually becomes more important with the Y210 due to it’s limited resources.

There are many other differences like the ability to disable programs, an improved UI, more lock screen options, etc but most probably won’t run well on the Y210’s anyways.

It uses a custom launcher. The most significant difference is that there are toggles for WiFi, Bluetooth, GPS, mobile data and an orientation lock. Here’s a tip; if you have trouble running a program try disabling GPS. That will free up some memory.

The keyboard works alright but it has trouble keeping if if you go really fast on it.

There’s also a FM radio and QuickOffice.

Performance:

SunSpider:

SunSpider is a benchmark that runs in the browser and tests javascript performance. Since I don’t review a lot of entry-level phones, I didn’t have any direct competitors (like the LG Optimus L3 and HTC Desire C) to compare with the Y210. Instead, I grabbed some older Android handsets I had sitting around to see how the Y210 compares with them. One thing to consider is that the Y210 has a 480x320 display whereas the other phone’ are 800x480. I do have an old Samsung Galaxy (the original non ‘S’ one) which has a 480x320 display but it has a much older processor and version of Android which would have an effect on benchmark results.

Lower scores are better.

Huawei Y210: 3800
Samsung Galaxy S: 5780.7
Google Nexus One: 5796.7

While all phones have 1Ghz processors and are running Android 2.3, the Y210’s higher scores mean its processor is more efficient in this instance.

Peacekeeper:

Peacekeeper is another benchmark that runs inside a browser. It test HTML5 performance.

Huawei Y210: 195
Samsung Galaxy S: 160
Google Nexus One: 151

At its heart, the Y210 has a Qualcomm MSM7225A processor clocked at 1Ghz. It’s a Cortex A-5 processor.

Most of the time, the processor actually provides adequate performance. The problem is that the Y210 only comes with 256MB RAM and 512MB storage.

When you turn the Y210 on, it only has 80MB of free RAM left. That’s not so bad right? It’s not so bad until you consider turning on location based services uses up around 10MB, opening up the settings to check how much free RAM you have eats up another 10MB. If you stick Facebook Messenger on that actually eats up 20MB of RAM.

If you browse a large webpage and press the home key you’ll actually get to see the launcher re-launch itself. While the Y210 still functions with so little RAM it does so - barely. It can definitely use more.

Many people who get the Y210 will probably give the built-in navigation a try. Before you can use voice-guided navigation first you have to install text to voice. When I tried to install it, Google Play closed (probably due to lack of RAM). After a second try it went on.

When I was actually using navigation it would also close. Ditto for when I’m surfing a large webpage.

In order to run Vellamo, I basically had to remove Facebook Messenger and disable my Gmail.

Another problem is that out of the 512MB of built-in storage only 160MB is left over for programs and storage. While Huawei does supply a 4GB MicroSD with the Y210, some programs can’t be installed onto the MicroSD, so the built-in storage can also fill up quickly. In fact, I don’t even advise updating the built-in programs because many of them (like Google Play, Maps, etc) can’t be moved to SD.

If you get the Y210, the best thing to do would be to install as few extra programs as possible. Also, make sure all your programs are installed to the SD card.

settings -> Applications -> Manage Applications -> choose the program -> Move to SD.

Many lighter apps like Facebook Messenger will run fine as long as you have enough space for them.

If you’re wondering how it does with games, it’s best to stick with only the most basic games. I managed to install Angry Birds, but it doesn’t run very well. Sometimes it will close - probably due to lack of RAM.

When viewing larger webpages the Y210 tends to bog down - sometimes it feels unresponsive. Again, I suspect this is due to lack of RAM.

The key to the Y210 is to not install too many extra programs on it. If you want to try lots of different apps you should probably look for something with more RAM and storage.

As a Media Player:

Huawei includes a 4GB microSD card with the Y210, while most of it’s competitors omit this but give you more built-in storage. I’ll be honest, while the 4GB card is nice, more built-in storage is more useful given how little space there is for programs.

I downloaded BS player and found that while it was able to playback 480p DiVX files just fine, 720p mkv’s were very choppy and not really watchable.

The headphone out is pretty adequate. It sounds fine and should be loud enough for most people.

The built-in speaker doesn’t sound that great. While it’s not that loud it’s louder than I was expecting.

As a Phone:

RF performance is average. The earpiece and speaker phone are both loud enough.

Sound quality is also adequate.

Despite the meager specs the Y210 sports a surprisingly large 1750mAh battery. As such, battery life is very good. It’s one case where a using a Smartphone doesn’t mean sacrificing battery life.

Conclusion:

In the end, the Huawei Ascend Y210 doesn’t really contain any surprises but then again, I wasn’t expecting any. Of course if you can swing it, I’d advise you get something with more RAM, storage and a higher resolution screen. When it comes to buying stuff and you’re debating price vs functionality there’s usually a curve. Usually there’s a sweet spot in the middle where you get most of the functionality you want for a reasonable price. I’ll be honest, the Y210 sits low on the curve; while you don’t pay much you don’t get a lot either.

That said, at $80 the Y210 is obviously aimed at an entry level buyer. Someone who’s curious about smartphones but doesn’t want to spend $700 or sign a contract. Someone who’s not a power user and most importantly, someone who’s mostly going to stick with the built-in apps and not going to install many apps.

The Y210 will do an adequate job - barely. Otherwise I suggest you keep saving and wait for a more powerful phone to go on sale. While researching competitors I noticed that the Samsung Galaxy Discovery on Bell is on sale for $99.99 at Futureshop. It actually has a slightly slower processor but it comes with 512MB RAM and 4GB of built-in storage which should make it much more usable.

Is it better than most other Android Phones? No? Is it better than a feature (dumb) phone? Probably.

If Huawei decides to quickly come out with a successor for 10 dollars more I recommend they include 384MB of RAM (512MB would be even better), ditch the included microSD and include 2GB (4GB would be better) of built-in storage. If they’d do that I’d probably be pretty excited about it because then it would be much more capable.

Now the Y210 is only $78 bucks. Since it’s only 78 bucks there’s really no point listing the camera as a con. For $78, the only thing I expect from the camera is that it’s present. So in that sense, I don’t have that many pros or cons for the Y210.

Pros:
  • Cheap
  • Reasonably well built
  • large battery
  • adequate as a phone
Cons:
  • Needs more RAM
  • Needs more built-in storage
This article was written by guest blogger via howardforums, you can also post yours contact me!

iOS : New 'Secret' app bring anonymously on social sharing

Remember the social networking, secret-sharing app, Whisper, which was originally based on the PostSecret model? Well, the iTunes App Store now has a new secret sharing app, called Secret.


The new app, which was released on Thursday on the iTunes store, is meant to help one share what one is thinking and feeling with friends anonymously. One can write anything that is on one's mind, free of judgement.

The app was created by former employees of Square and Google, David Byttow and Chrys Bader. The basic idea of the app is to allow users to anonymously share secrets with members within their social circles. There are no names, no profiles involved and people can as the official website says, be themselves. "Basically, every secret should stand on the merit of its own idea. It would be nice, for once, to have a normalising platform," said Byttow recently in an interview.

The idea of the normalising platform, is to encourage the free spread of an idea, rather than the person who has given birth to the idea, or as the app suggests, the secret. Also akin to Twitter, not exactly though, every secret has a comment thread attached to it, with individual users are assigned random avatars that stay consistent within a thread. A lot like a temporary handle similar to Twitter. A person however needs to have a minimum of three friends on Secret before one can see any posts. Usually text-based, the content also allows to add a photo or a colour backdrop to the post.

It does remain to ask, how anonymous is anonymous? Forgetting the wordplay, the recent news of the GCHQ and the NSA tapping mobile data via apps as such and even games, it is anyone's guess to be made as to how anonymous a post really is. Secret's own privacy page states that the app collects users' log, location and device information. It states that it is 'solely used by us for debugging and analytical purposes [e.g., to enhance the service]." In the event of a user deleting the account, the data will still be retained cached or archived copies will be created, as required by law or legitimate business services.

Huawei Ascend P2 and Ascend W2

Huawei is likely to have its hands full this year with the already announced Ascend D2 and 6.1-inch Ascend Mate at CES. With the Mobile World Congress scheduled for next month in Barcelona, the company plans to introduce two new smartphones namely the Ascend W2 and Ascend P2 at the event as told by Richard Yu (Huawei Chairman for devices) to the Chinese social networking site Sina Weibo.


New images of both the Ascend W2 and Ascend P2 have surfaced on Chinese forum cnBeta. While the Ascend W2 is the successor of the low-end Windows Phone 8 running Ascend W1 recently launched at CES, the Ascend P2 is a sequel to Huawei's mid-range phone, the Ascend P1. Both phones are being touted as the "thinnest smartphones in the world".

The site has offered details regarding the specs of both these smartphones. The Ascend W2 will apparently be just 7.7 mm thin. It will come with a 4.5-inch 720p HD ultra-sensitive touchscreen that can be operated with gloves, an 8-megapixel rear camera, a Qualcomm dual-core processor with unspecified clock frequency, 1GB RAM, 16 GB of internal storage and a 2,800 mAh battery.

Likely to be Huawei's flagship Windows Phone for this year, the Huawei Ascend W2 is expected to be priced at 3,200 yuan or approximately $515 or €386.

Coming to the Ascend P2, the device is expected to be less than 6.45mm thin. The specs include a 5-inch 720p display, a 1.8GHz quad-core HiSillicon K3V2 processor with 2GB RAM, 8GB internal storage (non-expandable), 13-megapixel rear and 1.3-megapixel front cameras, Android 4.1 Jelly Bean and 3,000mAh battery. Pricing details for the smartphone currently remain unknown.

The HiSilicon processor is a Cortex A9 design and according to the site, the company plans to use the Cortex-A15 architecture later this year.

Huawei’s Ascend P1 S : World’s Slimmest Android Smartphone

Huawei has staggered its device announcements over the course of CES 2012, beginning with the unveiling of the super-slim Ascend P1 and P1 S and ending today with an LTE version of the phone. The family all have similar specifications, and represent the most powerful phones the Chinese manufacturer has released to date.


It’s the Ascend P1 S that’s the standout model of the three, thanks to an astonishingly slim chassis measuring just 6.68mm. Forget the Galaxy S II, the iPhone 4/4S and even the Droid RAZR, with the P1 S Huawei has grabbed the “world’s slimmest smartphone” crown and now confidently wears it at a jaunty angle, knowing this figure is going to be tough to beat.

The phone is dominated by a 4.3-inch Super AMOLED touchscreen with a 540 x 960 pixel resolution, and the whole thing is powered by a dual-core 1.5Ghz processor, 1GB of RAM and a PowerVR graphics chip.

Google Android 4.0 Ice Cream Sandwich comes already installed, and there’s an 8-megapixel camera with 720p video recording on the rear, plus a 1.3-megapixel video-call lens around the front. The feature list is rounded out with GPS, Wi-Fi, Bluetooth 3.0, 4GB of internal memory and a microSD card slot.

There are two variants of the Ascend P1 S, named the P1 and the P1 LTE. While the P1 LTE is exactly the same as the P1 S aside from the 4G LTE radio inside, while the standard Ascend P1 has a 1mm thicker chassis than its record-beating sister device.


According to FierceWireless.com, Huawei is in talks with US carriers and is hopeful of a launch before the end of the summer. In Europe however, the P1 S is ready for a March release. Pricing will be set at that time, but expect a tag of around $400 in the USA before any network discounts are applied.

Via digitaltrends

Jan 30, 2014

Apache Servers Dominations

Apache Servers host almost 51% of websites in the world. Apache servers work on a cross platform open source format, so developers can easily modify and update their servers as needed. Apache servers are written in the C programming languages and were first released in 1995.

Apache is compatible with almost every operating system including eCom Station, FreeBSD, Linux, Mac Operating System X, Microsoft Windows, Novell Netware, Solaris, OS/2, and Transaction Process Facility (TPF).

Benefits

There are many advantages to using an Apache Server. They can be modified and redistributed as needed. You can download the server platform free of charge since it is licensed as open source.

Administering an Apache Server is relatively easy when compared to other servers. Apache servers come with various configuration files that have their own proper documentation, which makes it simple to understand and use the server. Due to its high compatibility, it can be used practically with any operating system and application. Apache Servers are extremely efficient and can visit sites which other servers may not be able to access and also perform tasks more effectively.

Since they are cross platform servers, they can run in any kind of a framework or computer set up. Apache Servers are portable and can be transferred from one platform to another without any problem.

How It Works

You can download Apache server from the Internet. Install it in your system and make any configuration changes that you may need.

It is important to take a look at some of the features of Apache servers. Apache has compression methods, which can be used to decrease the size of the web pages. This compression is generally done in mod_gzip method. The server also has a virtual hosting feature, which means that if you install Apache in one system, it can simultaneously serve many websites. Apache also has a ModSecurity, which detects intrusion and prevents the use of the web engine for certain web applications. Other features of Apache servers include content negotiation, configurable error messages, and a database management system to authenticate databases.

Apache servers can be used to host both static content and dynamic web pages. Common language interfaces that support Apache are Perl, Tool Command Language (Tcl), Hyper Text Prepossesor (PHP), and Python. Apache uses AWStats to analyze data from Internet services and compile a report. W3 Perl is used by the server to analyze Apache log files.

Companies/Brands

You can purchase or download Apache servers from Apache-Gui.