Skip to content

Instantly share code, notes, and snippets.

View tall3n's full-sized avatar

Tyler Allen tall3n

  • Aspect Software
  • Nashville, TN
View GitHub Profile
@tall3n
tall3n / md
Created April 20, 2022 14:24
Steps to auto sync IOS + windows Logseq.
I am a windows destkop user and Iphone user. and have come up with this workflow that is completley automatic and works really really well.
Pre-reqs.
- Git repo access
- Paid version of workign copy
- logseq
- Shortcuts app on Iphone
# Windows Side
You can use the https://github.com/logseq/git-auto to do your auto pushes on a schedule.
@tall3n
tall3n / auto_vim_with_go_plugins.sh
Last active March 22, 2019 03:48
Automatically compiles the latest version of vim and installs go flavored plugins.
echo "Installing Dependencies"
sudo yum install ncurses-devel -y
sudo yum install git -y
sudo yum autoremove -y vim
sudo yum groupinstall -y "Development Tools"
echo "Cloning VIM repo"
git clone https://github.com/vim/vim.git
cd vim/src
echo "Compiling Code"
make -j8