#course for web development
Explore tagged Tumblr posts
Text
Web Development Classes in Delhi by Jeetech Academy
0 notes
frobby · 10 months ago
Text
i love madoka magica however i dont think we as a fandom talk enough about how tragic madoka herself is. probably because the narrative itself steers you away from thinking about her personally. shes not a character shes a desire that homura has, shes a force of good, shes homura's foil. but those are all madoka's narrative roles but madoka herself as a person is not really looked at because we are viewing this world from an unreliable narrator(homura) who only sees madoka as those things. The best thing homura could have done for madoka was give up on her, to let her go. because every time we go back in time the image of madoka is distorted, she loses more of herself every regression of homura's as she tries harder and harder to save her. We don't even know what madoka originally wished for to become a magical girl in the original timeline. and she actually acts quite differently than the madoka we meet. shes a lot more honest and caring and bold. by the time homura's has reached the actual anime madoka has been reduced by the sands of time to a figment of herself. she has no wants or desires of her own beyond wanting to do good and help her friends and when all her humanity is stripped away is when she finally acends to godhood because thats all thats left of her. an ideal and a faith in her. madoka kaname died a long time ago and all that is left is her ghost.
#of course homura doesnt care anymore because she cant go back she can only go forward cuz if she gives up she killed madoka for nothing#she could have left her pass away with dignity but now shes a ghost stuck in a web of time and the only thing she can do is keep trying#to save her#i feel like inately homura knows this but she doesnt want to admit to herself thats shes the real one who killed madoka kaname#this is a very charitable reading of homura#homura died too but its a clear moment because homura is our narrator#homura akemi will never come back madoka kaname will never come back#but life goes on anyway for homura#heres my truth#i loved rebellion but im actually a bigger fan of the original anime's ending so im glad it seems like red ribbon homu is coming back#i thought that ending was a lot more hopeful and beautiful and rebellion was kind of a downer but i always accepted they were parallel#and seems im right based on posters#for walpurgis#madoka uses one of my favorite literary devices which is the underuse of a character#i dont know whats it called but i love it when they dont outright develop a character usually to signal an upholding of the status quo#i already explained how madoka is not shown as a character but they do this in princess tutu too with mytho#mytho is a character from a book hes not real in the way that the others are and therefore cant actually change like the others can#hes always the focus of others and never the one thinking of others#i mean yeah he spends like the whole anime thinking about tutu but thats PART of his book its not him as a person#anyway ive been talking too much but i wanna bring up my favorite subtle use of this in takopi's original sin#the boy#idk his name rn lmao#hes straight up not present for the bulk of the manga and hes legit just absent from the ending scene despite being one point of a triangle#at first that weirded me out like??? he doesnt get closure???#but the reason was he didnt need it#the focus and moral is that those girls were 'weird' unable to be normal (because of trauma) and their closure was theyre at least together#but he doesnt need that because hes already normal hes the status quo a benchmark for the reader for the reader to judge the characters off#and the characters to judge eachother off of#anyway anyway sorry this has been so long#i had to get all of that out of me
22 notes · View notes
codingquill · 2 years ago
Text
SQL Fundamentals #1: SQL Data Definition
Last year in college , I had the opportunity to dive deep into SQL. The course was made even more exciting by an amazing instructor . Fast forward to today, and I regularly use SQL in my backend development work with PHP. Today, I felt the need to refresh my SQL knowledge a bit, and that's why I've put together three posts aimed at helping beginners grasp the fundamentals of SQL.
Understanding Relational Databases
Let's Begin with the Basics: What Is a Database?
Simply put, a database is like a digital warehouse where you store large amounts of data. When you work on projects that involve data, you need a place to keep that data organized and accessible, and that's where databases come into play.
Exploring Different Types of Databases
When it comes to databases, there are two primary types to consider: relational and non-relational.
Relational Databases: Structured Like Tables
Think of a relational database as a collection of neatly organized tables, somewhat like rows and columns in an Excel spreadsheet. Each table represents a specific type of information, and these tables are interconnected through shared attributes. It's similar to a well-organized library catalog where you can find books by author, title, or genre.
Key Points:
Tables with rows and columns.
Data is neatly structured, much like a library catalog.
You use a structured query language (SQL) to interact with it.
Ideal for handling structured data with complex relationships.
Non-Relational Databases: Flexibility in Containers
Now, imagine a non-relational database as a collection of flexible containers, more like bins or boxes. Each container holds data, but they don't have to adhere to a fixed format. It's like managing a diverse collection of items in various boxes without strict rules. This flexibility is incredibly useful when dealing with unstructured or rapidly changing data, like social media posts or sensor readings.
Key Points:
Data can be stored in diverse formats.
There's no rigid structure; adaptability is the name of the game.
Non-relational databases (often called NoSQL databases) are commonly used.
Ideal for handling unstructured or dynamic data.
Now, Let's Dive into SQL:
Tumblr media
SQL is a :
Data Definition language ( what todays post is all about )
Data Manipulation language
Data Query language
Task: Building and Interacting with a Bookstore Database
Setting Up the Database
Our first step in creating a bookstore database is to establish it. You can achieve this with a straightforward SQL command:
CREATE DATABASE bookstoreDB;
SQL Data Definition
As the name suggests, this step is all about defining your tables. By the end of this phase, your database and the tables within it are created and ready for action.
Tumblr media
1 - Introducing the 'Books' Table
A bookstore is all about its collection of books, so our 'bookstoreDB' needs a place to store them. We'll call this place the 'books' table. Here's how you create it:
CREATE TABLE books ( -- Don't worry, we'll fill this in soon! );
Now, each book has its own set of unique details, including titles, authors, genres, publication years, and prices. These details will become the columns in our 'books' table, ensuring that every book can be fully described.
Now that we have the plan, let's create our 'books' table with all these attributes:
CREATE TABLE books ( title VARCHAR(40), author VARCHAR(40), genre VARCHAR(40), publishedYear DATE, price INT(10) );
With this structure in place, our bookstore database is ready to house a world of books.
2 - Making Changes to the Table
Sometimes, you might need to modify a table you've created in your database. Whether it's correcting an error during table creation, renaming the table, or adding/removing columns, these changes are made using the 'ALTER TABLE' command.
For instance, if you want to rename your 'books' table:
ALTER TABLE books RENAME TO books_table;
If you want to add a new column:
ALTER TABLE books ADD COLUMN description VARCHAR(100);
Or, if you need to delete a column:
ALTER TABLE books DROP COLUMN title;
3 - Dropping the Table
Finally, if you ever want to remove a table you've created in your database, you can do so using the 'DROP TABLE' command:
DROP TABLE books;
To keep this post concise, our next post will delve into the second step, which involves data manipulation. Once our bookstore database is up and running with its tables, we'll explore how to modify and enrich it with new information and data. Stay tuned ...
Part2
112 notes · View notes
mojop24 · 6 months ago
Text
Why Learning Python is the Perfect First Step in Coding
Learning Python is an ideal way to dive into programming. Its simplicity and versatility make it the perfect language for beginners, whether you're looking to develop basic skills or eventually dive into fields like data analysis, web development, or machine learning.
Start by focusing on the fundamentals: learn about variables, data types, conditionals, and loops. These core concepts are the building blocks of programming, and Python’s clear syntax makes them easier to grasp. Interactive platforms like Codecademy, Khan Academy, and freeCodeCamp offer structured, step-by-step lessons that are perfect for beginners, so start there.
Once you’ve got a handle on the basics, apply what you’ve learned by building small projects. For example, try coding a simple calculator, a basic guessing game, or even a text-based story generator. These small projects will help you understand how programming concepts work together, giving you confidence and helping you identify areas where you might need a bit more practice.
When you're ready to move beyond the basics, Python offers many powerful libraries that open up new possibilities. Dive into pandas for data analysis, matplotlib for data visualization, or even Django if you want to explore web development. Each library offers a set of tools that helps you do more complex tasks, and learning them will expand your coding skillset significantly.
Keep practicing, and don't hesitate to look at code written by others to see how they approach problems. Coding is a journey, and with every line you write, you’re gaining valuable skills that will pay off in future projects.
FREE Python and R Programming Course on Data Science, Machine Learning, Data Analysis, and Data Visualization
Tumblr media
10 notes · View notes
swifttrinitychronicle · 3 days ago
Text
Best Web Development Course in Phagwara
Join at Tech CADD for the best Web Development course in Phagwara, Punjab! Master skills to create dynamic websites and applications!
2 notes · View notes
oneictskills · 2 months ago
Text
youtube
2 notes · View notes
possumpixel · 7 months ago
Text
I despise wix.com with every bone in my body.
There are three hundred and eighty-seven million miles of ideas I have for my website. If the word “hate” were engraved on each nano angstrom of those hundreds of millions of miles, it would not equal one-billionth, of the hate I feel for wix at this micro-instant.
4 notes · View notes
neobastard · 1 year ago
Text
Tumblr media
We are so fucking back.
14 notes · View notes
Text
Web Development Course in Delhi by Jeetech Academy
Embark on a transformative journey into the world of web development with a comprehensive web development course in Delhi.
0 notes
codingquill · 2 years ago
Text
SQL Fundamentals #2: SQL Data Manipulation
Tumblr media
In our previous database exploration journey, SQL Fundamentals #1: SQL Data Definition, we set the stage by introducing the "books" table nestled within our bookstore database. Currently, our table is empty, Looking like :
books
| title | author | genre | publishedYear | price |
Data manipulation
Tumblr media
Now, let's embark on database interaction—data manipulation. This is where the magic happens, where our "books" table comes to life, and we finish our mission of data storage.
Inserting Data
Our initial task revolves around adding a collection of books into our "books" table. we want to add the book "The Great Gatsby" to our collection, authored F. Scott Fitzgerald. Here's how we express this in SQL:
INSERT INTO books(title, author, genre, publishedYear, price) VALUES('The Great Gatsby', 'F. Scott Fitzgerald', 'Classic', 1925, 10.99);
Alternatively, you can use a shorter form for inserting values, but be cautious as it relies on the order of columns in your table:
INSERT INTO books VALUES('The Great Gatsby', 'F. Scott Fitzgerald', 'Classic', 1925, 10.99);
Updating data
As time goes on, you might find the need to modify existing data in our "books" table. To accomplish this, we use the UPDATE command.For example :
UPDATE books SET price = 12.99 WHERE title = 'The Great Gatsby';
This SQL statement will locate the row with the title "The Great Gatsby" and modify its price to $12.99.
We'll discuss the where clause in (SQL fundamentals #3)
Deleting data
Sometimes, data becomes obsolete or irrelevant, and it's essential to remove it from our table. The DELETE FROM command allows us to delete entire rows from our table.For example :
DELETE FROM books WHERE title = 'Moby-Dick';
This SQL statement will find the row with the title "Moby-Dick" and remove it entirely from your "books" table.
To maintain a reader-friendly and approachable tone, I'll save the discussion on the third part of SQL, which focuses on data querying, for the upcoming post. Stay tuned ...
45 notes · View notes
priya-joshi · 1 year ago
Text
The Roadmap to Full Stack Developer Proficiency: A Comprehensive Guide
Embarking on the journey to becoming a full stack developer is an exhilarating endeavor filled with growth and challenges. Whether you're taking your first steps or seeking to elevate your skills, understanding the path ahead is crucial. In this detailed roadmap, we'll outline the stages of mastering full stack development, exploring essential milestones, competencies, and strategies to guide you through this enriching career journey.
Tumblr media
Beginning the Journey: Novice Phase (0-6 Months)
As a novice, you're entering the realm of programming with a fresh perspective and eagerness to learn. This initial phase sets the groundwork for your progression as a full stack developer.
Grasping Programming Fundamentals:
Your journey commences with grasping the foundational elements of programming languages like HTML, CSS, and JavaScript. These are the cornerstone of web development and are essential for crafting dynamic and interactive web applications.
Familiarizing with Basic Data Structures and Algorithms:
To develop proficiency in programming, understanding fundamental data structures such as arrays, objects, and linked lists, along with algorithms like sorting and searching, is imperative. These concepts form the backbone of problem-solving in software development.
Exploring Essential Web Development Concepts:
During this phase, you'll delve into crucial web development concepts like client-server architecture, HTTP protocol, and the Document Object Model (DOM). Acquiring insights into the underlying mechanisms of web applications lays a strong foundation for tackling more intricate projects.
Advancing Forward: Intermediate Stage (6 Months - 2 Years)
As you progress beyond the basics, you'll transition into the intermediate stage, where you'll deepen your understanding and skills across various facets of full stack development.
Tumblr media
Venturing into Backend Development:
In the intermediate stage, you'll venture into backend development, honing your proficiency in server-side languages like Node.js, Python, or Java. Here, you'll learn to construct robust server-side applications, manage data storage and retrieval, and implement authentication and authorization mechanisms.
Mastering Database Management:
A pivotal aspect of backend development is comprehending databases. You'll delve into relational databases like MySQL and PostgreSQL, as well as NoSQL databases like MongoDB. Proficiency in database management systems and design principles enables the creation of scalable and efficient applications.
Exploring Frontend Frameworks and Libraries:
In addition to backend development, you'll deepen your expertise in frontend technologies. You'll explore prominent frameworks and libraries such as React, Angular, or Vue.js, streamlining the creation of interactive and responsive user interfaces.
Learning Version Control with Git:
Version control is indispensable for collaborative software development. During this phase, you'll familiarize yourself with Git, a distributed version control system, to manage your codebase, track changes, and collaborate effectively with fellow developers.
Achieving Mastery: Advanced Phase (2+ Years)
As you ascend in your journey, you'll enter the advanced phase of full stack development, where you'll refine your skills, tackle intricate challenges, and delve into specialized domains of interest.
Designing Scalable Systems:
In the advanced stage, focus shifts to designing scalable systems capable of managing substantial volumes of traffic and data. You'll explore design patterns, scalability methodologies, and cloud computing platforms like AWS, Azure, or Google Cloud.
Embracing DevOps Practices:
DevOps practices play a pivotal role in contemporary software development. You'll delve into continuous integration and continuous deployment (CI/CD) pipelines, infrastructure as code (IaC), and containerization technologies such as Docker and Kubernetes.
Specializing in Niche Areas:
With experience, you may opt to specialize in specific domains of full stack development, whether it's frontend or backend development, mobile app development, or DevOps. Specialization enables you to deepen your expertise and pursue career avenues aligned with your passions and strengths.
Conclusion:
Becoming a proficient full stack developer is a transformative journey that demands dedication, resilience, and perpetual learning. By following the roadmap outlined in this guide and maintaining a curious and adaptable mindset, you'll navigate the complexities and opportunities inherent in the realm of full stack development. Remember, mastery isn't merely about acquiring technical skills but also about fostering collaboration, embracing innovation, and contributing meaningfully to the ever-evolving landscape of technology.
9 notes · View notes
uiuxcafe · 9 months ago
Text
youtube
Complete Web Design Course for Beginners | Free Full Course
Welcome to the Complete Web Design Course for Beginners! In this free full course, you'll learn every step of the professional web design process and build a comprehensive project alongside me. We'll start with strategy and structure, move into the design phase, and even develop the website without writing a single line of code using Framer…
Throughout this course, you'll thoroughly understand web design techniques such as wireframing and color theory, and you'll become proficient with tools like Figma and Framer. This isn't just theory—it's practical application. By the time you finish, you'll be ready to design and publish simple websites for paying clients.
What You'll Learn:
Strategy: Client needs, identify competitors, and develop solutions
Structure: Create sitemaps, content documents, and wireframes.
Design: Research, moodboards, generate assets, and design in Figma.
Development: Build responsive websites with animations in Framer.
This course is perfect for beginners who want to dive into web design and develop their skills step-by-step. Whether you're looking to start a new career or just want to design your own website, this course has everything you need.
4 notes · View notes
mimzshroom · 9 months ago
Text
yo. so i got accepted into a course for full stack web development! orientation and classes start on the 17th this month! im excited, but also super nervous. I've made basic webpages before using HTML and CSS, and i've begun some bits of javascript, but those are just the basics of what the program goes over! I'll be getting into completely new territory soon.
4 notes · View notes
emi1y · 1 year ago
Text
oh my fucking god i understand the hexadecimal system
7 notes · View notes
fideidefenswhore · 2 years ago
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
teenage dream (2023), olivia rodrigo / the spanish princess (2020) / the private lives of the tudors, tracy borman (2016) / the six queens of henry viii (2016) / the vaux passional / the six wives of henry viii (2001) / the lovers who changed history (2014) / blood, sex & royalty (2022) / blood, sex & royalty (2022), gif @fabledenigma / the cross (2014) 
#yes i am using this song this intro and this bridge yes i am using it for him.#i just want to be hated.gif#web weaving#the afterword will probably prove the most controversial but oh well.#is it enough for you? gagged him a little.#it is so gutting bcus it's so tangible that she just. pities him. to her core.#it goes from anger to pity. why won't you give me what you claim i'm worth to why won't you give yourself what you claim you're worth?#i have like the entire meta for that scene saved bcus i knew it wouldn't save all my tags#tl; dr you won't be fulfilled by that; you just think you will.#and of course it hits its target because nothing is ever enough for him#his most formative memories begin with this sense of debt#where he's fallen behind this future that's been charted for him because it wasn't supposed to be his#and then he becomes king and just. falls behind and falls behind and falls behind#each loss compounded by grief and disappointment and the sense he's fallen even farther behind#the loss of his mother is spoken of re: his development a lot and i think it's important but it probably overshadows#how small the other gaps are#it's nine years between his brother dying and the loss of his first child that lived at all#and more than that it's his brother and mother dying literally eleven months apart#there is this sense of dynastic duty but it also has to have been so deeply personal#he wants to compensate for the loss of his family and yet his family continues to die and each loss reminds of the previous#and in this immediacy the women he marry inherit this debt#this emotional debt and debt of duty#henry has a lot of promise but the promise has a price if it's not fulfilled#fabledenigma#and it's to the disadvantage of all the women he becomes close to (and some of the men-- wolsey; cromwell) that henry's been staring#at this hourglass of sand since he was ten years old but he also doesn't know any other way#there is a deep and ineffable tragedy about this man#inescapable from what julia fox said recently; anne was the love of his life.#which means to me the question of whether or not he remembered anne in the aftermath answers itself.#there's not only always the ghost of anne herself but the ghost of the future they had planned together
14 notes · View notes
business-seo-simmu · 8 months ago
Text
2 notes · View notes