Showing posts with label in. Show all posts
Showing posts with label in. Show all posts

Tuesday, December 27, 2016

Galaxy S5 will replace with new design monolithic aluminum manufactured in Vietnam

Galaxy S5 will replace with new design monolithic aluminum manufactured in Vietnam


News sources from the site of South Korea has revealed an interesting information about Samsung's smartphone in the next year. Accordingly, kimchi phone company will improve the design of their
Read more »

Go to link download

Read more »

Sunday, December 18, 2016

Use Laptops Internet in you Android using WiFi

Use Laptops Internet in you Android using WiFi


Been always a fan of Linux and Google. Of course I couldnt compromise with buying an Android for myself.  The XPERIA NEO V was undoubtedly making its mark as my first Android. But downloading the huge sized apps from the Play Store was pretty not possible with the slow yet pricey EDGE service. Had to find a way into my Laptops internet service. Well, a full guide to connect the Droid WiFi to your Laptop based hotspot. You need this because connecting to this network aint as easy as connecting to normal hotspots.

[ PrioArena ]

One more thing of note, for some reason I couldnt do that using the default WiFi settings. I had to use an app called "WiFi Manager". Its available for free at Google Play Store.

Go to link download

Read more »

New Setup Free ChimeraTool changelog 18 03 2016 S7 UNLOCK FIRST IN THE WORLD Download Here

New Setup Free ChimeraTool changelog 18 03 2016 S7 UNLOCK FIRST IN THE WORLD Download Here


ChimeraTool changelog -18/03/2016 S7 UNLOCK FIRST IN THE WORLD


Dear ChimeraTool Users,

ChimeraTool update: v 9.60.1606
16/03/2016


Samsung Galaxy S7 Direct Unlock first in the world (Shannon335 / Exynos8890)
Samsung Galaxy S7 - SM-G930F
Samsung Galaxy S7 - SM-G930W8
Samsung Galaxy S7 Edge - SM-G935F
Samsung Galaxy S7 Edge - SM-G935W

Rooting is not required (Knox will be tripped)





Before unlock: to avoid frp/reactivation/ee lock do not forget to disable Google/Samsung account.
After unlock: Install a stock firmware.

In the next builds we will add more functions and comfortable usage be not worry

Added : Direct Unlock, Read Codes, Read/Write Cert, Download/Flash Firmware, Store/Restore Backup, Repair EFS

  • Samsung Galaxy A3 2016 - SM-A310F

  • Samsung Galaxy A3 2016 - SM-A310M

  • Samsung Galaxy A3 2016 - SM-A310Y

  • Samsung Galaxy A3 2016 - SM-A310FD

  • Samsung Galaxy A5 2016 - SM-A510F

  • Samsung Galaxy A5 2016 - SM-A510M

  • Samsung Galaxy A5 2016 - SM-A510Y

  • Samsung Galaxy A5 2016 - SM-A510FD

  • Samsung Galaxy A5 2016 - SM-A510K

  • Samsung Galaxy A5 2016 - SM-A510L

  • Samsung Galaxy A5 2016 - SM-A510S

  • Samsung Galaxy A7 2016 - SM-A710F

  • Samsung Galaxy A7 2016 - SM-A710M

  • Samsung Galaxy A7 2016 - SM-A710Y

  • Samsung Galaxy A7 2016 - SM-A710FD

  • Samsung Galaxy A7 2016 - SM-A710K

  • Samsung Galaxy A7 2016 - SM-A710L

  • Samsung Galaxy A7 2016 - SM-A710S

No need for ROOT (Knox will be tripped)




>>Previously:

Added LG platform for Chimera Tool All Modules License Currently 312 LG models are supported with the following procedures: IMEI repair, Direct unlock, Read phone info, Wi-fi & Bluetooth MAC address repair.<<

You still dont have license for ChimeraTool?
Do you need Chimera Tool USB dongle?

  • Visit our store: https://chimeratool.com/shop
  • FoneFunShop UK: Chimera Dongle - FoneFunShop
  • GsmServer store: Chimera Dongle (Authenticator) - GsmServer
  • GsmEasy store: GsmEasy Store


Go to link download

Read more »

Saturday, December 17, 2016

Mount non Linux drives automatically when they are not in etc fstab

Mount non Linux drives automatically when they are not in etc fstab


So, I usually face this problem when Im not using GUI based File Managers. They allow you to auto mount drives when you click on them but when you are using CLI based file managers or no file managers at all, the only way is to mount them through writing commands. Im a lazy fad and I want this done automatically. So heres a script for that. [ https://gist.github.com/Tafhim/5d0839caca813ae82c97 ].

#!/usr/bin/zsh
if [[ "$1" == "" ]] then
echo "Please specify a device name";
exit;
fi;
deviceFile=$1

## Auto mount only ntfs, fat32, vfat
for i in $(ls $deviceFile* | grep [0-9]$); do
blkid -s UUID -o value $i | read z;
blkid -s TYPE -o value $i | read f;
echo "$z is $f";
if [[ "$z" != "" && ("$f" == "ntfs" || "$f" == "vfat" || "$f" == "fat32" ) ]] then
/usr/bin/udisksctl mount -t $f -b $i # https://help.ubuntu.com/community/AutomaticallyMountPartitions
fi;
done


Go to link download

Read more »

Friday, December 16, 2016

Sony Xperia tablet Z tablet of the year award in Europe

Sony Xperia tablet Z tablet of the year award in Europe


Recently, the tablet device Xperia Tablet Z won tablet of the year in Europe from the Association of Image and Sound Europe (EISA). Accordingly, the Sony tablet devices impress with square design,
Read more »

Go to link download

Read more »

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

Read more »

Thursday, December 15, 2016

UVa 12364 In Braile

UVa 12364 In Braile


#include <set>
#include <map>
#include <list>
#include <cmath>
#include <ctime>
#include <deque>
#include <queue>
#include <stack>
#include <cctype>
#include <cstdio>
#include <string>
#include <vector>
#include <cassert>
#include <cstdlib>
#include <cstring>
#include <sstream>
#include <iostream>
#include <algorithm>

using namespace std;

class nmb
{
public:
string br;
int ser;
};

nmb nums[10] = { {".***..",0},{"*.....",1},{"*.*...",2},{"**....",3},{"**.*..",4},{"*..*..",5},{"***...",6},{"****..",7},{"*.**..",8},{".**...",9} };

int main()
{
int n, i, j, k, tst;
string str, temp;
string strs[3];


while (getline(cin,str))
{
if (str == "0")
break;


getline(cin,str);

if (str == "S")
{
getline(cin,str);
for (i=0 ; i<3 ; i++)
{

for (j=0 ; j<str.size() ; j++)
if (!j) cout << nums[str[j]-0].br.substr(i*2,2);
else cout << " " << nums[str[j]-0].br.substr(i*2,2);
cout << endl;
}
}
else
{

getline(cin,strs[0]);
getline(cin,strs[1]);
getline(cin,strs[2]);

for (j=0 ; j<strs[0].size() ; j+=3)
{
temp = "";
for (i=0 ; i<3 ; i++)
{
temp += strs[i].substr( j, 2 );
}
for (k=0 ; k<10 ; k++)
{
if (temp == nums[k].br)
{
cout << k;
break;
}
}
}
cout << endl;

}
}
return 0;
}


Go to link download

Read more »

Wednesday, December 14, 2016

Mounting NTFS in Xperia Neo V via USB OTG Read Write both

Mounting NTFS in Xperia Neo V via USB OTG Read Write both


For newer devices (I dont know how to categorize them, maybe 2012 devices) its easy to mount any filesystem in both R/W mood for Xperia series. But a little older devices (maybe all the others?) its not so easy. Some support it partially and some dont (totally). My phone is Xperia Neo V and it doesnt seem to support that. Had a hard time to find this workaround but its effective, FINALLY !!! :D
To mount NTFS in full support you need two things. A set of modules and the mount script. How to do that follows.
Pre-requisites:
1. Rooted device (you can find tutorials on that)
2. CWM installed (you can use X-Parts from Play Store
3. Script Manager

Steps:
1. First download this file. It is the ntfs-3g modules set compiled for Android.
2. Copy the zip to your SD-Card, in a folder that you can easily recognize by name
3. Reboot into recovery, to do this first turn your phone off. Then power it up and wait for the Sony Logo. When it comes keep pressing the volume down key repeatedly (the key maybe different for another device, do a little Googling to know which).
4. Now youre in CWM (hopefully, youll see screen with a list of things). Choose install zip from sdcard. Choose the zip file from the sdcard. It will show some messages. If all goes well the last line should be something like "....done"
5. Now supposing the modules have been installed correctly copy this script and save it with the name "MountScript.sh" in your SD-card.

#!/system/bin/sh
#
# Mount USB OTG NTFS Storage device - shardul_seth@xda
# Mount point checking added by - tafhim

# load fuse support
if [ ! -e /system/lib/modules/fuse.ko ]; then
busybox echo -e "WARNING: fuse module not found! Is fuse built into kernel?"
else
insmod /system/lib/modules/fuse.ko
fi

# mount partitions
sdn=0
ls -l /dev/block/sd??
if [ $? -eq 0 ]; then
for sd in `ls /dev/block/sd??`; do
if [ -d "/sdcard/usb_drive_$sdn" ]; then
umount /sdcard/usb_drive_$sdn
rm -R /sdcard/usb_drive_$sdn
fi
if [ ! -d "/sdcard/usb_drive_$sdn" ]; then
mkdir /sdcard/usb_drive_$sdn
chmod 777 /sdcard/usb_drive_$sdn
ntfs-3g -o umask=0 $sd /sdcard/usb_drive_$sdn
if [ $? -ne 0 ]; then
busybox mount -o umask=0 $sd /sdcard/usb_drive_$sdn
echo "$sd mounted on /sdcard/usb_drive_$sdn"
else
echo "$sd (NTFS) mounted on /sdcard/usb_drive_$sdn"
fi
sdn=`expr $sdn + 1`
if [ ! -z $SM_VERSION ]; then echo showToastLong "$sdn Drives mounted!" >&$SM_GUIFD; fi
fi
done
else
echo "No drive found! Exiting.."
if [ ! -z $SM_VERSION ]; then echo showToastLong "No drive found! Exiting.." >&$SM_GUIFD; fi
exit 1
fi
exit 0
6. Connect your drive using the OTG cable.
7. If not installed download Script Manager from the Play Store. Run it and browse to the place where you saved the script. Select it
8. You dont have to change anything just select the "su" option that has an Android Skull (Pirate-ish) over it. Now select "Run" from the top-most menu.
9. If you see the message "1 drive mounted" or similar, youre done. Just go to the SD-card and drag down and youll see the folder "usb_drive_0". If you have multiple partitions, all will be mounted.

You need to do all these only the first time. From later on, you only need to follow steps 6-9 only :)

For help on rooting / CWM Installation / etc head over to XDA Developers Forum.
For help on using FlashTool in Linux read this.

Xperia Neo V specific stuff:
Some nice kernels for Xperia Neo V are the Suave Kernel, the Super Stock Kernel and the Alliance Kernel MOD.
You can download kernel .562 and kernel .587 for Xperia Neo V MT11i. You need these to root your device using this method
The DooMLord rooting kit (windows) is available here
The DooMLord rooting kit (linux) is available here
The CWM Installer (windows) is available here
X-Parts apk is available here


Go to link download

Read more »

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)


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.

?

.................................................. ......................

“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 can’t input all 3 Windows (XP/ Vista / 7), that will not work, only 2 at a time you can choose?

Go to link download

Read more »

Saturday, December 10, 2016

Setting up Android Development environment in Ubuntu

Setting up Android Development environment in Ubuntu


[ How to install ADB for Android in Ubuntu ]

Im setting up my development and firmware modding environment in my Ubuntu desktop, based on the tutorial provided in the link above

Go to link download

Read more »

Sunday, November 27, 2016

Installing and Configuring FlashTool for Xperia Devices in Ubuuntu

Installing and Configuring FlashTool for Xperia Devices in Ubuuntu


Ive been constantly switching between my two OSs, Win7 and Linux Mint for just flashing a ROM to my Xperia device. And ofcourse, I hate being in Windows. So, I found this nice little method to do the same in my Linux.
Credits go to these two pages:
http://duopetalflower.blogspot.com/2012/08/flashtool-in-ubuntu-linux.html
http://ubuntuforums.org/showthread.php?t=2084266
1. First of all go to
http://www.flashtool.net/downloads.php
and download the Linux version
2. Extract the 7z then the TAR somewhere and you find the directory FlashTool
3. Now some configuring, first of all you need a package called libusb. By the time you might come to this post the lib may get upgraded so just use your head to handle the scenarios a bit. First off, go to the site
http://libusbx.org
and download the latest tar.bz2 version.
4. Place it somewhere and cd into that directory
5. Type
sudo su
6. Youre given root rights, type
tar xvf $(ls | grep "libusb")
This will extract the tar.bz2 file youve downloaded, considering that directory has no other file whose name contains "libusb".
7. Now type
cd $(ls | grep "libusb")
and youll be inside the extracted directory.
8. Type
$ sudo su
$ ./configure && make && make install && sudo ldconfig
9. Now type this command the configure some USB settings for Flashing interface
sudo cp /etc/udev/rules.d/70-persistent-net.rules /etc/udev/rules.d/80-persistent-usb.rules
10. Open that newly created file in nano using
sudo vi /etc/udev/rules.d/80-persistent-usb.rules
11. Add these lines to the end of the document
SUBSYSTEM=="usb", ACTION=="add", SYSFS{idVendor}=="0fce", SYSFS{idProduct}=="*", MODE="0777"
12. Most of the hard part is done, now just a final installation of the ia32-libs using
 sudo apt-get install ia32-libs 
13. Now youre good to go just go to the directory where your Flash Tool executable is and just type
./FlashTool


Go to link download

Read more »

Saturday, November 26, 2016

Fixing Netbeans font problem in Linux

Fixing Netbeans font problem in Linux


Netbeans shows really awful fonts when you run it on Linux based systems. The reason behind is not actually Linux itself. Its the default arguments used to invoke the Java stuff that Netbeans uses. It, by default, never invokes Anti Aliasing. Thus for, the ugly fonts. Time to fix this. Source [ https://thomashunter.name/blog/enabling-anti-aliasing-in-the-netbeans-editor/ ]

ATTENTION: The following method will always start Netbeans with Anti aliasing on. If you want otherwise, you should try using the extra arguments with the command you use to invoke Netbeans.

1. First locate netbeans.conf. I did that using the command

locate netbeans.conf
But, it usually is found in the directory

/usr/local/netbeans-[version]/etc/netbeans.conf

2. Open the file and look for the line

netbeans_default_options=

3. Between the quotes, youll see some Java related arguments. What you have to do is, make the line look like this

netbeans_default_options="-J-client -J-Xss2m -J-Xms32m -J-XX:PermSize=32m -J-XX:MaxPermSize=200m
-J-Dapple.laf.useScreenMenuBar=true -J-Dapple.awt.graphics.UseQuartz=true
-J-Dsun.java2d.noddraw=true -J-Dswing.aatext=true -J-Dawt.useSystemAAFontSettings=on"


Go to link download

Read more »

How to Start button Solution Here 100 Miracle Box 2 27A Crack Full in Filnal

How to Start button Solution Here 100 Miracle Box 2 27A Crack Full in Filnal


 

How to Flash   Miracle Box 2.27A Crack 

Start button Solution Here

Opening 1 Computer Change Date and Time Setting

  Opening 2 Miracle Box 2.27A Crack Loader 

Miracle Box v 2.33 (9th May 2016) Double Update....


Miracle Box v2.33
Released on 9th May 2016

1.MTK Add MTK Flasher (Android).
# Universal MTK Flasher Added.

2.MTK Flasher Support MT65xx,MT67xx,MT81xx Scatter Write.
# MTK CPU Series MT65XX Scatter Write Added.
# MTK CPU Series MT67XX Scatter Write Added.
# MTK CPU Series MT81XX Scatter Write Added.

3.MTK Add Nokia RM-1172 Read/Write bin Support.
# Nokia 230 RM-1172 Read Write Flash Added.

4.MTK Add Nokia RM-1172 Unlock/Format support.
# Nokia 230 RM-1172 Unlock & Format Added.

5.MTK Add EMMC Repart Internal memory support (Meta) (6572 Tested).

6.MTK Improve MT6572,MT6583 Support.
# MTK 6572 New Flash IC Added with some Improvment Added.
# MTK 6583 New Flash IC Added with some Improvment Added.

7.MTK Improve Anti-Theft/FRP.
# MTK TAB Anti-Theft Imroved .
# MTK TAB FRP Improved.

8.MTK/SPD Add Mircale AV virus DB.
# Miracle AV New Malware Database Added in SPD/MTK.

9.SPD Improve SC7731 EMMC (NEW) BOOT Support.
# SPD SC7731 New Flash IC Added with Some Improvements.

10.Android Improve Install APK and Add Reboot Download Mode.
# Improved APK Installation.

11.Software improvements done.

 

Download Here

 

 


Go to link download

Read more »

Thursday, November 24, 2016

How to install Code Blocks Nightlies in Ubuntu

How to install Code Blocks Nightlies in Ubuntu


I got into a problem trying to do this. Heres the place I discussed it.
[ http://forums.codeblocks.org/index.php/topic,16342.0.html ]

This tutorial works for any version of Linux that has Ubuntu. Apparently, I did all this in Linux Mint 12 (Lisa). The only repository discussed herer is Jens. But this guy doesnt bother updating his repo-homepage. So, I had a crashed Lisa installation trying to be smarty pants. In the end, found several scattered threads where he told how to install the nightlies (added them up myself).

Now.

1. First of all you have to add these 2 lines to your sources.list

    deb http://apt.jenslody.de/ any main
    deb-src http://apt.jenslody.de/ any main

But wait, there are some modifications for different types of versions.
    Replace main with:
                release [For the usual releases]

2. Add another line for wxWidgets to your sources.list
   
    deb http://apt.wxwidgets.org/ squeeze-wx main

3. sudo apt-get update

4. Now install using command: sudo apt-get install codeblocks codeblocks-contrib


And to upgrade to the latest Nightly when in comes out

    sudo apt-get update
    sudo apt-get remove codeblocks codeblocks-contrib
    sudo apt-get install codeblocks codeblocks-contrib

Go to link download

Read more »

Monday, November 21, 2016

Stop the laptop from going stand by when lid is closed in Xubuntu

Stop the laptop from going stand by when lid is closed in Xubuntu


I hate the fact that I have to figure this out for every new distro I use. But here it goes for Xubuntu. Tested and working in 14.04 LTS.

1. Open the file /etc/systemd/logind.conf
2. Find the line "HandleLidSwitch="
3. Set it like "HandleLidSwitch=ignore" and if it has a "#" (hash" in front of it, remove it.
Save and reboot and you are good. :)
Credits: http://askubuntu.com/a/362692/145915

Go to link download

Read more »

Saturday, November 19, 2016

How will the Application now in Command of Your Mouth will be Android Mobile

How will the Application now in Command of Your Mouth will be Android Mobile


android app

From now on, Your Face Will Be in Command of the Android Mobile!

Hello all My dear buddies ,We will come to you like,You will not be surprised to hear that, but I actually said this, it is for this reason that I was surprised at first to be the face of the phone by pressing the button will not be considered.Just say “Ok Google

android app

Screen touch you do not have to.That way, you can not do everything.Even the text and be able to.One thing you can do all things through your mouth.

2015-02-09_134118

333

444

5

In addition, the fact that you receive a call to the song or if you want to call or call the number on your face only Ok you will agree.Do a lot of fun?

1

In addition, music or videos you want to see just say and it will be done

2

When incoming call from an unknown number then you may see from where the call is coming up on your android mobile Google map.

3


Go to link download

Read more »

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

Read more »

Z Shell the fancy in Linux terminal

Z Shell the fancy in Linux terminal


Z Shell is probably now the best known Shell option for Unix users all over the globe. That too contributed by the fact that most people take the Terminal they get as full and final and never give a second thought about its improvement. But geeks cant resist exploring and the first option they get astounds them because Z Shell, if compared to Bash, is simple a super set of its functionality. It gives us a great Terminal which is intelligent and customizable to the point where people might ask you "Which terminal is this?".

Installation: This is fairly simple. Just a quick apt-get

sudo apt-get install zsh
Configuration: After you have installed Z Shell, the very first thing you have to do launch is type in your terminal

zsh
The first you do this, you will get some configuration manual that is navigated using numbers. The procedures are very self explanatory. It helps you configure various Options such as
  • How far back in time do you want to remember commands
  • If you want the shell to search history using partially entered commands (Its neat and powerful)
  • Should all of your terminals be in sync while running
The whole configuration is saved into the file at /home//.zshrc.
After you have configured the shell, you can make it your default shell using the command

chsh -s /bin/zsh

Configuration repositories: Some great configurations for Zsh have come up with full modular support and themes that will make your experience with Z a breeze. These are the most popular to repositories.
  • Oh My Zsh
  • Prezto
There are some others that maintain Z shell configurations around the net.
Using these pre-built configurations is very easy. Such as, configuring with Prezto. You need to type in the following after launching Z Shell. The commands will create Z Shell configurations in your home directory.

git clone --recursive https://github.com/sorin-ionescu/prezto.git "${ZDOTDIR:-$HOME}/.zprezto"
setopt EXTENDED_GLOB
for rcfile in "${ZDOTDIR:-$HOME}"/.zprezto/runcoms/^README.md(.N); do
ln -s "$rcfile" "${ZDOTDIR:-$HOME}/.${rcfile:t}"
done
This will simple clone the repository into your home folder and then, link the configurations in place of your current configurations.



Go to link download

Read more »

Tuesday, November 15, 2016

How Is Actually Accounting Used In Business

How Is Actually Accounting Used In Business


It actually might seem understandable, nonetheless in managing a business, it is always key to comprehend how the business makes a income. A Small Business Accounting Software company needs a reliable business model and a good profit model. A business sells products or services along with earns a specific amount of margin on each component sold. The number of units sold is essentially the sales volume during the reporting period. The business lessens the amount of fixed expenses for the period, which basically gives them the operating profit before interest and income tax.

Go to link download

Read more »

Monday, November 14, 2016

There have been official selling price of Xperia Z1 in Europe price £564

There have been official selling price of Xperia Z1 in Europe price £564


We have the first firm details of pricing for the Sony Xperia Z1 – it will have an RRP of €649 in Germany. We don’t have official prices in the rest of Europe right now, but UK retailer Clove has the Xperia Z1 listed for £564. It also says stock is expected during the week commencing 16 September 2013. We’ll bring you details of further pricing or promotions as we have it. 
There have been official selling price of Xperia Z1 in Europe, price £564

Quote Xperiablog source
We have the first firm details of pricing for the Sony Xperia Z1 – it will have an RRP of €649 in Germany. We don’t have official prices in the rest of Europe right now, but UK retailer Clove has the Xperia Z1 listed for £564. It also says stock is expected during the week commencing 16 September 2013. We’ll bring you details of further pricing or promotions as we have it. 

Go to link download

Read more »