Posts

Night Vision Camera Mod Apk Download

Image
Night Vision Camera mod apk download Hello user, Today I'm going to share an excellent mod app, which is locked for free user, and I am here to help! You can get unlocked version and all feature working app from here. For that, you need not do anything, only is download this apk file to get start using this application in your phone! Application information: Developed by: Unknown Developer. Apk Size: 23 MB. Support Structure: ARMV7, ARMV-64 No Virus: Yes. Download Link:  Download Night Vision Camera APK

Introduction to mathematics for computer science - learn by practice and share

Image
number base photo - day three Welcome to day three! I hope you all doing fine and Right. me also. In previous tutorial we have learned that, what is number base, what is decimal and binary number, I we have learned how to convert between binary to decimal number. Today, I will post some question, and yeah answer too, okay let's start with that. ❓ 1. Describe one way of converting decimal numbers to binary numbers. Answer:  Repeatedly divide the decimal number by 2, carefully noting the remainder each time. The binary number is formed by writing the remainders in reverse order. ❓ 2. What number is the binary system based upon? Answer: Based on 2. 0 & 1. ❓ 3. How many different digits occur in the binary system? Answer: 2 different digits occur. they are 0 & 1. ❓  1. Convert the following decimal numbers to binary numbers:  (a) 19 (b) 36 (c) 100 (d) 796 (e) 5000. Answer of (a):                                                       To convert to binary, the decimal number 19

Introduction to mathematics for computer science - learn by practice and share part two

Image
Base 16 - See a good example Going back with my new tutorial on introduction to mathematics for computer science today! Today you will learn: what is binary number.   convert beetween binary & decimal. Let's start! What is binary?? A binary system uses base 2. A binary system has only two digits: 0 and 1. Numbers in base 2 are called binary digits or simply bits for short. Binary numbers are based on powers of 2. Binary numbers have important applications in computer science and electronic engineering. Note:  The binary system is based upon powers of 2. Now, I am going to show how to convert from binary to decimal. ⍰  Consider the binary number 110101 2 . As the base is 2 this means that powers of 2 essentially replace powers of 10: So,                              110101 2  =  1(2 5 ) + 1(2 4 ) + 0(2 3 )+ 1(2 2 )+ 0(2 1 )+ 1(2 0 )                                                             =  1(32)+ 1(16)+ 0(8)+ 1(4)+ 0(2)+ 1(1)                                          

Introduction to mathematics for computer science - learn by practice and share

Image
Assalamu Alakum / Greetings...  I hope you all fine my marcy by Allah. Me also.  Assuming that, you come here to learn Introduction to mathematics for computer science - learn by practice and share , then you're in right place.  Firstly, let me introduce with you. I am Nurujjaman Pollob from bangladesh, I am BSc in CSE (AI & Machine Learning Pathway) candidiate in University of London, Beside I make Android App, and Website.  However, I love programming. it's my way to live.  without programming in a day, my whole day become spoil :D.  Okay, in this introductory post, I will going to share why we should learn mathematics for computer science, and share my insight with you for next steps. Why you should learn mathematics? You love programming, am I right? if yes then you may be probably know that, to become a good programmer, you must need to have mathematical knowledge in order to understand and solve complex problem, make better algori

Download Electronic Store Ecommerce HTML5 Theme for free!

Image
Hello Visitor, Greetings! I am glad to inform you that, today I going to share excellent HTML5 theme for Electronic Shop site, which is completely free. If you referred from YouTube then you're cordially welcome. Thanks for reach my Website! The file you went to download, I will make it public very shortly, and It's depends on personal terms and use so that I have decided to take a short interview of why you went this file, and how this template can help you?    If you newcomer, or looking for developer to make your website or update the existing site, welcome here! I offer you best service! If you hire me, you can get extended support and can get creative work. However, I welcome all people for download. Let's make a comment with your email address and write in brief why you need these file, after some time your desired content will delivered directly to your mailbox! So, make comment and get the incredible template for completely free! Vid

2020 TOP Rated HTML5 theme for free source code download

Image
Hello, how is your day during Corona Lockdown?? You are bored of staying at home Right??  I am not! Because, I spent my time by learning programming, Running experiments, Playing game, Making Interesting HTML5 theme. Wow, Time just flies. I went stay safe, Stay Cool and yeah be positive of Corona. Never get down. Keep Faith on Allah, and try to stay safe at home. Okay friend, Here's you coming because you need HTML5 theme for your site, Or you're a learner, Just come here to get the free version HTML5 theme?? Okay, You're at Right place now. from here, You can get premium looking HTML5 theme for free. This theme is well - designed, Ready to use, No CopyRight(Credit Appreciated), Nice Animated Slider, Mobile Friendly Code, Having Sitemap, All in one complete package. I think, This is best offer to grab. No money, No conditions, just download and use. You guys may be wondering, why I am doing this?? Okay let me tell. I went to

How to use Palette API to extract colors from Image or Vector drawable Image Fully detailed tutorial

Image
The usages example of Palette API - Android Studio Hello Guys, Today I going to share an amazing tutorial on Palette API, The API is very easy to implement and has many useful features, but today I going to share the only the process of how we can use Palette to get Color from regular Image, Or from vector drawbles. The old constructor instances: Bitmap bmp; //(Keep In mind that, You need decode the bitmap or vector first to get its color from palette, and this is just an example) Palette palette = Palette.generate(bmp); is deprecated from android API 29, So app target SDK 29 or Minimum SDK 29 we need an alternative version of this constructor. Don't worry, I am here to help! The Palette.generate(Bitmap) deprecated,The alternative code is here! Now time to write the right code for palette.generate(Bitmap) & for color extraction The Code: //Starts the code from here! //decode the bitmap so that palette can use this bitmap