Skip to content

Instantly share code, notes, and snippets.

View romdim's full-sized avatar

Romanos Tsouroplis romdim

View GitHub Profile
@romdim
romdim / tina.sh
Created June 27, 2022 00:49
Init TinaCMS with TS & Tailwind
yarn create next-app -- --typescript
cd folder/
# Add tinaCMS
npx @tinacms/cli@latest init
# Add Tailwind
yarn add -D tailwindcss postcss autoprefixer
npx tailwindcss init -p
@romdim
romdim / mac-setup
Created July 18, 2022 12:39
Mac Initial Setup (copied & changed from https://gist.github.com/bradp/bea76b16d3325f5c47d4 )
echo "Creating an SSH key for you..."
ssh-keygen -t rsa
echo "Please add this public key to Github \n"
echo "https://github.com/account/ssh \n"
read -p "Press [Enter] key after this..."
echo "Installing xcode-stuff"
xcode-select --install
@romdim
romdim / apfs-fuse-install.sh
Created September 26, 2020 08:44
Install apfs-fuse in Ubuntu 20.04 LTS
sudo apt update
sudo apt install fuse libfuse-dev libicu-dev bzip2 libbz2-dev cmake git libattr1-dev zlib1g-dev g++
sudo snap install cmake --classic
git clone https://github.com/sgan81/apfs-fuse.git
cd apfs-fuse
git submodule init
git submodule update
mkdir build