forum

ITT 2: We post shit that is neither funny nor interesting

posted
Total Posts
56,165
show more
SaigonAlice
“Anti-sjws” aren’t afraid of sjws (if anything, sjws are a source of psychological interest and admitted amusement), yet sjws seem to be entirely terrified of anyone that disagrees with them, especially if those people come armed with facts and science.

It’s rather like how the dog that tipped over the garbage can is the one with its tail between its legs that runs and hides when the owner arrives home from work. They’re only afraid and aggressively lashing out at others because they know that their behavior is unacceptable.

Those who are rational and honest have nothing to hide, and nothing to fear.

EneT wrote:

I would of preferred Ippe.
You.
Bweh

EneT wrote:

I would of preferred Ippe.
I considered that but then I remembered he's silenced half of the time.

SaigonAlice wrote:

“Anti-sjws” aren’t afraid of sjws (if anything, sjws are a source of psychological interest and admitted amusement), yet sjws seem to be entirely terrified of anyone that disagrees with them, especially if those people come armed with facts and science.

It’s rather like how the dog that tipped over the garbage can is the one with its tail between its legs that runs and hides when the owner arrives home from work. They’re only afraid and aggressively lashing out at others because they know that their behavior is unacceptable.

Those who are rational and honest have nothing to hide, and nothing to fear.

EneT wrote:

I would of preferred Ippe.
You.
Should you allow it, if what you stand by is good, sound, and true, it will defend you. Or something like that.
EneT

SaigonAlice wrote:

“Anti-sjws” aren’t afraid of sjws (if anything, sjws are a source of psychological interest and admitted amusement), yet sjws seem to be entirely terrified of anyone that disagrees with them, especially if those people come armed with facts and science.

It’s rather like how the dog that tipped over the garbage can is the one with its tail between its legs that runs and hides when the owner arrives home from work. They’re only afraid and aggressively lashing out at others because they know that their behavior is unacceptable.

Those who are rational and honest have nothing to hide, and nothing to fear.

EneT wrote:

I would of preferred Ippe.
You.
Where you have you been?
SaigonAlice
I didn't actually write that :)

I had school. :(
kirueggy
Here's hoping Brian notices my avatar of Honoka as Umaru-chan
Yuudachi-kun

SaigonAlice wrote:

“Anti-sjws” aren’t afraid of sjws (if anything, sjws are a source of psychological interest and admitted amusement), yet sjws seem to be entirely terrified of anyone that disagrees with them, especially if those people come armed with facts and science.

It’s rather like how the dog that tipped over the garbage can is the one with its tail between its legs that runs and hides when the owner arrives home from work. They’re only afraid and aggressively lashing out at others because they know that their behavior is unacceptable.

Those who are rational and honest have nothing to hide, and nothing to fear.

EneT wrote:

I would of preferred Ippe.
You.

Go back to whatever hole you crawled out of.
SaigonAlice

Khelly wrote:


Go back to whatever hole you crawled out of.
the fuck you still use that fucking pink font like a 9 year old???
Yuudachi-kun

Khelly wrote:


Go back to whatever hole you crawled out of.
SaigonAlice

SaigonAlice wrote:

the fuck you still use that fucking pink font like a 9 year old???
Yuudachi-kun

Khelly wrote:

Khelly wrote:


Go back to whatever hole you crawled out of.
SaigonAlice
Good lord you're boring
Bweh
Yuudachi-kun

SaigonAlice wrote:

Good lord you're boring
Shoo

kirueggy
Someone please revise my java code or whatever

big ass java code
* Write a description of class DeathAndTaxes here.
*
* @author (Enrico Saturnino)
* @version (2015)
*/

import java.util.*;
import java.lang.Math;

public class DeathAndTaxes
{
public static void main(String[] args)
{
Scanner keyboard = new Scanner(System.in);

char status;
int income = 0;

//Starting point values
double Serf = 0;
double Peasant = 922.50;
double Commoner = 5156.2;
double Noble = 18481.21;
double YeahNowWereGettingSomewhere = 46075.25;
double HotDamn = 119401.25;
double ThatCheddarTho = 119996.25;

//Starting point values
double MarriedSerf = 0;
double MarriedPeasant = 1845;
double MarriedCommoner = 10312.50;
double MarriedNoble = 29387.50;
double MarriedYeahNowWereGettingSomewhere = 51577.50;
double MarriedHotDamn = 111324;
double MarriedThatCheddarTho = 129996.5;

//percentage taxed values
double GetTaxedPleb = .10;
double GetTaxedNoob = .15;
double GetTaxedNormie = .25;
double GetTaxedYo = .28;
double GetTaxedKindaRichGuy = .33;
double IveRunOutOfNames = .35;
double LolThisIsGonnaEndUpYoursAgainAnyway = .396;

//wealth boundaries
double InstantNoodles= 9225;
double Sandwich= 37450;
double Steak= 90750;
double Lobster= 189300;
double Caviar= 411500;
double TigerGenitals= 413200;

//Married wealth boundaries
double MarriedInstantNoodles= 18450;
double MarriedSandwich= 74900;
double MarriedSteak= 151200;
double MarriedLobster= 230450;
double MarriedCaviar= 411500;
double MarriedTigerGenitals= 464580;

//ultimate tax income
double Poverty = 0;
double PrettyPoor = 0;
double Moderate = 0;
double Affluent = 0;
double Rich = 0;
double RichAf = 0;
double DamnSon = 0;

//ultimate tax income
double MarriedPoverty = 0;
double MarriedPrettyPoor = 0;
double MarriedModerate = 0;
double MarriedAffluent = 0;
double MarriedRich = 0;
double MarriedRichAf = 0;
double MarriedDamnSon = 0;

System.out.print("Are you married?(Y/N) ");
status = keyboard.next().charAt(0);

if (status == 'N' )
{
System.out.println("[Single]What is your taxable income?");
income = keyboard.nextInt();
Poverty = (income * GetTaxedPleb);
PrettyPoor = ((income * GetTaxedNoob) + Peasant);
Moderate = ((income * GetTaxedNormie) + Commoner);
Affluent = ((income * GetTaxedYo) + Noble);
Rich = ((income * GetTaxedKindaRichGuy) + YeahNowWereGettingSomewhere);
RichAf = ((income * IveRunOutOfNames) + HotDamn);
DamnSon = ((income * LolThisIsGonnaEndUpYoursAgainAnyway) + ThatCheddarTho);
}

else if (status == 'Y' )
{
System.out.println("[Married]What is your taxable income?");
income = keyboard.nextInt();
MarriedPoverty = (income * GetTaxedPleb);
MarriedPrettyPoor = ((income * GetTaxedNoob) + MarriedPeasant);
MarriedModerate = ((income * GetTaxedNormie) + MarriedCommoner);
MarriedAffluent = ((income * GetTaxedYo) + MarriedNoble);
MarriedRich = ((income * GetTaxedKindaRichGuy) + MarriedYeahNowWereGettingSomewhere);
MarriedRichAf = ((income * IveRunOutOfNames) + MarriedHotDamn);
MarriedDamnSon = ((income * LolThisIsGonnaEndUpYoursAgainAnyway) + MarriedThatCheddarTho);
}
else
{
System.out.println("Sorry, that's not an acceptable input. Please try again!");
}

if (status == 'N' && income <= InstantNoodles && income >= 1)
{
System.out.println("Taxes due: $ " + Poverty);
}

if (status == 'N' && income <= Sandwich && income >= InstantNoodles)
{
System.out.println("Taxes due: $ " + PrettyPoor);
}

if (status == 'N' && income <= Steak && income >= Sandwich)
{
System.out.println("Taxes due: $ " + Moderate);
}

if (status == 'N' && income <= Lobster && income >= Steak)
{
System.out.println("Taxes due: $ " + Affluent);
}

if (status == 'N' && income <= Caviar && income >= Lobster)
{
System.out.println("Taxes due: $ " + Rich);
}

if (status == 'N' && income <= TigerGenitals && income >= Caviar)
{
System.out.println("Taxes due: $ " + RichAf);
}

if (status == 'N' && income >= TigerGenitals)
{
System.out.println("Taxes due: $ " + DamnSon);
}

if (status == 'Y' && income <= MarriedInstantNoodles && income >= 1)
{
System.out.println("Taxes due: $ " + MarriedPoverty);
}

if (status == 'Y' && income <= MarriedSandwich && income >= MarriedInstantNoodles)
{
System.out.println("Taxes due: $ " + MarriedPrettyPoor);
}

if (status == 'Y' && income <= MarriedSteak && income >= MarriedSandwich)
{
System.out.println("Taxes due: $ " + MarriedModerate);
}

if (status == 'Y' && income <= MarriedLobster && income >= MarriedSteak)
{
System.out.println("Taxes due: $ " + MarriedAffluent);
}

if (status == 'Y' && income <= MarriedCaviar && income >= MarriedLobster)
{
System.out.println("Taxes due: $ " + MarriedRich);
}

if (status == 'Y' && income <= MarriedTigerGenitals && income >= MarriedCaviar)
{
System.out.println("Taxes due: $ " + MarriedRichAf);
}

if (status == 'Y' && income >= MarriedTigerGenitals)
{
System.out.println("Taxes due: $" + MarriedDamnSon);
}
}
}
Green Platinum

Khelly wrote:

SaigonAlice wrote:

Good lord you're boring
Shoo

I like how the whole thing is a Black Mirror reference. Whether intentional or not.
AutoMedic
So if there's anything that my local church thought me something that actually had a significance in my life, it's probably about trying to rebuild something that is broken
Zelda
Goddamn, Hunger Games was disappointing. Battle Royale is a better movie and book by far.
IppE

kirueggy wrote:

Someone please revise my java code or whatever

big ass java code
* Write a description of class DeathAndTaxes here.
*
* @author (Enrico Saturnino)
* @version (2015)
*/

import java.util.*;
import java.lang.Math;

public class DeathAndTaxes
{
public static void main(String[] args)
{
Scanner keyboard = new Scanner(System.in);

char status;
int income = 0;

//Starting point values
double Serf = 0;
double Peasant = 922.50;
double Commoner = 5156.2;
double Noble = 18481.21;
double YeahNowWereGettingSomewhere = 46075.25;
double HotDamn = 119401.25;
double ThatCheddarTho = 119996.25;

//Starting point values
double MarriedSerf = 0;
double MarriedPeasant = 1845;
double MarriedCommoner = 10312.50;
double MarriedNoble = 29387.50;
double MarriedYeahNowWereGettingSomewhere = 51577.50;
double MarriedHotDamn = 111324;
double MarriedThatCheddarTho = 129996.5;

//percentage taxed values
double GetTaxedPleb = .10;
double GetTaxedNoob = .15;
double GetTaxedNormie = .25;
double GetTaxedYo = .28;
double GetTaxedKindaRichGuy = .33;
double IveRunOutOfNames = .35;
double LolThisIsGonnaEndUpYoursAgainAnyway = .396;

//wealth boundaries
double InstantNoodles= 9225;
double Sandwich= 37450;
double Steak= 90750;
double Lobster= 189300;
double Caviar= 411500;
double TigerGenitals= 413200;

//Married wealth boundaries
double MarriedInstantNoodles= 18450;
double MarriedSandwich= 74900;
double MarriedSteak= 151200;
double MarriedLobster= 230450;
double MarriedCaviar= 411500;
double MarriedTigerGenitals= 464580;

//ultimate tax income
double Poverty = 0;
double PrettyPoor = 0;
double Moderate = 0;
double Affluent = 0;
double Rich = 0;
double RichAf = 0;
double DamnSon = 0;

//ultimate tax income
double MarriedPoverty = 0;
double MarriedPrettyPoor = 0;
double MarriedModerate = 0;
double MarriedAffluent = 0;
double MarriedRich = 0;
double MarriedRichAf = 0;
double MarriedDamnSon = 0;

System.out.print("Are you married?(Y/N) ");
status = keyboard.next().charAt(0);

if (status == 'N' )
{
System.out.println("[Single]What is your taxable income?");
income = keyboard.nextInt();
Poverty = (income * GetTaxedPleb);
PrettyPoor = ((income * GetTaxedNoob) + Peasant);
Moderate = ((income * GetTaxedNormie) + Commoner);
Affluent = ((income * GetTaxedYo) + Noble);
Rich = ((income * GetTaxedKindaRichGuy) + YeahNowWereGettingSomewhere);
RichAf = ((income * IveRunOutOfNames) + HotDamn);
DamnSon = ((income * LolThisIsGonnaEndUpYoursAgainAnyway) + ThatCheddarTho);
}

else if (status == 'Y' )
{
System.out.println("[Married]What is your taxable income?");
income = keyboard.nextInt();
MarriedPoverty = (income * GetTaxedPleb);
MarriedPrettyPoor = ((income * GetTaxedNoob) + MarriedPeasant);
MarriedModerate = ((income * GetTaxedNormie) + MarriedCommoner);
MarriedAffluent = ((income * GetTaxedYo) + MarriedNoble);
MarriedRich = ((income * GetTaxedKindaRichGuy) + MarriedYeahNowWereGettingSomewhere);
MarriedRichAf = ((income * IveRunOutOfNames) + MarriedHotDamn);
MarriedDamnSon = ((income * LolThisIsGonnaEndUpYoursAgainAnyway) + MarriedThatCheddarTho);
}
else
{
System.out.println("Sorry, that's not an acceptable input. Please try again!");
}

if (status == 'N' && income <= InstantNoodles && income >= 1)
{
System.out.println("Taxes due: $ " + Poverty);
}

if (status == 'N' && income <= Sandwich && income >= InstantNoodles)
{
System.out.println("Taxes due: $ " + PrettyPoor);
}

if (status == 'N' && income <= Steak && income >= Sandwich)
{
System.out.println("Taxes due: $ " + Moderate);
}

if (status == 'N' && income <= Lobster && income >= Steak)
{
System.out.println("Taxes due: $ " + Affluent);
}

if (status == 'N' && income <= Caviar && income >= Lobster)
{
System.out.println("Taxes due: $ " + Rich);
}

if (status == 'N' && income <= TigerGenitals && income >= Caviar)
{
System.out.println("Taxes due: $ " + RichAf);
}

if (status == 'N' && income >= TigerGenitals)
{
System.out.println("Taxes due: $ " + DamnSon);
}

if (status == 'Y' && income <= MarriedInstantNoodles && income >= 1)
{
System.out.println("Taxes due: $ " + MarriedPoverty);
}

if (status == 'Y' && income <= MarriedSandwich && income >= MarriedInstantNoodles)
{
System.out.println("Taxes due: $ " + MarriedPrettyPoor);
}

if (status == 'Y' && income <= MarriedSteak && income >= MarriedSandwich)
{
System.out.println("Taxes due: $ " + MarriedModerate);
}

if (status == 'Y' && income <= MarriedLobster && income >= MarriedSteak)
{
System.out.println("Taxes due: $ " + MarriedAffluent);
}

if (status == 'Y' && income <= MarriedCaviar && income >= MarriedLobster)
{
System.out.println("Taxes due: $ " + MarriedRich);
}

if (status == 'Y' && income <= MarriedTigerGenitals && income >= MarriedCaviar)
{
System.out.println("Taxes due: $ " + MarriedRichAf);
}

if (status == 'Y' && income >= MarriedTigerGenitals)
{
System.out.println("Taxes due: $" + MarriedDamnSon);
}
}
}
Your variable names are memes and do you really need to have them as doubles.

also >java
SaigonAlice

Brian OA wrote:

We just gonna ignore this cute anime girl? Ok... RIP Brian OA's relevance

Zelda wrote:

Goddamn, Hunger Games was disappointing. Battle Royale is a better movie and book by far.
According to you and thousands of other older men on the internet

Green Platinum wrote:

Third Hunger Games book was super boring I can't imagine how the film adaption went
They split it into two parts, just like with deathly hallows. What a fucking money squeeze.
Green Platinum
Third Hunger Games book was super boring I can't imagine how the film adaption went
NotEvenDoomMusic

SaigonAlice wrote:

Zelda

SaigonAlice wrote:

Zelda wrote:

Goddamn, Hunger Games was disappointing. Battle Royale is a better movie and book by far.
According to you and thousands of other older men on the internet
But I'm not an old man :(
Mercurial
Defqon 1 in South America.

YIIIIIIIIIIIIIIIIIIIIISSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS
Trash Boat

SaigonAlice wrote:

I didn't actually write that :)

I had school. :(
where have you been? besides school
IppE
Antlia-

Brian OA wrote:

I have spoken

You may direct all of your complaints at your nearest brick wall now.
your the nearest brick wall
IppE
his brick wall?
Antlia-

IppE wrote:

his brick wall?
no he is the brick wall
Railey2

ahsoka08 wrote:

IppE wrote:

his brick wall?
no he is the brick wall
no I think its his brick wall, what are you talking about
-sev
whose brick wall?
Antlia-

Railey2 wrote:

ahsoka08 wrote:

no he is the brick wall
no I think its his brick wall, what are you talking about
he is the brick that stands in my way to post the shit I want, I'm trying to figure out how to blow it up
Green Platinum
He obviously means we are all a brick wall.

SaigonAlice
it really shows how unfunny offtopic is when everyone is shitting themselves about a fucking brick wall

literally euthanize offtopic
kirueggy

SaigonAlice wrote:

literally euthanize offtopic
or we could euthanize ur bitch ass for shitposting
dkun
god bless
Railey2

SaigonAlice wrote:

it really shows how unfunny offtopic is when everyone is shitting themselves about a fucking brick wall

literally euthanize offtopic
Half of us were shitting ourselves about a pronoun, but the people that never caught on shat themselves about brick walls.
Then theres you who shits himself about people that shit themselves about brickwalls. I wonder where that puts you in the shitting-hierarchy, but I dare to say that meta doesn't always mean that you're high up. Like, theres the people that complained about the bush-administration, and then theres the people that complained about the people that complained about the bush-administration..
dkun
where's the fire

y'all need some jesus
Yuudachi-kun

kirueggy wrote:

SaigonAlice wrote:

literally euthanize offtopic
or we could euthanize ur bitch ass for shitposting
Mercurial
Why not both.
Trash Boat
That's enough!
show more
Please sign in to reply.

New reply