Ke . O
886 subscribers
282 photos
30 videos
5 files
185 links
sharing stuff i build โ€” from small dev tools to random experiments.
mostly coding, sometimes design, a bit of tech curiosity sprinkled in.

figuring things out one project at a time.

portfolio: https://www.kenawak.works/
Download Telegram
Forwarded from Kiru
๐Ÿ”’ Security shouldn't slow your Vite dev flow but it does, right? Endless CSP tweaks, vuln hunts, audit fails killing indie MVPs?
Introducing Nalth V2.2: Zero-config security framework forked from Vite. Enterprise armor for JS/TS stacks, auto-HTTPS, real-time dashboard. React/Vue/Svelte? Seamless.
One command: npx create-nalth my-app --template nalth-react
โ€” CSP + headers auto-gen
โ€”Vuln scans & secure installs
โ€” SOC2/GDPR ready, no perf hit
Built for indie hackers shipping safe, devs ditching configs, startups scaling audits. join the fight! Link: https://www.nalthJS.com
Try: https://github.com/nalikiru-dev/nalth.js
๐Ÿ“ฆ NPM: https://www.npmjs.com/package/nalth https://www.npmjs.com/package/create-nalth
๐Ÿ’ฌ Feedback? Reply or DM. What's your biggest sec pain?
#WebDevelopment #JavaScript #Security #ViteJS #IndieHackers
Forwarded from Amuif codes
Forwarded from Ruhama's journal
Flow is an automated web scraping tool designed to collect and structure data seamlessly using a drag ad drop mechanism, so you can focus on insights, not repetitive scraping scripts.
Here to save your time and effort to let your attention be invested on what matters
Try out flow at https://flow-chi-drab.vercel.app/

designs and brand identity by https://t.me/ollys_beaine
๐Ÿ”ฅ4๐Ÿ‘1
Forwarded from LUTO
๐Ÿš€ Introducing LuPostr The Ultimate AI Telegram Scheduling Bot

@LuPostr_bot

Hey everyone! ๐Ÿ‘‹
Iโ€™m beyond excited to introduce LuPostr, an advanced AI powered Telegram automation bot built for channel owners, creators, and marketers who want to save time, stay consistent, and scale their posting game effortlessly.

โš™๏ธ WHAT MAKES LUPOSTR SPECIAL

๐ŸŽฏ Advanced Scheduling System

Exact Date & Time: Schedule posts down to the minute
Quick Actions: Today, Tomorrow, Next Week one tap setup
Recurring Posts: Hourly, daily, weekly, or monthly auto repeats
Custom Times: Any schedule you want
Bulk Scheduling: Queue unlimited posts at once
Priority Levels: Mark posts as High, Normal, or Low priority
Time Zone Support: Works globally for any region


๐Ÿค– AI Smart Posting Engine

Inactivity Detection: Posts automatically when you donโ€™t
Custom Intervals: Choose 4h, 8h, 12h, 24h, or custom
Smart Content Recognition: Detects post type (text, image, video)
AI Optimization: Suggests best posting time based on engagement
Niche Intelligence: Adapts to 15+ content niches


๐Ÿ“Š Analytics & AI Dashboard

Performance Insights: Track your post reach and timing success
Success Rate: Measure AI efficiency
Visual Graphs: Interactive analytics right in Telegram
Auto Reports: Weekly summaries sent to your inbox

๐Ÿง  Zero Errors, Infinite Stability

Auto-Retry Logic: Never miss a scheduled post
Error Handling: Graceful fallbacks on network failure
Session Management: Keeps your bot online 24/7
Auto Save: Every 5 seconds
Validation: Every input, every time

๐Ÿ’ก Vision

LuPostr isnโ€™t just a bot itโ€™s a digital teammate.
It runs your Telegram channel like a pro manager:
โœ… Handles scheduling
โœ… Posts when youโ€™re offline
โœ… Learns from your habits
โœ… Keeps your audience engaged

Think of it as your AI powered posting assistant smart, loyal, and unstoppable.

๐Ÿงฐ Built With โค๏ธ

Node.js + Telegraf.js for bot logic
MongoDB for persistent data
Cron Jobs for time based scheduling
AI modules for smart automation
Optimized for Termux, VPS, and Cloud environments


๐ŸŒŽ Open For All

LuPostr is built so any channel owner can use it , no coding needed, no limits.
Just connect your bot token, configure your schedule, and let LuPostr handle the rest.


๐Ÿง‘โ€๐Ÿ’ป Credits

Developed by: @LU_T01
Version: v1.0 โ€” Professional AI Scheduler

@LuPostr_bot

Feedbacks are appreciated as always

More updates coming soon ๐Ÿš€

#Whiplash2025
#Grind
#TELEGRAMBOT


@DEVLUTO
โค1
Forwarded from The Software Guy
Introducing the Hasab AI Flutter SDK! ๐ŸŽ‰

Iโ€™m excited to announce that the Hasab AI Flutter SDK is now officially live on pub.dev!

This SDK makes it effortless for Flutter developers to integrate Hasab AIโ€™s language understanding, speech transcription, and other AI-powered capabilities directly into their mobile apps, all with clean, developer-friendly APIs.

Whether youโ€™re building AI chat features, transcription tools, or custom AI workflows, this SDK bridges Flutter apps with Hasab AIโ€™s platform seamlessly.

๐Ÿ‘‰ Check it out here: https://pub.dev/packages/hasab_ai_flutter

โญ๏ธ Donโ€™t forget to star it, share feedback
๐Ÿ‘1
This media is not supported in your browser
VIEW IN TELEGRAM
Here comes another bubble โ€” v2.0 ๐Ÿ˜‚
๐Ÿ˜ญ1
Weโ€™ve gone too far to even think about turning back.

@KeO_Coder
๐Ÿ‘6
Forwarded from Frectonz
Devtopia is back with another interview. This one is with kinfish (@kinfishfarms). It ended up being our longest episode to date.

We talked about a lot of cool stuff, hope you enjoy the episode, also thank you kinfish for being on the episode.

[Devtopia - E04 - Kinfish]
๐Ÿ”ฅ2
In SvelteKit, redirect() inside a try/catch throws a special error that MUST bubble up to the framework. If you catch it without re-throwing โ†’ the redirect dies. Server redirects() only break if you catch them. Easiest ways to dodge this:
-use Client-side redirect
- Or justโ€ฆ donโ€™t use try/catch ๐Ÿ˜
If you insist & still want try/catch:
try {
throw redirect(302, '/login');
} catch (err) {
console.log("caught it lol");
// redirect dies here โŒ
}

โ†’
try {
throw redirect(302, '/login');
} catch (err) {
if (err.status) throw err; // redirect survives โœ”๏ธ
}


@KeO_Coder
๐Ÿ‘2