Skip to content

Instantly share code, notes, and snippets.

View vuvuvu's full-sized avatar

vUvu vuvuvu

View GitHub Profile
@vuvuvu
vuvuvu / install-win10-proxmox.md
Created December 7, 2024 01:48 — forked from fguisso/install-win10-proxmox.md
Install Win10 in proxmox
#!/bin/bash

# Specify the Windows 10 ISO to download
WIN10_ISO_URL="https://software-download.microsoft.com/download/pr/19043.1165.210529-1541.co_release_CLIENT_CONSUMER_x64FRE_en-us.iso"

# Download the Windows 10 ISO
wget -O /var/lib/vz/template/iso/Windows10.iso $WIN10_ISO_URL

# Create a new VM in Proxmox
@vuvuvu
vuvuvu / berry.txt
Created September 17, 2024 11:03
berry clips
https://clips-media-assets2.twitch.tv/RgCdhAoUIzUe9ldQ6euVbw/AT-cm%7CRgCdhAoUIzUe9ldQ6euVbw.mp4,
https://clips-media-assets2.twitch.tv/E7_7sXlls8KLtzoghS9tng/AT-cm%7CE7_7sXlls8KLtzoghS9tng.mp4,
https://clips-media-assets2.twitch.tv/wy6HjADKOpFSpm8o-7j-Uw/AT-cm%7Cwy6HjADKOpFSpm8o-7j-Uw.mp4,
https://clips-media-assets2.twitch.tv/kZPHyQJQizBQ8XNQywVLKw/AT-cm%7CkZPHyQJQizBQ8XNQywVLKw.mp4,
https://clips-media-assets2.twitch.tv/W1JdjSjDiVi8d_i6KGtzrg/AT-cm%7CW1JdjSjDiVi8d_i6KGtzrg.mp4,
https://clips-media-assets2.twitch.tv/WR7uTgar4ae9-4z6Bs_xXQ/AT-cm%7CWR7uTgar4ae9-4z6Bs_xXQ.mp4,
https://clips-media-assets2.twitch.tv/viR-KIGOEC2eioVAD33Irw/AT-cm%7CviR-KIGOEC2eioVAD33Irw.mp4,
https://clips-media-assets2.twitch.tv/ugFhC8ccQp6GHbvFDhGpwg/AT-cm%7CugFhC8ccQp6GHbvFDhGpwg.mp4,
https://clips-media-assets2.twitch.tv/wscoJnKdUlpuYwiJzXBk1g/AT-cm%7CwscoJnKdUlpuYwiJzXBk1g.mp4,
https://clips-media-assets2.twitch.tv/_H3Ws_q3z7RWMWvFS1cpdA/AT-cm%7C_H3Ws_q3z7RWMWvFS1cpdA.mp4,
@vuvuvu
vuvuvu / animated-navigation-list.markdown
Created September 17, 2024 02:45
Animated Navigation List
@vuvuvu
vuvuvu / css-only-navigation-with-rotating-text-hover-effect.markdown
Created September 17, 2024 02:34
CSS only navigation with rotating text hover effect
@vuvuvu
vuvuvu / index.html
Created September 17, 2024 02:30
Racing Name Picker II 🚴‍♂️🚴‍♀️
<main>
<h1>Random Picker Racing</h1>
<ol id="lanes"></ol>
<p>
<span id="commentary" aria-live="polite"></span>
</p>
<div class="button-panel">
<button type="button" id="go" hidden>GO</button>
<button type="button" id="reset" hidden>Again, again!</button>
</div>
@vuvuvu
vuvuvu / twitch-bot-commands.md
Last active July 10, 2024 09:11
Twitch Bot common commands

Twitch Bot Custom Commands

Commands cheatsheet

Nightbot

Variables Doc

Important commands

  • 8 Ball
  • Coin Flip (random)
  • Random with emote
  • Pick from comma-delimited query

If .DS_Store was never added to your git repository, simply add it to your .gitignore file.

If you don't have one, create a file called

.gitignore

In your the root directory of your app and simply write

@vuvuvu
vuvuvu / stuns
Created August 24, 2023 02:32 — forked from yetithefoot/stuns
STUN+TURN servers list
{url:'stun:stun01.sipphone.com'},
{url:'stun:stun.ekiga.net'},
{url:'stun:stun.fwdnet.net'},
{url:'stun:stun.ideasip.com'},
{url:'stun:stun.iptel.org'},
{url:'stun:stun.rixtelecom.se'},
{url:'stun:stun.schlund.de'},
{url:'stun:stun.l.google.com:19302'},
{url:'stun:stun1.l.google.com:19302'},
{url:'stun:stun2.l.google.com:19302'},
@vuvuvu
vuvuvu / index.html
Created August 2, 2023 09:17
Interactive particles text create with three.js
<script type="x-shader/x-vertex" id="vertexshader">
attribute float size;
attribute vec3 customColor;
varying vec3 vColor;
void main() {
vColor = customColor;
vec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );