Skip to content
View Trshant's full-sized avatar
🤠
docker/kubernetes/
🤠
docker/kubernetes/

Block or report Trshant

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

Pinned Loading

  1. docker setup for LAMP docker setup for LAMP
    1
    FROM php:7.3-apache
    2
    LABEL maintainer="[email protected]"
    3
    
                  
    4
    # Install PHP extensions and PECL modules.
    5
    RUN buildDeps=" \
  2. reimagined-yomama reimagined-yomama Public

    yo maam jokes using markov chains

    OpenEdge ABL 3

  3. a minimal webserver in python 3 a minimal webserver in python 3
    1
    # from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer # python2
    2
    from http.server import BaseHTTPRequestHandler, HTTPServer # python3
    3
    
                  
    4
    class HandleRequests(BaseHTTPRequestHandler):
    5
        def _set_headers(self):