Skip to content

Instantly share code, notes, and snippets.

View kienankb's full-sized avatar
📡

kienan kienankb

📡
View GitHub Profile
@busybox11
busybox11 / twitter-logo.user.js
Last active August 1, 2023 23:20
Bring back old twitter logo
// ==UserScript==
// @name Bring back bird logo - twitter.com
// @namespace twitter scripts
// @match *://*.twitter.com/*
// @grant none
// @version 1.3
// @author -
// @description 7/24/2023, 1:47:07 PM
// @updateURL https://gist.github.com/busybox11/0fea71f136ead45efc470f01f23de94b/raw/6f8ea1acfe92b6fed9e534259887d8ed99ec61af
// @downloadURL https://gist.github.com/busybox11/0fea71f136ead45efc470f01f23de94b/raw/6f8ea1acfe92b6fed9e534259887d8ed99ec61af
// ==UserScript==
// @name @chaoticvibing Twitter Blue Nerd - twitter.com
// @namespace Violentmonkey Scripts
// @match *://*.twitter.com/*
// @grant none
// @version 1.9.1
// @author @chaoticvibing - GH @busybox11
// @description 11/9/2022, 11:45:28 PM
// @updateURL https://gist.githubusercontent.com/busybox11/53c76f57a577a47a19fab649a76f18e3/raw/twitterblue-nerd.js
// @downloadURL https://gist.githubusercontent.com/busybox11/53c76f57a577a47a19fab649a76f18e3/raw/twitterblue-nerd.js
@fuadnafiz98
fuadnafiz98 / transparent.vim
Last active April 18, 2023 07:26
vim transparent background
" for transparent background
function! AdaptColorscheme()
highlight clear CursorLine
highlight Normal ctermbg=none
highlight LineNr ctermbg=none
highlight Folded ctermbg=none
highlight NonText ctermbg=none
highlight SpecialKey ctermbg=none
highlight VertSplit ctermbg=none
highlight SignColumn ctermbg=none
@JoeyBurzynski
JoeyBurzynski / 55-bytes-of-css.md
Last active April 10, 2024 20:23
58 bytes of css to look great nearly everywhere

58 bytes of CSS to look great nearly everywhere

When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:

main {
  max-width: 38rem;
  padding: 2rem;
  margin: auto;
}