Midterm Blues

  • warzone (nov 5-9) signup begins in...

Tim D

Bitchn' Bout IRS
ill o.g.
Battle Points: 1
This is finally my last year in high school, so im just countin down the days lol
 

classic

I am proud to be southern
ill o.g.
Battle Points: 90
i feel both of ya
same boat different ocean.

Im working on my masters thesis in Information systems.
here is a sample of my ringbuffer algorithm (ohh the excitment!!!)


template <typename T>
RingBuffer <T>::RingBuffer()
{
firstUsed= firstFree = 0;
}
template <typename T>

RingBuffer <T>::~RingBuffer()
{
Release();
}
template <typename T>
RingBuffer <T>::RingBuffer(const RingBuffer& source )
{
Clone (source);
}

template <typename T>
int RingBuffer <T>::pushBack (const T &t)
{

if (firstUsed == 0) // empty ring
{
firstUsed = new BLink(t);
if (firstUsed == 0) //check memory allocation
return 0;

firstFree = new BLink(t);
if (firstFree == 0) //check memory allocation
return 0;

firstUsed-> next = firstFree;
firstFree-> next = firstUsed;
return 1;
}


etc.. etc...

I have no fucking life
Help!!!:crying:

class...
 

PrOLifiK

Wax Fondling Since 420
ill o.g.
Haha looks like some c programming there..i hate that shit. Midterms suck man I'm trying to get a degree in EE so it aint easy to say the least lol.
 

DjDelay

ILLIEN
ill o.g.
Ahh school ain't that bad, more fun than getting a full time job. :)

Boneyboys + Afrique, you two doing A-level maths?

I did it, and boy it was quite hard when it came to the second year. I did P1, P2, P3, S1, S2, and M1.

BTW P3 is SOLID, and M1 is Piss easy lol
 

Chedda

ILLIEN
ill o.g.
Battle Points: 5
shit i didnt even bother with A levels, i looked at the sort of things you gotta come with an thought fuck that, kinda regret it now though. :eek:
 

boneyboys

50 Million Year Trip
ill o.g.
Yeah, I'm doin A level maths, and I damn wish I could do M1 instead of D1. Still in the first year though so I'm just finishing off P1 and I've done S1. S1's bloody dull though, so's D1. I'm doing physics too so M1 woulda been kinda useful but hey, thats the way life goes. And yeah school is defo the easy life compared with work
 

pancakebunnny

needs more fartnoise
ill o.g.
Battle Points: 25
I'm hitting school full time, from 8 am to 3 pm, then working fulltime from 4 pm to 1 am... Do you know when the last time i made a song was??? damn, Biz Markee was popping singles back then! but I gotta say, all of you in this thread, yall win. I have no mutherdrunken motivation whatsoever. So, if I was taking discreet math or constipated algebra or whatever, I'd probably drop the class.... I'm a frickin loser.
 
Top