Skip to content
View braynm's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report braynm

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. ex_potify ex_potify Public

    Spotify API in Phoenix LiveView

    Elixir 3

  2. phoenix-liveview-example-usage phoenix-liveview-example-usage Public

    This is my attempt to learn and use phoenix liveview along with tailwindcss and alpinejs in a web app.

    Elixir 3 1

  3. copy from|to csv in postgresql copy from|to csv in postgresql
    1
    -- Save without header
    2
    copy ((select "name", "email from "user") to '/absolute-path-to-directory/filename.csv' delimiter ',' csv; 
    3
    4
    -- Save with header
    5
    copy ((select "name", "email from "user") to '/absolute-path-to-directory/filename.csv' delimiter ',' csv header; 
  4. neovim configuration 2021 neovim configuration 2021
    1
    " Plug
    2
    call plug#begin()
    3
    Plug 'ayu-theme/ayu-vim'
    4
    Plug 'morhetz/gruvbox'
    5
    Plug 'Pocco81/Catppuccino.nvim'
  5. List branches with last commit, subj... List branches with last commit, subject, author and last activity
    1
    ## List local branches
    2
    
    
    3
    ```
    4
    git for-each-ref --sort=-committerdate refs/heads/ --format='%(HEAD) %(color:yellow)%(refname:short)%(color:reset) - %(color:red)%(objectname:short)%(color:reset) - %(contents:subject) - %(authorname) (%(color:green)%(committerdate:relative)%(color:reset))'
    5
    ```