Skip to content

Instantly share code, notes, and snippets.

View effective-light's full-sized avatar
🎯
Focusing

Effective Light effective-light

🎯
Focusing
View GitHub Profile
@effective-light
effective-light / LocalAreaNetwork.java
Last active June 20, 2017 07:11
Answers to CSC207H1Y Quiz 1 V1
package network;
public class LocalAreaNetwork extends Network
{
public static String whatAmI = "I am a LAN";
public static int numCreated;
public int numNodes;
public char firstLetter = 'L';
@effective-light
effective-light / hippos-starter.c
Last active October 5, 2018 19:17
Simple monitor implementation
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <pthread.h>
#define N 50
#define M 1000
int marbles = M;
int scores[N];