This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |