Skip to main content

About

Hey buddy, Welcome to KnowShipp! I'm am so thankful to you for taking time to read the about page.

KnowShipp! is 89% a technology blog (because I know about this stuff only) and 11% about random thoughts/knowledge/jokes which I find worth sharing.

Journey of Blog Name

When I was in Goa with my friend(Pankaj) in 2014, we discovered so many surreal places and I thought to write about these places while sitting on Chapora Fort watching the Sea. I came home and written a small piece on wordpress about places in Goa and named the blog NoShip because the featured image I chose for the post had Sea but No Ship. Yes, this is true.

I made 2 posts about my travel experiences but I was not a traveller, so how could I continue my blog without travelling. Time passed and I forgot about my blog. NoShip got sunk!

In August 2016, while giving an interview for an start-up in Robotics industry. I found myself so amused with the work and technology they were doing that after happily getting rejected I started googling about trends and technologies in IOT and home automation. Bought all the stuff set-up my lab started breaking things because if you don't break something, you won't make anything. I am making small projects now and started to solved common household problems with IOT.

Naming the blog was simpler now, you might have guessed it. I just replaced the 'NO' with 'KNOW' and the 'Shipp' is now sailing in the Ocean of knowledge. That's how KnowShipp was born. I became the Sailor.

Check the following posts to make one for yourself:

About me:

My name is Prakhar Rastogi. I am from Moradabad, Uttar Pradesh. 25 years young Developer at TCS and a part-time blogger at KnowShipp. An Electronics and Communication Engineering graduate with experience in many programming languages. An avid learner, always seeking new opportunities that could be used make something useful. Gamer, I play PS4 in free time, 'prakhar092' is my PlayStaytion ID. I wake up at 6 AM in the morning and hit the gym 5 days week to sweat out all toxins of life.

In short, I am Programmer, Writer, Gamer, Runner, Winner, Loser, Breaker, Creator & Introvert.

I like share what I find useful and innovative so you can make those things easily at home and if you find any trouble while making any stuff mail me at prakhar@knowshipp.com.

That's it for now Sailors. Thanks for reading the Story of KnowShipp.

Keep breaking, keep making!

Comments

Popular posts from this blog

Build a REST API using Node and Express.js

Hello Sailors, if you are a programmer you would have heard about APIs or have developed APIs in JAVA, Python or any language. Today, we are going to build an API which sends random nutrition tips as response, with Nodejs and Express.js. Sounds interesting! What is an API? API stands for Application Program Interface. Ho ho ho! this just made my life, what an explanation! Well, an API is a set of functions and procedures that allow you to create applications which access the data of an application or service. Why do we need an API? When we want to build an android application, a web application and a desktop application because there are different type of users, so instead of building separate logic for all of these applications, we will build an API and all these applications will consume this API and serves the purpose. Here's another example : You have built a printer which prints great on paper but still no one buys it because you do not provide them any tool ...

Setup Mosquitto MQTT broker in Windows

MQTT (Message Queueing Telemetry Transport) is a Client Server messaging transport protocol. It provides a lightweight method of carrying messages using a publish/subscribe model. The pub/sub model being lighweight makes it suitable for IOT messaging with low power devices, sensors, phones or microcontrollers. How MQTT works? MQTT follows publish/subscribe model which is alternative to server-client model where client communicates directly with server. The pub/sub model defines the client which send a message(publisher) to another client which received that message(subscriber). The subscriber and publisher are unaware of the presence of each other. The main part, which we call the Broker, which our both publisher and subscriber are aware of, filters all the coming messages and distributes them respectively. Now we know what is MQTT and how it works. Let's dive in to set this up on Windows 7/8/10. Mosquitto: This is an open source message broker used for handling lightwe...

Build a facebook chatbot with API.AI (zero coding)

Hello Sailors, chatbot has been the buzz-word these days, many businesses are looking to implement chatbots to their sites or facebook pages to convert traffic into customers. Today in this tutorial, we are going to create a simple conversational facebook chatbot which can send you jokes, images and also it can do a small talk. Messenger bots simply blend artificial intelligence with human interaction. User asks a question and chatbot gives relevant answer to serve the purpose. What do we need to build our facebook chatbot? API.AI  account - A natural language understanding platform to design and integrate intelligent sophisticated conversational user interfaces. Facebook for developers account - To create a facebook app. Facebook page - Chatbot feature is only available to pages, not personal accounts. What we are going to do We are going to subscribe our API.AI agent to read all messages we receive on our Facebook page and in turn our agent processes the messag...