https://github.com/ditzdev/ditzdev
Config files for my GitHub profile.
https://github.com/ditzdev/ditzdev
config github-config
Last synced: about 1 month ago
JSON representation
Config files for my GitHub profile.
- Host: GitHub
- URL: https://github.com/ditzdev/ditzdev
- Owner: DitzDev
- Created: 2024-09-27T14:05:21.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-08-14T14:37:36.000Z (7 months ago)
- Last Synced: 2025-09-13T08:42:49.982Z (6 months ago)
- Topics: config, github-config
- Homepage: https://github.com/DitzDev
- Size: 85.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Hey there! 👋
Welcome to my little corner of GitHub! I'm just a dev who loves turning caffeine into code and occasionally breaking things in the process (but hey, that's how we learn, right? 😅).
## Fun fact about me... :)
I have a weird obsession with optimizing code that's already working fine. Like, seriously, I'll spend 3 hours making something run 0.2 seconds faster just because I can. Also, I unironically enjoy debugging at 2 AM – there's something magical about solving problems when the world is quiet!
## 📈 My Stats
## 🛠️ My Techstack & Tools
From frontend magic to backend wizardry, here's what I like to play around with:
## 💻 A little C++ snippet I'm proud of
Here's something I wrote recently that made me smile – a simple but clean implementation:
```cpp
#include
#include
#include
class QuickSort {
public:
static void sort(std::vector& arr, int low, int high) {
if (low < high) {
int pivot = partition(arr, low, high);
sort(arr, low, pivot - 1);
sort(arr, pivot + 1, high);
}
}
private:
static int partition(std::vector& arr, int low, int high) {
int pivot = arr[high];
int i = low - 1;
for (int j = low; j < high; j++) {
if (arr[j] < pivot) {
std::swap(arr[++i], arr[j]);
}
}
std::swap(arr[i + 1], arr[high]);
return i + 1;
}
};
int main() {
std::vector numbers = {64, 34, 25, 12, 22, 11, 90};
std::cout << "Before sorting: ";
for (int num : numbers) std::cout << num << " ";
QuickSort::sort(numbers, 0, numbers.size() - 1);
std::cout << "\nAfter sorting: ";
for (int num : numbers) std::cout << num << " ";
std::cout << std::endl;
return 0;
}
```
Sometimes the classics just hit different, you know?
## 🌐 Find me on:
---
*Thanks for stopping by! Feel free to check out my repos, and don't hesitate to reach out if you want to chat about code, tech, or just need someone to debug with at ungodly hours*
