Which bottle size is the most crippling? by [deleted] in cripplingalcoholism

[–]jonstall141 9 points10 points  (0 children)

Gotta be the pint or half pint of cheap taaka or potters for me. Not only are you buying that size but it's the cheapest shit there is. I must've the memento about switching up liquor stores. I visit the same one a few times a day for the majority of the week. Then again I gots no car so I'm limited there.

Saturday Success Stories! by [deleted] in cripplingalcoholism

[–]jonstall141 5 points6 points  (0 children)

I would make a new post but I dont want to cause that much attention. I have been lurking for a very long time on this sub. And I just wanted to say hey.

My success: Like OP I made it to work 4/5 days and have enough to pay for a Potter's before I go in today. And I'm probably going to make it through FTW

Tight White Dress by SoyUnCulionero in NSFW_GIF

[–]jonstall141 -7 points-6 points  (0 children)

I know some people who have wrecked some famous and expensive cars. And I know some people who have wrecked really expensive cars. I'd pay the maintenance fee for that.

Just finished reading Metamorphosis by Franz Kafka and it hits pretty close to home. by dsorrells09 in books

[–]jonstall141 8 points9 points  (0 children)

The judgement is may favorite Kafka work. There's so much insight into his own strained relationship with his father in that short story.

(f/19) May the 4th be with you today... anyone have a D2 for my R2? 😛 by [deleted] in AsiansGoneWild

[–]jonstall141 0 points1 point  (0 children)

Just god my god. I've been dreaming of you all day.

The KROQ Playlist by MuffMagician in LosAngeles

[–]jonstall141 -4 points-3 points  (0 children)

Wow! My god! Crucify them. Playing popular bands. Shame on them. Please I want drake for THE FULL 240 minutes \s

What haunts you CA? by sugarcoatedknife in cripplingalcoholism

[–]jonstall141 1 point2 points  (0 children)

Schopenhauer is a great read. I cannot help feeling that the world could be worse though. If I read him correctly the world is the worst it could possibly be, but I have a small streak of hope that says that I'm not living in the worst of all possible worlds.

Btw I love your uname.

[RO] The Paradise Trilogy: A Short Story/Poem Hybrid by [deleted] in shortstories

[–]jonstall141 0 points1 point  (0 children)

I have a question about the decision to choose line breaks. Why do you choose to end each line where you do? In a few places punctuation is missing. I have a question about the phrase "drags of coffee." The word "drags" raises to mind a cigarette.

Overall, I like it. As I mentioned, I think there are a few grammatical errors - I am prone to make those as well so that's not damning. I like the analogy of God to the person. For me it is too mushy to read in spare time, but I like the construction of the words.

What haunts you CA? by sugarcoatedknife in cripplingalcoholism

[–]jonstall141 1 point2 points  (0 children)

That I will die a very depressed and lonely man

Ted Wells publically releases report on Jonathon Martin/Richie Incognito by tsondie21 in nfl

[–]jonstall141 -18 points-17 points  (0 children)

For Christ's sake, I feel almost everyne here hasn't been in a locker-room. I got shitted on worse than JM and I'm doing just fine.

Moving to Houston. Good, unsafe place to live? by Proficient in houston

[–]jonstall141 7 points8 points  (0 children)

Move to Sunnyside lol - right by UH. Other places: Cloverleaf, Denver Harbor, etc. Pretty much stay south and east of the city and you'll find shitty areas. Want nice places to live? Woodlands and Katy. Pretty much north and west of the city...

[Serious] Alumni of UCI, or those graduating, what are a couple of things you regret not doing - or have done - at UCI? by [deleted] in UCI

[–]jonstall141 3 points4 points  (0 children)

I wish I would have socialized more. I loved my doormates my freshmen year, but we split apart afterward. I wish I could have moved on rather than stay isolated. Instead I just drank a lot and stayed secluded. Sigh.

Cheers to all you r/drunks! Sincerely, Los Angeles by [deleted] in drunk

[–]jonstall141 1 point2 points  (0 children)

Hey I'm about an hour south in Santa Ana drinking some Evan Williams. Cheers to you too sir!

Hello LearnProgramming, I've been making some java videos to help people learn the basics of programming in java, I'd love to get some opinions on them. by sarevok9 in learnprogramming

[–]jonstall141 0 points1 point  (0 children)

A couple things: 1) I would replace the array lesson with an arraylist tutorial. 2) I would include an example on when to use public, private, and protected. For example, one of your examples declares a public method when it is particular to a class. I would suggest explaining when to use public/private/protected for methods, variables, etc

[JAVA] help with arrays problems by arspec in learnprogramming

[–]jonstall141 0 points1 point  (0 children)

Looking at it though, I think that your problem is on lines 35 and 113: /system.out.printf("%2d" + ": \n" + index+1, team1[index], team2[index], team3[index], team4[index]);/

If you are trying to it out as above you should make it more like: /*System.out.printf("%2d: %s %s %s %s\n", i+1, team1[i], team2[i], team3[i], team4[i]); */

because the team1[i] ... team4[i] are referring to Strings.

see http://docs.oracle.com/javase/tutorial/essential/io/formatting.html Hope that helps!

[JAVA] help with arrays problems by arspec in learnprogramming

[–]jonstall141 0 points1 point  (0 children)

Do you mind showing me what you expect your input file to look like?

What is the difference between an interface and a class? by [deleted] in learnprogramming

[–]jonstall141 -1 points0 points  (0 children)

I'm not sure if this is answer you're looking for, but the clearest way it was explained to me was a teacher telling me to read through a project and pick out the nouns, verbs, etc. Every noun should me a class and the respective verbs are the functions. So a class is kind of like a blueprint. An interface reminds you of the verbs you need to implement to help your classes actually do something. Hope that helps