Arunmathavan Karunmathavank.hashnode.dev·Dec 2, 2024"How I Successfully Deployed My Django Project on AWS: A Step-by-Step Guide for Beginners"After completing my Django project, I wanted to deploy to AWS. Here are my steps to deploy. Step 1: Create an AWS account (root user) because the root user has unrestricted access to all the AWS resources and services. Step 2: For authentication, ins...learning
Arunmathavan Karunmathavank.hashnode.dev·Nov 28, 2024My Journey: "Building a Django To-Do List Application"After creating a few simple projects using Python, I decided to explore the Django framework, a robust tool for web development. I’m excited to share the journey and the steps I took to complete it. Why Django? Django is a high-level Python web frame...learning
Arunmathavan Karunmathavank.hashnode.dev·Oct 24, 2024The Power of Focus and Respect: Lessons Learned from Jason SamuelToday, I was applying for a job on a website my mentor shared. As I went through the process, I had some doubts and started asking him questions one by one. He kindly suggested I send screenshots, but I didn’t quite understand at first. That’s when I...learning
Arunmathavan Karunmathavank.hashnode.dev·Oct 18, 2024My interview experience 5Recently, I attended an interview for a database engineer role. The first round was a virtual technical interview. They asked various questions about SQL and Linux basics. I answered all the questions except for two or three. Later, I called to ask a...learning
Arunmathavan Karunmathavank.hashnode.dev·Sep 28, 2024"Understanding Unit Testing in Python: Writing Test Cases with unittest for Caesar Cipher"“unittest” is a Python's built-in testing framework. It helps write and organize test cases to validate that the code behaves as expected. We're importing the encryption and decryption functions from the “ceaser.py” module. import unittest from ...learning
Arunmathavan Karunmathavank.hashnode.dev·Sep 17, 2024Python Guide: Writing a "Caesar Cipher" ProgramThe alphabet is a list that contains all the lowercase letters of the English alphabet. alphabet = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'] In Encr...learning
Arunmathavan Karunmathavank.hashnode.dev·Aug 31, 2024From Confusion to Clarity 2From the Silent Auction program, I Learned Since I am using Windows, I clear the screen using the os.system ('cls') method. This command is specific to the Windows command prompt. However, on Mac or Linux systems, we need to use os.system('clear') b...selflearning