Posts

Learn coding with amol

Image
Hello my name is amol sharma or vineet and this is my 12th part of learn coding with amol and in this part we are going to learn Malbolge.   MALBOLGE part - 12  Complete Malbolge Programming Guide Complete Malbolge Programming Guide Welcome to the full guide of Malbolge , the hardest programming language ever created. You can learn its history, features, examples, and run programs with copy-friendly code blocks. 1. What is Malbolge? Created in 1998 by Ben Olmstead . Named after the 8th circle of hell in Dante’s Inferno. Designed to be almost impossible to program . First program was generated by a computer, not written by a human. 2. Features of Malbolge Self-modifying code execution. Encrypted opcodes before execution. Memory initialized in complex ways. Programs are nearly unreadable to humans. 3. Hello World Program ...

Learn coding with amol

Image
Hello my name is amol sharma or vineet and this is my 11th part of learn coding with amol and in this part we are going to learn Ruby.   Ruby PART-11 Complete Ruby Programming Guide | Amol Sharma Complete Ruby Programming Guide A practical Ruby guide (beginner → advanced) with examples and copy buttons — ready for your blog. 1. What is Ruby? Ruby is a dynamic, open-source programming language focused on simplicity and productivity. It has expressive syntax and powerful built-in libraries. Ruby is widely used for web apps (Rails), scripts, automation, and more. 2. Hello World # hello.rb puts "Hello, World!" Copy Code 3. Run Ruby Install Ruby: sudo apt install ruby (Linux), or use rbenv / rvm . Run a file: ruby hello.rb Start REPL: irb or pry (if installed). 4. Variables & Data Types # variables.rb name = "Amol" # String age = 21 # Integ...

Learn coding with amol

Image
Hello my name is amol sharma or vineet and this is my 10th part of learn coding with amol and in this part we are going to learn php.   Php PART -10  Complete PHP Programming Guide | Amol Sharma Complete PHP Programming Guide PHP (Hypertext Preprocessor) is a powerful server-side scripting language used mainly for web development. This guide takes you from beginner to advanced with examples and explanations. 1. Introduction to PHP PHP code runs on the server and generates HTML that is sent to the client’s browser. <?php echo "Hello, World!"; ?> Copy Code 2. PHP Syntax PHP code starts with <?php and ends with ?> Statements end with ; Comments: // single line , /* multi-line */ <?php // Single-line comment # Another single-line comment /* Multi-line comment */ echo "Syntax Example!"; ?> Copy Code 3. Variables and Data Types Variables start with $ Types: string, integer, fl...

Learn coding with amol

Image
Hello my name is amol sharma or vineet and this is my 9th part of learn coding with amol and in this part we are going to learn assembly.   ASSEMBLY PART - 9  Learn Assembly Programming | Amol Sharma Complete Assembly Programming Guide Assembly language is a low-level programming language that is closely related to machine code. It is used to write programs that directly interact with the hardware. This guide will take you from beginner to advanced level. 1. Basics of Assembly Language Assembly language uses mnemonics to represent machine instructions. Each processor architecture (like x86, ARM) has its own instruction set. Registers: Small storage locations in CPU (e.g., AX, BX, CX, DX in x86). Memory: Used to store data, accessed via addresses. Instructions: Commands like MOV, ADD, SUB, JMP. Comments: Denoted by ; in x86. 2. Basic Structure of an x86 Program ; This is a simple program in x86 assembly section .data ...

Learn coding with amol

Image
Hello my name is amol sharma or vineet and this is my 8th part of learn coding with amol and in this part we are going to learn javascript full. js(javascript) PART-8 Complete Java Guide — Definitions + Copy Code Complete Java Guide — Definitions + Copy‑Code Single‑file HTML designed for learning sites. Search, TOC, expandable notes, and copy buttons on every snippet. Introduction Java is a high‑level, class‑based, object‑oriented language designed for portability ("write once, run anywhere"). Programs compile to bytecode that runs on the JVM (Java Virtual Machine). Copy // HelloWorld.java public class HelloWorld { public static void main(String[] args) { System.out.println("Hello, Java!"); } } Compile with javac HelloWorld.java , run with java HelloWorld . Syntax, Types, Variables, Operators Primitive types: ...

Learn coding with amol

Image
 Hello my name is amol sharma or vineet and this is my seventh part of learn coding with amol and in this part we are learning C#. Let's Start  PART-7 C# 💻 Complete C# Guide This guide covers all basics of the C# programming language with examples. 1. Hello World The structure of a simple C# program. using System; class Program { static void Main() { Console.WriteLine("Hello, World!"); } } 2. Variables and Data Types Variables store data. C# is strongly typed. int age = 13; double pi = 3.14; char grade = 'A'; string name = "Amol"; 3. Input and Output Use Console.ReadLine() to get user input. Console.Write("Enter your name: "); string name = Console.ReadLine(); Console.WriteLine("Hello, " + name); 4. if / else Conditional execution in C#. int x = 10...

Learn coding with amol

Image
 Hello my name is amol sharma or vineet and this is my sixth part of learn coding with amol and in this part we are learning C++. Let's Start  Part-6 C++ 💻 Complete C++ Guide This guide includes all important C++ topics with examples and explanations. 1. Hello World Basic C++ program structure. #include <iostream> using namespace std; int main() { cout << "Hello, World!"; return 0; } 2. Variables and Data Types Declare and use variables with types. int age = 13; float pi = 3.14; char grade = 'A'; string name = "Amol"; 3. Input and Output Using cin and cout for user interaction. int num; cout << "Enter number: "; cin >> num; cout << "You entered: " << num; 4. if / else Conditions Control flow using conditionals. int x ...

Learn coding with amol

Image
 Hello my name is amol sharma or vineet and this is my fifth part of learn coding with amol and in this part we are learning c language. PART-5 c language Let's Start  💻 Complete C Language Guide This guide covers the fundamentals of C programming with explanations and copyable examples. 1. Hello World Basic structure of a C program. #include <stdio.h> int main() { printf("Hello, World!"); return 0; } 2. Variables and Data Types Variables store data values. C has types like int, float, char. int age = 13; float pi = 3.14; char grade = 'A'; 3. Input and Output Use scanf to get user input. int num; printf("Enter a number: "); scanf("%d", &num); printf("You entered: %d", num); 4. if / else Conditionally execute code blocks. int x = 10; if (x >...

Learn coding with amol

Image
 Hello my name is amol or vineet and this is my second part of learn coding with amol and in this part we are learning css. PART-2  CSS:- 🎨 Complete CSS Guide This guide explains important CSS properties with examples and copyable code. 1. Color and Background Set text color and background color. p { color: white; background-color: blue; } 2. Font and Text Control font size, family, and alignment. h1 { font-size: 32px; font-family: Arial, sans-serif; text-align: center; } 3. Margin and Padding Spacing outside (margin) and inside (padding) of elements. div { margin: 20px; padding: 10px; } 4. Borders and Border Radius Add borders and rounded corners to elements. img { border: 2px solid black; border-radius: 10px; } 5. Box Model Every element is a box:...

Learn coding with amol

Image
 Hello my name is amol sharma or vineet and this is my fourth part of learn coding with amol and in this part we are going to learn python. PART-4 python. 🐍 Complete Python Guide This guide includes all important Python concepts with examples. 1. Variables Variables store values that can be used later in the program. name = "Amol" age = 13 height = 5.6 2. Data Types Common types include int, float, string, list, dict, bool. x = 10 # int y = 3.14 # float name = "Amol" # str items = [1, 2, 3] # list person = {"name": "Amol", "age": 13} # dict is_human = True # bool 3. if / elif / else Decision-making in Python. score = 85 if score >= 90: print("Excellent") elif score >= 50: print("Passed") else: print("Failed") ...