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 76 of 143
Use 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 use small font in HTML?
To set the small font in HTML, use the style attribute. The style attribute specifies an inline style for an element. The attribute is used with the HTML tag, with the CSS property font-size. HTML5 do not support the tag, so the CSS style is used to add font size.Just keep in mind, the usage of style attribute overrides any style set globally. It will override any style set in the HTML tag or external style sheet.ExampleYou can try the following code to add font smaller than the default font in an HTML page ...
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 MoreWindows in safe mode troubleshoots all system issues
Now, because of heavy or 24 hours uses of computer at corporate or home place, it becomes a complex and delicate machine. This complex and delicate machine sometime goes wrong while updating BIOS, downloading new drivers, or just surfing the Web. To resolve these issues user does not have to buy an expensive device or replace it with a new one.Microsoft provides a very useful Windows functions called Safe Mode functions. It’s always good to start windows in a safe mode to troubleshoot any kind of issues which give bad effects on the system. Although, using this mode only certain ...
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