4 March 2015

Features of Windows 10


Microsoft unveiled the first details of its Windows 10 operating system Wednesday, which they say will span devices from PCs and game consoles to smartphones and tablets.

Terry Myerson, Microsoft's executive vice president of the company's operating systems group, says the latest rendition of Windows focused on "more personal computing."

Myerson says Windows 10 targets three pillars: "mobility of the experience," trust and "the right interaction at the right time," hinting the platform can be controlled by mouse, touch or even gaze.

Among the new features is the introduction of a successor to the Internet Explorer Web browser, dubbed Project Spartan. The browser, which will work across multiple devices, includes a note-taking feature for annotating webpages, a reading mode and built-in support for PDF files.

The Start menu appears to be a hybrid of the classic Windows PC interface and the tile-based presentation of applications, allowing users to go full screen with the Start menu for more information.

18 September 2014

11 August 2014

Hidden Android Secret Codes that you must know


*#*#778O#*#* = Factory Data Reset *#*#I472365#*#* = Quick GPS Test
*#*#0673#*#* OR *#*#0289#*#*  = Audio Test
*#*#2664#*#* = Touch Screen Test
#’#273283*255*663282*#*#* = Backup Media Files
*#*#0283#*#* = Packet Loopback Test
*#*#3264#*#* = Rom version
*#*#23233I#‘*#* = bluetooth Test
*#*# 1234#’#’ = PDA and Phone Firmware Info
*#*#0*#*#*= LCD Display Test
*#*#0842#*#* Vibration and Backlight Test
*#*#0588#*#* = Proximity Sensor Test
*#*#232338#*#* = Wi-Fi Mac Address
*#*#7262626#*#*= Field Test
*#*#34971539#*#* = Camera Update
*#*#19732840#*#* = Enable Test Mode

3 August 2014

Basic linux commands (New+Old) ..!!



Command: ls

The command “ls” stands for (List Directory Contents), List the contents of the folder, be it file or folder, from which it runs.
root@tecmint:~# ls

Command: lsblk

The “lsblk” stands for (List Block Devices), print block devices by their assigned name (but not RAM) on the standard output in a tree-like fashion.
root@tecmint:~# lsblk
 

Command: uname

The “uname” command stands for (Unix Name), print detailed information about the machine name, Operating System and Kernel.
root@tecmint:~# uname -a
 

Command: history

The “history” command stands for History (Event) Record, it prints the history of long list of executed commands in terminal.
root@tecmint:~# history
 

Command: sudo

The “sudo” (super user do) command allows a permitted user to execute a command as the superuser or another user, as specified by the security policy in the sudoers list.
root@tecmint:~# sudo add-apt-repository ppa:tualatrix/ppa

Command: mkdir

The “mkdir” (Make directory) command create a new directory with name path. However is the directory already exists, it will return an error message “cannot create folder, folder already exists”.

Command: tar

The “tar” command is a Tape Archive is useful in creation of archive, in a number of file format and their extraction.

Command: cal

The “cal” (Calendar), it is used to displays calendar of the present month or any other month of any year that is advancing or passed.
root@tecmint:~# cal 
 

Command: date

The “date” (Date) command print the current date and time on the standard output, and can further be set.
root@tecmint:~# date

Command: cat

The “cat” stands for (Concatenation). Concatenate (join) two or more plain file and/or print contents of a file on standard output.
root@tecmint:~# cat a.txt b.txt c.txt d.txt abcd.txt

Command: mv

The “mv” command moves a file from one location to another location.

Command: pwd

The command “pwd” (print working directory), prints the current working directory with full path name from terminal.
root@tecmint:~# pwd 
 

Command: cd

Finally, the frequently used “cd” command stands for (change directory), it change the working directory to execute, copy, move write, read, etc. from terminal itself.
root@tecmint:~# cd /home/user/Desktop