Skip to main content

Posts

Blue Ticks for whatsapp Now Green ticks for Gmail

Gmail Trick and Tips                  To enable this feature you need to download an chrome extension.                                            Click here to : Download                                   Step 1: Once you have clicked the download you will be taken to the below window preview shown. Step 2: Click Install Mailtrack .You will prompted with the window to Add Extensions as shown below. Step 3:   Once you have add to the chrome . It will asking you to sign in with your google account. Its just simple thing as normal we login to our Gmail. Step 4: Sign in with Google Step 5: once you have sign in it will ask you choose a plan to start. Don't get panic.! Just Go with the Basic as your cu...

How to Create a Database and Insert a document with the Mongodb

Welcome Back to Tech Bird Mongodb Learning Here again with a blog How to Create a Database and Insert a document with the Mongodb First of all open the mongodb shell.. If you are new and want to know   How to Start MongoDB  .πŸ‘ˆπŸ‘ˆ Once you have open the Mongodb shell we can directly proceed with query  .. NOTE:   In mongodb Collection is term which is used instead of Table { so dont get confused guys!} First of all the We need to create a database   Syntax: USE databasename Example: USE ddbase Check Fig: 1.0 NOTE:  Here USE is the keyword to create a data base followed by the database name you wish to keep.                                                                                      ...

Now you can Get Back your Sent Mails from the recipients.

Tech Bird Gmail Undo Option Now you can Get Back your Sent Mails from the recipients. Do you know you can able to undo the send messages in the gmail in the matters of time? want to know.! come in lets get started! TO enable undo send features Step 1: Goto settings>>>General tab. Step 2:Find the Undo Send Option by scrolling down the  cursor Step 3: Enable Undo Send Option. Here you can also able to set the time period to UNDO send option.... You can set the time period 10,20,30 as any one Step 4 : save the changes you have made. Step 5: Now Compose a mail to the recepients: Once you have clicked the send button the mail will be reached the recipients right?? check those marker points in below snapshots: mail has reached to my inbox (4) as i have mention my mail id as  recipients . There see the another red marker where its shows the UNDO option..this is what we are talking...

How to Start MongoDB

welcome to Tech Bird Mongodb Learning what is mongodb? MongoDB is a free and open-source cross-platform document-oriented database program. Classified as a NoSQL database program, MongoDB uses JSON-like documents with schemas. To get more idea about Mongodb click Here! First of all Download the Mongodb setup and install it based on your system requirement: DOWNLOAD  Have any doubts how to install check here! To start MongoDb Open cmd NOTE : cmd->run as administrator to avoid system error. goto the respective folder you have installed the mongodb . Here i have installed Mongodb in the respective directory C:\mongodb\bin goto the directory. Then keep the data and log path by using these command mongod --directoryperdb --dbpath c:/mongodb/data/db --logpath c:/mongodb/log/mongo.log --logappend --rest --install this will set the log and data path of the mongodb files and logs To start the Mongodb >net start mongodb ...

ADDING A VIDEO TO UR BLOG OR WEBSITE

ADDING A VIDEO TO UR BLOG OR WEBSITE Now Adding a YouTube Video to Your Blog or website so easy as opening an water bottle... Playing a YouTube Video in HTML To play your video on a web page, do the following: Upload the video to YouTube Take a note of the video id Define an <iframe> element in your web page Let the src attribute point to the video URL Use the width and height attributes to specify the dimension of the player Example: <html> <body> <iframe width="560" height="315" src="https://www.youtube.com/embed/8gTeE6pa4Kg?rel=0&amp;controls=0" frameborder="0" allowfullscreen></iframe> </body> </html> Source Learned From :  W3Schools.com  Thanks and Regards, Tech Bird

HTML LINKS

TECH BIRD🌱🐀 HTML LINKS TUTORIALS Hey guys it me me from Tech Bird  again with an help full guide in HTML5 tutorials Today i am going to share about the LINKS option in HTML What is Links ? Link are the attribute which connects two things.. eg: connecting two pages The most commonly used HTML links we use  <a href="link.html" >CLIK ME I WILL TAKE TO THE PAGE</a> Various LINKS OPTIONS present in HTML LINK TArget attribute Link Base Path Navigation to Top of the page Links within the page Email Links Image Links Phone Links Example Phone Links: <html> <head> <title>GOOGLE BIRD Phone Links Example</title> <body> <a href="tel:+91 894092XXX0">Mobile: +91 894092XXX0 </a> </body> </html> Example of Download Links: <html> <head> <title>GOOGLE BIRD Download Links Example</title> <body> <a href="https://googl...

Tricky Programmers 2017

Tech BirdπŸ₯ TRICKY PROGRAMMER CONTEST HEY GUYS HERE IS AN TEST FOR PROGRAMMING BRAIN JUST TRY IT... Comment Your Answer and help other people to get inspired by Programming tricks. Question Bird 1: Create a Program which produce output "Hello World" , the program must not contains semicolon ; in other word any statement of the program will not have a termination semicolon. THANKS !😎 COME BACK TO KNOW MORE😊 FROM Tech Bird πŸ˜πŸ˜ŽπŸ˜‹

mongoDB

MongoDB is a free and open-source cross-platform document-oriented database program .  Classified as a NoSQL database program , MongoDB uses JSON-like documents with schemas. MongoDB stores data in flexible, JSON-like documents, meaning fields can vary from document to document and data structure can be changed over time. The document model maps to the objects in your application code, making data easy to work with. MongoDB is a distributed database at its core, so high availability, horizontal scaling, and geographic distribution are built in and easy to use. MongoDB is a cross-platform, document oriented database that provides, high performance, high availability, and easy scalability.  "MongoDB works on concept of collection and document" Database →Database is a physical container for collections.  →Each database gets its own set of files on the file system.  →A single MongoDB server typically has multiple databases. Co...

Alert box in Browser Using JavaScript

Alert Box Using JavaScript The below code will demo used to display the alert message to user on the browsers window. <html> <head> <script type = "text/javascript" > function sayHello () { alert ( "Hello World" ) } </script> </head> <body> <input type = "button" onclick = " sayHello () " value = "Say Hello" /> </body> </html> Once the say hello button is clicked the alert will be shown with the defined messages on the browsers. Output: It will display the hello world with alert box.! Thanks and Regards, Tech bird

Warning for Non-JavaScript Browsers

Warning for Non-JavaScript Browsers If you have to do something important using JavaScript, then you can display a warning message to the user using  <noscript>  tags. You can add a  noscript  block immediately after the script block as follows − <html> <body> <script language = "javascript" type = "text/javascript" > document . write ( "Hello World!" ) </script> <noscript> Sorry...JavaScript is needed to go ahead. </noscript> </body> </html> Now, if the user's browser does not support JavaScript or JavaScript is not enabled, then the message from </noscript> will be displayed on the screen. Thanks and Regards, Tech Bird