Suriyasuriyaofficial.hashnode.dev·Dec 1, 2024Postgres Vs MySQLBelow these are some commands to start server and login to terminal client in macOS and DDLs OperationPostgreSQL CommandMySQL Equivalent Start the serverpt_ctl -D /path/to/data startsudo /usr/local/mysql/support-files/mysql.server start Stop ...DiscussDatabase SystemsPostgreSQL
mahdim--mdy--m.hashnode.dev·Oct 1, 2024Understanding Syntax and Semantics ExplainedIf you're learning a language, you've probably heard the word "syntax" and deal with it all the time. (Fucking Syntax Error). It was a few nights ago that I was thinking to myself, I never followed programming paradigms and techniques seriously, and ...Discuss·10 likessyntax
Dilip Pateljavamastery.hashnode.dev·Oct 1, 2024Java main() MethodThe main() method in Java is the entry point for any standalone application, called by the JVM to start program execution. It must be public, static, and void, with a String[] parameter for command-line arguments. The method's syntax is strict, but s...Discuss·44 readsJava BasicsJava
Yagya Goelyagyagoel1.hashnode.dev·Sep 8, 2024Week 1: Golang doesn't have While loopThis week, I learned about array slices, maps, structs (classes in Golang), if-else statements, switch-case, loops, functions, methods, and the defer keyword. Golang is a pretty interesting language with its opinionated syntax that keeps the code lo...Discuss·1 likeGo Language
Ketan Dograketanbytes.hashnode.dev·Aug 26, 2024Week 2: Diving Deeper into Terraform - Provider Lock Files, Resource Management, and DependenciesIn the second week of my Terraform learning journey, I delved into some crucial aspects that form the foundation of managing infrastructure as code (IaC) with Terraform. This week, I focused on: Terraform Provider Dependency Lock File Terraform Res...Discuss·1 likeTerraform
KodingKukodingku-php.hashnode.dev·Aug 7, 2024Panduan Dasar Sintaks PHP untuk Programmer Web PemulaHalo, Kawan KodingKu!😊 Siap untuk mendapatkan kejutan dan kesenangan di dunia pemrograman? 🎉 Mari kita mulai petualangan ini dengan semangat dan kebahagiaan! 😄 Kali ini, Kawan-Kawan akan mempelajari tentang Sintaks di PHP, bahasa pemrograman serve...DiscussEdukasi#kodingku
arman takmazyanarman-dev-blog.hashnode.dev·Jul 21, 2024Mastering Formal Grammars: An Introduction to the Chomsky HierarchyPrevious Posts: Creating TuffScript: Exploring Esoteric Programming Languages and Their Foundations Chomsky hierarchy When we talk about formal grammars and languages, it's important to discuss the Chomsky Hierarchy. Starting with a broad overview o...Discuss·1 like·76 readsgrammar
Saurabh Damalehackroot1.hashnode.dev·Jul 4, 2024Your First PHP Script: Hello World!Today, we'll guide you through creating and running your first PHP script. The "Hello World" program is a classic beginner's exercise in many programming languages, and PHP is no exception. Let's dive in! What is PHP? PHP (Hypertext Preprocessor) is ...DiscussPHP Basics
FMZ Quantfmzquant.hashnode.dev·Jun 20, 2024JavaScript language quick startBackground This section gives a little background on JavaScript to help you understand why it is the way it is. JavaScript Versus ECMAScript ECMAScript is the official name for JavaScript. A new name became necessary because there is a trademark on J...DiscussJavaScript
Lucian Ghindaallaboutcoding.ghinda.com·Jun 5, 2024Endless method - a quick introThe endless method was added to Ruby version 3.0 in 2020. In a previous article, I wrote about its history and presented an example of how it was used to refactor a piece of code. Now I am going to explore some use cases. Here is how it is described ...Discuss·1 like·3.7K readsModern RubyRuby