Showing posts with label a. Show all posts
Showing posts with label a. Show all posts
Thursday, December 29, 2016
How to get your lost Linux OS after Installing a Windows crap
How to get your lost Linux OS after Installing a Windows crap
Requirement: An Ubuntu Linux Live CD / USB. In this case you can make do with anything that has GRUB-INSTALL package with the Live CD. But if you have access to the internet using that Live session then you can just Google things down and dont even need this post, right?
Method:
1. Launch the Live Session.
2. Bring up terminal and type: sudo su
this gives you the privilege of a root in the live session
3. Now type: fdisk -l
Lists up all the partitions present in your system. Look for the partition that has "Linux" in the rightmost column. Note its /dev/sdx name from the left most column.
4. Type : mount /dev/sdx /mnt
Here /dev/sdx is the partition name that you noted. This command mounts that partition in mnt
5. Now type: grub-install --root-directory=/mnt/ /dev/sdx
Here /dev/sdx is the same thing as the previous command. Look at the output, the last line should say that the Installation went successful. VIOLA!!!
Reboot your system from your hard drive (normally) and hopefully the OSs should be there listed beautifully by GRUB. Smile!!!! Dont have to miss your favorite Linux distro.
Method:
1. Launch the Live Session.
2. Bring up terminal and type: sudo su
this gives you the privilege of a root in the live session
3. Now type: fdisk -l
Lists up all the partitions present in your system. Look for the partition that has "Linux" in the rightmost column. Note its /dev/sdx name from the left most column.
4. Type : mount /dev/sdx /mnt
Here /dev/sdx is the partition name that you noted. This command mounts that partition in mnt
5. Now type: grub-install --root-directory=/mnt/ /dev/sdx
Here /dev/sdx is the same thing as the previous command. Look at the output, the last line should say that the Installation went successful. VIOLA!!!
Reboot your system from your hard drive (normally) and hopefully the OSs should be there listed beautifully by GRUB. Smile!!!! Dont have to miss your favorite Linux distro.
Go to link download
Friday, December 16, 2016
A great set of thing you can learn in a day each one of em actually
A great set of thing you can learn in a day each one of em actually
I love Question sites like Stackoverflow and Quora. They have made some great people come together. Recently somebody asked a Question "What are some useful computer related technical skills I can learn within a day?" on Quora. A great answer came up. Listing it here for myself :) NOTE: The updated version of the question is here
Awesome question: Promoted
I would suggest (each at most a day)
Learn how to use Git and GitHub
Learn how to use SVN
Learn simple linux regular expressions
Find a site with a few interview programming questions, and practice going through the full answer, with code, for some of them (a few a day should be good; do them in a language you dont know well if you already can ace most).
Set up a crawler that can scrape some webpages and parse some basic data.
Set up a bigger crawler that has to fill out a form or two.
Program a basic linear algebra library (matrices, vectors, multiplication)
Add SVD to this library
Add matrix inversion to this library
Add least squares regression to this library
Make your library work efficiently with sparse data.
Learn how to use list comprehensions in python.
Update 1:
Read the freaking manual for your favorite language. In the past Ive wasted hours in Python because I didnt know that the Counter data structure existed, and kept getting the bugs from using Dicts as Counters. There are many examples like this.
Get a stackoverflow account and learn to use the site. If you dont at least know that StackOverflow is an available resource, and youre an english-speaking programmer, youre doing it wrong.
Implement a simple Machine learning algorithm on your own, with a whole pipeline. I.e. you read a simple input csv, split it into training and test set, run a simple algorithm with readily-tuneable or explorable hyperparameters, and a simple output of relevant statistics.
Learn the how to make a simple line graph in Excel, and make sure you can do it right; i.e. properly labeled axes and tick marks, title and legends.
Learn how to make a simple line graph in something other than Excel. Make sure you can do it right (same requirements).
Get your eclipse installation fully pumped up: python dev tools, c dev tools, any other language you could ever write in, and make sure you can write a hello world successfully in each perspective. Itll save you time some future day.
Learn the basic functionality of a NoSQL database; (you can learn a big chunk of mongoDB in a day)
Learn the most basic functionality of SQL (you dont need to be a query guru, but have a small clue about it).
Learn a tool for in-depth parsing of HTML and XML
Implement a list-of-lists graph data structure
Implement random walk, PageRank, clustering coefficient finding (#triangles over possible triangles) and common neighbor number finding.
Implement BFS, DFS, Shortest Path, topological sort and Minimum Spanning Tree (bonus for union-find version). Take a couple days if you have no algorithms background.
Make a simple java applet that has at least some interaction with listeners and not just buttons and such.
Go to link download
Tuesday, December 13, 2016
Make a backup of your dotfiles
Make a backup of your dotfiles
If you are a regular Linux user, chances are you change distros to experiment with them. I am one of such persons who like to experiment with various Linux distros for both educational and experimental reasons. This activity may sometimes lead to problems regarding your Desktop Environment (DE) and others. It also might be the case that you just want to clean up your /home but keep your configurations intact using your dotfiles (The directories and files in your /home whose name start with a .). Moving these files manually is cumbersome (at least for me). The following script does it for me. And moves it to a folder called "dotfiles" in your ~/.
CAUTION: It removes any folder called dotfiles" in you ~/ and creates a new one.
You MUST run this in your ~/
CAUTION: It removes any folder called dotfiles" in you ~/ and creates a new one.
You MUST run this in your ~/
rm -rf dotfiles
mkdir dotfiles
while read line; do
if [ "$line" = "" ]; then
continue
fi
if [ -d "$PWD/$line" ]; then
echo "$PWD/$line is a folder"
cp $PWD/$line $PWD/dotfiles/$line # substitute cp with mv to move the files
else
echo "$PWD/$line is a file"
cp $PWD/$line $PWD/dotfiles/$line # substitute cp with mv to move the files
fi
done < <(find . -maxdepth 1 -name ".*" -printf %P )
Go to link download
Ubuntu Linux Installing a program and making it accessible through CLI and Unity
Ubuntu Linux Installing a program and making it accessible through CLI and Unity
So, today, I wanted to install a famous text editor called "Sublime Text 2" in my Ubuntu installation. I downloaded the tar file provided by them. Like many programs, I found no installer package or program but just the executables. Yes it was usable but I wanted more. I wanted to call the program with its name not always navigate to the directory where I downloaded it just to use it. So I found this tutorial here and made it accessible via both Unity Dash and CLI (Terminal). I realized I often fall into this kind of problem when Im using Ubuntu / Linux in general. So, I decided to write down the things I have to know when Im doing such a thing.
First of all, you need to move your executables folder to the /usr/lib directory. Suppose youre too installing Sublime Text. You extract it via the tar tool like this.
First of all, you need to move your executables folder to the /usr/lib directory. Suppose youre too installing Sublime Text. You extract it via the tar tool like this.
tar xf Sublime Text 2 Build 2181 x64.tar.bz2Then you get the folder "Sublime Text 2". You move it to the /usr/lib directory using this command.
sudo mv Sublime Text 2 /usr/lib/Now you create a Symbolic Link, more like a Command to call the application via command line interface (CLI) using this
sudo ln -s /usr/lib/Sublime Text 2/sublime_text /usr/bin/sublimeNow create a launcher (icon you search for using HUD)
sudo sublime /usr/share/applications/sublime.desktopEdit that .desktop file (specify what it does) and configure it to run Sublime Text when its clicked on, paste all this in it, you can even spend time trying to understand it (for future applications)
[Desktop Entry]Thats it, now you can run the program using terminal (without pointing to where its stored) and click on a launcher to run it. :)
Version=1.0
Name=Sublime Text 2
# Only KDE 4 seems to use GenericName, so we reuse the KDE strings.
# From Ubuntus language-pack-kde-XX-base packages, version 9.04-20090413.
GenericName=Text Editor
Exec=sublime #The symbolic link
Terminal=false #Dont run it using terminal
Icon=/usr/lib/Sublime Text 2/Icon/48x48/sublime_text.png #Which icon to use
Type=Application #Type type type :P
Categories=TextEditor;IDE;Development #More info
X-Ayatana-Desktop-Shortcuts=NewWindow
[NewWindow Shortcut Group]
Name=New Window
Exec=sublime -n
TargetEnvironment=Unity
Go to link download
Sunday, December 11, 2016
Creating a Bootable Windows XP and Windows 7 or Vista in 1 USB
Creating a Bootable Windows XP and Windows 7 or Vista in 1 USB
Tutorial Guide
1- We are going to make a USB with Windows XP + Windows 7.
2- You need a Windows based PC to work with this tutorial, and you need to work with elevated privileges Run as administrator whenever needed if you are working from a Windows Vista or 7 environment.
3- You need a minimum 4 GB USB 2.0 or 8 GB USB flash drive(depend sa size of both OS )
4- You need to download the following files from (HERE) tapos EXTRACT nyo onto your desktop:
- WinSetupFromUSB-Modified (11.3 MB)
- bootfiles ( 658 bytes )
5- Open folder (WinSetupFromUSB-Modified) and right click on WinSetupFromUSB_0-2-3.exe and choose to Run as administrator you would see the following , Press OK:

6- Make sure you follow what you see in below before pressing on RMPrep USB button:

7- RMPREPUSB v.2.0.811 tool will pop up, so make sure everything is like what you see below before you press the Prepare Drive button.

8- Press OK on the next screen.

9- Press OK on the next screen also:Note: (Sometimes the image Below will not appear just skip to the next step)

1- We are going to make a USB with Windows XP + Windows 7.
2- You need a Windows based PC to work with this tutorial, and you need to work with elevated privileges Run as administrator whenever needed if you are working from a Windows Vista or 7 environment.
3- You need a minimum 4 GB USB 2.0 or 8 GB USB flash drive(depend sa size of both OS )
4- You need to download the following files from (HERE) tapos EXTRACT nyo onto your desktop:
- WinSetupFromUSB-Modified (11.3 MB)
- bootfiles ( 658 bytes )
5- Open folder (WinSetupFromUSB-Modified) and right click on WinSetupFromUSB_0-2-3.exe and choose to Run as administrator you would see the following , Press OK:
6- Make sure you follow what you see in below before pressing on RMPrep USB button:
7- RMPREPUSB v.2.0.811 tool will pop up, so make sure everything is like what you see below before you press the Prepare Drive button.
8- Press OK on the next screen.
9- Press OK on the next screen also:Note: (Sometimes the image Below will not appear just skip to the next step)
10- Exit the PREPUSB tool:

11- Now Insert the Windows XP CD into the drive bay and follow what you see below, my drive is H, yours maybe different:




12- Now we will insert the Windows 7 installation DVD into the drive bay and follow below:


13- Now OPEN folder (bootfiles) that you extracted from the RAR file you downloaded early in step 4 above, and copy all its contents to the USB thumb drive and replace all existing files there:


14- Now youve DONE >
<...the USB drive is ready to be tested,boot from a USB device.
?
11- Now Insert the Windows XP CD into the drive bay and follow what you see below, my drive is H, yours maybe different:
12- Now we will insert the Windows 7 installation DVD into the drive bay and follow below:
13- Now OPEN folder (bootfiles) that you extracted from the RAR file you downloaded early in step 4 above, and copy all its contents to the USB thumb drive and replace all existing files there:
14- Now youve DONE >
.................................................. ......................
Win Setup from USB tool, that worked perfectly nice, with no errors of any kind, and we are going to use it in this tutorial"
PS: If you want to input Windows Vista instead of Windows 7 on USB you should use Vista installation media from step 12 onwards , and you should know that with this method you cant input all 3 Windows (XP/ Vista / 7), that will not work, only 2 at a time you can choose?
Go to link download
Thursday, December 8, 2016
UVa 10161 Ant on a Chess Board
UVa 10161 Ant on a Chess Board
#include <cstdio>
#include <iostream>
#include <cmath>
using namespace std;
typedef long long ll;
ll sum(ll n)
{
return n*n;
}
int main()
{
ll i, lev, lim, mid;
while (cin >> i && i)
{
lev = (ll)ceil(sqrt(i));
if (lev&1)
{
lim = lev*lev;
mid = lim - (lev-1);
if (i<mid)
{
cout << lev << " " << i-(lev-1)*(lev-1) << endl;
} else
{
cout << lim-(i)+1 << " " << lev << endl;
}
} else
{
lim = lev*lev;
mid = lim - (lev-1);
if (i>=mid)
{
cout << lev << " " << lim-i+1 << endl;
} else
{
cout << i-(lev-1)*(lev-1) << " " << lev << endl;
}
}
}
return 0;
}
Go to link download
UVa 11428 A Minimum Land Price
UVa 11428 A Minimum Land Price
#include <stdio.h>
#include <stdlib.h>
typedef long long ll;
ll pr(ll a, ll t)
{
ll ret=1;
while (t--)
ret*=a;
return ret;
}
ll a[100];
int cmp (const void *a, const void *b)
{
return *(ll*)b-*(ll*)a;
}
int main()
{
ll test, i, sum, j;
scanf("%lld",&test);
while (test--)
{
for (i=0 ; scanf("%lld",&a[i]) && a[i] ; i++);
qsort(a,i,sizeof(ll),cmp);
for (sum=0, j=0 ; j<i ; j++ )
{
sum += (pr(a[j],j+1));
}
sum *= 2;
if (sum<=5000000)
printf("%lld ",sum);
else
printf("Too expensive ");
}
return 0;
}
Go to link download
Tuesday, December 6, 2016
Real Weight Loss Secrets Take One Step At A Time
Real Weight Loss Secrets Take One Step At A Time
Why does it seem that finding good information about losing weight is so hard in our society? It seems you have a better chance of winning the lottery than actually finding someone who genuinely wants to offer you good advice. Sad part is they will tell you for a small fee. However, after payment a lot of people still end up filling empty and left cheated! I know I have felt that way. Finding a person who you believe has the right secrets for you only to find out that the secret comes with an even more secret fee! Will It ever end? Where do the games stop and the truth begin? Well, as a Personal Trainer with 5+ years of experience I believe I have the answers for you.

Real Weight Loss Secrets- Plan + Work= WINNING
You would be surprised how many people dont have any type plan other than to lose weight. Now dont get me wrong. Wanting to losereal weight loss secrets,weight loss, how to reduce arm fat weight is a good goal to have but if you dont have any goals it can be really hard to know where you want to go. Thats like getting into a car but you dont know where you are going. You have the ability to go wherever you want to but things get easier if you have a desired outcome. So write your goals down on where you want to be this year. Focus on your end result daily. Visualize yourself at the weight you want to be. So if your goal is to be 50 pounds lighter then visualize what that will look like. This may sound funny but believe it or not you have an image of yourself that is burned in your subconscious mind and no matter what you do you can never get past the image you have of yourself. So to change the image you have now you must give your mind a new YOU to picture! Writing your goals down and holding yourself accountable is a critical step in where taking yourself to where you want to be. However writing your goals down isnt good enough. You have to act on your goals every single day. If youre on a diet then stick to it. Take yourself seriously and work hard and I promise youll get to where you want to go!
Have you ever seen anyone in the act of getting taking advantage of? You want to chime in and say something but didnt want to be rude so you just let it happen. Well as for me, Im tired of seeing that happening. The only way to fix the problem is to educate yourself before talking to someone about what your next steps should be. You dont have to be an expert on whatever subject youre referring to, but knowing what youre talking about will help you not get scammed for your time or money. It may take some effort but it will be really worth it in the end.
If you were expecting a bigger secret Im sorry to disappoint you.
The only real secret in fitness is hard work, dedication and discipline. We have been sold on the idea that you can get something for nothing but that just isnt true. Setting realistic goals that you can hit, having a plan to get to your end result and not stopping until you reach your destination is the only path you should stick to! Get those 3 down and youre well on your way to the body you want to have.

Real Weight Loss Secrets- Plan + Work= WINNING
You would be surprised how many people dont have any type plan other than to lose weight. Now dont get me wrong. Wanting to losereal weight loss secrets,weight loss, how to reduce arm fat weight is a good goal to have but if you dont have any goals it can be really hard to know where you want to go. Thats like getting into a car but you dont know where you are going. You have the ability to go wherever you want to but things get easier if you have a desired outcome. So write your goals down on where you want to be this year. Focus on your end result daily. Visualize yourself at the weight you want to be. So if your goal is to be 50 pounds lighter then visualize what that will look like. This may sound funny but believe it or not you have an image of yourself that is burned in your subconscious mind and no matter what you do you can never get past the image you have of yourself. So to change the image you have now you must give your mind a new YOU to picture! Writing your goals down and holding yourself accountable is a critical step in where taking yourself to where you want to be. However writing your goals down isnt good enough. You have to act on your goals every single day. If youre on a diet then stick to it. Take yourself seriously and work hard and I promise youll get to where you want to go!
Real Weight Loss Secrets-You Cant Do What You Dont Know
Have you ever seen anyone in the act of getting taking advantage of? You want to chime in and say something but didnt want to be rude so you just let it happen. Well as for me, Im tired of seeing that happening. The only way to fix the problem is to educate yourself before talking to someone about what your next steps should be. You dont have to be an expert on whatever subject youre referring to, but knowing what youre talking about will help you not get scammed for your time or money. It may take some effort but it will be really worth it in the end.
If you were expecting a bigger secret Im sorry to disappoint you.
The only real secret in fitness is hard work, dedication and discipline. We have been sold on the idea that you can get something for nothing but that just isnt true. Setting realistic goals that you can hit, having a plan to get to your end result and not stopping until you reach your destination is the only path you should stick to! Get those 3 down and youre well on your way to the body you want to have.
http://feeds.feedburner.com/ Yestoget-LawyerTravelHealthAndFitnessNewsEntertainmentAndOther
Go to link download
Sunday, December 4, 2016
Xperia Z Xperia Tablet Z started a new firmware update 10 3 1 A 2 74
Xperia Z Xperia Tablet Z started a new firmware update 10 3 1 A 2 74
Sony plying still fix bugs and increase stability for Android version 4.2.2 is available in the Xperia Z, Xperia Tablet Z. Users are impatient and do not claim to Android 4.3 / 4 soon again.

Posts published by Smartphone Blog
Go to link download
Galaxy S5 will become a symbol of innovation and breakthrough
Galaxy S5 will become a symbol of innovation and breakthrough
It is not outside the law , right from the moment appeared rumors about the next -generation Galaxy S , Galaxy S5 . In late 2012 , when the iPhone 5 has just appeared and Note 2 , we see that the rumor revolves around the Galaxy S4 . And this time is also a good time for the pen to write about this upcoming blockbuster of Samsung . Here is the information " speculation " about the Galaxy S5 appeared in recent times .

1 . Release Date
Perhaps the biggest question for those who are interested to Galaxy S5 super that is when it will be released . This is quite important because it can answer the question of whether they should buy a mobile device from now or continue to wait until the release date S5 .

Lets look closely at what Samsung has done to search for answers . Galaxy S5 , if Samsung intends to continue this classic series devices , high capacity will not appear until the end of this year . Manufacturer Samsung never "ready " to launch more flagship in the same year . So fans can only hope Samsung will continue to walk the line and will announce the Galaxy S devices in the next year .
Here is the information revolves around the release date of this blockbuster :
- The rumored Galaxy S5 mentioned first appears in 2014 , namely in March
- Looking back at history , Samsung also announced the Galaxy S4 in March and early April Galaxy S3

What to expect from the Galaxy S5 ?
If rumors indicating Galaxy S5 will appear in March next year , according to logic , we can fully expect Samsungs latest blockbuster will be announced a few weeks after this time may be the April or May . At the very least , fans can also look forward to Galaxy S5 will be introduced in the first quarter and the official " on sale " in the next quarter of next year.
2 . Design
For years , devotees of the Samsung is always " movement " to give manufacturers the inherent design of plastic and instead is a more advanced design to compete with rivals such as HTC stunned or Apple . Until the launch of Galaxy Note 3 , Samsung has made ??clear its reluctance to abandon familiar polycarbonate plastic . However, with super phablet launched products , while the design remains the same as conventional plastic , groups from South Korea have shown innovation by change somewhat with leather back cover . Therefore, the technology can fully expect Samsung will continue to listen and respect the needs of consumers with Galaxy S5 .

What to expect from the Galaxy S5 ?
Rumors indicate that at least Samsung is also intended to " toying " with the idea of ??a super- S5 metal . Besides , there are also information indicating that Apple is intending to produce big screen iPhone next year , so this would be an appropriate time to think seriously about the Samsung brand new design instead plastic .
However, according to some other sources , so there may be the appearance of the Samsung Galaxy F series , series high-end devices from Samsung . At this point , the introduction of a new brand is completely possible , it is also suitable for Galaxy S5 will continue to design plastic . However, it would be extremely strange if Samsung intends to " death " Galaxy S line , a brand that kimchi makers have to spend a lot of effort to build such a success today .

Maybe Galaxy S5 and Galaxy F lines will co-exist , but we can also imagine that the Galaxy S line , which has been recognized worldwide , will continue to be high-end brands of Samsung , by replacing change some design elements such as metal casing .
3 . screen
No clear rumors about the screen on the Galaxy S5 , however , the technology can expect the emergence of super- technology Youm on this next year . At CES Expo 2013 , Samsung has introduced flexible screen technology , called Youm , although this group can not design a device that can bend , but at least Youm technology also creates screen can not be broken .

Until now we have not seen Youm on any device from Samsung . However, this group has promised to bring this technology into a portable device in October , and there are rumors that Youm will only be used on an unlimited number of versions of the Galaxy Note 3 soon.
4 . Camera
Samsung will have to try more as the market increasingly appears more camera equipment for better quality than whats found on the Galaxy S line , even the Galaxy S4 . Information appears on the next blockbuster Galaxy S will be equipped with 16 MP sensor camera , offering features Optical Image Stabilization lets reduce vibration when shooting video , and other exciting features that will be available on the device is not of this Samsung in 2013 .

Camera on the smartphone market place always so fierce , so its no wonder when Samsung is always equipped with the camera app " stand " on their new devices . However, hopefully the Korean manufacturer will design the practical application than on the Galaxy S5 , instead of flaunting too much without actually beneficial for users as on previous products .
5 . Specifications and Features
If Samsung switched to a premium metal design on the Galaxy S5 , this group will probably think about getting rid of two iconic features of its back cover that is removable and comes with card microSD . This can be frustrating for a lot of users , but also no shortage of solutions to overcome this.

Samsung may offer a larger storage memory to replace the lack of a microSD memory card , can start from 32 GB as such on the Galaxy Note 3 . In addition, increased battery capacity to be a good solution for users no longer have to fret about the extensions on the device pin as before. Therefore, if accompanied with a metallic design , Galaxy S5 will probably be significantly improved storage capacity and battery life .
Next, the 3 GB of RAM on Samsungs latest blockbuster is worth to expect when the "brother " of the Galaxy Note 3 S5 was " ahead " of this movement . Besides , the upgraded configuration is also predictable if you look at the history of this group , Qualcomm chip could be a product or " homegrown " Samsung . We have seen the microprocessor 8 " of the " Samsung made ??its debut at CES 2013 , and has been used on the Galaxy S4 , thus repeating history is nothing surprising .
6 . Software
Samsung has always been constant efforts to improve TouchWiz , UI " genuine " on the Android platform . So fans can fully trust this group will progress to upgrade the software on the Galaxy S5 .

Maybe this blockbuster will be equipped with Android 4.4 KitKat or Android 4.3 Jelly Bean instead Tizen , although rumors also mention this. High possibility that KitKat will be " priority " since Samsung usually have " habits " put the latest version of Android on its new devices .
Galaxy S4 is equipped with sensor feature allows users to perform tasks with at least gesture , so if Samsung intend to continue to improve this feature on the S5 is also not surprising . Galaxy S5 can be equipped with the " dominant " one in two " predecessor " is Galaxy S4 and Galaxy Note 3 .
7 . Price
Like Apple , Samsung also has an " unwritten rule " about product pricing . Galaxy S4 sold for $ 199.99 in the contract with the network , similar to the " birth father " of this device . Similarly , Galaxy Note 3 and " ready to go " as Note 1 and Note 2 to the contract price of $ 299.99 .

Of course, when in Vietnam , consumers will not have the value " dreamy " as such . However, the problem here is that the price is a factor which is sensitive to any specific manufacturer . To be competitive , even more true in history , will not likely raise prices for Samsung Galaxy S5 up relative to the " predecessor " of this device .
Reference: gottabemobile.com
Posts published by Smartphone Blog
Go to link download
Labels:
a,
and,
become,
breakthrough,
galaxy,
innovation,
of,
s5,
symbol,
will
Friday, December 2, 2016
Sony Xperia Z Xperia M started a new firmware update 10 3 1 A 2 67 15 1 C 1 17
Sony Xperia Z Xperia M started a new firmware update 10 3 1 A 2 67 15 1 C 1 17
As announced by Sony Mobile, Xperia Z started today received a new Firmware update (10.3.1.A.2.67). In this update Sony promises improvements to the screen, camera, computer performance.
Sony Xperia M has 15.1.C.1.17 Firmware update on Android 4.1.2, the focus changes to fix errors in the boot sequence, referring to the phenomenon of green when shooting, improved management ram.Do you check for updates through Sony PC Companion.


Source: XperiaGuide, XperiaBlog
Posts published by Smartphone Blog
Go to link download
Wednesday, November 30, 2016
Root Xperia E Guide New Firmware 11 3 A 2 23 not unlocking the bootloader
Root Xperia E Guide New Firmware 11 3 A 2 23 not unlocking the bootloader
Prerequisite Root Xperia E:
- Xperia E phone running Firmware 11.3.A.2.23
- Having basic knowledge about FlashTool. (See more here FlashTool)
- Knowing Sony use PC Companion or Update Service to repair the firmware in case of an error, because I will not be responsible for any problems.
Preparation:
- Firmware C1505 - 11.3.A.2.23
- kernel 11.3.A.0.47
- kernel 11.3.A.2.23
- Framaroot v1.6
- Mirror link 11.3.A.2.23 firmware in case Google Drive overload.
Procedure: ( kernel as normal flash through flashmode FTF, no need to unlock the bootloader)
- Using FlashTool, flash kernel 11.3.A.0.47.
- Apk file to install Framaroot, then open it, and click the Install button SuperSU Gandalf, will be notified root successfully. Reboot the phone to find out SuperSU menu.
- Using FlashTool, flash kernel 11.3.A.2.23.
- E Launch Xperia phone and enjoy.


Posts published by Smartphone Blog
Go to link download
Saturday, November 26, 2016
A fraudulant Twitter account claimed to have predicted the Finale
A fraudulant Twitter account claimed to have predicted the Finale
People find so many amazing ways for their malicious activities :P Today I found a page in Twitter where the author claimed to have predicted the Final match between Germany and Argentina of the FIFA World Cup 2014, event to event. Which is to say, he predicted all the key turning points of the game. At first I was shocked at the scene of it. How come someone did that almost 12/13 hours earlier? Then, a little search result in the Twitter feed showed a link to an online blog that showed how this one hell of a trick was pulled of. Guess what? He simply posted all the possible scenarios beforehand and then as the match progressed he deleted each of them, keeping only the key points which were both in his feed and actually happened. This resulted in a Twitter account with posts showing only the key moments which turned the game :P What could be an alternative way?
Go to link download
Friday, November 25, 2016
Reviewing Niche Blueprint a Web E Commerce Product for You
Reviewing Niche Blueprint a Web E Commerce Product for You

Did you know which niche blueprint, a march dedicated to niche e-commerce, will be accessible from the 12th of Jan 2014 and which it has been combined by Steven Clayton and Tim Godfrey? Niche plans is essentially the follow-up to the rarely successful elect plans march expelled behind in 2013. A series of services have been combined generally for the launch of this new march together with a hosting company. They have even combined an one some-more product, dropshipblueprint.com, which will in addition be since to everybody who purchased niche plans for free. Very identical to dropshipblueprint.com is the important worldwide brands use which at the impulse of essay sells for around $697 on the own, but purchases of niche plans will get dropshipblueprint.com at no additional cost.
The great thing about this new product is which they have flattering most done it so which you will not need any serve investment to get yourself in to business, this is positively a great shift from what weve come to expect. No website skills, No online commercial operation experience, No nothing, so at last, usually about anybody can have success. Also an additional great thing is it doesnt take a great understanding of time possibly (note I did not contend none). All the combined complications similar to carrying to run your own associate program, set up a list or find JV partners will not be required in this course. This is what for me substantially creates Niche Blueprint the easiest for the newbie to begin creation income on line and puts it head and shoulders on top of any alternative internet selling march or product which I have seen to date. Economically vocalization we all know which things are not seeking good, one thing is for sure 2013 will move a lot of pursuit losses.
Now is really the time to movement and get which second income tide up and using so which you can nap well at night meaningful which youre covered. With this march supposing you can follow the step-by-step instructions to the letter, there should be no reason because you are not successful. As far as I can see the usually thing indispensable of you is which you work at the required time to the course. It doesnt have to take a lot, but at the finish of the day it will be the doers who have this work. So at the finish of the day if you are peaceful to take movement and do a little work on a every day basement consistently over time you should be means to see all the formula you want. You contingency recollect yet which anything inestimable in hold up requires work, diligence and time. The approach I see it you are new to the Internet and wish to have a great begin at an online commercial operation and you are someone who takes action, afterwards this march is really something you should severely consider.
http://feeds.feedburner.com/ Yestoget-LawyerTravelHealthAndFitnessNewsEntertainmentAndOther
Go to link download
Wednesday, November 23, 2016
Why BlackBerry failure A story told from the inside
Why BlackBerry failure A story told from the inside
BlackBerry currently fall into a difficult position . It has announced a loss of $ 965 million , which is largely due to costs incurred BlackBerry Z10 machine unsold inventory . Jabil manufacturing partners are preparing to cease cooperation with the BlackBerry , the company itself is proposed to be privatized firm at just $ 4.7 billion . So what factors led to the failure of the BlackBerry ? The Globe and Mail news agency did a little documentary to find the cause of BlackBerry goes down very rapidly in recent years .
![]() |
| Why BlackBerry failure ? A story told from the inside |
The main point in the article :
Read more »Posts published by Smartphone Blog
Go to link download
Tuesday, November 22, 2016
Reason why you may want a Custom PC
Reason why you may want a Custom PC
We all know you can go along to your high travel (or out of town) computer store, collect a package off the shelf and be home in 10 minutes. Sure, it will do the basis well, you should be equates to to entrance the internet and run straighforward programmes. But will it perform all you need it to? Well heres only a couple of reasons since a law built Personal Computer might be some-more appropriate.
.jpg.jpg)
Whether you fist a law PC,or set up your own, you have the event to have something unique. You additionally have the possibility to have a computer that, notwithstanding being tailored to your specifications, should essentially price you reduction in the prolonged run than the ones you get from the big inhabitant stores. This is since you have the capability to ascent assorted tools over time, while gripping the same core PC. There are an unconstrained volume of people who would be improved matched by a law computer. Heres only a few:
The reason since a lot of people fist a law built Personal Computer is for gaming. The high selection compulsory to run most new games (and a little comparison ones) is mostly over your customary PC. Particular graphics cards and RAM is indispensable to fool around them. A law computer will be built privately with this in mind.
Gamers love speed. They find out motherboards with fast complement buses and brazen harmony (upgrading the CPU and RAM as newer, faster models turn available). They things which motherboard with the fastest processor they can find and all the mental recall they can fist in to it. After that, a absolute video label with the own graphics processor is consequential to have full use of the games picturesque visible effects. Those are the essentials, but great speakers and dual big monitors never hurt.
The Laptop DJ. Mixing your own song is increasingly popular, and a custom-built computer written for audio engineering will perform improved than store-bought, general-use machines. Like gaming PCs, a fast motherboard with a absolute processor and lots of mental recall is a great starting place. If youre on a budget, give mental recall higher priority. Next, a high peculiarity orator complement is essential. The dinky speakers bundled with store-bought computers are unsound for audio engineers, who need to listen to pointed nuances in song on mixed tracks. At the really least, youd wish orator systems with a subwoofer. At the alternative finish of spectrum are high peculiarity 5-point surround-sound speakers. Finally, to take full value of your overwhelming new speakers, youll need a absolute audio card.
The enrichment of the internet has meant which a lot of people who formerly would have had to work from an bureau or college of music can right away work from home. A budding e.g. of this are people who edit video for a living. This can operation from large scale movie modifying to marriage DVDs. This has meant a raft of software privately written for video editing, and as per the gaming machines it is critical which your Personal Computer can not only run the software, but run it well.
For a motherboard, cheap solutions customarily have some-more built-in options without delay on the motherboard, such as graphics and audio support. What this equates to is which it can be some-more formidable to ascent in the future. Whilst they might be cheaper now, to keep gait with technological developments it is critical which right from the opening you have the right motherboard. Generally you wont have a preference of a motherboard in a customary system.
As we have said, there are most scenarios where a customary Personal Computer only will not cut the mustard, I goal Ive since you a ambience of what they might demeanour like.
.jpg.jpg)
Whether you fist a law PC,or set up your own, you have the event to have something unique. You additionally have the possibility to have a computer that, notwithstanding being tailored to your specifications, should essentially price you reduction in the prolonged run than the ones you get from the big inhabitant stores. This is since you have the capability to ascent assorted tools over time, while gripping the same core PC. There are an unconstrained volume of people who would be improved matched by a law computer. Heres only a few:
The reason since a lot of people fist a law built Personal Computer is for gaming. The high selection compulsory to run most new games (and a little comparison ones) is mostly over your customary PC. Particular graphics cards and RAM is indispensable to fool around them. A law computer will be built privately with this in mind.
Gamers love speed. They find out motherboards with fast complement buses and brazen harmony (upgrading the CPU and RAM as newer, faster models turn available). They things which motherboard with the fastest processor they can find and all the mental recall they can fist in to it. After that, a absolute video label with the own graphics processor is consequential to have full use of the games picturesque visible effects. Those are the essentials, but great speakers and dual big monitors never hurt.
The Laptop DJ. Mixing your own song is increasingly popular, and a custom-built computer written for audio engineering will perform improved than store-bought, general-use machines. Like gaming PCs, a fast motherboard with a absolute processor and lots of mental recall is a great starting place. If youre on a budget, give mental recall higher priority. Next, a high peculiarity orator complement is essential. The dinky speakers bundled with store-bought computers are unsound for audio engineers, who need to listen to pointed nuances in song on mixed tracks. At the really least, youd wish orator systems with a subwoofer. At the alternative finish of spectrum are high peculiarity 5-point surround-sound speakers. Finally, to take full value of your overwhelming new speakers, youll need a absolute audio card.
The enrichment of the internet has meant which a lot of people who formerly would have had to work from an bureau or college of music can right away work from home. A budding e.g. of this are people who edit video for a living. This can operation from large scale movie modifying to marriage DVDs. This has meant a raft of software privately written for video editing, and as per the gaming machines it is critical which your Personal Computer can not only run the software, but run it well.
For a motherboard, cheap solutions customarily have some-more built-in options without delay on the motherboard, such as graphics and audio support. What this equates to is which it can be some-more formidable to ascent in the future. Whilst they might be cheaper now, to keep gait with technological developments it is critical which right from the opening you have the right motherboard. Generally you wont have a preference of a motherboard in a customary system.
As we have said, there are most scenarios where a customary Personal Computer only will not cut the mustard, I goal Ive since you a ambience of what they might demeanour like.
http://feeds.feedburner.com/ Yestoget-LawyerTravelHealthAndFitnessNewsEntertainmentAndOther
Go to link download
Wednesday, November 16, 2016
Assigning to a variable from a pipe in Z Shell
Assigning to a variable from a pipe in Z Shell
Unfortunately or sadly, this could not be done by me for my use case in Bash. Im looking for a good solution in Bash too. Just to note here. To read from the pipe you just have to use the Read command. It only works this way in Zsh so far.
blkid $dev | sed -n s/.*UUID="([^"]*)".*/1/p | read var;Now you can easily use that $var in that scope like
echo $var
Go to link download
Find a new browser to replace Internet Explorer
Find a new browser to replace Internet Explorer

Last month critical security glitches were found in Microsofts Internet Explorer Web browser. Usually when this happens, Microsoft follows up quickly with a patch to repair the problem. Last months problems were different; no immediate fixes were issued sending many security conscious computer users looking for alternative browsers.
The release of Service Pack 2 (SP2) for Windows XP solved these security issues for Windows XP users. However, only days after the release security gurus announced that they have found a security hole in SP2. Guess which program is affected? Not surprisingly, its Internet Explorer. So using an alternative browser is still a good idea.
To use a different Internet browser, you dont have to uninstall Internet Explorer. In fact, you can actually use two or three different browsers at the same time with no interference. Its easy to get a different Web browser. Just visit one of the Web sites that provides a free browser and download it to your computer.
Right now I am using the Opera browser which is available at www.Opera.com. Opera is a free 16.2 MB download that will download in approximately five minutes on a broadband connection and about 40 minutes over a dial-up connection. The free version of Opera has small unobtrusive banner ads. There is also a $39 ad-free version, but I havent found the ads offensive, so I continue to use the free version. I like Opera so much that I doubt I will ever go back to Internet Explorer. I am, however, seriously considering moving to ArbSurfer Pro SE whose similar features are much better polished & which is the only browser with the unique Tablettes feature, which really makes my surfing easier.
Opera is a tabbed browser, so when you open an Internet page, you can see it as a tab on the top of the screen. Open another window as a new tab and you can easily jump back and forth. You can also see all the Windows that you have open at any given time. I find this great for research as well as for comparison shopping. I also love the mouse gestures that are built into Opera. If you hold down the right-mouse button and move the mouse you can perform certain functions without having to move the cursor up to the menu bar. One example that I use everyday is this: Holding the right mouse button down and moving the mouse to the left will take you to a previous page. Opera also has hotclicks. When you double-click on any word a menu pops up that offers options like searching for that word, translating it, and looking it up in a dictionary or encyclopedia.
Another good alternative browser is Mozillas Firefox which is available as a free download. Opera can import bookmarks and favourites. Be aware that there is a downside to using an alternative browser. Since 95% of Web surfers use Internet Explorer some Web sites will only work properly with that browser. Luckily, these instances are fairly rare. After using Opera for several months, I have only found one Web site (www.weightwatchers.com) that would appear only with Internet Explorer. I have, however, found several that didnt function correctly in Opera and/or Firefox. For instance when trying to make a purchase at the Talbots Web site, the size and color choices could only be accessed when using Internet Explorer. Another example, I can access my Web mail with Opera and Firefox, but when I want to send mail using my Web mail account, I have to be using Internet Explorer. For this reason, its best not to uninstall Internet Explorer. Even if you dont want to use it as your everyday Web browser, you might need to use it to access a certain Web site.
If you are used to using Internet Explorer, downloading and using a different Web browser is a big step. Although most alternative browsers are similar to Internet Explorer, you will need to invest some time into learning the new interface. If you decide to change, be sure you also invest some time in learning how to use some of the new and different features of your new browser. You may find that you uncovered a real treasure.
http://feeds.feedburner.com/ Yestoget-LawyerTravelHealthAndFitnessNewsEntertainmentAndOther
Go to link download
Tuesday, November 8, 2016
Lenovo Vibe Z LTE A K910L Stock Firmware
Lenovo Vibe Z LTE A K910L Stock Firmware

Firmware Ver: 5.0
Flash With SP Flash Tool
Lenovo_K910L_S129_140402-SD_Update
FOLLOW ME:

Go to link download
Thursday, November 3, 2016
SYMPHONY W70 1 A XXX V01 0 L1BMD37B Flash File Download Link
SYMPHONY W70 1 A XXX V01 0 L1BMD37B Flash File Download Link
- Android 4.0 Ice Cream Sandwich OS
- 1 GHz Dual Core Processor
- 4.0? TFT Capacitive Full Touch WVGA Diaplay
- 5 MP Primary Camera
- 0.3 MP Front Camera
- RAM 512 MB & ROM 4 GB
- 3G Network, GPRS,EDGE, Wi-Fi, GPS
- Li-Ion 2500 mAh Battery
SYMPHONY W70_1_A_XXX_V01.0_L1BMD37B Flash File
Download Link
Symphony Xplorer W70
Full Specification-
Brand- Symphony
Model Xplorer W70
Announced January 2013
Released March 2013
Network:
2G- GSM 850 / 900 / 1800 / 1900
3G- HSPDA 2100
Operating System:
Android 4.0 Ice Cream Sandwich
CPU:
1 GHz Dual Core Processor
GPU:
PowerVR SGX 531
Chipset:
MediaTek MTK6577
Display:
4.0 inches TFT Capacitive Full Touch WVGA With 480×800 pixels
Dual SIM With Dual Stand-by
Camera
Primary: 5 MP With 2592 x 1944 Pixels
Secondary: 0.3 MP
Video:
Camera Features:
Memory
RAM:512 MB
ROM:4GB
Internal Memory:
External Memory: Up to 32 GB
Player
Audio: MP3,AMR,AAC,AAC+
Video: MPEG/MP4
Radio: FM Radio
Recorder
Audio Recorder: Yes
Video Recorder: Yes
Call Recorder: Yes
Data
USB: microUSB v2.0
Bluetooth: Yes
Wi-Fi: 802.11
GPRS
EDGE
WLAN
GPS: Yes
Java:
Speed:
Browser: HTML
Sound
Alert Types: Vibration; MP3 ringtones
Speakerphone
Audio Jack 3.5mm
Battery
Li-Ion 2500 mAh
Stand By Time: Up to 210 Hours
Talk Time: Up to 12 Hours
Body
Weight:
Dimensions: 126×63.5×12.1 mm
Colors
Sensors:
Proximity-Sensor, Motion Sensor, Accelerometer Sensor (2D)
Messaging:
SMS(Threaded view), MMS, Email
Phonebook Yes
Games Yes
Built in Applications
Android Market, Office Suite Pro, Document reader,Skype, Face book, YouTube
Others Features:
Go to link download
Subscribe to:
Posts (Atom)
