Skip to content

Instantly share code, notes, and snippets.

View bottlenecked's full-sized avatar

Manos Emmanouilidis bottlenecked

View GitHub Profile
@bottlenecked
bottlenecked / http_api_testing.livemd
Created December 28, 2021 08:37
Creating testable HTTP API client code in Elixir

Creating testable HTTP API client code in Elixir

Intro

As part of my day job I've had to create a couple of HTTP API clients and after some experimentation I've ended up with a code structure that I like and that I feel makes testing code that uses a JSON API client easier.

Making actual HTTP requests to 3rd-party services while running the tests can be difficult because of credential availability on the machine that runs the tests,

@bottlenecked
bottlenecked / dbdump.sh
Created May 11, 2021 11:29
A script for fetching db dumps locally
#! /bin/bash
Help()
{
echo
echo "A script for fetching db dumps locally"
echo
echo "Usage: dbdump <ENV> <SYSTEM> <DATABASE>"
echo
echo "Example:"
@bottlenecked
bottlenecked / dev.exs
Created February 14, 2021 16:06
Dashboard dummy metrics generation
def metrics do
[
distribution("a.b.c",
tags: [:foo],
unit: {:native, :millisecond}
),
distribution("a.b.c",
tags: [:foo, :bar],
unit: {:native, :millisecond}
),
@bottlenecked
bottlenecked / keybindings.json
Created January 8, 2021 15:52
VS Code keybindings for running tests
[
{
"key": "ctrl+t t",
"command": "workbench.action.tasks.runTask",
"args": "Run All Tests"
},
{
"key": "ctrl+t ctrl+f",
"command": "workbench.action.tasks.runTask",
"args": "Run Failed Tests"
@bottlenecked
bottlenecked / tasks.json
Last active January 8, 2021 15:48
VS Code elixir test setup user tasks
{
"version": "2.0.0",
"tasks": [
{
"label": "phx.server",
"type": "shell",
"command": "iex -S mix phx.server"
},
{
"label": "Run All Tests",
@bottlenecked
bottlenecked / Microsoft.PowerShell_profile.ps1
Created February 21, 2020 22:09
powershell profile for elixir development
# choco install poshgit
Import-Module 'C:\tools\poshgit\dahlbyk-posh-git-9bda399\src\posh-git.psd1'
# chcp 65001
$OutputEncoding = [console]::InputEncoding = [console]::OutputEncoding = New-Object System.Text.UTF8Encoding
# iex shell startup
remove-item alias:iex -force
# iex shell history
$env:ERL_AFLAGS = "-kernel shell_history enabled"
# used in .iex.exs
$env:shell = 'powershell'
@bottlenecked
bottlenecked / .iex.exs
Last active February 22, 2020 18:03
iex startup script on windows
Application.put_env(:elixir, :ansi_enabled, true)
if System.fetch_env("shell") == {:ok, "powershell"} do
# define some colors that play nice with powershell blue background
IEx.configure(colors: [
eval_error: :light_red,
syntax_colors: [
boolean: :light_green,
nil: :light_green
]
@bottlenecked
bottlenecked / settings.json
Created May 23, 2019 19:51
Visual Studio Code settings for coloring additional Elixir-specific symbols (from my dark theme, but one can always experiment with the colors)
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "atoms and such",
"scope": "constant.other.symbol.elixir",
"settings": {
"foreground": "#489CC8"
}
},
{