okay, if you haven't noticed by now, i'm obsessed with chicks on speed.
so... here's a quick rundown of their new album:
artist: Chicks On Speed
title: Will Save Us All
label: chicks on speed records
cat# 001
1. stop records advert
2. give me back my man
3. for all the boys in the world
4. glamour girl
5. pedstang [re]issue
6. little star
7. warm leatherette
8. kaltes klares wasser
9. yes i do!
10. procrastinator
11. mind your own business
12. the floating pyramid over frankfurt that the taxi driver saw when he
was landing
13. euro trash girl
some of the spelling might be off because all the song titles are kinda
hand scribbled...
the album's only 43 minutes long and i really REALLY wish there was more
material since i'm addicted to these chicks.
some names you might notice on this album (including graphic design)
contributing in direct or indirect ways:
tina frank
gerhard potuznik
florian hecker
ramon bauer
ed dmx
and countless others...
and of course, the chicks themselves:
Alex Murray - Leslie (doesn't play the guitar), Kiki Moorse (sherman
filter bank) and Melissa Logan (will do anything)
bauer, hecker and potuznik help out with a lot of the production and
computers (G3)
it's a wonderfully diverse album with tweaky punk electro MEGOish hip
hop music with a trio of femal vocals. i love it. bunches.
I NEED the un - releases. please, someone.
oh yeah, also picked up the chicks on speed / dmx krew double 7"
quoted 98 lines #ifndef MYQUEUE_H
> #ifndef MYQUEUE_H
> #define MYQUEUE_H
>
> class Queue
> {
> public:
> Queue();
> ~Queue();
> void pushRear(const int&);
> int popFront();
> bool empty();
> void clear();
>
> private:
> int qSize;
> int *qPtr;
> int *rearPtr;
> int *frontPtr;
> };
> #endif
>
> Queue::Queue()
> {
> qSize = 0;
> qPtr = new int[qSize + 1];
> }
>
> Queue::~Queue()
> {
> delete [] qPtr;
> delete [] rearPtr;
> delete [] frontPtr;
> }
>
> void Queue::pushRear(const int& item)
> {
> qSize++;
>
> int i;
>
> rearPtr = new int[qSize];
>
> for(i = 0; i < qSize; i++)
> {
> rearPtr[i] = qPtr[i];
> }
>
> rearPtr[qSize - 1] = item;
>
> delete [] qPtr;
>
> qPtr = rearPtr;
>
> }
>
> int Queue::popFront()
> {
> qSize--;
>
> int i;
>
> int popped;
> popped = *qPtr;
>
> frontPtr = new int[qSize];
>
> for(i = 0; i < qSize; i++)
> {
> frontPtr[i] = qPtr[i + 1];
> }
>
> delete [] qPtr;
>
> qPtr = frontPtr;
>
> return popped;
> }
>
> bool Queue::empty()
> {
>
> if(qSize == 0)
> {
> return true;
> }
> else
> {
> return false;
> }
>
> }
>
> void Queue::clear()
> {
> qPtr = new int[1];
> qPtr[0] = 0;
> }
>
my->code
cheers,
christian
--
" kid for a day. "