You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/database/blogs/index.tsx
+23-1Lines changed: 23 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ interface Blog {
7
7
authors: string[];
8
8
category: string;
9
9
tags?: string[];
10
+
readingTime?: number;
10
11
}
11
12
12
13
constblogs: Blog[]=[
@@ -18,6 +19,7 @@ const blogs: Blog[] = [
18
19
description:
19
20
" Are you passionate about design and dreaming of a career in it? Or maybe you are already in the design space and looking to pivot into UI/UX? ",
20
21
slug: "ux-ui-design-job",
22
+
readingTime: 9,
21
23
authors: ["sowmiya-v","sanjay-kv"],
22
24
category: "Design",
23
25
tags: ["UX","UI","design","Job"],
@@ -30,6 +32,7 @@ const blogs: Blog[] = [
30
32
description:
31
33
"The GitHub Copilot Coding Agent is an asynchronous software engineering agent that assists developers by suggesting code snippets",
32
34
slug: "git-coding-agent",
35
+
readingTime: 5,
33
36
authors: ["sanjay-kv"],
34
37
category: "Development",
35
38
tags: ["GitHub","AI","Coding","Tools"],
@@ -41,6 +44,7 @@ const blogs: Blog[] = [
41
44
description:
42
45
"Apache Spark is a fast, open-source big data framework that leverages in-memory computing for high performance. Its architecture powers scalable distributed processing across clusters, making it essential for analytics and machine learning.",
"N8N is an open-source workflow automation tool that enables users to connect various apps and services to automate tasks without extensive coding knowledge.",
54
58
slug: "n8n-workflow-automation",
59
+
readingTime: 10,
55
60
authors: ["Aditya-Singh-Rathore"],
56
61
category: "Development",
57
62
tags: ["Automation","Workflow","N8N","Tools"],
@@ -63,6 +68,7 @@ const blogs: Blog[] = [
63
68
description:
64
69
"OpenAI AgentKit is a framework that simplifies the process of building AI agents, allowing developers to create intelligent applications without getting bogged down in the underlying complexities.",
65
70
slug: "open-ai-agent-builder",
71
+
readingTime: 14,
66
72
authors: ["Aditya-Singh-Rathore"],
67
73
category: "AI & Tech",
68
74
tags: ["AI","OpenAI","Development","Agents"],
@@ -74,6 +80,7 @@ const blogs: Blog[] = [
74
80
description:
75
81
"Delta Lake is an open-source storage layer that brings ACID transactions to Apache Spark and big data workloads.",
"The Microsoft Certified: Azure Data Engineer Associate certification validates your skills in designing and implementing data solutions on the Azure platform.",
"Microsoft Fabric is a unified analytics platform that integrates various data services and tools to provide a seamless experience for data professionals, enabling them to manage and analyze data across the entire data lifecycle.",
"SSO lets you log into dozens of apps with a single set of credentials. But how does it actually work under the hood? A beginner-friendly walkthrough of the full flow — from clicking 'Sign in with Google' to getting access — step by step.",
"Lakehouse and Data Warehouse are two different data storage architectures. A Data Warehouse is a centralized repository for structured data, optimized for reporting and analysis. A Lakehouse combines the best of both worlds, allowing for the storage of both structured and unstructured data, providing flexibility and scalability.",
"Netflix processes an enormous amount of data every day, handling over 2 trillion events. This article explores how they manage this massive scale and the technologies they use to ensure smooth operations.",
"Azure Storage and Azure Data Lake Storage Gen2 (ADLS Gen2) are two different storage solutions offered by Microsoft Azure. Azure Storage is a general-purpose storage service that provides various types of storage, including blobs, files, queues, and tables. ADLS Gen2, on the other hand, is a specialized storage solution designed for big data analytics workloads, offering features like hierarchical namespace and optimized performance for analytics.",
"Azure Data Factory Pipeline is a cloud-based data integration service that allows you to create data-driven workflows for orchestrating and automating data movement and transformation tasks. This article will guide you through the process of building your first ETL pipeline in Azure Data Factory.",
"The Medallion Architecture is a data management approach that organizes data into different layers (Bronze, Silver, Gold) to improve data quality, governance, and scalability in data pipelines. It helps prevent data pipelines from becoming unmanageable by providing a structured framework for data processing and storage.",
"Azure Synapse Analytics is a unified analytics service that combines big data and data warehousing capabilities. This article explores when to use Azure Synapse Analytics and when to choose Fabric instead.",
"Streaming pipelines are powerful for real-time data processing, but they come with hidden costs that are often overlooked. These costs include increased complexity, higher resource consumption, and potential challenges in maintaining data consistency and reliability. This article explores these hidden costs and provides insights on how to mitigate them.",
186
202
slug: "batch-vs-stream-processing",
203
+
readingTime: 10,
187
204
authors: ["Aditya-Singh-Rathore"],
188
205
category: "data engineering",
189
206
tags: ["Streaming Pipelines","Real-Time Data Processing","Data Consistency","Data Reliability","Resource Consumption","Complexity","Data Engineering"],
@@ -196,6 +213,7 @@ const blogs: Blog[] = [
196
213
description:
197
214
"Azure Data Pipeline can be a powerful tool for data processing and analytics, but it can also lead to unexpectedly high costs if not managed properly. In this article, we share our experience of optimizing our Azure Data Pipeline costs, which resulted in a 73% reduction in our monthly bill, saving us $3,066. We discuss the strategies we implemented to achieve this significant cost reduction while maintaining the performance and reliability of our data pipeline.",
"PySpark is a powerful tool for big data processing, but it can be challenging to optimize for performance. In this article, we discuss six common mistakes that beginners make when optimizing their PySpark pipelines, which can lead to slow performance and increased costs. We provide practical tips and techniques to help you avoid these pitfalls and improve the efficiency of your PySpark applications.",
"Microsoft Purview Data Catalog is a powerful tool for managing and organizing data assets within an organization. In this article, we share our experience of using Purview Data Catalog to streamline the onboarding process for new data engineers, reducing the time it takes from 2 weeks to just 3 days. We discuss the features of Purview that enabled us to achieve this improvement and provide insights on how other organizations can leverage this tool to enhance their data management practices.",
"Data engineers often have a deeper understanding of data and its implications for business decisions than MBAs, who may focus more on theory and strategy. This article explores why data engineers can make better business analysts than MBAs, highlighting their technical expertise, problem-solving skills, and ability to derive insights from data to drive informed business decisions.",
0 commit comments