Skip to content

Instantly share code, notes, and snippets.

View LorincJuraj's full-sized avatar
🏠
Working from home

Juraj Lorinc LorincJuraj

🏠
Working from home
View GitHub Profile
@LorincJuraj
LorincJuraj / WordPress .gitignore
Last active June 22, 2019 15:36
WordFence log ignored
*~
.DS_Store
.svn
.cvs
*.bak
*.swp
Thumbs.db
*.log
commit-version.txt
sitemap.xml
@LorincJuraj
LorincJuraj / start_of_day.sh
Created November 14, 2017 18:12
Script I am running when switching to new project in Sublime Text 3
#!/bin/bash
# Requirements: Ubuntu, gitk, wmctrl, Google Chrome
# My usual project structure is:
#
# project-parent-folder/
# |-- designs/
# |-- wp/
# |-- .project/
@LorincJuraj
LorincJuraj / open_in_gimp.sh
Last active August 9, 2017 19:47
Open all JPG, JPEG and PNG files in current folder in GIMP
#!/bin/bash
gimp & sleep 1; for i in `ls *.{jpg,jpeg,png} | sort -V -r`; do gimp $i; sleep 0.2; done
# save to '/home/YOUR-USERNAME/.local/share/nautilus/scripts' and make it executable