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
#!/bin/bash | |
read base_name <<< $( echo $1 | awk -F "\." '{print $1}' ) | |
size=$(convert "$1" -print "%wx%h\n" /dev/null) | |
read width height <<< $( echo $size | awk -F'[x]' '{print $1" "$2}' ) | |
export IFS="," | |
prev_label="" |
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
#!/bin/bash | |
read base_name <<< $( echo $1 | awk -F "\." '{print $1}' ) | |
size=$(convert "$1" -print "%wx%h\n" /dev/null) | |
read width height <<< $( echo $size | awk -F'[x]' '{print $1" "$2}' ) | |
export IFS="," | |
prev_label="" |
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
set t_Co=256 | |
colorscheme distinguished | |
set hlsearch | |
set colorcolumn=80 | |
autocmd BufRead,BufNewFile *.skim set filetype=slim | |
autocmd BufRead,BufNewFile *.hamlc set filetype=haml | |
autocmd BufRead,BufNewFile *.json set filetype=javascript | |
autocmd BufRead,BufNewFile [A-Z]*file set filetype=config | |
autocmd BufRead,BufNewFile *.vcl set filetype=config |
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
Plug 'slim-template/vim-slim' | |
Plug 'groenewege/vim-less' | |
Plug 'vim-erlang/vim-erlang-runtime' | |
Plug 'vim-erlang/vim-erlang-omnicomplete' | |
Plug 'vim-erlang/vim-erlang-compiler' | |
Plug 'vim-erlang/vim-erlang-tags' | |
Plug 'vim-erlang/vim-erlang-skeletons' | |
Plug 'elixir-lang/vim-elixir' | |
Plug 'guns/vim-clojure-static' | |
Plug 'derekwyatt/vim-scala' |
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
CREATE DATABASE yourdbname; | |
CREATE USER youruser WITH ENCRYPTED PASSWORD 'yourpass'; | |
GRANT ALL PRIVILEGES ON DATABASE yourdbname TO youruser; |
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
{ | |
"general": { | |
"password_page": { | |
"login_form_heading": "הכנס לחנות באמצעות סיסמה:", | |
"login_password_button": "הכנס באמצעות סיסמה", | |
"login_form_password_label": "סיסמה", | |
"login_form_password_placeholder": "סיסמתך", | |
"login_form_error": "סיסמה שגוייה!", | |
"login_form_submit": "הכנס", | |
"admin_link_html": "האם אתה בעל החנות? <a href=\"/admin\" class=\"link underlined-link\">התחבר כאן</a>", |
OlderNewer