Skip to content

Instantly share code, notes, and snippets.

View AaronMk44's full-sized avatar
:octocat:
Innovating with Code

Aaron Mkandawire AaronMk44

:octocat:
Innovating with Code
View GitHub Profile
@AaronMk44
AaronMk44 / LinkedList.h
Last active September 6, 2021 12:06
A simple generic linked list implementation having an iterator mechanism
#ifndef LINKEDLIST_H_
#define LINKEDLIST_H_
template <class T>
struct Node
{
T data;
Node<T>* next;
};
@AaronMk44
AaronMk44 / HttpRequest.php
Last active August 8, 2021 14:45
A standalone HttpRequest PHP Library
<?php
namespace HttpRequest;
/**
* Author : Aaron Mkandawire
* Date : August 8, 2021
* This is a cURL wrapper class
*/
class HttpRequest
{