• 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

🧰 CODING TOOLBOX

#️⃣ 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

or to participate.