Posts

Showing posts with the label Computer Science

Best Android Libraries..

Image
This is my newest list of 25 Android libraries and projects which you may find useful, interesting and which are worthy to check. Check them below and enjoy! 1. transitioner Transitioner is a library which provides easy, dynamic and adjustable animations between two views with nested children. It is written 100% in Kotlin under MIT license and is really well-documented. This library supports API 19 and above and in the project there is also a sample app which presents its features. Undoubtedly this is worth checking! dev-labs-bg/transitioner transitioner - A library for dynamic view-to-view transitions github.com 2. FragmentRigger This library manages Fragments in a powerful way. The goal is to make Fragments easy to use and minify the cost of managing them. The library has a proper documentation as well as a sample app. It is released under MIT license. JustKiddingBaby/FragmentRigger FragmentRigger — :boom:A powerful librar...

Internet Controlled LED part 2 -- Suvin

Image
Internet Controlled LED part 2 -- Suvin I showed you how to setup the basics for the project in my previous article. So now I'm gonna walk you through the next part. Step 3: Setting up the web server In the web server we need to host our JSON (Java Script Object Notation) File. Once the ESP8266 is connected to the internet, It reads this JSON file and determine is the light is turned on or off. Open your Notepad or the text editor you got on your PC ans type this. {"light":"on"} Actually we don't need anything to write on the JSON file because it is linked to the ON and OFF buttons and it writes automatically. But I wrote this just for show you what it is look like. Once you type the above, save the file and name it with light.json. Now you need a good web hosting service. I recommend "000 webhost". Its free and easy to setup. I'm not gonna show you how to host a file on 000 webhost now because there's a plenty of tuto...

Java Database Connection by- Suvin Nimnaka

Image
Many people still wander off internet finding a correct way to initiate MySQL Connection in their Java project. As a beginner I myself used to go through Internet hours and hours looking for a working method. So here's what I found and so far its been working without a problem. If there's issues feel free to comment below. I'm gonna use Wamp server and NetBeans for this project.   Creating Database Before you start, open wamp server and initiate localhost. After that type  "localhost/phpmyadmin"  in your web browser's address bar and  it will open phpmyadmin homepage. We are going to use root login for this. As you already know the username is  root  and the there's no password needed for root user by default. And press  Go  button. This will open databases page. Okay now you have to make a database and a table inside the database to connect with Java class. For this click on  SQL  tab on  Databases  page and yo...

Google Crowdsource - Hands on

Image
Google Crowdsource – Hands on Overview Google Crowdsource is a free app created by Google with the purpose of bringing more user feedback into its services. The algorithms Google employs for certain tasks, such as image identification, aren’t as sophisticated as the human mind, and there are plenty of opportunities for users to make these Google products even better. It contains 4 main task options. Image Capture Image label verification sentiment evaluation handwriting recognition The interface of Google Crowdsource looks like this. Image label verification In this section users can select a label category from given. And after selecting a category, an image will show up and all you have to do is mark whether if the image can be used for the above selected label or not. If youre not sure about the image you can just skip. Sentiment evaluation. Here google gives the user a phrase and the user have to select the most suitable emoticon o...