Excited for #JCON EUROPE 2026? See Leif Åstrand at #JCON2026 in Cologne talking about 'Why #FullStack Is the Future of Web Application Development'

The #SPA (single-page application) architecture is great for creating amazing user experiences…

🎟️ 2026.europe.jcon.one/tickets
Free for #JUG members

NextAuth + Django JWT без второй авторизации и ручного хаоса токенов

Во многих fullstack-проектах на Next.js и Django авторизация разваливается в одном и том же месте. На фронте удобно использовать NextAuth, потому что он закрывает формы входа, OAuth, серверную сессию и клиентские хуки. На бэкенде хочется иметь обычный JWT-контур на Django REST Framework, чтобы защищать API, работать с access и refresh токенами и не привязывать бизнес-логику к фронту. В итоге часто получается неприятная схема: пользователь логинится через NextAuth, потом отдельно логинится в Django, потом где-то вручную перекладываются токены, а через пару недель вся эта связка начинает ломаться на refresh, logout и OAuth. Что делаем. Пользователь проходит один вход на фронте, а дальше фронт уже работает с токенами Django как с единственным источником доступа к API. Без второй формы входа, без ручного хранения access token в localStorage, без отдельного костыля под Google OAuth. Разберем рабочую схему, в которой NextAuth отвечает за пользовательскую сессию на фронте, а Django остается владельцем API-авторизации и выдает JWT. На credentials-входе NextAuth сразу получает access и refresh от Django. На Google OAuth фронт сначала пускает пользователя через провайдера, потом синхронизирует его с Django и тоже получает пару токенов. После этого все запросы идут через один axios-клиент, который сам подставляет access token, сам обновляет его через refresh и сам завершает сессию, если refresh уже недействителен.

https://habr.com/ru/articles/1019856/

#Nextjs #NextAuth #Django #Django_REST_Framework #JWT #OAuth #Google_OAuth #TypeScript #Fullstack #Authentication

NextAuth + Django JWT без второй авторизации и ручного хаоса токенов

Во многих fullstack-проектах на Next.js и Django авторизация разваливается в одном и том же месте. На фронте удобно использовать NextAuth, потому что он закрывает формы входа, OAuth, серверную сессию...

Хабр

I've started building out the #Zine Shelf on my website. I'm using the site to help me learn #fullstack - so apologies if it looks ugly at times. I've #drawn some of my own Zines and I've got a good amount from @SrRochardBunson that I'm sharing. If you want me to share yours, send me a DM with your zine and a link so I can link to your socials!

The rest of the site is my art #portfolio / #blog and I'll sell some art or jewelry/THINGS on it sometimes that I make.

https://www.jellywyrm.vip/zine-shelf

Zine Shelf - Jellywyrm

A personal blog and repository for knowledge, entertainment, and community-building.

Jellywyrm

Avindra Fernando, Chris Perrin, Kevin Grossnicklaus & David McElligott present on Artificial Intelligence at Nebraska.Code() in July.

https://nebraskacode.amegala.com/

#Accenture #ArchitectNow #AI #Claude #TechTrends #DeveloperStack #FullStack #Claude #AgenticAI #DeveloperPlatforms #Nebraska #TechnologyConference

🌱 Wij zijn op zoek naar Full Stack Developers die met ons mee willen bouwen aan de Digitale Voordeur, een publieke startup.

💎 We gebruiken technologie niet als doel op zich, maar om menselijk contact te versterken. Om ervoor te zorgen dat mensen niet verdwalen in systemen, maar juist sneller de juiste mensen om zich heen vinden — hulp, ondersteuning, of gewoon iemand die meedenkt.

🤲 Klinkt misschien logisch. Maar als je dit écht in de praktijk brengt, is het een enorme innovatie. Ik heb geleerd is dat je innovatie niet kan uitbesteden. Daarom bouwen we dit zelf — samen met tech, inwoners en professionals, midden in de praktijk.

We kunnen alle hulp gebruiken.

Lees de vacature hier:
https://ahti.nl/2026/02/20/vacature-full-stack-developer/

En reply of stuur een DM voor vragen

#vacature #amsterdam #gezondheid #fullstack

Vacature: Full Stack Developer  – ahti

Achieving Better Health

For the past 9 years, I ran a newsletter called FullStack Bulletin.

Week after week, I shared hand-picked articles, tools, and resources for full stack developers. Over time, that became 450+ issues and 3,000+ curated links.

Now it is time to say goodbye.

I wrote about why, what it meant to me, and what still lives on beyond it:
https://loige.co/farewell-fullstack-bulletin/

If you ever read it, shared it, or supported it, thank you ❤️

#Newsletter #FullStack #WebDevelopment #OpenSource

Farewell FullStack Bulletin

After 458 issues, 3,073+ curated links, and nearly a decade of weekly curation, FullStack Bulletin is closing. Here's the story of the journey, why it's ending, and what lives on.

lucas (@lucas_flatwhite)

Claude가 6시간 동안 혼자 풀스택 앱을 만드는 사례를 소개한다. 핵심은 Claude 하나가 아니라 서로를 감시하는 Claude 3개를 조합한 구조로, 더 복잡한 작업에서도 비교적 빠르게 결과물을 내는 접근을 보여준다. 웹사이트 제작은 물론 레트로 게임 메이커 같은 프로젝트에도 적용 가능성이 언급된다.

https://x.com/lucas_flatwhite/status/2036753999475409075

#claude #anthropic #aiagents #fullstack #appdevelopment

lucas (@lucas_flatwhite) on X

"Claude가 혼자 6시간 동안 풀스택 앱을 만들었어요" = 비밀은 Claude 하나가 아니라, Claude 셋이 서로를 감시하는 구조에 있었습니닷! AI에게 웹사이트 하나 만들어줘요~~~~라고 하면, 꽤 그럴듯한 결과물이 나오죠. 하지만 레트로 게임 메이커를 만들어줘요!! 라고 하면? 20분 만에 뭔가 나오긴

X (formerly Twitter)

https://www.rhelmer.org/blog/stellar-whiskers-multiplayer-login-system/ is a new-ish blog post I wrote on secure web authentication. I'm using it for multiplayer web-based games. Part 2 of a 3 part series (part 3 next week is about using HPKE for storing PII like real name and email address, let me know if you're interested in reviewing it early!).

Title is "How HttpOnly cookies with CHIPS prevent XSS attacks and cross-site tracking while maintaining seamless authentication across subdomains." ... I believe it also effectively mitigates CSRF but comments welcome of course!

#WebSecurity #InfoSec #WebDev #FullStack #GameDev #IndieDev #BrowserSecurity

FullSpec для FullStack: фреймворк, который вы всё равно себе напишете

Я делал микросервисный fullstack в финтехе с Claude Code и столкнулся с тем, с чем сталкиваются все: AI пишет код быстро, но не держит систему в голове и ведёт себя как гиперактивный джун. Каждую сессию — новые архитектурные решения, конфликты между сервисами, документация, отстающая от кода. Поэтому я решил что я не спешу со своим проектом и написал FullSpec — open-source фреймворк (MIT), который организует разработку с Claude Code через цепочку формальных спецификаций. Вызываешь /chain, отвечаешь на вопросы — система ведёт от идеи до production: требования → проектирование → тесты → код → review → release. Под капотом: 71 скилл, 23 параллельных AI-агента, 80+ скриптов валидации, CONFLICT-детекция (код противоречит спеке → каскадное обновление), живая документация из спек. GitHub: https://github.com/NSEvteev/FullSpec

https://habr.com/ru/articles/1013272/

#FullSpec #fullstack #фреймворк #ai #claude #claude_code #gpt

GitHub - NSEvteev/FullSpec: A spec-driven framework that turns ideas into production code through formal analysis chains, automated testing, and structured delivery.

A spec-driven framework that turns ideas into production code through formal analysis chains, automated testing, and structured delivery. - NSEvteev/FullSpec

GitHub
Me ha llamado la jefa de proyecto para decirme que a los usuarios les ha gustado mi aplicacioncita web (un VueJS con 1 solo html)

Si estuviera en Linkedin iba corriendo a poner un post sobre que ya soy #FullStack