VBA – File & Directory Handling
Create folder if not exist
Sub create_folder_()
'
folder_path = "C:\Users\aashish mittal\Downloads\learnskill"
If Dir(folder_path, vbDirectory) <> "" Then
MsgBox "exist"
Else
MsgBox "not exist"
MkDir folder_path
End If
End Sub
Create file if not exist
Sub check_file_exist()
filePath = "C:\Users\aashish
Read More
Vibe Coding: Good or Bad for Beginners?
Vibe coding is an AI-assisted software development technique, popularized by Andrej Karpathy in early 2025, where developers use natural language prompts to guide large language models (LLMs) in generating, refining, and debugging code, shifting the developer's role from writing code to high-level task management
Read MoreWhich Programming Language to Choose for Data Science in 2025?
Introduction
Data science is one of the fastest-growing careers, but a common question for beginners is Which programming language should I learn for data science? With Python, R, SQL, Julia, and others in the mix, the answer depends on
Read More



