Jan 21 · 3 min read · This article explains why many developers are choosing Pulumi (and when Terraform is still the better choice) TL;DR Pulumi and Terraform both solve Infrastructure as Code well, but they optimise for different people. Terraform is great when you want ...
Join discussion
Jul 20, 2025 · 5 min read · Introduction: What Are Functions? In programming, a function is a block of organized and reusable code used to perform a single, related action. Functions help break our program into smaller and modular chunks, making it more readable, manageable, an...
Join discussion
May 3, 2025 · 3 min read · Introduction A data structure is a way of organizing and storing data so that it can be accessed and modified efficiently. Python provides a rich set of built-in data structures and also allows us to create user-defined ones for more complex operatio...
Join discussion
May 15, 2024 · 4 min read · Hey Spark enthusiasts! Today, we're diving into the world of User-Defined Functions (UDFs) in PySpark. UDFs are like custom tools you can build to transform your data exactly how you need it. They're incredibly flexible, but like any powerful tool, t...
Join discussion
Feb 13, 2024 · 2 min read · 진행 날짜 2024년 2월 15일 범위 C 기초 문자열 조건문과 루프 자료형, 형식 지정자, 연산자 사용자 정의 함수, 중첩 루프 하드웨어의 한계 Mission Quiz 1. 스크래치에서 아래 블록이 의미하는 것과 동일한 역할을 하는 함수를 C언어로 올바르게 작성한 것은 무엇일까요? 정답 int main(void) Quiz 2. 스크래치에서 아래 블록이 의미하는 것과 동일한 역할을 C언어로 올바르게 표현한건 무엇인가요? 정답 prin...
Join discussion
Sep 23, 2023 · 3 min read · Functions are a block of code that performs a specific task. They allow us to split up our code into smaller, reusable pieces. They allow code reusability. The same function can be called multiple times from different parts of the code. They make o...
Join discussion