Skip to main content

Pinning Down Interest - The New Social Networking Craze

With Facebook, Twitter and Google Plus at the top of the social networking rivalry, there’s no stopping other developers from coming up with a new craze that would tickle many online user's fancy. Come to think of it, if you think back four months ago, you undoubtedly never know that there’s such a website named “Pinterest” and yes, it is a social media website.

The website actually didn’t emerge three months ago. It has been online for three years but it was only months ago when it captured the interest of many online users around the world. Just like Facebook and Google Plus, it brings “friends” and “acquaintances” together with a common denominator. For Pinterest though, the common denominator is the interest of its members.



The website has a very simple and straightforward concept. As a social scrapbooking website, users only need to “pin” images of their interests to their virtual boards. These images could come from other websites or members can download it themselves. Other members can leave comments on the pinned images and can even re-pin them on their own virtual boards. It’s that easy.

The good thing about the website though, simple as it is, the website is not highly commercialized. Sure the images points to a new pair of shoes or maybe a new wedding dress design but most images are not redirected to other websites for sales and marketing. Most images redirect to blog posts, photo galleries and personal websites which genuinely talk about real interests by real people.



Knowing how resourceful and imaginative online users can be though, it’s expected that users with sales and marketing intent will find a way to use the website to their advantage. For instance, they can pin pictures of their satisfied customers who are currently using their products, or of their employees who are working hard to deliver high-quality services, all of which links or redirects to their company website which can provide more information for marketing purposes.

One issue that comes up when it comes to popular websites like Pinterest though is the perpetual online enemy – spam. Meaning, some online users with nothing but malicious intent can use the website to post images after images of no real value at all.

But the spam issue is nothing compared to the privacy and security issues around the website. If you Google the many unsatisfied, you’ll find that their complaints are centered into the website’s privacy settings, which is virtually next to none. The fact is that Pinterest readily shares its members’ information to other networking sites without respect to their members’ wishes at all. This might lead to users’ paranoia with regards to their privacy. Next thing you’ll know, you will need system tools like PC Speed Up to clean up your browser’s history because Pinterest might find a way to look into your browsing history and use your personal information and share them to other social networking websites.

When it comes to social networking though, privacy is such a difficult issue. For developers of these social networking websites, there are a lot of things to consider especially with the fact that the connection between an individual’s social network and his privacy is very complicated. For now, Pinterest users should enjoy the perks of their membership in the website but they should also think of their privacy and find a way to make sure their personal information is not shared to strangers.


Popular posts from this blog

Gradle project sync failed. Basic functionality (e.g, editing, debugging) will not work properly.

Gradle is an open source build tool which help us to accelerate developer productivity. Go to Gradle Services website(http://services.gradle.org/distributions/) and download the latest version Download the latest version gradle-4.7-rc-1-all.zip ( Latest version while writing this article) and you can download greater than 4.7 if available and make sure the zip file contains "all" keyword (gradle-*.*-rc-*-all.zip). Go to your download location and unzip the downloaded file Android Studio > File >  Settings > Build, Execution, Deployment  Gradle Project-level settings -> Select Use local gradle distribution -> Select the unzip folder of downloaded gradle version -> Click OK button to exit from the Settings window. Please Wait until Gradle build completes and your problem have been resolved.   If gradle build failed, follow few more steps to get resolved Final step to resolve this error Go to your project -> Gradle script -...

How to Send Secured Data in Internet - Steganography

Image Description: Hackers Growth of Science and Technology finds innovative ways to find patches over attacks made by hacker.In the Internet there are millions of computer are interconnected by network.If some people want to share some personal things like bank accounts or premium login accounts through email or any other share media but hacker who is surfing anonymously in the Internet find the personal documents and trying to modify the original message as well utilizing the original message so that the receiver who receive fake message from hacker thought that the message sended by sender.. In order to confuse hackers technology made another innovation in new technique called "Steganography" What is Steganography? Steganography is new technology innovation which hides text messages in image,audio,text and video files To Make your data very securely just what you need to do is find the best steganography software from Internet and download it and then encrypt your me...

Spring Boot GraphQL Save, Update and Delete - Database MutationMapping

Learn how to get started with Graphql using spring boot framework. In this session, you will be learning like how to add the schema details and mapping the function and request payload with Graphql @MutationMapping into your controller class. So you can preform like Save, update and delete operation using graphql You need Spring web, JPA, Mysql, Lombok and Spring Graphql dependencies to your pom module. schema.graphqls (This file should be created inside the resources/graphql folder) type Query{ findAll: [User] userById(id: ID): User } type User{ id: ID name: String gender: String emailId: String } type Mutation{ addUser(userDetails: UserDetails): User updateUser(userDetails: UserDetails): User deleteUser(id: ID): String } input UserDetails{ id: ID name: String gender: String emailId: String } UserGQLController .java package com.hakeemit.graphql.controller; import com.hakeemit.graphql.entity.User; import com.hakeemit.gra...