Skip to content
View e6vk4's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report e6vk4

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Get execution time Get execution time
    1
    const execTime = {
    2
        data: {},
    3
        start(id: string) {
    4
            if (!id) return
    5
            if (this.data[id]) delete this.data[id]
  2. emoji-to-SVG Base64 generator emoji-to-SVG Base64 generator
    1
    const emoji = prompt('Enter emoji:');
    2
    const svg = `<?xml version="1.0" encoding="UTF-8"?>
    3
    <svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64">
    4
      <text x="50%" y="50%" font-size="44" dominant-baseline="middle" text-anchor="middle">${emoji}</text>
    5
    </svg>`;