Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Articles by karthikeya Boyini
Page 87 of 143
Call Whole World Through New Android's Google Maps
A fresh designed Google Maps app for Android device makes worldwide navigation faster and easier. Enjoy going to unfamiliar places with Google Maps to find top places to eat, shop, play and more. Discover the best spots in a town with specific information about spots whenever it is required.This application required an Internet connection and GPS navigation system which help users with voice-guided instructions to find-out correct destination.It gets connected through 3G, 4G, WiFi, etc. But normally uses a GPS satellite connection to decide its location. To find-out the favourite destination, user has to place the destination into the application, ...
Read MoreTop 6 Ways to Diffuse Computer Education in Villages
Despite a lot of efforts, India has been almost a failure in getting inclusive benefits for its citizens. Along with the north south digital divide in India a completely new and unfortunate urban rural divide can be easily observed. Various measures have been adopted to overcome the situations but everything is more or less the same.The easiest way to fill the gap between rural urban facilities is to make these services available at all locations but still a few problems remains which are attributes to cultural and structural attributes. Here is a brief list of solution which may be employed ...
Read MoreUse Facebook’s Paper to discover Interesting stuffs
Facebook’s Paper for iPhone, a Facebook new and popular news discovery app has become a direct competitor into the mobile application market. Paper presents itself as an application to discover news and storylines from official news sources, and user’s Facebook friend’s account. It is available on the App Store (https://itunes.apple.com/us/app/paper-stories-from-facebook/id794163692?mt=8) for US only.In other word, Paper presents itself as a centre to find stories and content from personal contacts as well as national and worldwide storylines. It presents information in a format that makes easier for users to pick their favourite one.Paper displays Facebook newsfeed in its first section, this ...
Read MoreThe Best Reasons for Facebook Passion
Millions of people, every day paly with Facebook to keep in touch with close friends and family, organize events, accept news, and play games. Moreover, Facebook is a valuable and pleasant technique to communicate with others online. But, some users say that it has become a passion for them and it is difficult to log-out even after they have been on for hours.What is the reason behind user’s Facebook passion? This article will help by providing a list of possible reasons for Facebook passion.Reasons for Facebook PassionSimple Interface Makes Us HappySimple Interface of Facebook permits users to communicate with their ...
Read MoreHow to Enable or Install Byobu for Terminal Management on Ubuntu 16.04
In this article, we will learn about Byobu on the Ubuntu 16.04, Byobu which is a terminal multiplexer and easy to use, Byobu is used to have multiple windows, consoles and split panes within the windows and will also show the status badges and notifications on the terminal.To complete this tutorial we needed an Ubuntu 16.04 installed and a Linux user with sudo permissions.Installing or Checking the ByobuAs a default feature of Ubuntu 16.04, Byobu is installed. However, as a practice, we will check the installation and version and if not we will install the Byobu.To check the Byobu is ...
Read MoreThe 5 Best Price Tracking Tools
The E-commerce sector in our nation is booming like never before. Presently, it is occupying the third position with regards to internet users, having 10 million people who shop online. Definitely, there exists a huge potential, which is untapped to make use of.In India, Flipkart concluded its biggest online sale recently, despite few technical hiccups, they were successful in selling about 2 million items in a day for about 1.5 million people. The sales figure is quite impressive. Its fierce competitor Amazon India has also launched a mega sale later at the great Indian festival and Snapdeal is also not ...
Read MoreShare Powerpoint Presentation through Facebook
Using Microsoft’s PowerPoint software, people create new presentation for marketing, office, or college purpose, there are number of ways to share those presentations with others. Although, people can use these presentation as a slideshow for next business meeting, and collage guy or office people can use it to present their project at college or office. People can significantly increase number of eyes to see it by sharing it on a social media site such as Facebook. Using social media site Facebook, people can share slideshows, digital resumes and other PowerPoint presentations. This is quite simple to achieve by first converting ...
Read MoreMySQL query to add dots if string has more than 10 words?
For this, use CASE statement. Let us first create a table −mysql> create table DemoTable -> ( -> Title text -> ); Query OK, 0 rows affected (0.61 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values('My name is John and this is my first tutorial on MySQL'); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable values('This is Carol and I work on MongoDB'); Query OK, 1 row affected (0.19 sec)Display all records from the table using select statement −mysql> select *from DemoTable;OutputThis will produce the following output −+--------------------------------------------------------+ | Title ...
Read MoreInsert row with only default values in MySQL
Use DEFAULT keyword at the time of table creation and it will insert default value whenever you do not provide the value for that column.Let us first create a table. Here, for ClientAge, we have set the default 24:Let us first create a table. Here, for ClientAge, we have set the default 24 −mysql> create table DemoTable -> ( -> ClientId int AUTO_INCREMENT PRIMARY KEY, -> ClientName varchar(100), -> ClientAge int DEFAULT 24 -> ); Query OK, 0 rows affected (0.49 sec)Insert some records in the table using insert command. For values which are not ...
Read MoreIncrease database field value by specified percentage using user-defined variables in MySQL
Let us first create a table −mysql> create table DemoTable -> ( -> Amount int -> ); Query OK, 0 rows affected (0.99 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values(100); Query OK, 1 row affected (0.23 sec) mysql> insert into DemoTable values(200); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable values(500); Query OK, 1 row affected (0.13 sec)Display all records from the table using select statement −mysql> select *from DemoTable;OutputThis will produce the following output −+--------+ | Amount | +--------+ | 100 | | 200 ...
Read More