Skip to content

Instantly share code, notes, and snippets.

View rscircus's full-sized avatar
💭
👋

Roland Siegbert rscircus

💭
👋
View GitHub Profile
{
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
"blocks": [
{
"alignment": "right",
"segments": [
{
"foreground": "#fff",
"style": "plain",
"type": "text"
@rscircus
rscircus / History|-16983d53|LPgo.json
Last active February 25, 2023 11:51
Visual Studio Code Settings Sync Gist
[
{
"identifier": {
"id": "shan.code-settings-sync",
"uuid": "e337c67b-55c2-4fef-8949-eb260e7fb7fd"
},
"version": "3.4.3",
"location": {
"$mid": 1,
"path": "/home/roland/.var/app/com.vscodium.codium/data/codium/extensions/shan.code-settings-sync-3.4.3-universal",
@rscircus
rscircus / wsl_systemd_interop.md
Created January 23, 2023 17:06
Make WSL behave reasonably by enabling systemd and disabling interop

WSL interop creates problems without end

sudo vim /etc/wsl.conf
[boot]
systemd=true
# Steps to get WSL going.
## Windows Settings
In `Apps &`...-> `Windows features`
- Enable Hyper-V
- Enable Windows Hypervisor thingy
- Enable WSL
@rscircus
rscircus / linux_notes.md
Created October 31, 2022 08:33
Linux Notes

visudo timeout

sudo visudo

edit:

timeout long enough and fish shell problems

@rscircus
rscircus / .stignore
Created October 28, 2022 06:44
Reasonable Syncthing Ignore Patterns
// ╔═══════════════════════════════════╗
// ║ CHECK IT AGAIN BEFORE YOU USE IT! ║
// ╚═══════════════════════════════════╝
// ╔══════════════════════════════════╗
// ║ Operating system generated files ║
// ╚══════════════════════════════════╝
// ┌─────────────┐
// │ Apple macOS │
@rscircus
rscircus / shell-setup.ps1
Created August 3, 2022 14:18 — forked from mikepruett3/shell-setup.ps1
Packages to install via scoop, winget, choco, and other tools...
<#
.SYNOPSIS
Script to Initialize my custom powershell setup.
.DESCRIPTION
Script uses scoop
.NOTES
**NOTE** Will configure the Execution Policy for the "CurrentUser" to Unrestricted.
Author: Mike Pruett
Date: October 18th, 2018
@rscircus
rscircus / bootstrapwindows10.ps1
Created August 3, 2022 14:18 — forked from zloeber/bootstrapwindows10.ps1
Boxstarter Windows 10 Configuration
<#
The command to run, built from the raw link of this gist
Win+R
iexplore http://boxstarter.org/package/url?<RAW GIST LINK>
OR (if you don't like the way the web launcher force re-installs everything)
@rscircus
rscircus / devmachine.ps1
Created August 3, 2022 10:38 — forked from kasuken/devmachine.ps1
Tools and software for my workstations and laptops. Windows 11 version.
#####################
# SOFTWARE
#####################
# Console
cinst poshgit
# 7Zip
cinst 7zip.install -y
@rscircus
rscircus / bootstrap-windows.ps1
Created August 3, 2022 10:34 — forked from ByronHawksmith/bootstrap-windows.ps1
Windows 10 Developer Setup 2022
# Fork of https://gist.github.com/stungeye/4fd96987cbc9e0c6676e71cb14468660
# Allow running PowerShell scripts
Update-ExecutionPolicy Unrestricted
# Install Chocolatey
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
# Install Boxstarter
Set-ExecutionPolicy Unrestricted -Force