View config.ovpn
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
client | |
dev tap | |
proto udp | |
remote vpn.fel.cvut.cz | |
port 1196 | |
resolv-retry infinite | |
nobind |
View gist:a149b9f488932a370c248027b4e515ce
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
<html lang="en"><head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>17-01-2019</title> | |
<style> | |
body { | |
font-family: Open Sans, sans-serif; | |
} | |
</style> |
View spacers.css
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
.p-a-xsm,.p-t-xsm,.p-y-xsm{padding-top:5px} | |
.p-a-xsm,.p-b-xsm,.p-y-xsm{padding-bottom:5px} | |
.p-a-xsm,.p-l-xsm,.p-x-xsm{padding-left:5px} | |
.p-a-xsm,.p-r-xsm,.p-x-xsm{padding-right:5px} | |
.m-a-xsm,.m-t-xsm,.m-y-xsm{margin-top:5px} | |
.m-a-xsm,.m-b-xsm,.m-y-xsm{margin-bottom:5px} | |
.m-a-xsm,.m-l-xsm,.m-x-xsm{margin-left:5px} | |
.m-a-xsm,.m-r-xsm,.m-x-xsm{margin-right:5px} | |
@media only screen and (max-width:992px){.p-a-xsm-sm,.p-t-xsm-sm,.p-y-xsm-sm{padding-top:5px!important} | |
.p-a-xsm-sm,.p-b-xsm-sm,.p-y-xsm-sm{padding-bottom:5px!important} |
View pr.sh
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 -ex | |
UNCOMMITED_CHANGES=$(git diff-index --name-only HEAD --) | |
if [ -n "$UNCOMMITED_CHANGES" ]; then | |
echo "Repo has uncommited changes, proceed anyway? (y/N)" | |
read FORCE | |
if [ "$FORCE" = "y" -o "$FORCE" = "Y" ]; then | |
echo "Continuing..." | |
else |
View alias.sh
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
alias gfu="git commit --fixup" | |
alias gfuh="git commit --fixup HEAD" | |
alias gria="git rebase -i --autosquash" |
View bootstrap.sh
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 | |
# This script installs and configures 3rd party apps that are not available from App Store | |
# and does small OS tweak such as changing Terminal promt or removing default Dock icons. | |
# Tested for OS X Yosemite 10.10.4 | |
# install command line tools | |
xcode-select --install | |
if [ `xcode-select -p` != 0 ] |
View alert.js
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
<script>alert();</script> |
View render_template.php
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
public function renderTemplate($templatePath /* $data = array(), $echo = false */) { | |
ob_start(); | |
extract((array)@func_get_arg(1)); | |
require __DIR__ . "/template_helpers.php"; | |
require __DIR__ . "/" . $templatePath; | |
result = ob_get_clean(); | |
if(@func_get_arg(2)) { | |
echo $result; | |
} else { |
View export.sql
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
SELECT id, name, email INTO OUTFILE '/tmp/result.csv' | |
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' | |
ESCAPED BY ‘\\’ | |
LINES TERMINATED BY '\n' | |
FROM users WHERE 1 |