createbycreaters.comBeyond GlassmorphismSee, you are making beautiful websites and apps. But sometimes, you want something extra, something that feels more alive... Something that isn't just flat and boring. There's a new hero coming to save the day: Liquid Glass UI. Remember that glassmor...Dec 29, 2025·2 min read
createbycreaters.comIs AI Making Us Dumb?Well, that’s the question everyone’s whispering but few actually want to face.AI is everywhere — writing our emails, generating our essays, building our apps, and even suggesting what we should think next. But let’s pause for a second... is it helpin...Dec 29, 2025·2 min read
createbycreaters.comWhy NextJS over ReactJS?See, you are making beautiful websites with React, no problem. But sometimes, little, little troubles come, no? Like: Google Search Problem: Your website looks very nice, but when someone searches on Google, it's not showing up properly. Like your sh...May 25, 2025·3 min read
createbycreaters.com#100 days of LeetCode100daysof.codes Problem: Remove Duplicates from sorted LL Leaf-Similar Trees // Remove Duplicates void remove(ListNode* &head, ListNode* &temp){ if(temp == head){ head = head -> next; temp -> next = nullptr;...Sep 16, 2023·1 min read
createbycreaters.com#100 days of LeetCodeDay 1 of 100 100daysof.codes Solution: Swapping Nodes in a Linked List Reorder List // 1-> Swapping Nodes in the Linked List ListNode* swapNodes(ListNode* head, int k) { vector<int> v; ListNode* temp = head; while(temp !...Sep 15, 2023·1 min read