Command Palette
Search for a command to run...
Comments
Join the discussionNo comments yet. Be the first to comment.
More from this blog
React Context
import { createContext, useState, useEffect } from 'react'; const NotificationContext = createContext({ notification: null, // { title, message, status } showNotification: function (notificationData) {}, hideNotification: function () {}, }); ...
Feb 16, 20221 min read
Redis local url
"redis://127.0.0.1:6379"
Jan 3, 20221 min read
Scroll to bottom
document .getElementById("scrollTo") .scrollIntoView({ behavior: "smooth", block: "start" });
Dec 10, 20211 min read
Sound from browser
const speak = (msg) => { const sp = new SpeechSynthesisUtterance(msg); [sp.voice] = speechSynthesis.getVoices(); speechSynthesis.speak(sp); }; speak("Hellow world");
Oct 3, 20211 min read