Skip to content
View snelson82's full-sized avatar
Block or Report

Block or report snelson82

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
snelson82/README.md

Hi πŸ‘‹

I love learning through creation and practice.

Time Spent Programming (since 2018)

wakatime

Started With

JavaScript CSS Ruby Canvas Postgres

Currently Working With

Elixir GraphQL Postgres

Studying

Elixir GraphQL Postgres Phoenix Go

Tools & Helpers I Use

Tool Communication Productivity Development
VS Code βœ… βœ…
Postman βœ… βœ…
Todoist βœ…
Slack βœ… βœ…
Linear βœ… βœ…
Google Calendar βœ… βœ…
Google Meets βœ… βœ…
Google Sheets βœ… βœ…
Notion βœ…

Pinned

  1. weather_app weather_app Public

    Elixir app to summarize 6-day weather forecast data

    Elixir

  2. 100DaysOfRuby 100DaysOfRuby Public

    Daily summary for Ruby scripting and Ruby on Rails study sessions

    Ruby 3

  3. learn_rails learn_rails Public

    Learning Ruby on Rails from scratch! Starting with this video: https://www.youtube.com/watch?v=fmyvWz5TUWg&ab_channel=freeCodeCamp.org

    Ruby 1

  4. Progress bar added to CSV for output... Progress bar added to CSV for output while parsing
    1
    require 'progress_bar'
    2
    
                  
    3
    # Extends CSV class to include progress bar enhancement
    4
    class CSV
    5
      module ProgressBar
  5. PostgreSQL - All tables and record c... PostgreSQL - All tables and record count
    1
    SELECT
    2
      table_schema,
    3
      table_name,
    4
    (xpath('/row/cnt/text()', xml_count))[1]::text::int AS row_count
    5
    FROM (