coding

216 Articles 3 Followers


Developers should always be open to learning

15 Nov 2022 2 minute read 0 comments Bala

Learning new trends and new technologies is always one of the key requirements to be a developer. We might be highly skilled developers but staying up to date with the technology is very important. The biggest reason is that there are always innovati...

Building mobile first applications

14 Nov 2022 2 minute read 0 comments Bala

Building mobile-first applications have become an important part of web development in today's world. The requirement of all the companies has now inclined towards building mobile-first applications. Recently my company also started moving towards bu...

14 Extremely Useful Websites That You Should Know About

17 Oct 2022 1 minute read 0 comments Lucapelle

1. Removebg Remove the background from your image and add in any background you like in 5 seconds. 2. 12ft Ladder Want to read an article, but there’s a paywall? Simply: • Insert URL into 12ft ladder • Click remove wall • Access content        ...

Here all your questions have an answer: What is blockchain and how does it work?

11 Oct 2022 6 minute read 0 comments elena_did

You can't call yourself a crypto investor if you don't know about this by now: Blockchain technology for all (overview)   Crypto industry is revolutionizing the actual financial system whatever you want to believe it or not. It is a fact that sooner...

C Kata - Convert a Number to string!

10 Oct 2022 1 minute read 0 comments Lochard

Learning from YayoDrayber, I am sharing my CodeWars Kata.   DESCRIPTION We need a function that can transform a number (integer) into a string. What ways of achieving this do you know? In C, return a dynamically allocated string that will be freed by...

Why computers can’t represent 0.3 accurately

4 Oct 2022 1 minute read 0 comments 4rkal

Most people know that adding up 0.1 + 0.2 equals 0.3. However computers represent it as 0.30000000000000004 . Here is a screenshot of it in python3 Your first thought might be that this is just some kind of error. Well its not Why is that? Fractions...

C Kata - Double Char

2 Oct 2022 1 minute read 0 comments Lochard

Learning from YayoDrayber, I am sharing my CodeWars Kata.   DESCRIPTION: Given a string, you have to return a string in which each character (case-sensitive) is repeated once.   Examples (Input -> Output): * "String" -> "SSttrriinngg" * "Hello World...

JavaScript Kata #41: Sentence Smash

30 Sep 2022 2 minute read 0 comments YayoDrayber

If you missed the introductory post, it's here. For a list of previously solved katas, please refer to the bottom of this page. If this is your first time seeing my post, please note - these katas are probably randomly assigned per user so please don...

JavaScript Kata #40: Factorial Factory

25 Sep 2022 3 minute read 0 comments YayoDrayber

If you missed the introductory post, it's here. For a list of previously solved katas, please refer to the bottom of this page. If this is your first time seeing my post, please note - these katas are probably randomly assigned per user so please don...

C Kata - Find the smallest integer in the array

23 Sep 2022 1 minute read 0 comments Lochard

Learning from YayoDrayber, I am sharing my CodeWars Kata.   DESCRIPTION: Given an array of integers your solution should find the smallest integer.   For example: Given `[34, 15, 88, 2]` your solution will return `2` Given `[34, -345, -1, 100]` your...