Skip to content

Instantly share code, notes, and snippets.

View deltabeard's full-sized avatar

Mahyar Koshkouei deltabeard

View GitHub Profile
@deltabeard
deltabeard / rm_pro.css
Last active June 7, 2019 16:27
CSS to remove PRO badge on GitHub: Because who gives a shit if you have a PRO account
/* Hide PRO badge on hover card. */
div.d-block.f6.bg-purple.no-underline.text-bold.text-uppercase.text-white.text-center {
visibility: hidden;
}
/* Hide PRO badge on profile page, and remove large space when PRO badge is hidden. */
div.border-top.border-gray-light.py-3.js-pro-badge {
visibility: hidden;
height: 0;
overflow: visible;
echo export CC=\""${CLFS_TARGET}-gcc\"" >> ~/.bashrc
echo export CXX=\""${CLFS_TARGET}-g++\"" >> ~/.bashrc
echo export AR=\""${CLFS_TARGET}-ar\"" >> ~/.bashrc
echo export AS=\""${CLFS_TARGET}-as\"" >> ~/.bashrc
echo export LD=\""${CLFS_TARGET}-ld\"" >> ~/.bashrc
echo export RANLIB=\""${CLFS_TARGET}-ranlib\"" >> ~/.bashrc
echo export READELF=\""${CLFS_TARGET}-readelf\"" >> ~/.bashrc
echo export STRIP=\""${CLFS_TARGET}-strip\"" >> ~/.bashrc
source ~/.bashrc