Skip to content

Instantly share code, notes, and snippets.

View loganwoolf's full-sized avatar

Logan Woolf loganwoolf

View GitHub Profile
@binury
binury / stylelint-svelte.md
Last active March 14, 2024 01:58
How to get Stylelint working with Sveltekit

Do not waste hours of your life -like I did- trying to get the postcss plugin working

It will pass transformed CSS to the linter to troll you— no matter what.

just load stylelint through a vite plugin.

@Kartones
Kartones / postgres-cheatsheet.md
Last active April 2, 2025 19:50
PostgreSQL command line cheatsheet

PSQL

Magic words:

psql -U postgres

Some interesting flags (to see all, use -h or --help depending on your psql version):

  • -E: will describe the underlaying queries of the \ commands (cool for learning!)
  • -l: psql will list all databases and then exit (useful if the user you connect with doesn't has a default database, like at AWS RDS)
@cobyism
cobyism / gh-pages-deploy.md
Last active April 2, 2025 13:16
Deploy to `gh-pages` from a `dist` folder on the master branch. Useful for use with [yeoman](http://yeoman.io).

Deploying a subfolder to GitHub Pages

Sometimes you want to have a subdirectory on the master branch be the root directory of a repository’s gh-pages branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master branch alongside the rest of your code.

For the sake of this example, let’s pretend the subfolder containing your site is named dist.

Step 1

Remove the dist directory from the project’s .gitignore file (it’s ignored by default by Yeoman).