Activity
Mon
Wed
Fri
Sun
Oct
Nov
Dec
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
What is this?
Less
More

Memberships

AI Dev Community

4 members • Free

AI Automation (A-Z)

99.7k members • Free

Webentwicklung lernen

11 members • Free

Lionsacademy

106 members • Free

App Founders School (FREE)

1.4k members • Free

Software Developer Academy

26.8k members • Free

AI Developer Accelerator

9.9k members • Free

42 contributions to Learn Web Dev
Pain points in learning JavaScript
Quick question for everyone here 👋 What’s been the hardest thing for you so far in learning JavaScript? For some it’s the basics (loops, functions), for others it’s async/await or APIs… or maybe just the millions of frameworks everyone keeps inventing 😅 Curious to hear your answers – might even turn into the next little free course in the Classroom.
each of them has one of these three purposes 1. get object or array 2. get their index 3. check if they are exsists
@Stephan Haewß oh ok sounds impressive many thanks that you create videos, even after you paused this community
Pausing this community for now
Hi everyone, I’ve decided to pause this community for the time being. My original idea was to create a place where we could learn web development together – supported by my courses and real discussions. Unfortunately, I don’t feel this goal is really happening here right now. Since hosting the community isn’t free, I don’t want to spend more time and money on it at the moment. I may reactivate this community in the future, but I don’t know when exactly. Before I pause, I’ll leave this post open for a short while. If you’d like to share what you expected from this community, or how it could have been set up differently (topics, focus, approach), please feel free to add your thoughts here. Maybe we can use this feedback to reset or pivot the community in the future. Thanks to all who joined and participated. Take care, Stephan
firstly many thanks for this chance... it was a great opportunity to know webdevelopment more deeply. But i can understand your decision as well, hence thanks for your time :0
Codex openai extension for VS Code/Cursor - Chat History tool
https://github.com/Gargantubrain/JsonlToMD I started keeping my chat history files since it's easier and faster to search through them vs opening old chats directly from Cursor/VSC. After trying the Codex extension, then looking for how to export Codex's tasks/chat history, I found that the Codex extension has no export. The Codex extension creates rollout.jsonl files and that's it. Today, I even had Cursor open and the Codex extension suddenly refused to show me any of the tasks history any more, even though the .jsonl files were still where they always were. I made JsonlToMD to process the rollout.jsonl into markdown so I can keep my own chat history in markdown format. I added useful command line switches for flexiblity. It's written in C# and it uses NO dependencies so it is super lightweight and completely cross-platform Mac/Windows/Linux. Share and enjoy!
Codex openai extension for VS Code/Cursor - Chat History tool
sounds cool, for me windsurf was enough... but if i change my mind... so i know a new solution
This AlpineJS Cheat Sheet is awesome
i saw the alpine course on classroom for AlpineJS... i wish i know these earlier https://webdev1x1.de/alpine-js-cheat-sheet/
the usage of Qwik with Astro should be used limited
so i've tested qwik with astro for todo list, how it works seamesously, in the end i think there are two difference approach how it works in nutshell: 1. this combination makes sense, if loading time is very prioritized 2. it's a good solution for SEO centralized interactive applications 3. routing on qwik approach (with prefetch), needs to be developed by your own, which is included in "qwik city" here an example of routing link.tsx ``` import { component$, PropFunction, useSignal } from '@builder.io/qwik'; type PrefetchMode = 'none' | 'hover' | 'always'; export const SmartLink = component$((props: { href: string; class?: string; prefetch?: PrefetchMode; // 'hover' is typical onClick$?: PropFunction<(e: MouseEvent) => void>; }) => { const prefetched = useSignal(false); const prefetch = () => { if (prefetched.value || props.prefetch === 'none') return; prefetched.value = true; const link = document.createElement('link'); link.rel = 'prefetch'; link.href = props.href; link.as = 'document'; document.head.appendChild(link); }; return ( <a href={props.href} class={props.class} onMouseEnter$={() => props.prefetch === 'hover' && prefetch()} onFocus$={() => props.prefetch === 'hover' && prefetch()} onQVisible$={() => props.prefetch === 'always' && prefetch()} onClick$={props.onClick$} > <slot /> </a> ); }); ``` index.astro ``` --- import { SmartLink } from '../components/link'; --- <nav> <SmartLink href="/about" prefetch="hover" client:load>About</SmartLink> <SmartLink href="/pricing" prefetch="hover" client:load>Pricing</SmartLink> </nav> ```
@Stephan Haewß the reason is simple, i'm looking for a scalable solution, to manage future teams better. Qwik has qwik city for routing, which is not possible to use with different frameworks... according my observation, just astro has the potential to be usable in different usecases, regardless which background your team has.... by the way... astro can also handle different api webserver like fastify or elysia as well... i think the best idea is to concentrate for an allround scaffold and put anything else as island
@Stephan Haewß i totally agree with you, lets keep everything as simple as possible.... therefore AHA stack (alpine + htmx + astro) IS BEST :)
1-10 of 42
Shuhib Siddiqi Speed.Codes
4
90points to level up
@shuhib-siddiqi-4873
Full Stack Developer for AI and Business Automation

Active 1d ago
Joined Aug 1, 2025