- Daily Sandbox
- Posts
- Daily Digest: TypeScript vs Vanilla JS - What's better?
Daily Digest: TypeScript vs Vanilla JS - What's better?
Daily Issue #5
🎆 NEWS, INNOVATIONS, TRENDS
One of the most asked questions during technical interviews is about async/await patterns. Here is a super quick refresher on what it is and how to use it.
Understanding Middleware in NestJS: A Comprehensive Guide
Why TypeScript is the best programming language?
How to create a CLI tool and publish it to npm (in one day)
How to create a Professional Vue.js Website
🧰 CODING TOOLBOX
DOM to Semantic-Markdown for use in LLMs
Developer toolkit that makes it simple to build with the Workers AI platform
A dependency-free utility for deep cloning JavaScript objects
Nue, a content-first Web framework, is a closer-to-metal framework embracing minimalism and web standards
Quill is a modern WYSIWYG editor built for compatibility and extensibility
#️⃣ DO YOU AI PROMPT?
Act as position Interviewer
I want you to act as an interviewer. I will be the candidate and you will ask me the interview questions for the position
position. I want you to only reply as the interviewer. Do not write all the conservation at once. I want you to only do the interview with me. Ask me the questions and wait for my answers. Do not write explanations. Ask me the questions one by one like an interviewer does and wait for my answers. My first sentence is "Hi"
💻 CODE SNIPPETS - BASH
Problem: How to find a previously used terminal command?
Solution: Here are a few ways and helper tools to make your life a little bit easier
Up/Down arrow keys to step through the previous commands one by one
history | grep <search-term>
to get a list of all commands that match the <search-term>.To make the last one even easier, add the line below to your ~/.zshrc file, then you just type
hiss <search-term>
hiss () { history | grep "$@"; }
Reply