Skip to content

Instantly share code, notes, and snippets.

View figmentdragon's full-sized avatar
💭
I may be slow to respond.

CJMTermini figmentdragon

💭
I may be slow to respond.
View GitHub Profile
@figmentdragon
figmentdragon / github_desktop_ubuntu.sh
Created November 10, 2021 02:52 — forked from berkorbay/github_desktop_ubuntu.md
To install Github Desktop for Ubuntu
## Follow this link for further updates to Github Desktop for Ubuntu https://github.com/shiftkey/desktop/releases/latest
# UPDATE (2021-10-18): Thanks to Amin Yahyaabadi's message, the updated code is as follows
sudo wget https://github.com/shiftkey/desktop/releases/download/release-2.9.3-linux3/GitHubDesktop-linux-2.9.3-linux3.deb
### Uncomment below line if you have not installed gdebi-core before
# sudo apt-get install gdebi-core
sudo gdebi GitHubDesktop-linux-2.9.3-linux3.deb
# UPDATE (2021-03-05): Thanks to PaoloRanzi81's comment, the updated code is as follows https://gist.github.com/PaoloRanzi81
@figmentdragon
figmentdragon / bootstrap-5-sass-mixins-cheat-sheet.scss
Created October 25, 2021 20:27 — forked from anschaef/bootstrap-5-sass-mixins-cheat-sheet.scss
All New Bootstrap 5 Sass Mixins [Cheat sheet with examples]
/* -------------------------------------------------------------------------- */
// All Bootstrap 5 Sass Mixins [ Cheat sheet ]
// Updated to Bootstrap v5.1.x
// @author https://anschaef.de
// @see https://github.com/twbs/bootstrap/tree/main/scss/mixins
// @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
/* -------------------------------------------------------------------------- */
// Options
// @see https://getbootstrap.com/docs/5.1/customize/options/
.css-selector {
    background: linear-gradient(346deg, #aaa9ad, #ff9966, #fbfbfd);
    background-size: 600% 600%;
    -webkit-animation: gradient-accent 1s ease infinite;
    -moz-animation: gradient-accent 1s ease infinite;
    -o-animation: gradient-accent 1s ease infinite;
    animation: gradient-accent 1s ease infinite;
}
@-webkit-keyframes gradient-accent {
    0%{background-position:14% 0%}
.css-selector {
    background: linear-gradient(21deg, #ffff00, #0000ff, #00ffff, #ff00ea);
    background-size: 800% 800%;
    -webkit-animation: masthead-background 40s ease infinite;
    -moz-animation: masthead-background 40s ease infinite;
    -o-animation: masthead-background 40s ease infinite;
    animation: masthead-background 40s ease infinite;
}
@-webkit-keyframes masthead-background {
    0%{background-position:0% 0%}