Skip to content
Saturday, June 21, 2025
  • Code stuffs
  • Facebook
  • Twitter
  • Linkedin
  • Youtube
  • Github
  • Instagram

Explore with me!

Come and explore with me

  • Code stuffs
    • Git
    • C#
    • node.js
    • Python
    • Shell
    • VB
  • Web Utilities
  • Lets Learn
  • Devops
    • Kubernetes
    • CI/CD
    • Docker
  • Cloud
  • Tweaks
  • Myself
  • Deployed
    • Azure Static Website

Tag: code

C# program to find nth prime number
C# Code stuffs

C# program to find nth prime number

May 14, 2023May 14, 2023

Here is the C# program that can find the nth (100000 in this program) prime number: The program starts by initializing primeCount to 0, which

Continue Reading

Share
Facebook Twitter Pinterest Linkedin
Write a program to find the maximum element in an array using linear search.
C# Code stuffs

Write a program to find the maximum element in an array using linear search.

May 14, 2023May 14, 2023

In computer science, searching for a particular element in a data structure is a very common task. One of the simplest ways to search for

Continue Reading

Share
Facebook Twitter Pinterest Linkedin
How to solve “Login failed due to trigger execution”?
Code stuffs Default SQL

How to solve “Login failed due to trigger execution”?

May 19, 2022October 21, 2022

Lately, I was trying to run the codemap on my visual studio and got the error “Login failed due to trigger execution”. Details were something

Continue Reading

Share
Facebook Twitter Pinterest Linkedin
Rust : Convert String to Integer
Code stuffs Rust

Rust : Convert String to Integer

October 6, 2021July 1, 2022

Convert string to integer Do you want to convert string to integer? Here are the methods to extract integer value i from its string representation s.“1234” to 1234

Continue Reading

Share
Facebook Twitter Pinterest Linkedin
Get the input in Rust
Code stuffs Rust

Get the input in Rust

October 6, 2021July 5, 2022

I started learning Rust lately. Kind of interesting but more to learn. Here is the program that help to get the input from user in

Continue Reading

Share
Facebook Twitter Pinterest Linkedin
ProjectEuler : Multiple of 3 And 5
C# Code stuffs

ProjectEuler : Multiple of 3 And 5

October 6, 2021July 5, 2022

Multiple of 3 And 5: Q1 From ProjectEuler.NET Description If we list all the natural numbers below 10 that are multiples of 3 or 5,

Continue Reading

Share
Facebook Twitter Pinterest Linkedin
Lets Create a Null Checking Extension on C#
C# Code stuffs Tweaks

Lets Create a Null Checking Extension on C#

June 26, 2021May 14, 2023

Extension methods are static methods behaving like instance methods. We generally use this so that we can use this function as a part of that

Continue Reading

Share
Facebook Twitter Pinterest Linkedin
How to encrypt and decrypt using cryptography (AES)?
C# Tweaks

How to encrypt and decrypt using cryptography (AES)?

June 14, 2021July 8, 2022

Encryption Code Decryption Code Usage

Continue Reading

Share
Facebook Twitter Pinterest Linkedin
Create badges using node.js
Code stuffs node.js

Create badges using node.js

May 8, 2021May 14, 2023

Hey everyone, Lately, I encountered an problem and the solution was to create the badge of my own. Since I was using node.js and I

Continue Reading

Share
Facebook Twitter Pinterest Linkedin
Code stuffs

Code for drawing a line using Bresenham algorithm in Javascript

March 2, 2013

Here is the snippet for drawing a line in javascript. function drawline(xa,ya,xb,yb){    var dx=Math.abs(xa-xb);    var dy=Math.abs(ya-yb);    var p=2*dy-dx;    var twody=2*dy;    var twodydx=2*(dy-dx);    var x,y,xend;    

Continue Reading

Share
Facebook Twitter Pinterest Linkedin

Recent Posts

  • Tips for reducing eye strain and fatigue from prolonged screen time
  • Healthy Habits for Software Engineers: Promoting Wellness in a High-Stress Job
  • C# program to find nth prime number
  • Write a program to find the maximum element in an array using linear search.
  • 10 Useful Tips for Debugging Your Code More Effectively

Post Tabbed

  • You may like
  • Recent Posts
  • windows

    BranchCache: WAN Bandwidth Optimization

    December 30, 2012
  • Software Engineering

    Stakeholders, The Players of an Information System

    May 1, 2021May 19, 2023
  • Default

    Shutdown button in windows 8

    December 30, 2012
  • Software Engineering

    Ethical Issues related to Information Technology Professionals

    January 24, 2013April 17, 2021
  • woman sitting in front of macbook
    Default Health

    Tips for reducing eye strain and fatigue from prolonged screen time

    May 14, 2023May 14, 2023
  • woman sitting in front of macbook
    Default Health

    Healthy Habits for Software Engineers: Promoting Wellness in a High-Stress Job

    May 14, 2023May 14, 2023
  • c#
    C# Code stuffs

    C# program to find nth prime number

    May 14, 2023May 14, 2023
  • c#
    C# Code stuffs

    Write a program to find the maximum element in an array using linear search.

    May 14, 2023May 14, 2023

Find Me

Software Engineer | Devops | AI Enthusiasts | IOT Enthusiasts | Love doing Research | Trainer | Learner | Friend | Son | Husband | Brother

  • facebook
  • twitter
  • linkedin
  • instagram
  • github

Featured Posts

kubernetes
Default Devops Kubernetes

Kubernetes : an Orchestration and Management Infrastructure for Containers

June 29, 2021May 14, 2023
Introduction to Kubernetes Docker was responsible for introducing developers to the concept of container-based applications. Docker provided very consumable tooling for container development and storage
  • kubernetes
    Devops Kubernetes

    Understanding Kubernetes architecture in depth

    June 14, 2021May 14, 2023
  • kubernetes
    Default Kubernetes

    Understanding Pods in Kubernetes

    June 10, 2021May 14, 2023