I hereby claim:
- I am e-fu on github.
- I am efu (https://keybase.io/efu) on keybase.
- I have a public key ASBPLDG9RpklAG-kagQdUxB6C5PQMavvl_RYjLV0YU0sPQo
To claim this, I am signing this object:
| #!/usr/bin/env elixir | |
| # run with: mix run scripts/typespec_audit.exs --namespace=AppName | |
| defmodule TypespecAudit do | |
| @moduledoc """ | |
| Script to analyze typespec coverage across an Elixir codebase. | |
| This script: | |
| 1. Finds all Elixir modules in the codebase |
| #!/bin/bash | |
| # This file is designed to spin up a Wireguard VPN quickly and easily, | |
| # including configuring a recursive local DNS server using Unbound | |
| # | |
| # Make sure to change the public/private keys before running the script | |
| # Also change the IPs, IP ranges, and listening port if desired | |
| # iptables-persistent currently requires user input | |
| # add wireguard repo | |
| sudo add-apt-repository ppa:wireguard/wireguard -y |
| //@version=4 | |
| persistent_bull = 0.0 | |
| persistent_bull := nz(persistent_bull[1],0) | |
| persistent_bear = 0.0 | |
| persistent_bear := nz(persistent_bear[1],0) | |
| // https://medium.com/@coinpocalypse/a-simple-start-80fe92c92b15 | |
| strategy(title = "Strategy for Crypto, Forex, Shares, Futures, Options", shorttitle = "$$$$$$", overlay = true, | |
| pyramiding = 0, |
I hereby claim:
To claim this, I am signing this object:
| defmodule Rolester.Admin.AppControllerTest do | |
| use Rolester.ConnCase | |
| alias Rolester.App | |
| alias Rolester.Tenant | |
| @valid_attrs %{name: "some content"} | |
| @invalid_attrs %{} | |
| setup do |
| = simple_form_for(@page) do |f| | |
| = f.error_notification | |
| .form-inputs | |
| = f.input :name | |
| = f.input :url | |
| = f.input :permalink | |
| = f.collection_select :parent_id, Page.order(:name), :id, :permalink, include_blank: true | |
| .form-actions |