Skip to content

Instantly share code, notes, and snippets.

View bottlenecked's full-sized avatar

Manos Emmanouilidis bottlenecked

View GitHub Profile
@myobie
myobie / application.ex
Last active April 2, 2025 16:01
Using Finch with ExAws
defmodule Example.Application do
@moduledoc false
use Application
def start(_type, _args) do
children = [
Example.Repo,
ExampleWeb.Telemetry,
{Phoenix.PubSub, name: Example.PubSub},
@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"
}
},
{
@jkdba
jkdba / Invoke-URLInDefaultBrowser.ps1
Created June 13, 2016 22:59
PowerShell cmdlet to open a URL in the user's default browser.
function Invoke-URLInDefaultBrowser
{
<#
.SYNOPSIS
Cmdlet to open a URL in the User's default browser.
.DESCRIPTION
Cmdlet to open a URL in the User's default browser.
.PARAMETER URL
Specify the URL to be Opened.
.EXAMPLE
@jamonholmgren
jamonholmgren / plug.conn.ex
Created March 9, 2016 07:00
Typical Elixir Phoenix Plug.Conn struct contents, in an easy-to-read format. By Jamon Holmgren.
%Plug.Conn{
adapter: {Plug.Adapters.Cowboy.Conn, :...},
assigns: %{
my_assigns: "here"
},
before_send: [
#Function<7.125546534/1 in Phoenix.Controller.fetch_flash/2>,
#Function<1.127904613/1 in Plug.Session.before_send/2>,
#Function<1.43511252/1 in Plug.Logger.call/2>,
#Function<0.70322810/1 in Phoenix.LiveReloader.before_send_inject_reloader/1>