Skip to content
View samuelswank's full-sized avatar

Block or report samuelswank

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

Hi, I'm Samuel! 👋

class Samuel:
    def __init__(self, username="samuelswank", year=2025):
        self.username = username
        self.name = 'Samuel Adam Swank'
        
        self.skills = {
            'JavaScript' : { 'jQuery' }
            'Python' : { 
                'Pandas',
                'Matplotlib',
                'scikit-learn',
                'Flask'
            },
            'R': {
                'tidyverse',
                'Shiny'
            },
            'C#' : {
                'Entity Framework Core',
                'xUnit'
            },
            'SQL' : { 'PostgreSQL' },
            'Devops' : { 'Amazon Web Services' : { 'AWS Relational Database Management System' } },
            'Mandarin' : '我住台灣兩年'
        }
        
        self.education = {
            'certifications': ( 'Data Science', 'Bloom Institute of Technology' ),
            'degrees' : { 'Associates' : ( 'Computer Science', 'Weber State University' ) }
        }
        
        self.employment = {
            'desired' : {
                'company' : 'Your Company',
                'role' : 'Software Engineer'
            },
            'current': {
            'company' : 'FedEx Ground',
            'role' : 'Operations Administrator'
            }
            'former' : {
                'company' : 'LearnIn',
                'role' : 'Back End Web Development Intern'
            }
        }
        
    def __str__(self):
        description = """
        Software Engineer and Researcher.
        Absolutely loves Star Trek and the Greek philosophy which inspired it.
        Runs every morning and needs to start hiking and swimming again.
        """
        return description
        
    def learn(self, new_skill):
        self.skills.append(new_skill)

Samuel = Samuel(year=2025)

Medium : Samuel Swank

LinkedIn : Samuel Swank

Pinned Loading

  1. 2020-House-Election 2020-House-Election Public

    R

  2. BloomTech-Labs/Labs26-Citrics-DS-TeamA BloomTech-Labs/Labs26-Citrics-DS-TeamA Public

    Jupyter Notebook 5 4

  3. K-Means Clustering by Hand in Python K-Means Clustering by Hand in Python
    1
    import random
    2
    import numpy as np
    3
    import scipy
    4
    from scipy.stats.mstats import gmean
    5
    import sys