Shit That Gets You Mad v25 Too tired to be bored and too bored to be tired
5,002 replies, posted
Your welcome (triggered)
[QUOTE=gk99;51438890]I fucking hate when anything totally defenseless like a dog or child is killed in a movie or something.
Christian Bale in American Psycho [sp]murders a dude in an alley[/sp], they break into Keanu Reeves' [sp]house and beat him up[/sp] in John Wick.
I've got a perfectly fine reason to know that they're bad people, you don't need to kill the dog in either of these scenes :cry:[/QUOTE]
I'm kinda late on the reply. But after scenes like that seeing Jonh Wick just style on this people later on the movie makes it even more satisfying.
It only goes to show that what goes around also comes around. These people that kill dogs and children for "fun" get what comes to them eventually.
Jesus christ my feet are in agony, I wish I didn't have to spend so much time on my feet in the lab.
in another note welcome back to another episode of: Please End my fucking life.
Today's episode: I stayed up all night doing college work and I just want to fucking die right now.
Started playing Dragon Age: Inquisition. I like it, but no matter how much fun I have with this, I probably still won't be able to play Origins because the controls aren't something I can live with.
[editline]a[/editline]
[QUOTE=SoftHearted;51443718]I'm kinda late on the reply. But after scenes like that seeing Jonh Wick just style on this people later on the movie makes it even more satisfying.
It only goes to show that what goes around also comes around. These people that kill dogs and children for "fun" get what comes to them eventually.[/QUOTE]
Dog's still dead. No matter how many of their people you kill he [sp]won't get his late wife's last gift to him back.[/sp]
It's still unsatisfying to me imo
Dropkick Murphys are coming to my country in January but don't have money for a ticket.
FUUUUUUUUUCK!
There's been far too many youtubers that I used to like either stop making content altogether for various reasons or have slowly but surely become mostly about shoveling out as much low quality content as possible. That or they move entirely to streaming and I just cannot be asked to sit though several hours of unedited content.
I want to play games, but also don't.
[B][I]MAKE UP YOUR DAMN MIND ALREADY, BRAIN.[/I][/B]
I just hit my head in the same bus tv twice. Fool me once...
Slipped and fell on black ice this morning
Yay :frown:
Brother shitting on me again.
When i returned to my home,unlike daily activity,i played some games on ipad,then fell asleep.
Then i go to my room like usual to play laptop when i was already woke up.
JUST when i press the power button,he already shout again to me,i replied that i just pressed the power button.
Then he point out my ipad,while threatening me that he is going to "break my fucking ipad and laptop to oblivion"+he disable the wifi for 3 hours.
ENOUGH GOD FUCKING DAMNIT!!!!
LISTEN HERE YOU MOTHERFUCKER,ITS NOT MY FAULT THAT THE INTERNET IS LAGGING BECAUSE YOU ALWAYS JOINED EVERY SINGLE FUCKING DUNGEON RAID PARTY WITH YOUR FUCKING GRAPHIC SETTING AT MAX,NOT TO MENTION YOU DO THIS FUCKING SHIT NON-STOP!
I really fucking angry because i can't do anything to stop it,since he is a fucking selfish stubborn minded thug.
Hell i even fucking bet that he will do anything to get all of the speed for himself
I was having trouble with this for some ungodly reason.
[code] for (int i = 0; i < cards.size() - 1; i++)
{
cards[i].toString() << endl;
}
[/code]
It just wouldn't print and I couldn't figure it out.
[sp]it was missing cout << [/sp]
When I realized that was why it wasn't working and I rewrote the toString function three different ways, I felt dumb.
[QUOTE=FlakTheMighty;51445054]
[code]
for (int i = 0; i < cards.size() - 1; i++)
{
cards[i].toString() << endl;
}
[/code][/QUOTE]
This brace style annoys me
Also, there's a guy in my class that does it like this
[code]
for (int i = 0; i < cards.size() - 1; i++)
{
cards[i].toString() << endl;
}
[/code]
which is even more annoying to look at
[QUOTE=gokiyono;51445073]This brace style annoys me[/QUOTE]
Personally I find it easier to read at a glance than having opening braces at the end of the previous line like so many people seem to be taught is the 'correct' way.
[QUOTE=gokiyono;51445073]This brace style annoys me
Also, there's a guy in my class that does it like this
[code]
for (int i = 0; i < cards.size() - 1; i++)
{
cards[i].toString() << endl;
}
[/code]
which is even more annoying to look at[/QUOTE]
It's much easier to find where the matching brace is than
[code]
for (int i = 0; i < cards.size() - 1; i++){
cards[i].toString() << endl;
}[/code]
[QUOTE=PsiSoldier;51445089]Personally I find it easier to read at a glance than having opening braces at the end of the previous line like so many people seem to be taught is the 'correct' way.[/QUOTE]
That's how I feel with braces at the same line. And if you look in most text books, it's always newline braces that are shown. (Unless it's something with Javascript, it seems)
[editline]29th November 2016[/editline]
[QUOTE=FlakTheMighty;51445099]It's much easier to find where the matching brace is than
[code]
for (int i = 0; i < cards.size() - 1; i++) {
cards[i].toString() << endl;
}[/code][/QUOTE]
It's not really that much different considering you would just have to look at the last letter in the line
At least it's not this
[code]
for (int i = 0; i < cards.size() - 1; i++)
{
cards[i].toString() << endl;
}[/code]
I've actually seen this and it's terrifying.
[QUOTE=FlakTheMighty;51445121]At least it's not this
[code]
for (int i = 0; i < cards.size() - 1; i++)
{
cards[i].toString() << endl;
}[/code]
I've actually seen this and it's terrifying.[/QUOTE]
Or this:
[t]https://f.lewd.se/gFkmBH_horror.jpg[/t]
:v:
[QUOTE=gokiyono;51445111]
It's not really that much different considering you would just have to look at the last letter in the line[/QUOTE]
When you start nesting is when it gets bad.
[code]
bool operator == (IndexCard &rhs)
{
bool result = false;
if (this->getSubject() == rhs.getSubject())
{
if (this->getQuestion() == rhs.getQuestion())
{
if (this->getAnswer() == rhs.getAnswer())
{
result = true;
}
}
}
return result;
}[/code]
[code]bool operator == (IndexCard &rhs){
bool result = false;
if (this->getSubject() == rhs.getSubject()){
if (this->getQuestion() == rhs.getQuestion()){
if (this->getAnswer() == rhs.getAnswer()){
result = true;
}
}
}
return result;
}[/code]
[QUOTE=gokiyono;51445111]That's how I feel with braces at the same line. And if you look in most text books, it's always newline braces that are shown. (Unless it's something with Javascript, it seems)[/QUOTE]
If by 'most text books' you mean Java text books :v
Yeah newline braces are pretty much the standard for any C family language.
[QUOTE=FlakTheMighty;51445132]When you start nesting is when it gets bad.
[code]bool operator == (IndexCard &rhs) {
bool result = false;
if (this->getSubject() == rhs.getSubject()) {
if (this->getQuestion() == rhs.getQuestion()) {
if (this->getAnswer() == rhs.getAnswer()) {
result = true;
}
}
}
return result;
}[/code][/QUOTE]
That isn't really bad though. If anything is bad about that, it's the if nesting
[QUOTE=PsiSoldier;51445144]If by 'most text books' you mean Java text books :v[/QUOTE]
Also C#, C++ and PHP books
[QUOTE=gokiyono;51445179]That isn't really bad though. If anything is bad about that, it's the if nesting
Also C#, C++ and PHP books[/QUOTE]
It was an example of nesting so people that can't code can follow along with our discussion. I wasn't worried about it being efficient, besides the compiler takes care of that.
If you want a real example of nesting, I'll post one when I'm off work.
[url=https://msdn.microsoft.com/en-us/library/ff926074.aspx#Layout%20Conventions]C# conventions[/url] (newline)
C++'s braces depend on who is coding, the standard actually costs money to view so most people make their own, but even looking at Github repos a majority are newline braces.
[url=http://www.php-fig.org/psr/psr-2/]PHP conventions[/url] (newline)
[URL="http://www.oracle.com/technetwork/java/javase/documentation/codeconventions-141270.html#381"]Java doesn't actually have a standard for where braces go, but in all official Oracle documentation it's on the same line[/URL]
[QUOTE=FlakTheMighty;51445256]It was an example of nesting so people that can't code can follow along with our discussion. I wasn't worried about it being efficient, besides the compiler takes care of that.
If you want a real example of nesting, I'll post one when I'm off work.[/QUOTE]
Debating it doesn't really seem to be of much use anyway, since what I'm used to is different than what you're used to. It's like trying to argue which of hard or soft sci-fi is better. Doesn't really do much.
Also, you don't really have to give me a "real" example of nesting :v:
[editline]aaa[/editline]
[t]https://f.lewd.se/0756u3_2016-11-2918-30-09.png[/t]
This face bothers me so much :v:
Great,now my left shoulder button on PSP broke down.
I have to adjust it when it start acting up
I want so very much to like The Evil Within but it's post-processing and poor lighting choices galore, the story is totally incoherent, the voice acting is pretty bad in some places, and the framerate is terrible in places. It's like it constantly is trying to make me hate it
I have food poisoning. First time ever too. This is so miserable, I can't even sleep.
I've gotten flu in the week where I have the most modules. Which sucks for my attendance
[QUOTE=gk99;51445690]I want so very much to like The Evil Within but it's post-processing and poor lighting choices galore, the story is totally incoherent, the voice acting is pretty bad in some places, and the framerate is terrible in places. It's like it constantly is trying to make me hate it[/QUOTE]
I couldn't get over how an experienced detective has zero fighting experience and throws punches like a fucking pansy.
Also how just in general after the "intro" bit its far far far less appealing.
Someone called and shut off our power. So much for thanksgiving leftovers.
Sorry, you need to Log In to post a reply to this thread.