Jan 31 · 4 min read · What is a server? In simple words, a server is something that serves. It is a computer that holds database records, images or websites. Eg : website → web servers, file storage → file server, application on smartphone → application server. What is c...
Join discussionJan 28 · 4 min read · In today’s internet world, we usually care only about output- what appears on our mobile or laptop screens. We click a link, and the result shows up. But behind that click, do you know what happens ?. Well, let’s talk about a story. Imagine you are s...
Join discussion
Jan 28 · 2 min read · Curl = Client URL Request Library. With this, we can upload or download data from the internet using the command line. We can also use the cURL command to transfer data between machines. If you ever go to cURL’s website, you will see the subtitle “Tr...
Join discussion
Jan 27 · 8 min read · In today's world, we mostly use Client-Server Architecture, which means multiple clients connect to a centralized server. Of course, there can be multiple servers and distributed systems too, but to understand the Curl command, we'll focus on one cli...
Join discussion
Jan 19 · 3 min read · If you are learning backend development, APIs, or debugging network issues, cURL is one of the most important tools you’ll ever touch. In this article, we’ll understand what cURL is, why programmers use it, and how to make your first request — all in...
Join discussion
Jan 6 · 2 min read · Dizem que a preguiça é a principal virtude de um programador. Se você precisa fazer a mesma coisa duas vezes, automatize. Se precisa fazer três vezes, crie uma ferramenta para isso. Como desenvolvedor, eu me pegava constantemente saindo do terminal p...
Join discussion
Aug 29, 2025 · 2 min read · Introduction The Ubuntu Terminal make use of a Shell Program to Interpret and Execute Commands. Bash(Bourne Again Shell) is the Default and Most Commonly Used Shell in Ubuntu. If you Just Started Using Linux Ubuntu the Terminal Might Look Scary at Fi...
Join discussion
Aug 14, 2025 · 1 min read · Today i want to create Database and ERD with case study is an exit permission for student in Dormitories Go to gemini and write like this if you already understand, go to draw.io, for create ERD create 3 list, for teacher, student, and licensi...
Aahmad commentedAug 11, 2025 · 1 min read · Open Your Terminal write “psql -U postgres”, -U = User , postgres is user Create Database book store enter to database book store with “\c book_store”, in the second red box is name database that we enter Create Table book, ‘create table ...
AAAahmad and 2 more commented