Akash Moorchingblog.saved.gg·Feb 6, 2025I built a real-time highlight detection Twitch bot for my roommateI’m Akash Moorching (left) —co-founder of Saved.gg, I’m still a sophomore at the University of Maryland! The Dorm Room Spark Last year, as a freshman at the University of Maryland (UMD), I spent a lot of time hanging out in my friend’s dorm. He was a...1 like·200 readsgooning
Ebube Akukweebubeakukwe.hashnode.dev·Jan 8, 2025How to create the perfect logo for your SaaSEver heard of the saying "simple is best, but the best is not that simple"? Well, probably not, because it’s a saying of mine, lol. Anyway, you’re here to learn how to create a perfect yet simple logo for your SaaS, and I’m going to teach you the two...SaaS
Emmanuel Adelakuntenotea.hashnode.dev·Jan 4, 2025An Indie Hacker's Guide to DevOpsThis article is sponsored by Subbit.co. Get Early Access So here’s how this is going to go. In this article, you will get the full indie hacker’s guide to deploy a server from local to live. I will skip the nuances involved in each step and just walk...23 likes·230 readssubbit
Ewan MakforTenten - AI / ML Developmentdeveloper.tenten.co·Nov 10, 2024What is founder shares vestingReverse vesting is a crucial mechanism in startup equity structures that helps protect both the company and its stakeholders. Here's a comprehensive explanation of how it works: Core Concept Reverse vesting allows founders to receive their shares upf...Founder
thevenkatapplelens.hashnode.dev·Oct 22, 2024Understanding the ForEach Loop in SwiftUIWhat is forEach? forEach is a special function that belongs to collections like arrays and dictionaries. It helps you loop through each element in a collection and do something with it, such as printing it or performing an action. Here’s the basic fo...SwiftUISwiftUI
thevenkatapplelens.hashnode.dev·Oct 21, 2024Why Don’t Computers Use Decimal Numbers? 🤔Computers don’t think like we do! While we count using decimal numbers (0-9), computers use something called binary numbers, which only have 0s and 1s. But why do they do that? 1. Computers Speak in Simple Language: On or Off Imagine a light switch. ...MSc Diaries 🎓Computer Science
thevenkatapplelens.hashnode.dev·Oct 18, 2024🌟 SwiftUI Spacer: Flexible Space Made Simple! 🌟A Spacer in SwiftUI is a flexible layout tool that creates space between views, adjusting dynamically to fill available space. It’s commonly used to create adaptive designs! 🛠️ How It Works:The Spacer grows to take up any remaining space within a ...SwiftUIiOS
thevenkatapplelens.hashnode.dev·Oct 17, 2024Understanding Padding in SwiftUI: A Simple GuideIt's adding extra space around the object. It can adjust dynamically based on your text content. Basic Example with Padding: Text("Hello World..!") .padding() // Adds default padding on all sides .background(Color.cyan) This will add defaul...32 readsSwiftUIiOS
Sunny Guptaicodestartups.com·Oct 13, 2024Navigating the Startup Journey - IStarting a successful startup is no small feat. With approximately 90% of startups failing, and 10% failing within the first year alone, it's crucial to understand what sets successful ventures apart. One key factor that often distinguishes thriving ...87 readsStartups
thevenkatapplelens.hashnode.dev·Oct 11, 2024LazyHGrid and LazyVGrid: Everything You Need to KnowIntroduction: LazyHGrid and LazyVGrid are components in SwiftUI that allow you to create grid layouts efficiently. They are "lazy" because they only render the views that are currently visible on the screen, which helps improve performance, especiall...SwiftUIiOS