This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <cstdlib> | |
int main() { | |
int* i; | |
std::cout << *i << '\n'; | |
return EXIT_SUCCESS; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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) { |
NewerOlder