Khishamuddin Syedjargoniseasy.hashnode.dev·Jan 29, 2025DeepSeek R1: The AI Model Challenging OpenAI – Future or Hype?Introduction Artificial Intelligence (AI) is advancing faster than ever, and OpenAI has been at the forefront with its groundbreaking models like GPT-4. But now, a new contender has entered the arena: DeepSeek R1. This open-source AI model is not onl...40 readsTech News2Articles1Week
Darshit Anjariadarshitanjaria.hashnode.dev·Jan 29, 2025Mastering Database Sharding: A Beginner's Guide to Scalable Data SolutionsIn the era of big data and high-demand applications, database performance is critical. As data grows exponentially, traditional scaling techniques may fall short. Enter database sharding, a powerful strategy for managing and scaling large databases. ...Databases
Stephen Simoncodewithsimon.hashnode.dev·Jan 29, 2025UPDATE Statement in SQLThe UPDATE statement in SQL is used to modify existing data in a table. It allows you to change one or more columns for specific rows based on a condition. Syntax for UPDATE UPDATE table_name SET column1 = value1, column2 = value2, ... WHERE conditi...SQL for BeginnersSQL
Dinesh Tdinesht0006-tech-blog.hashnode.dev·Jan 28, 2025Day 10 of 100 Days of AWS: Storage Basics Part - IIHi folks! Welcome to Day 8 of 100 Days of AWS🎯, where we will cover the complete AWS cloud from beginner to professional. Today, we will expand our horizons in the AWS cloud by understanding the Object storage service provided by AWS. Different S3 s...100 days of AWS2Articles1Week
Kumar Nirupamkumar-nirupam-webdev.hashnode.dev·Jan 28, 2025HTML: The Skeleton That Shapes Every Website!Introduction HTML it stands for Hyper Text Markup Language . In the Building a website on the Internet HTML acts as the Skeleton which gives the website a structure —— like in the Human body the skeleton give the structure and the framework to the bo...3 likes·44 reads2Articles1Week
Khishamuddin Syedjargoniseasy.hashnode.dev·Jan 28, 2025TCP 3-Way HandshakeIntroduction When you send a message over the internet, whether it's a simple text or a critical transaction, the process involves more than just pressing 'send.' Behind the scenes, an intricate process ensures the reliable delivery of your data. Thi...Web Basics2Articles1Week
Khishamuddin Syedjargoniseasy.hashnode.dev·Jan 27, 2025TCP/IP BasicsIntroduction What Makes the Internet Work? Imagine you’re sending a message to a friend across the globe. How does that tiny packet of data travel such vast distances and reach the right destination? That’s where the magic of the TCP/IP protocol come...Web BasicsWeb Basics
Stephen Simoncodewithsimon.hashnode.dev·Jan 27, 2025INSERT Statement in SQLThe INSERT statement in SQL is used to add new rows of data into a table. You can insert a single row, multiple rows, or use the result of a query to populate data into a table. Syntax for INSERT 1. Insert Single Row INSERT INTO table_name (column1,...SQL for BeginnersSQL
Favour Onyenekeonlyfave.hashnode.dev·Jan 26, 2025A 30-Day Weather Dashboard: How I Built A Python Project for API Integration and Cloud StorageOverview The 30days Weather Dashboard is a Python-based application designed to fetch weather data for multiple cities using the OpenWeather API. It saves the fetched weather data to an AWS S3 bucket for storage, demonstrating best practices in API i...2Articles1Week
Stephen Simoncodewithsimon.hashnode.dev·Jan 26, 2025CREATE TABLE in SQLThe CREATE TABLE statement in SQL is used to create a new table in a database. You define the table structure, including the column names, data types, and any constraints. Syntax for CREATE TABLE CREATE TABLE table_name ( column1 datatype constr...SQL for BeginnersSQL