Posts

Showing posts from September, 2025

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 ...