This file contains hidden or 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
# This is Git's per-user configuration file. | |
[user] | |
name = Gyorgy Gutai | |
email = | |
[alias] | |
l = log | |
b = branch | |
s = status | |
c = checkout | |
ci = !git checkout $(git branch -a | fzf | xargs) |
This file contains hidden or 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
alias {l,ll}="ls -lah" | |
# start interactive | |
alias si='$(mdfind "kMDItemUserTags == '\''Blue'\''" | fzf | xargs)' | |
# cd interactive | |
alias cdi='cd $(mdfind "kMDItemUserTags == '\''Purple'\''" | fzf | xargs)' | |
# enable git autocomplete | |
autoload -Uz compinit && compinit |
This file contains hidden or 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
name: Daily backup to AWS S3 | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "30 00 * * *" | |
env: | |
BACKUP_FILE: wp-backup.tar.gz |
This file contains hidden or 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
name: Daily backup to AWS S3 | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "30 00 * * *" | |
env: | |
BACKUP_FILE: wp-backup.tar.gz |
This file contains hidden or 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
version: 2 | |
workflows: | |
version: 2 | |
build-deploy: | |
jobs: | |
- release: | |
filters: | |
branches: | |
only: |
This file contains hidden or 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
name: Deploy to Netlify Hosting | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: '0,35 23 * * *' | |
repository_dispatch: | |
types: [build-deploy, dispatch] |
This file contains hidden or 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
@font-face { | |
font-family: 'QuicksandBook'; | |
src: url('Quicksand_Book-webfont.eot'); | |
src: url('Quicksand_Book-webfont.eot?#iefix') format('embedded-opentype'), | |
url('Quicksand_Book-webfont.woff') format('woff'), | |
url('Quicksand_Book-webfont.ttf') format('truetype'), | |
url('Quicksand_Book-webfont.svg#QuicksandBook') format('svg'); | |
font-weight: normal; | |
font-style: normal; |
This file contains hidden or 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
<!DOCTYPE HTML> | |
<head> | |
<meta charset="UTF-8"> | |
<title></title> | |
<meta name="description" content="" /> | |
<meta name="keywords" content="" /> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> |