Skip to content

Instantly share code, notes, and snippets.

View BoQsc's full-sized avatar
💭
I may be slow to respond.

Feldwor BoQsc

💭
I may be slow to respond.
  • Public Domain
  • Baltic States
  • 14:53 (UTC +02:00)
View GitHub Profile
@nuc1eon
nuc1eon / liveGobo
Last active June 19, 2025 22:25
GoboLinux Qemu Setup
#!/bin/bash
## Runs the GoboLinux liveCD in a performant Qemu environment
#
# Make sure to check out https://wiki.gobolinux.org/Overview/Installing-Gobolinux/GoboLinux-017-Known-Issues-and-Fixes/
# Note: During installation choose an MSDOS partition table! GPT will fail to boot!
#
# Prepare disk image with 20GB -> `qemu-img create -f qcow2 GOBO.qcow2 20G`
#
# Usage:
# ./liveGobo <LiveCD_ISO> <DiskImage>
@nuc1eon
nuc1eon / GettingStarted.md
Last active June 11, 2025 02:17
GoboLinux Community Guide

GoboLinux 017, in its current iteration, is mainly a source-based distribution. That means you will compile most of your packages with the help of so called "Recipes".

The following sections will help you getting started.

Installing GoboLinux 017

Installing GoboLinux on a bare metal system should be as simple as fetching the latest ISO, burning/flashing it onto your favorite installation medium (e.g. using balenaEtcher), startx and following the installation wizard.

However most people may want to install GoboLinux in a virtual machine setup first. If you are one of those people, follow these instructions.

@nurmdrafi
nurmdrafi / JavaScript Hacks.md
Last active November 2, 2025 07:01
JavaScript Hacks by Rafé
@BoQsc
BoQsc / Discord_add_download_links_to_emoji_in_the_chat.md
Last active September 5, 2022 17:21
🔮 A Tampermonkey script to Add Download Links to emojis in the chat (0.2 Refactored)
@leiless
leiless / cpuid_vendor_id.c
Last active October 27, 2024 05:31
Get CPU vendor ID string (works in Linux, Windows, macOS)
#include <stdio.h>
#ifdef _WIN32
#include <intrin.h> // __cpuid()
#endif
typedef unsigned int cpuid_t[4];
#define EAX 0
#define EBX 1