Skip to content
View gnboorse's full-sized avatar
🏠
Working from home
🏠
Working from home
  • Seattle, WA
  • 11:07 (UTC -07:00)

Highlights

  • Pro
Block or Report

Block or report gnboorse

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

  1. centipede centipede Public

    Constraint Satisfaction Problem Solver for Golang

    Go 55 9

  2. selenium-table selenium-table Public

    Selenium helper library for interacting with HTML tables in a meaningful way

    Java 6 1

  3. rom rom Public

    Roman numeral conversion in Python

    Python 3 1

  4. cats cats Public

    Basic REST API and Frontend.

    TypeScript 1

  5. Example of dockerfile that can run s... Example of dockerfile that can run selenium code headlessly
    1
    FROM maven:3.6.2-jdk-11-slim AS build
    2
    ARG ssh_prv_key
    3
    ARG ssh_pub_key
    4
    
                  
    5
    RUN apt-get update && \
  6. Estimating the values of transcenden... Estimating the values of transcendental functions using Taylor series.
    1
    import math
    2
    
                  
    3
    def estimate_taylor_series(a_k, x, precision=1E-11):
    4
        max_k = 0
    5
        current = math.fabs(a_k(x, max_k))