Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Scipi

Pages: 1 ... 65 66 [67] 68 69 ... 139
991
Quote
Also it will be incredibly hard for a 68K program to compete against a TI-Nspire program:

That's true. I threw it in there when I realized I forgot about 89 developers.

Quote
HOMER-16 have you PMed a manager (Qwerty.55, Netham45, Deep Thought, Geekboy1011, Eeems and/or shmibs) to apply for CoT by the way? You said you wanted to join the team recently.

I haven't yet, actually. Paranoid that I haven't been active enough recently to join. :P Though I lurk around plenty... <.< Doesn't hurt to try though. :P

992
I had an idea earlier. So I might as well propose it.

What if, instead of one large contest every year, we had three smaller contests running so that there is always one going. We could set up like so:

1. Ti 83/84 Contest
2. Casio/Ti Nspire/64K (I think it's 64k, right? :s)
3. Computer

None necessarily need have physical prizes. I think it would contribute towards some really nice programs and games being developed though. :D

Although it might be a bit of work to set it up <.<

993
Computer Programming / Re: will a list work for this
« on: April 25, 2012, 01:24:45 pm »
Code: [Select]
list<Player> p;

//Fill p with Players

for (int i = 0; i < p.size(); i++)
{
        cout << p[i].name;
}

//Or

for (auto i = p.begin(); i < p.end(); i++)//Auto just makes declaration SO much easier
{
        cout << *i.name;
}

//Without Auto

for (list<Player>::iterator i = p.begin(); i < p.end(); i++)
{
        cout << *i.name;
}

994
Computer Programming / Re: will a list work for this
« on: April 25, 2012, 09:32:28 am »
A regular iterator doesn't need a compiler option, the keyword auto needs the 0x11 standard though.

For MinGW:
Code: [Select]
-std=c++0x11

995
Computer Programming / Re: will a list work for this
« on: April 25, 2012, 08:31:11 am »
Since the server crash deleted my response, if you need me to I can repost my answer if you need to refer to it. ;)

996
TI Z80 / Re: Axe Emulator
« on: April 19, 2012, 11:25:53 pm »
Axe is finally coming to the computer! :D

I've been waiting for this. Now I might actually achieve learning it, lol :P

997
I like the idea of branching out to computer programming. It gives the site wider appeal. :D

I also think a lot of members overlook some of the projects going on there.

I'm with saintrunner, in that I have not left. I just lurk a lot. :P
Most of the reason I'm not that active though, is because I'm not too invested in calc programming and I usually don't have much to say in calc based threads. Although I usually post in computer development based threads, like C++ questions and such. So for that reason I'd also like to see increased emphasis on computer programming. ;D

998
Site Feedback and Questions / Re: Disappearing content
« on: April 18, 2012, 08:58:26 pm »
I guess we could test to see if that is the issue.

Test:

http://ourl.ca/15877

Quote
http://ourl.ca/15877

999
Miscellaneous / Re: What is your avatar?
« on: April 18, 2012, 09:55:20 am »
My knex ball machine catastropha - destroyed :D

D: You gonna build something else then? :P

1000
Miscellaneous / Re: Poetry
« on: April 16, 2012, 12:50:44 am »
Shambling aimlessly
Along the Treasured Path
Dreams of riches
Lay beyond my grasp

A road to happiness
This beautiful Treasured Path
The happiness is fleeting
With ones last gasp

Twisting and turning
This endless Treasured Path
The end is hopeless
I succumb to my wrath

A road to ruin
This vile Treasured Path
I fall to my knees
I feel its rasp

Alone and forgotten
This lonely Treasured Path
A light in the distance
My eyes grasp

I shamble aimlessly
Along the Treasured Path

Alternate:

Shambling aimlessly
Along the Treasured Path

A road to happiness
This beautiful Treasured Path

A road to eternity
This endless Treasured Path

A road to uncertainty
This simple Treasured Path

A road to lies
This deceitful Treasured Path

A road to hate
This vile Treasured Path

A road to ruin
This evil Treasured Path

A road for fools
This awful Treasured Path

A road to nowhere
This desolate Treasured Path

A road to nothing
This lonely Treasured Path

A road to death
This treasured, Treasured Path

1001
Humour and Jokes / Re: scary picture
« on: April 14, 2012, 05:49:40 pm »
I kinda figured it was two people touching hands, dressed similarly, not a mirror. :P

1002
Humour and Jokes / Re: scary picture
« on: April 14, 2012, 04:54:06 am »
You don't really need photoshop. Just a third person below out of sight taking the shot seemingly from the perspective of one of the other two persons.

1003
Miscellaneous / Re: Hobbies
« on: April 12, 2012, 09:51:12 pm »
Hmm. I like leading my Xbox Live clan, called Epsilon Eridani (EE) (If, you've seen us on Halo, hi) :P
I love videogames.

I also like to read, sometimes write.

Else, I just do whatever... :P I wanna get into Warhammer though. XD

1004
News / Re: DDoS attack leads to 16 hours of Omnimaga downtime
« on: April 12, 2012, 07:53:09 pm »
Something odd, why is it that when I hover over specific avatars, I get some weird ad thing?

http://dl.dropbox.com/u/10573921/Weird.png

Btw, I figured out what this was. It was a "Read Later" extension I had installed. Odd how that suddenly incorporated the image ad thing :s

1005
News / Re: DDoS attack leads to 16 hours of Omnimaga downtime
« on: April 11, 2012, 03:20:03 pm »
That'd be funny to see, but some Zombie computers are actual PC's that people don't realize sometimes they have such a virus. :/

It could be destroying private property of individuals who have no involvement, unfortunately. :P

Pages: 1 ... 65 66 [67] 68 69 ... 139