Skip to content

Instantly share code, notes, and snippets.

View philipheimboeck's full-sized avatar

Philip Heimböck philipheimboeck

  • Abacus Research GmbH
  • Austria
View GitHub Profile
@philipheimboeck
philipheimboeck / Readme.md
Created January 31, 2015 16:27
C Preemptive Operating System for MSP-430

Preemptive Operating System

Demonstrates preemptive threading with Interrupts and an own stackpointer for each thread.

@philipheimboeck
philipheimboeck / LinkedList.h
Created January 25, 2015 13:58
C++ Stack (with LinkedList)
#ifndef _H_LinkedList
#define _H_LinkedList
// Templates must be implemented in the header
template<typename T>
class LinkedList;
template<typename T>
class Node {
@philipheimboeck
philipheimboeck / Readme.md
Last active March 29, 2023 13:20
C++ String: An own String implementation with operator overloading and free methods

C++ String

Example application that demonstrates the use of the following:

  • Operator overloading
    • Free Operators
    • Class Operators
  • Friendship
  • Iterator
@philipheimboeck
philipheimboeck / Readme.md
Created January 24, 2015 09:52
C Inheritance: Decorator Pattern

Decorator Pattern in C

  • Basic C Inheritance
  • No Destructor implemented