Skip to content

Instantly share code, notes, and snippets.

View darkerbit's full-sized avatar

Haru Sumire darkerbit

View GitHub Profile
@jetfir3
jetfir3 / download_workstation.sh
Last active December 26, 2025 03:12
Download VMware Workstation for Linux without a Broadcom Account
#!/usr/bin/env bash
# Download VMware Workstation for Linux
# Handles legacy versions (12.x - 17.6.3) from Cloudflare CDN cache and
# newer versions (17.6.4+) from Archive.org.
#
# Use '-k' to keep the CDN download file compressed, exiting after download. (Ignored for v17.6.4+)
# Use '-v <Version>' to specify desired version directly.
BASE_URL="https://softwareupdate-prod.broadcom.com/cds/vmw-desktop/"
@thatcosmonaut
thatcosmonaut / ImGuiRenderer.cs
Created September 17, 2021 20:43
Anathema Moonworks/ImGui Renderer
// Heavily based on prime31's Nez ImGuiRenderer
// https://github.com/prime31/Nez/blob/master/Nez.ImGui/Core/ImGuiRenderer.cs
#if DEBUG
using System.Runtime.InteropServices;
using Encompass;
using ImGuiNET;
using MoonWorks.Graphics;
using Anathema.Data;
using System.Collections.Generic;