Skip to content

Instantly share code, notes, and snippets.

View flavian-anselmo's full-sized avatar
🦍
mood?.observable

Zuko flavian-anselmo

🦍
mood?.observable
  • Safaricom PLC
  • Searching for the Avatar
View GitHub Profile
# syntax=docker/dockerfile:1
FROM python:3.8-slim-buster
WORKDIR /app
ENV ACCEPT_EULA=Y
RUN apt-get update -y && apt-get update \
&& apt-get install -y --no-install-recommends curl gcc g++ gnupg unixodbc-dev
kubectl delete ingress twrx-ingress
@flavian-anselmo
flavian-anselmo / LinkedList.class.php
Created March 16, 2021 06:57 — forked from zachflower/LinkedList.class.php
PHP implementation of a singly linked list.
<?php
class Node {
public $data = NULL;
public $next = NULL;
public function __construct($data = NULL) {
$this->data = $data;
}
}