Skip to main content

A Smartphone for Dogs..!




Device named ‘Scout 5000’ has been made by the company Motorola. The device is actually a Collar that one can tie it to their pet, whether you have dog or cat or any pet at your home. This device will take care of your pets as well as their activities. On January 7th, 2015 at CES (Consumer Electronics show) in Las Vegas, Motorola and other software- hardware company reviled their future concepts of their gadgets and mobile devices preview builds. Whereas the company unveiled its ‘Scout 5000’ pet controller device and it will directly link-up with your Smartphone to see the activities of your pets.



Features & Construction:
  • Consists of GPS Bells & Whistles
  • 720p HD Camera
  • Microphones
  • Lenses
  • 3G Live-streaming activities of your dog directly to your Smartphone
  • Loudspeaker to command your dog 
  • Camera will help you to detect dog activities and alert notifications directly sent to your Smartphone for unknown persons entering your house and things.
  • Even Wi-Fi and Bluetooth can be connected and enabled to this device
  • In case, if the device is being chewing up by your dog or may be due to some reason it is fallen to dirty areas, you don’t have to worry about it 

Comments

Popular posts from this blog

Indian HAL Tejas | Touch The Sky With Glory | ShotOnNikonD3500

Indian HAL Tejas | Touch The Sky With Glory | ShotOnNikonD3500

Git Commands

  Git commands sorted. Reference: https://git-scm.com/docs Git task Notes Git commands Tell Git who you are Configure the author name and email address to be used with your commits. Note that Git strips some characters (for example trailing periods) from user.name . git config --global user.name "Sam Smith" git config --global user.email sam@example.com Create a new local repository   git init Check out a repository Create a working copy of a local repository: git clone /path/to/repository For a remote server, use: git clone username@host:/path/to/repository Add files Add one or more files to staging (index): git add <filename> git add * Commit Commit changes to head (but not yet to the remote repository): git commit -m "Commit message" Commit any files you've added with git add , and also commit any files you've changed since then: git commit -a Push Send changes to the master branch of your remote repository: git push origin master Status List the...

GraphQL vs REST

  GraphQL   GraphQL is an application layer server-side technology which is developed by Facebook for executing queries with existing data. GraphQL can optimize RESTful API calls. It gives a declarative way of fetching and updating your data. GraphQL helps you to load data from server to client. It enables programmers to choose the types of requests they want to make. REST REST is a software architectural style that defines a set of constraints for creating web services. It is designed specifically for working with media components, files, or hardware device. The full form of REST is Representational State Transfer. ========================================================= Here is the important difference between GraphQL and REST. GraphQL REST GraphQL is an application layer server-side technology which is developed by Facebook for executing queries with existing data. REST is a software architectural style that defines a set of constraints for creating Web services. It follow...