Skip to content
View wsams's full-sized avatar
🔺
🔺

Highlights

  • Pro

Block or report wsams

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 is supported. This note will only be visible to you.
Report abuse

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

Report abuse

Pinned Loading

  1. httpd httpd Public

    A docker image for building an httpd PHP container.

    Dockerfile

  2. latex latex Public

    A Docker image for compiling documents such as Markdown and LaTeX into PDF documents using pandoc and texlive packages.

    Dockerfile

  3. acnab acnab Public

    A Python script for rendering an ascii chessboard using abbreviated algebraic chess notation.

    Python 1

  4. popos-playbook popos-playbook Public

    Ansible playbook for Pop!_OS setup.

    Dockerfile 1

  5. Multiply two large integers (1000s o... Multiply two large integers (1000s of digits - or more given enough time) with Python, and Node.JS
    1
    /**
    2
     * Usage: node multiply.js <positive integer a> <positive integer b>
    3
     */
    4
    function mult(aArr, bArr) {
    5
      const as = aArr.reverse().join('');