Skip to main content

Posts

శ్రీ వరసిద్ధి వినాయక వ్రత కల్పము (Easy to follow)

 "వినాయక వ్రత కల్పము"ను వివరంగా, శ్లోకాలు, మంత్రాలతో సహా, ఇక్కడ పొందుపరిచాను. శ్రీ వరసిద్ధి వినాయక వ్రత కల్పము 1. పూజా పూర్వ సిద్దత (పూజకు ముందు చేయవలసినవి) శుచిత్వం: పూజ చేయువారు ఉదయాన్నే తల స్నానం చేసి, పరిశుభ్రమైన వస్త్రాలు ధరించాలి. పూజ చేసే స్థలాన్ని శుభ్రం చేసి, ముగ్గులు పెట్టుకోవాలి. పూజ సామాగ్రి: కింది వస్తువులను సిద్ధం చేసుకోవాలి: పసుపు గణపతి కోసం పసుపు. పూజకు ఉపయోగించే వినాయక ప్రతిమ . పసుపు, కుంకుమ, గంధం, అక్షింతలు, తమలపాకులు, వక్కలు. 21 రకాల పత్రి (పత్రాలు) మరియు పూలు పంచామృతాలు (ఆవుపాలు, పెరుగు, నెయ్యి, తేనె, పంచదార) . నైవేద్యాలు: ఉండ్రాళ్ళు, కుడుములు, వడపప్పు, పానకం, పండ్లు, అట్లు, బెల్లం . కలశం, కొబ్బరికాయ, కర్పూరం, అగరుబత్తీలు, దీపాలు. 2. పూజా ప్రారంభం a. దీపారాధన: రెండు దీపపు కుందులను వెలిగించి, "సాక్షాత్ దీప దేవతాయై నమః" అని నమస్కరించాలి. b. పసుపు గణపతి పూజ (విఘ్నేశ్వర పూజ): ముందుగా పసుపుతో చిన్న గణపతిని చేసి పీఠంపై ఉంచి పూజించాలి. శ్లోకం: "శుక్లాంబరధరం విష్ణుం శశివర్ణం చతుర్భుజం, ప్రసన్నవదనం ధ్యాయేత్ సర్వ విఘ్నోపశాంతయే" "సుముఖశ్చ...
Recent posts

Install pip on Windows

If you haven't downloaded get-pip.py yet: You need to download this file from the official pip website or use curl in your command prompt. Using curl (recommended): Open Command Prompt and type: DOS curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py This will download the file to your current directory in the Command Prompt. Manual Download: Go to https://bootstrap.pypa.io/get-pip.py in your web browser, right-click on the page, select "Save as...", and save the file as get-pip.py to a location you can easily navigate to (e.g., your Downloads folder, or a dedicated Python projects folder). The file is in a different directory: You might have downloaded get-pip.py to your Downloads folder, your Desktop, or another location, but you're trying to run the command from C:\Users\gparn . Solution: Navigate to the directory where you saved get-pip.py in your Command Prompt using the cd (change directory) command. Example (if in Downloads): DOS cd C:\User...

What is Terraform?

  What is Terraform? Terraform is an open-source Infrastructure as Code (IaC) tool developed by HashiCorp . It allows you to provision, manage, and version infrastructure using a declarative configuration language. Key Concepts: 1. Providers Plugins that let Terraform interact with APIs of cloud platforms (e.g., AWS, Azure, GCP) or services (e.g., GitHub, Kubernetes). Example: provider "aws" { region = "us-west-2" } 2. Resources The building blocks of infrastructure (e.g., EC2 instances, S3 buckets). Declared using resource blocks. Example: hcl Copy Edit resource "aws_instance" "example" { ami = "ami-0c55b159cbfafe1f0" instance_type = "t2.micro" } 3. Variables Allow configuration flexibility. Declared using variable blocks and passed via CLI, .tfvars , or environment variables. 4. Outputs Provide information after a Terraform apply. Example: h Copy Edit output "instance_ip...

10 Minute Python Tutorial for Absolute Beginners

Python is a general-purpose programming language that is used for a wide variety of tasks, including data science, machine learning, web development, and more.   It is a popular choice for beginners because it is relatively easy to learn and has a large community of users and resources. This tutorial will teach you the basics of Python programming, so that you can start writing your own programs. We will cover topics such as variables, data types, operators, functions, and control flow. Prerequisites No prior programming experience is required A basic understanding of computers and how they work Getting Started The first step is to install Python. You can download the latest version from the Python website. Once you have installed Python, you can open a text editor and start writing your first program. Hello World The classic first program in any programming language is the "Hello World" program. This program prints the text "Hello, World!" to the console. ...