Explore >> Select a destination


You are here

www.mattlayman.com
| | keepsimple.dev
8.9 parsecs away

Travel
| | A comprehensive guide to customizing Django Admin with practical tips and techniques. Learn to enhance functionality, improve UX, and tailor it to your project.
| | keepsimple.dev
9.9 parsecs away

Travel
| | Learn how to implement real-time notifications in Django using Server Sent Events (SSE). Send updates to users without page refreshes or polling.
| | keepsimple.dev
9.8 parsecs away

Travel
| | Learn how to build a board list page for your Trello clone! This tutorial covers creating boards, using Alpine.js for interactivity.
| | www.hillelwayne.com
67.3 parsecs away

Travel
| What does this print? x = 1 x --> 0 Think it through, then try it in a browser console! Answer and explanation in the dropdown. Show answer It prints 1. wait wtf At the beginning of a line (and only at the beginning of a line), --> starts a comment. The JavaScript is parsed as x=1; x; // 0 The browser then displays the value of the last expression, which of course is 1.