Skip to content
View mattjcamp's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report mattjcamp

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
mattjcamp/README.md

👋 Hi, I’m Matt

👀 Technical Data Analyst

🌱 Writer

💞️ UFOlogist

📫 R/SQL/Web

mattjcamp.com LinkedIn

Pinned Loading

  1. game_rpg_turn_based_open_world game_rpg_turn_based_open_world Public

    An Ultima III–inspired top-down, turn-based RPG built with Python and Pygame. Lead a party of four adventurers through a procedurally generated world of overworld exploration, town visits, dungeon …

    Python

  2. ufo-uap-data-science-project ufo-uap-data-science-project Public

    Exploration of the NUFORC dataset that shows UFO/UAP reports up to December 2021

    R 3

  3. datapointsr datapointsr Public

    Painless QC analysis for big statistical tables

    R

  4. dbr dbr Public

    Facade for common database connections like SQL Server, Amazon Redshift, PostgresSQL and SQLite databases

    R

  5. SQL Essentials SQL Essentials
    1
    -- SELECT WITH GROUP BY AND JOIN
    2
    SELECT 
    3
        C.country, 
    4
        C.team, 
    5
        SUM(M.goals) 
  6. SQL Tables SQL Tables
    1
    INSERT INTO TargetTable
    2
    SELECT * FROM SourceTable;
    3
    
                  
    4
    INSERT INTO Orders (CustomerID, OrderDate, TotalAmount)
    5
    VALUES