I hereby claim:
- I am andrewdryga on github.
- I am andrewdryga (https://keybase.io/andrewdryga) on keybase.
- I have a public key ASCO83B78ctJpdof-fS5nIL6Gdvlenz5NAZvWbbgbKmhJAo
To claim this, I am signing this object:
$(function() { | |
var fonts = []; | |
fonts.push({ | |
name: 'Helvetica+Neue', | |
weight: [100, 300, 400, 700], | |
loaded: true | |
}); | |
fonts.push({ | |
name: 'Noto+Sans', | |
weight: [400, 700] |
There were 20 items in your list. Here they are in random order: | |
ID: 1532295488 - Yuriy Pleskach | |
ID: 100003050466207 - Pavel Vasilenko | |
ID: 100000989843634 - Liza Leta | |
ID: 100000792125129 - Sergei Merenkov | |
ID: 1429875608 - Edward Grankovskyi | |
ID: 1790702252 - Loginov Oleg | |
ID: 100003070062622 - Oleksandr Gayovskyy | |
ID: 100001049823958 - Vitaliy Zamedyanskiy |
# Path to your oh-my-zsh configuration. | |
ZSH=$HOME/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
ZSH_THEME="simple" | |
# Example aliases |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | |
<html> | |
<head> | |
<title>{{$title}}</title> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> | |
<meta name="description" content="{{$description}}" /> | |
<link rel="shortcut icon" href="/images/favicon.ico" /> | |
<link rel="stylesheet" type="text/css" href="/css/main.css" /> | |
{{IF $videos}}<link rel="stylesheet" type="text/css" href="/css/videos.css" />{{END}} | |
<meta name="google-site-verification" content="ylXpLfTMpsYwjaB0uSkVsYLbXFaywL7wsa7xqJl6tDw" /> |
#!/bin/bash | |
unload() { | |
if [ `ps -ef | grep -c VirtualBox$` -ne 0 ] | |
then | |
echo "VirtualBox still seems to be running. Please investigate!!" | |
exit 1; | |
elif [ `ps -ef | grep -c [V]ir` -gt 0 ] | |
then | |
echo "Stopping running processes before unloading Kernel Extensions" |
#!/bin/bash | |
# This script simplifies releasing a new hex package. | |
# It will run following steps: | |
# 1. Run tests; | |
# 2. Create git tag with incremented version number (taken from mix.exs); | |
# 3. Start build for Hex.pm package. | |
# | |
# Usage: | |
# hrel [-v RELEASE_VERSION] |
#!/bin/bash | |
# This script provides easy way to debug remote Erlang nodes that is running in a kubernetes cluster. | |
# Usage: ./erl-observe.sh -l app=my_all -n default -c erlang_cookie | |
# | |
# Don't forget to include `:runtime_tools` in your mix.exs application dependencies. | |
set -e | |
# Trap exit so we can try to kill proxies that has stuck in background | |
function cleanup { | |
echo " - Stopping kubectl proxy." |
I hereby claim:
To claim this, I am signing this object:
defmodule Ael.Secrets.API do | |
def get_secret_url(secret) do | |
%Secret{ | |
action: action, | |
expires_at: expires_at, | |
bucket: bucket, | |
resource_id: resource_id, | |
resource_name: resource_name | |
} = secret |