Skip to content

Instantly share code, notes, and snippets.

View rscircus's full-sized avatar
💭
👋

Roland Siegbert rscircus

💭
👋
View GitHub Profile
@hgomez
hgomez / Fix AC9560 on Fedora 32.md
Last active November 17, 2022 22:31
How to fix unstable Intel Wireless-AC 9560 on Fedora 32

Problem

I have a Dell Inspiron 15 7586 with Fedora 32. Wifi AC is provided by an Intel AC 9560.

dmesg | grep iwlwifi
...
[   16.978385] iwlwifi 0000:00:14.3: Detected Intel(R) Wireless-AC 9560, REV=0x318
...
@Deliquescence
Deliquescence / userChrome.css
Last active January 1, 2025 19:54
Firefox userChrome.css
:root {
--custom-accent-color: white;
}
/* Hide "Close Multiple Tabs" menu */
#context_closeTabOptions {
display: none !important;
}
@huytd
huytd / todo.vim
Created June 14, 2020 07:34
A Todo list syntax in Vim, with an actual checkbox
" Vim syntax file
" Language: Todo
" Maintainer: Huy Tran
" Latest Revision: 14 June 2020
if exists("b:current_syntax")
finish
endif
" Custom conceal
{
"editor.insertSpaces": true,
"editor.tabSize": 2,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.formatOnType": false,
"editor.wordBasedSuggestions": false,
"editor.trimAutoWhitespace": false,
"gitlens.hovers.avatars": false,
"gitlens.hovers.currentLine.details": false,
@jdalley
jdalley / wsl_setup.md
Last active January 9, 2023 14:01
Windows Subsystem for Linux (WSL) - Ubuntu Setup

Steps for setting up a decent looking WSL Ubuntu terminal

Install and configure the WSL/Ubuntu console:

  • Enable WSL on Windows 10 through 'Programs and Features'.
  • Install WSL Ubuntu from the Windows Store.
  • Launch ubuntu.exe and do initial 'Properties/Defaults' config:
    • Right click on the title bar, select Defaults:
      • Under the Options tab, select Use Ctrl+Shift+C/V as Copy/Paste
      • You might want to increase Buffer Size for Command History under the Options tab, and Height under Layout > Screen Buffer Size: 9001 seems like enough 😄
@Zren
Zren / userChrome.css
Last active February 26, 2024 07:24
Firefox userChrome.css
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
@namespace html url("http://www.w3.org/1999/xhtml");
/*
** In order for userChrome.css to work, you need to open `about:config` and change
** `toolkit.legacyUserProfileCustomizations.stylesheets` to `true`.
*/
@mikepruett3
mikepruett3 / shell-setup.ps1
Last active April 25, 2025 00:49
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
@fitzterra
fitzterra / RepetierGCodes.md
Last active January 27, 2025 17:03
GCodes and MCodes for Repetier Firmware

Repetier Firmware G/MCodes

Reason for this gist and notes about it:

  • This is a prettified version of the [Repetier-Firmware] for AVR supported GCodes and MCodes as extracted from [Repetier.ino] in the repo.
  • The labels makes it easier for me to get a feel for the group a specific command belongs to, and makes it easy to find commands related to some specific task. This will hopefully make it a bit easier for me to get familiar with the command and possibilities.
@zloeber
zloeber / bootstrapwindows10.ps1
Last active June 19, 2024 21:51
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)
@pksunkara
pksunkara / config
Last active April 22, 2025 22:10
Sample of git config file (Example .gitconfig) (Place them in $XDG_CONFIG_HOME/git)
[user]
name = Pavan Kumar Sunkara
email = [email protected]
username = pksunkara
[init]
defaultBranch = master
[core]
editor = nvim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
pager = delta