Skip to content

Instantly share code, notes, and snippets.

View Vyasdev217's full-sized avatar
💭
Thinking...

Vyasdev Vyasdev217

💭
Thinking...
View GitHub Profile
@Vyasdev217
Vyasdev217 / mobile-wireless-node-mesh-network.html
Created July 17, 2025 08:48
Representation of mobile nodes' wireless mesh network. Used as background animation of vyasdev.net
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Mobile node mesh network</title>
<style>
html,body{margin:0;padding:0;overflow:hidden;height:100%;font-family:sans-serif}
canvas{position:fixed;top:0;left:0;left:0;right:0;/*z-index:-1*/}
</style>
@Vyasdev217
Vyasdev217 / webhook.py
Last active May 11, 2022 18:26 — forked from Bilka2/webhook.py
Simple discord webhook with python[Forked] : Added simple GUI
import tkinter
import requests #dependency
from tkinter import Scrollbar, Tk,ttk,StringVar
def webhook_send():
global webhookurl
global username
global entry_content
url =webhookurl.get()
#for all params, see https://discordapp.com/developers/docs/resources/webhook#execute-webhook
@Vyasdev217
Vyasdev217 / SimpleVideoPlayer.html
Last active February 18, 2022 05:25
Simple HTML video player
<!DOCTYPE html>
<html>
<head>
<title>SIMPLE MEDIA PLAYER</title>
<style type="text/css">
/* The Modal (background) */
.modal {
display: none;