Skip to content

Instantly share code, notes, and snippets.

View RolandWarburton's full-sized avatar
🍃

Roland RolandWarburton

🍃
View GitHub Profile

THIS GIST HAS BEEN MIGRATED TO HERE

Rolands List of Linux knowledge

I aim to keep this list up to date with all the small gottchas and references to things ive picked up over time while working with linux.

Topics that go off on a tangent that are 'good to know but not related to linux specifically' are located at the bottom of the document under non related linux things.

My Current configuration:
OS: Arch Linux
DE: openbox\

@RolandWarburton
RolandWarburton / MediumDotComDark.css
Last active December 6, 2019 02:19
medium dark theme for stylus
/* General styling */
html, body, div, p, section, article
{
background-color: #222 !important;
color: #aaa !important;
}
h1, h2, h3, h4, h5, h6, a {
color: #eee !important;
}

Random Project Ideas

So so project ideas.

Ideas I Find Interesting Right Now

Old config detector script

Script that looks at a list of applications and runs a find command to look for old config information

@RolandWarburton
RolandWarburton / forbesAdBlockerAndDarkTheme.user.css
Last active December 6, 2019 04:22
forbes.com ad blocker to block forbes anti ad block, oh my (also dark theme)
/* ==UserStyle==
@name forbes ad blocker blocker
@namespace github.com/openstyles/stylus
@version 1.0.0
@description block the modal popup and unfreeze the page
@author Roland Egerton-Warburton
==/UserStyle== */
@-moz-document domain("forbes.com") {
/* Block the ad blocker*/
@RolandWarburton
RolandWarburton / urls
Last active December 8, 2019 09:37
bunch of urls
npm
curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash -
@RolandWarburton
RolandWarburton / npmNotes.md
Last active December 20, 2019 09:05
npm stuff on my vps
  1. install npm and node sudo apt install npm node
  2. install nvm curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash nvm ls-remote nvm install 10.14.0
  3. install create-react-app sudo npm install create-react-app -g
  4. create a react app npm create-react-app
@RolandWarburton
RolandWarburton / missing_firmware
Created December 20, 2019 12:04
missing firmware
==> WARNING: Possibly missing firmware for module: csiostor
==> WARNING: Possibly missing firmware for module: cxgb3
==> WARNING: Possibly missing firmware for module: cxgb4
==> WARNING: Possibly missing firmware for module: bfa
==> WARNING: Possibly missing firmware for module: isci
==> WARNING: Possibly missing firmware for module: aic94xx
==> WARNING: Possibly missing firmware for module: advansys
==> WARNING: Possibly missing firmware for module: qed
==> WARNING: Possibly missing firmware for module: wd719x
==> WARNING: Possibly missing firmware for module: qla1280
@RolandWarburton
RolandWarburton / mc_plugin_repo_links
Created December 24, 2019 05:44
plugin update links for my minecraft server
@RolandWarburton
RolandWarburton / shitty_github_dark_theme.css
Last active January 11, 2020 06:35
shitty github dark theme
/* ==UserStyle==
@name Empty @name replaces the default template - 1/11/2020, 3:08:38 PM
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document url-prefix("https://github.com/"), url-prefix("https://gist.github.com") {
@RolandWarburton
RolandWarburton / CSS_in_JS.jsx
Created February 3, 2020 02:37
CSS ub HS examples and notes
// Define a simple class
const red = {
margin: '40px',
backgroundColor: 'red'
}
<div style={red}>a div that is red</div>