RIP School Survival Forums
August 2001 - June 2017

The School Survival Forums are permanently retired. If you need help with quitting school, unsupportive parents or anything else, there is a list of resources on the Help Page.

If you want to write about your experiences in school, you can write on our blog.

To everyone who joined these forums at some point, and got discouraged by the negativity and left after a while (or even got literally scared off): I'm sorry.

I wasn't good enough at encouraging people to be kinder, and removing people who refuse to be kind. Encouraging people is hard, and removing people creates conflict, and I hate conflict... so that's why I wasn't better at it.

I was a very, very sensitive teen. The atmosphere of this forum as it is now, if it had existed in 1996, would probably have upset me far more than it would have helped.

I can handle quite a lot of negativity and even abuse now, but that isn't the point. I want to help people. I want to help the people who need it the most, and I want to help people like the 1996 version of me.

I'm still figuring out the best way to do that, but as it is now, these forums are doing more harm than good, and I can't keep running them.

Thank you to the few people who have tried to understand my point of view so far. I really, really appreciate you guys. You are beautiful people.

Everyone else: If after everything I've said so far, you still don't understand my motivations, I think it's unlikely that you will. We're just too different. Maybe someday in the future it might make sense, but until then, there's no point in arguing about it. I don't have the time or the energy for arguing anymore. I will focus my time and energy on people who support me, and those who need help.

-SoulRiser

The forums are mostly read-only and are in a maintenance/testing phase, before being permanently archived. Please use this time to get the contact details of people you'd like to keep in touch with. My contact details are here.

Please do not make a mirror copy of the forums in their current state - things will still change, and some people have requested to be able to edit or delete some of their personal info.


Post Reply 
 
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
C++
Author Message
Liquid Offline
poison - do not drink

Posts: 1,050
Joined: Aug 2007
Thanks: 0
Given 2 thank(s) in 2 post(s)
Post: #31
Re: C++

Specter Wrote:Yea, exactly. Though I never really tried to write an un-managed code or use any library except Microsoft's. xD

How are you ever going to write anything portable, or anything that'll be able to run on most people's computers for more than a few years then?

When it takes so much time to develop a program you ought to consider these things...

//

[Image: techhoops5.jpg]
12-03-2009 01:57 AM
Find all posts by this user Quote this message in a reply
Specter Offline
Pariah

Posts: 914
Joined: Aug 2007
Thanks: 0
Given 4 thank(s) in 3 post(s)
Post: #32
Re: C++

Aside from the fact that Win7 comes with .net framework 3.5 installed, I amn't planning to stick with Microsoft for too long. I am thinking about Java or C++ for my next step.

Jesus backwards sounds like 'sausage'. =D
12-03-2009 02:03 AM
Find all posts by this user Quote this message in a reply
Ceiling Cat Offline
Fanatic

Posts: 3,630
Joined: Nov 2009
Thanks: 0
Given 18 thank(s) in 15 post(s)
Post: #33
Re: C++

I suggest C++ as there's not much use for java other than small crap written only to be portable(and slow).
At least C++ is compiled, not interpreted.

Problem, officer?
Hidden stuff:
TrueAnarchist Wrote:and to think, i could be yiffing a hot vixen right about now
CrayolaColours Wrote:He just admitted today that he spent two hours...errr... shaking hands with the Bishop afterwards.
The Desert Fox Wrote:I thought when I downloaded it it was already emulated.
zagix Wrote:I'm stuck to the fagarena because I'm a fag
CrayolaColours Wrote:Woman up, will you? Grow a damn pussy and get over yourselves.
12-03-2009 02:39 AM
Find all posts by this user Quote this message in a reply
Liquid Offline
poison - do not drink

Posts: 1,050
Joined: Aug 2007
Thanks: 0
Given 2 thank(s) in 2 post(s)
Post: #34
Re: C++

Or Python.

//

[Image: techhoops5.jpg]
12-03-2009 03:21 AM
Find all posts by this user Quote this message in a reply
Ceiling Cat Offline
Fanatic

Posts: 3,630
Joined: Nov 2009
Thanks: 0
Given 18 thank(s) in 15 post(s)
Post: #35
Re: C++

It's good too but not as much supported. C++ is known since nearly 20 years, so getting a job as a programmer requires that one as a priority.

Problem, officer?
Hidden stuff:
TrueAnarchist Wrote:and to think, i could be yiffing a hot vixen right about now
CrayolaColours Wrote:He just admitted today that he spent two hours...errr... shaking hands with the Bishop afterwards.
The Desert Fox Wrote:I thought when I downloaded it it was already emulated.
zagix Wrote:I'm stuck to the fagarena because I'm a fag
CrayolaColours Wrote:Woman up, will you? Grow a damn pussy and get over yourselves.
12-03-2009 03:51 AM
Find all posts by this user Quote this message in a reply
Liquid Offline
poison - do not drink

Posts: 1,050
Joined: Aug 2007
Thanks: 0
Given 2 thank(s) in 2 post(s)
Post: #36
Re: C++

Ceiling Cat Wrote:It's good too but not as much supported. C++ is known since nearly 20 years, so getting a job as a programmer requires that one as a priority.

True.

//

[Image: techhoops5.jpg]
12-08-2009 02:27 AM
Find all posts by this user Quote this message in a reply
jamescarter Offline
Defiant

Posts: 2
Joined: Apr 2013
Thanks: 0
Given 0 thank(s) in 0 post(s)
Post: #37
C++

I have seen all the code written in C++ that provide information how to use namespace in program. The very nice code written on this post that help me or other peoples to very well know about namespace.
04-29-2013 07:08 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Alistoriv Offline
Sanity Not Included

Posts: 625
Joined: Nov 2012
Thanks: 203
Given 169 thank(s) in 114 post(s)
Post: #38
RE: C++

(09-01-2009 03:06 AM)Liquid Wrote:  
Code:
#include <iostream.h>
using namespace std;

int main ()
{
int i = 0 ;y
while ( i !=13 )
{
cout << "Infinity is good for you" << endl;
}
return 0 ;
}

Code:
/*==================================================================

@ TrueAnarchist:

Learning C++ is easy,

Start by downloading an IDE & a compiler.
Ex -------> http://www.microsoft.com/express/product/default.aspx

The tradition for C++ is to do a "Hello, World!" first, before you do anything else.
Ex -------> http://www.engin.umd.umich.edu/CIS/course.des/cis400/cpp/hworld.html

After that just look at some tutorials for awhile.
Ex -------> http://www.intap.net/~drw/cpp/
Ex -------> http://www.cplusplus.com/doc/tutorial/

Once you have a basic understanding of the flow of it, try making a Tic Tac Toe app or something, you won't know enough to finish it or make it look nice, but whenever you need to do something that you don't know, google how to do it and your programming skills will grow.

==================================================================*/

Noooooo, use Emacs!

RIP GORE GOROTH
RIP SAINTVICIOUS
(03-20-2013 05:08 PM)brainiac3397 Wrote:  Stand up with pride and say "No! I will not be a McDonalds employee. I WILL BE A GARBAGE MAN!"

[Image: USVWSwj.png]
04-30-2013 07:06 AM
Find all posts by this user Quote this message in a reply
HSHARK Offline
Revolutionary

Posts: 182
Joined: Mar 2016
Thanks: 23
Given 40 thank(s) in 29 post(s)
Post: #39
C++

I program C++. I am in my school's robotics club and we use C++ to program the robot.
03-31-2016 11:15 AM
Find all posts by this user Quote this message in a reply
no Offline
True Scotsman

Posts: 1,238
Joined: Nov 2012
Thanks: 918
Given 474 thank(s) in 299 post(s)
Post: #40
RE: C++

necromance()

Hello, traveler.

This is an ancient account I have not used in a long time. My views have changed much in the intervening months and years.

Nonetheless, I refuse to clean it up. Pretending that I've held my current views since the beginning of time is what we in the industry call a lie. Asking people to do so contributes to moralistic self-loathing. "See, those people have nothing damning! I do! I'm truly vile!"

Because you can never be a good person with a single blemish on the moral record, I thought that simply entertaining some thoughts made me irredeemable. Though I don't care for his writing style, William Faulkner presents a good counterexample. He went from being a typical Southern racist to supporting the civil rights movement. These days we'd yell at him for that, probably.

People are allowed to change their views.

Nevertheless, this period of my life has informed some of how I am today. In good ways and bad ways. To purge it would be to do a disservice to history. Perhaps it will not make anyone sympathetic, but it may help someone understand.

If, after reading all this, you still decide to use the post above as evidence that I am evil today, ask yourself if you have never disagreed with the moral code you now follow. In all likelihood you did, at some point. If some questions are verboten, and the answer is "how dare you ask that," don't expect your ideological opponents to ever change their minds.
03-31-2016 01:44 PM
Find all posts by this user Quote this message in a reply
brainiac3397 Offline
Machiavellian Amoeba

Posts: 9,823
Joined: Feb 2013
Thanks: 20
Given 1983 thank(s) in 1428 post(s)
Post: #41
C++

Eyy a robotician. I did robotics when I was in HS. Freshman and Sophmore year. After that the school administration decided it cost too much and parents weren't interested in funding us(not that the parents didn't have the cash. We had a decent number of middle class students.)

Good times though. Helluva lot of fun. It was the FIRST FRC competition or whatever. AFAIK my HS is now doing the smaller bots(which is, while probably educational, not as prestigious as the full blown large-size 100lb+ robobitc machines)

Personality DNA Report
(06-14-2013 08:02 AM)Potato Wrote:  watch the fuq out, we've got an "intellectual" over here.

Hidden stuff:
[Image: watch-out-we-got-a-badass-over-here-meme-240x180.png]
Brainiac3397's Mental Health Status Log Wrote:[Image: l0Iy5HKskJO5XD3Wg.gif]
03-31-2016 01:51 PM
Find all posts by this user Quote this message in a reply
Lucas Gallindo Offline
Rebel

Posts: 47
Joined: Jan 2016
Thanks: 17
Given 12 thank(s) in 7 post(s)
Post: #42
C++

Code:
#include <stdio.h>
void main(){
    printf("What kind of topic is this? What are we going to talk about?! Programming?");
}

GallindãoBiggergrin
Learn is cool, but not in a school!
08-10-2016 08:47 AM
Find all posts by this user Quote this message in a reply
UnicornLionWolf Offline
Revolutionary

Posts: 138
Joined: Jun 2016
Thanks: 72
Given 49 thank(s) in 35 post(s)
Post: #43
C++

#include <iostream>

int main(){
cout << "It\'s interesting to see we\'ve a fair number of people with programming background.";

return 0;
}

UnicornLionWolf
GoogleNospamdogeBanana
08-10-2016 03:43 PM
Find all posts by this user Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)

Contact Us | School Survival | Return to Top | Return to Content | Mobile Version | RSS Syndication