Skip to content

Instantly share code, notes, and snippets.

View uhidontkno's full-sized avatar

rare1k uhidontkno

View GitHub Profile
@uhidontkno
uhidontkno / kasm_is_full_of_bullshit.md
Last active June 9, 2024 11:44
Kasm is full of BULLSHIT!

(Originally an issue, but got deleted bc Kasm employees are pussies)

  • Kasm, you can kiss my ass, but I'm decompiling Kasm Workspaces because they have the absolute audacity to call themselves open source when Kasm Workspaces is entirely CLOSED source, apart from the containers, which they probably have to be open source to not violate GPL. See https://github.com/kasmweb-decompilation

Kasm is full of bullshit

You heard me, Kasm is full of bullshit. I am absolutely fed up with the direction Kasm is going towards. This is not good for people that FOSS is (usually) aimed for... Hobbyist developers.


  1. Anti open source and false claims:
from PIL import Image
def img2hex(gif_path, output_path):
try:
img = Image.open(gif_path)
except FileNotFoundError:
print(f"Error: File not found - {gif_path}")
return
except Exception as e:
print(f"Error: {e}")
@uhidontkno
uhidontkno / setup_dockertcp.sh
Created February 10, 2024 01:57
Setup Docker via TCP
#!/bin/bash
VERBOSE=false
while [ "$#" -gt 0 ]; do
case "$1" in
-v|--verbose)
VERBOSE=true
shift
;;
@uhidontkno
uhidontkno / index.html
Created October 22, 2023 13:07
Windows Loading Animation
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Loading Animation</title>
</head>
<body>
<div class=".container">
<div class="support">
<div class="dot"></div>
@uhidontkno
uhidontkno / css-only-interactive-cube.markdown
Created August 30, 2023 16:57
CSS Only Interactive Cube
echo Downloading Chromium...
$client = New-Object System.Net.WebClient
$client.DownloadFile("https://download-chromium.appspot.com/dl/Win_x64?type=snapshots","./chrome.zip")
echo Extracting Chromium...
Expand-Archive -Path "./chrome.zip" -DestinationPath "./chrome-ext"
echo Deleting temporary files...
Remove-Item "chrome.zip"
echo Running Chromium...
start ./chrome-ext/chrome-win/chrome.exe
exit
@uhidontkno
uhidontkno / index.html
Created November 20, 2022 05:54
Smart Bootstrap Header responsive design To Impress Visitors.
<header>
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-lg-12 col-xl-3">
<div class="logo">
<a href="/" title="logo"> w3learn Point </a>
</div>
<div class="mob-menu">
<span>
<i class="fa fa-bars"></i>