Learned or Solved Something Today?

Dump it here! Let others learn from you

Showing 20 of 122 from page 1

azrina posted in #html #css #beginners #project

Fade In Text Animation Using Html And CSS

This is a simple Fade In Text Animation Using Html And CSS Only Html and CSS used here. When you specify CSS styles inside the  keyframes rule, the animation will gradually change from the current sty

azrina posted in #html #css #javascript #project #beginners

Simple But amazing Animated Eyes Follow Mouse Cursor using Vanilla Javascript

Naturally, we humans are happy to see other people in danger, Which is not desirable at all, This project is like my protest against this type of mentality. This is a very simple but cute looking Anim

bytebot posted in #javascript #math #tutorial #interviewquestion #beginners

Write A Function To Check If It Is A Power Of Two - Javascript Solution

Finding if a number is a Power Of Two is an example of math problems In this post we will see how we can solve it in Javascript Problem Description Given an integer write a function to determine if it

bytebot posted in #javascript #math #tutorial #beginners #interviewquestion

Write A Function To Determine If It Is A Power Of Three - Javascript Solution

Finding if a number is a Power Of Three is an example of math problems In this post we will see how we can solve it in Javascript Problem Description Given an integer write a function to determine if

bytebot posted in #javascript #math #tutorial #interviewquestion #beginners

Write A Function To Check If It Is Power Of Four - Javascript Solution

Find if a number is a Power Of Four is an example of math problems In this post we will see how we can solve it in Javascript Problem Description Given an integer signed 32 bits write a function to ch

bytebot posted in #javascript #math #tutorial #interviewquestion #beginners

Given An Integer n, Return Number Of Trailing zeroes In n Factorial - Javascript Solution

Factorial Trailing Zeroes is an example of math problems In this post we will see how we can solve it in Javascript Problem Description Given an integer n return the number of trailing zeroes in n Exa

bytebot posted in #javascript #math #tutorial #beginners #interviewquestion

Given Positive Integer, Return Its Corresponding Column Title As an Excel sheet - Javascript Solution

Excel Sheet Column Title is an example of math problems In this post we will see how we can solve it in Javascript Problem Description Given a positive integer return its corresponding column title as

bytebot posted in #js #javascript #string #tutorial #beginners

Detect Capital: Check If String Contains Capital Letter - Javascript Solution

Detect Capital is an example of string problems In this post we will see how we can solve it in Javascript Problem Description Given a word you need to judge whether the usage of capitals in it is rig

dipusultan posted in #c #cpp #snippets #beginners

Program to calculate Root Mean Square Value Using C++

This is a most commonly used program to find the RMS or  Root Mean Square Value Today we will implement it using C so let s start Formula The RMS value is the square root of the mean  average  value o

metabox posted in #javascript #codingchallenge #beginners

Finding Century From Year in Javascript | Beginner Problem

If you starting with problem solving maybe this one is the very basic problem you can start with Here you have calculate the century from a given year Problem Given a year return the century it is in

metabox posted in #go #beginners #golang #tutorial

Golang HTTP Server POST Request Example & How to Handle Payload Body or Form Data in GO

If you are wondering about to handle a POST request Then you might also have a second question about how to handle request payload right I mean it s crucial every application to parse request body whe

metabox posted in #kotlin #beginners #tutorial

Kotlin - How to get maxMemory, freeMemory, totalMemory, used memory in megabytes and understand the differences between them

If you are new in kotlin or JVM based system and want to know how to get free memory total memory and max memory from the runtime class here s I have shared some example to answer some beginners quest

metabox posted in #kotlin #beginners #tutorial

Kotlin 1 Liner – Get number of available processors / CPU cores from runtime

An example Kotlin code snippet to show you how to get the number of available processors cores CPUs in your environment Get Available CPU s in Kotlin Runtime getRuntime availableProcessors You can als

metabox posted in #go #golang #tutorial #random #beginners

Example Golang Function To Shuffle Letters / Characters Or Words in Text | String Randomizer

Doing a lot of randomize practice today Let s look into another example to build World s simplest letter or word shuffler in go programming Method Shuffle Words This function uses strings Fields to sp

metabox posted in #go #golang #beginners #tutorial #random

Simple GoLang Function to Shuffle or Randomize a Slice or Array

If not super often some time we definitely need to randomize an array or slice Here s an example implementation to shuffle our array in go programming Our Shuffle Slice Method Using rand shuffle to ra

metabox posted in #go #golang #beginners #tutorial #random

Simple Golang Function For Generating Random String, Strong Password, OTP, Random ID / code for a Given Length

We all need to generate random strings random strong password One time password OTP Pass Code Random user ID Order Code Invoice Code etc So here I have an example go implementation for generating rand

metabox posted in #go #golang #tutorial #beginners

Javascript "typeof" alternative in Golang which returns type as string

In javascript we have typeof operator returns a string indicating the type of the variable In golang we can write an equivalent function to achieve similar situation by using reflect package In the gi

metabox posted in #go #beginners #golang #tutorial

A Simple GoLang Function to Merge n Number of Slices | Joining multiple slices Example

This is kinda a beginner question that how we can join multiple arrays or slices in any programming language In golang slices are more popular options when it comes to merge them due to it s dynamic n

metabox posted in #go #golang #codingchallenge #beginners

Golang bufio reader example | NewReader

In this post we will see some bufio Reader examples which comes built in from go language itself Reader Examples In the code section i ve share 3 example usage of bufio Scanner  readLineFromStandardIn

metabox posted in #go #golang #tutorial #beginners

Golang bufio scanner example | NewScanner

In this post we will see some bufio Scanner examples which comes built in from go language itself Scanner Examples In the code section i ve share 3 example usage of bufio Scanner  Read word from stand

fb