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

Block or report e6vk4

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
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>`;