This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --global alias.ammend 'commit -av --amend --no-edit' | |
git config --global alias.call 'commit -av' | |
git config --global alias.pprune 'pull --prune' | |
echo 'alias rubocop_update="git pull --prune && bundle install && rubocop --auto-gen-config && git diff && git checkout -f"' >> ~/.bashrc | |
echo 'alias master_update="git checkout master && git pull --prune"' >> ~/.bashrc | |
echo 'alias system_update="sudo apt -y update && sudo apt dist-upgrade && sudo snap refresh && flatpak update"' >> ~/.bashrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Simple script that exports a users "Saved For Later" list out of Feedly | |
// as a JSON string. | |
// | |
// This was intended for use in the Google Chrome's "Inspector" tool so your | |
// mileage may vary if used in other contexts. | |
// | |
// Format of JSON is as follows: | |
// [ | |
// { | |
// title: "Title", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MKDIR %1\converted | |
for %%f in (%1\*.jpg) do ( convert "%%f" -gravity southeast -stroke "#000C" -pointsize 24 -resize 1200x800 -strokewidth 2 -annotate 0 "vk.com/club48760252" -stroke none -fill white -annotate 0 "vk.com/club48760252" "%1\converted\%%~nf.png" ) |
NewerOlder