Skip to content

Instantly share code, notes, and snippets.

View muaddib1971's full-sized avatar

Paul Miller muaddib1971

  • RMIT University
View GitHub Profile
@muaddib1971
muaddib1971 / unpack-bandcamp
Created September 10, 2024 23:04
shell script to unpack a bandcamp zip file into the appropriate folder structure
#!/bin/bash
#extracts a bandcamp zip file into the appropriate band / album directories
#paths to executables - modify these according to their location on your system
CUT=/usr/bin/cut
SED=/usr/bin/sed
BASENAME=/usr/bin/basename
MKDIR=/usr/bin/mkdir
UNZIP=/usr/bin/unzip
RM=/usr/bin/rm
#include <stdio.h>
#include <stdlib.h>
#define SIZE 10
int main() {
/* int * i; */
/* printf("%d\n", *i); */
int array[] = {0,1,2,3,4,5,6,7,8,9,0};
int count;
@muaddib1971
muaddib1971 / Makefile
Last active August 12, 2024 10:30
Makefiles
#targetname: prereqs
# command
all:files
files:file1.o file2.o file3.o main.o
g++ file1.o file2.o file3.o main.o -o files
file1.o:file1.cpp file1.h
g++ -Wall -Werror -std=c++14 -c file1.cpp
@muaddib1971
muaddib1971 / bugged.cpp
Last active August 5, 2024 20:09
c++catchup week 3
#include <iostream>
#include <cstdlib>
int main() {
int* i;
std::cout << *i << '\n';
return EXIT_SUCCESS;
}
@muaddib1971
muaddib1971 / dynarray.cpp
Last active July 30, 2024 02:32
container examples for Operating Systems Principles
#include <random>
#include <iostream>
#define SIZE 10
int main() {
//a pointer to some integers - currently not allocated
int * array = nullptr;
//allocate space for 'size' integers
array = new int[SIZE];
@muaddib1971
muaddib1971 / badfree.cpp
Created May 15, 2024 03:02
memory problems
#define size 30
#include <cstdlib>
void allocate_array(int** array) { *array = new int[size]; }
int main() {
int* array;
allocate_array(&array);
int count;
for (count = 0; count < size; ++count) {
array[count] = count;
}
#include <stdio.h>
#include <stdlib.h>
enum month { JAN, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV, DEC };
const char* month_str[] = {"January", "February", "March", "April",
"May", "June", "July", "August",
"September", "October", "November", "December"};
int main() {
enum month themonth;
for (themonth = JAN; themonth <= DEC; ++themonth) {
switch (themonth) {
#include <iostream>
#include <string>
#include <limits>
int main(void) {
int count{};
while(true) {
std::string s;
std::cout << "ctrl-d has been pressed " << count << " times "
<< std::endl;
@muaddib1971
muaddib1971 / vector_init.cpp
Created April 10, 2023 06:39
vector initialisation
#include <vector>
#include <iostream>
int main(int argc, char * argv[]) {
//check for the correct args
if(argc != 3) {
std::cerr << "error: invalid args" << std::endl;
return EXIT_FAILURE;
}
//extract widht and height from the args
@muaddib1971
muaddib1971 / IntList.cpp
Created April 4, 2023 08:49
c++ linked list
#include "IntList.h"
#include <climits>
Node::Node(int _data) : next(nullptr), data(_data) {}
void Node::setNext(Node* next) { this->next = next; }
Node* Node::getNext() { return next; }
int Node::getData() { return data; }
LinkedList::LinkedList() : head(nullptr), size(0) {}
void LinkedList::add(int data) {