Explore >> Select a destination


You are here

yasha.solutions
| | saeedesmaili.com
6.5 parsecs away

Travel
| | For small web projects that you don't want to get large CSS frameworks like Tailwind to be involved, the classless CSS libraries can be very handy. You just 1-2 lines into the head of the html and get beautifully styled pages. Here are a few classless CSS libraries you can use: concrete.css water.css pico css simple css classless.de mvp.css NES.css drop-in minimal css Usage example To use water.css , just paste this into the of your HTML:
| | ionathan.ch
4.2 parsecs away

Travel
| |
| | cronokirby.com
3.7 parsecs away

Travel
| | - Read more: https://cronokirby.com/posts/2020/10/my-blog-version-4/
| | willhaley.com
67.0 parsecs away

Travel
| These commands can be used in a script to automate the installation of yay, an AUR Helper. #!/usr/bin/env bash set -e pacman -Sy --needed --noconfirm sudo wget base-devel # Set up passwordless-sudo for the aur helper account printf "aur ALL = (root) NOPASSWD: /usr/bin/makepkg, /usr/bin/pacman" > /etc/sudoers.d/02_aur useradd -m aur || true # Install package-query su - aur -c bash -c 'rm -rf /tmp/package-query ; mkdir -p /tmp/package-query ; cd /tmp/package-query ; wget https://aur.archlinux.org/cgit/aur.git/snapshot/package-query.tar.gz ; tar zxvf package-query.tar.gz ; cd package-query ; makepkg --syncdeps --rmdeps --install --noconfirm' # Install yay su - aur -c bash -c 'rm -rf /tmp/yay ; mkdir -p /tmp/yay ; cd /tmp/yay ; wget https://aur.archlinux.org/cgit/aur.git/snapshot/yay.tar.gz ; tar zxvf yay.tar.gz ; cd yay ; makepkg --syncdeps --rmdeps --install --noconfirm'