| title | How to add Tailwind CSS for Docusaurus |
|---|---|
| date | 2021-06-22 |
- Install Docusaurus
npx @docusaurus/init@latest init site-name class
| gsettings set org.gnome.shell.extensions.dash-to-dock dock-position BOTTOM | |
| gsettings set org.gnome.shell.extensions.dash-to-dock dock-position TOP | |
| gsettings set org.gnome.shell.extensions.dash-to-dock dock-position RIGHT | |
| gsettings set org.gnome.shell.extensions.dash-to-dock dock-position LEFT |
| #!/bin/bash | |
| xrandr --output eDP-1-1 --mode 1280x720 |
Hey folks.
Would you like to have Portfolio Showoff Sunday flair?
Yay or nay?
u/Kangaroo-Spoon brought up an interesting idea in Too many “ReViEw My PoRtFoLIo” posts.
Gnome Tweaks: https://gitlab.gnome.org/GNOME/gnome-tweaks
| // ==UserScript== | |
| // @name dev.to | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://dev.to/* | |
| // @grant none | |
| // ==/UserScript== |
| [user] | |
| email = sungmkim80@gmail.com | |
| name = Sung M. Kim | |
| [alias] | |
| cm = commit -m | |
| co = checkout | |
| rv = remote -v | |
| st = status | |
| aa = add . | |
| br = branch |
| import getMuiTheme from 'material-ui/styles/getMuiTheme'; | |
| import baseTheme from 'material-ui/styles/baseThemes/darkBaseTheme'; | |
| import * as Colors from 'material-ui/styles/colors'; | |
| import { fade } from 'material-ui/utils/colorManipulator' | |
| const getTheme = () => { | |
| let overwrites = { | |
| "appBar": { | |
| "textColor": Colors.white, | |
| "color": fade(Colors.darkBlack, 0.87) |
| const purgecss = require('@fullhuman/postcss-purgecss')({ | |
| // Specify the paths to all of the template files in your project | |
| content: [ | |
| './src/**/*.html', | |
| './src/**/*.js', | |
| './src/**/*.jsx', | |
| './src/**/*.ts', | |
| './src/**/*.tsx', | |
| './public/index.html', | |
| ], |
| name: Build and Deploy to Gatsby every hour | |
| on: | |
| schedule: | |
| - cron: '0 */2 * * *' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest |