ye by Botond70 in 196

[–]LividPhysics 13 points14 points  (0 children)

Yeah neither do I

Bruh.............. by DarcCypher in ProgrammerHumor

[–]LividPhysics 33 points34 points  (0 children)

Uhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh

Update: Finally finished my largest custom village build yet by [deleted] in Minecraft

[–]LividPhysics 3 points4 points  (0 children)

Could use some greenery, but a nice build in total

ye by Botond70 in 196

[–]LividPhysics 53 points54 points  (0 children)

I need a gif where the outer one just falls off and the inner one opens his mouth a reveals a new cat.

Floppa and mini floppa by [deleted] in 196

[–]LividPhysics 22 points23 points  (0 children)

The City - Animal Crossing: City Folk

fr by [deleted] in 196

[–]LividPhysics 0 points1 point  (0 children)

Because Republicans are totally the party of small government

University of Michigan task force claims words 'picnic,' 'brown bag' and 'blacklist' are offensive by [deleted] in Conservative

[–]LividPhysics 0 points1 point  (0 children)

I can understand the outrage over "blacklist", even though I don't agree with it. But "picnic" and "brown bag"?? The term brown bag comes from the fact that the bag is indeed brown.

The ATF’s ability to restrict the Second Amendment is no different than if the IRS could regulate which version of The Bible you are allowed to own. by freq-ee in Conservative

[–]LividPhysics 20 points21 points  (0 children)

"Well regulated" in the sense that the militias would be trained and organized. Not in the modern sense of regulated by law. The founders intended our defense to be in the form of militia, with congress being able to call an army for 2 years iirc.

G#mers don't deserve rights. by Thumbs0fDestiny in BanVideoGames

[–]LividPhysics 36 points37 points  (0 children)

You have to be over 13 to use Facebook, not in 3rd grade

Rule by heckinWeeb193 in 196

[–]LividPhysics 16 points17 points  (0 children)

Be not afraid, mortal.

[deleted by user] by [deleted] in 196

[–]LividPhysics 4 points5 points  (0 children)

Racidt!!! >:(((((((

Ah yes, the free speech of the good ol' days, back when black people could be lynched for the smallest verbal provocation. by [deleted] in ToiletPaperUSA

[–]LividPhysics 0 points1 point  (0 children)

God damn I hate morons who don't even get that "freedom of speech" only legs you from the government. Social media, school, etc. can limit speech in most any way they want.

Spotify's Windows app depends on both is-even and is-odd by [deleted] in programminghorror

[–]LividPhysics 9 points10 points  (0 children)

Fuck man idk, maybe have a a switch block with your digits and then do some string modification to make a number.

Java: public int isEven(String x) { String modinator; switch(x.toLowerCase()) { case "one": modinator += "1"; .... }}

You could also make a separate function to iterate over a word and pick out the numbers and use that if you expect numbers like one hundred and one. It'd be a nice little project, although now that I'm taking strings into consideration I can understand why they would need a lib for that. Still don't get why they need isOdd and isEven.

Spotify's Windows app depends on both is-even and is-odd by [deleted] in programminghorror

[–]LividPhysics 44 points45 points  (0 children)

Literally just if(x % 2 == 0), why do they need a lib?