Skip to content

Commit dcef12c

Browse files
committed
devlog
my first devlog;
1 parent ddc5e24 commit dcef12c

6 files changed

Lines changed: 92 additions & 0 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# maxOS system files
2+
.DS_Store

_config.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
title: Kartik Sanil's Devlog
2+
description: My journey building projects, AI apps, and refining my craft in public.
3+
author: Kartik Sanil
4+
theme: minima
5+
baseurl: "" # Leave empty unless your site is in a subfolder
6+
url: "https://intscription.github.io/devlog" # Your GitHub Pages URL
7+
8+
# Optional: Show posts in newest-first order if you use blog posts later
9+
paginate: 5
10+
paginate_path: "/page:num/"
11+
12+
# Minima theme settings (optional tweaks)
13+
minima:
14+
social_links:
15+
github: https://github.com/IntScription
16+
youtube: https://www.youtube.com/@idkythisisme
17+
18+
sass:
19+
style: compressed
20+
21+
# Exclude files/folders from the generated site
22+
exclude:
23+
- README.md
24+
- .gitignore
25+
- .DS_Store
26+

assets/css/style.scss

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
--- --- @import "minima";
2+
3+
body {
4+
font-family: 'Fira Code', monospace;
5+
background-color: #0f1117;
6+
color: #dcdcdc;
7+
}
8+
9+
a {
10+
color: #ff9800;
11+
}

favicon.ico

15 KB
Binary file not shown.

index.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<link rel="icon" href="/favicon.ico" type="image/x-icon">
2+
3+
# Kartik Sanil's Devlog 📓
4+
5+
Welcome to my public developer log.
6+
I document my progress, projects, learning experiences, and reflections as I build and improve my skills in software engineering, AI, and development tools.
7+
8+
---
9+
10+
## 📅 Devlog Entries
11+
- [2025-07-17 — Devlog #1](./logs/2025-07-17.md)
12+
<!-- Add new logs here as you go -->
13+
14+
---
15+
16+
## 🎯 Why This Devlog Exists
17+
I believe in **learning in public**.
18+
This devlog helps me:
19+
- Track my progress consistently
20+
- Reflect on my challenges and breakthroughs
21+
- Stay accountable to my personal and professional goals
22+
- Share my journey with others
23+
24+
---
25+
26+
## 🔗 Connect With Me
27+
- [GitHub](https://github.com/IntScription)
28+
- [YouTube](https://www.youtube.com/@idkythisisme)
29+

logs/2025-07-17.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Devlog - 2025-07-17
2+
3+
## 🚀 What I Did
4+
- Started with CS50(Computer Science course by Harvard).
5+
- Helped me on the revision for C-language.
6+
- This time tried to run the code on the terminal itself.
7+
8+
```c
9+
#include <stdio.h>
10+
11+
int main(void){
12+
printf("Hello, world.\n");
13+
return 0;
14+
}
15+
```
16+
```
17+
```
18+
19+
## 🧠 What I Learned
20+
- It was simple but I wanted to understand the teminal workflow.
21+
- For compiling and running together, `gcc hello.c -o hello && ./hello`.
22+
23+
## 🔥 What's Next
24+
- I'll work on full-stack. ; like the topic then what I did, what I learned and whats next;

0 commit comments

Comments
 (0)