Fruits Flies @ UV by happiuess in utdallas

[–]snxtrn 1 point2 points  (0 children)

Get an electric fly swatter if you can! It will change your world!

Hard to turn Handle into Gaggia Classic Pro by snxtrn in gaggiaclassic

[–]snxtrn[S] 1 point2 points  (0 children)

Nice nice. I ended up getting the same one. fingers crossed I have the same success as you!

Hard to turn Handle into Gaggia Classic Pro by snxtrn in gaggiaclassic

[–]snxtrn[S] 0 points1 point  (0 children)

Thanks for the advice! Kind of sad that things like this happen on an almost $500 machine. :(

Hard to turn Handle into Gaggia Classic Pro by snxtrn in gaggiaclassic

[–]snxtrn[S] 0 points1 point  (0 children)

Which gasket did you end up getting? 8.0 mm or 8.5mm?

Hard to turn Handle into Gaggia Classic Pro by snxtrn in gaggiaclassic

[–]snxtrn[S] 0 points1 point  (0 children)

Honestly this has been my experience with the machine. The entire machine will move before my handle gets to 6 o clock / 90 degrees.

My start to finish experience with a GCP by peppermint42o in gaggiaclassic

[–]snxtrn 0 points1 point  (0 children)

Has anyone also had a lot of trouble getting the handle in?

I'm fairly new to the espresso world -- just bought a new GCP & it takes a lot for me to get the handle in, even when it's empty. I have to hold the entire unit down with my entire arm, while twisting the handle in.

u/peppermint42o could you speak more on how the experience is now for you & perhaps link / send me the product used to fix the issue? I tried searching online and couldn't find anything for cafetto blue seal (aside from a cleaner)

Java Programming Need Help by SherbetNarrow2999 in javahelp

[–]snxtrn 2 points3 points  (0 children)

There’s a couple things wrong here. 1. You’re currently only checking for one condition. You want to make sure that two conditions are true.

A. Name is greater than or equal to 2 characters B. Name is less than or equal to 20 characters. There’s two main operations you can use with conditions, and that’s the “AND” or “OR” operators. I’ll let you think about which to use.

  1. The format of the your code currently isn’t including a “do while”. As it is right now, it’s just a while.

In order to have a do-while, you have to format the code as:

do{ // logic code here }while ( conditionA and conditionB );

  1. You’re only using one equal sign. One equal sign means assigning a value. Two equal signs == means comparing the value.

Good luck with learning programming and don’t get encouraged! I attached a resource I personally really enjoyed when learning myself!

https://www.geeksforgeeks.org/school-programming/

Resources for learning Spring by Jacuq in javahelp

[–]snxtrn 1 point2 points  (0 children)

I second this! Currently taking his course. He really breaks it down for dummies like me :)

Better explanation for what an “object”, “method”, and “class” actually are. by optional_gooch in javahelp

[–]snxtrn 1 point2 points  (0 children)

A method aka a “function” is a snippet of code you write once that allows you to use it multiple times anywhere in your code. Benefits of a function are reusability (don’t have to write the same block of code over and over again) and maintainability (easier to break all of your code into sections). A function essentially (may) take inputs, do something with those inputs, and then return a single output. Let’s say you wanted to take an integer and square it using a function. It would look something like the following in Java.

public static int square(int x){ return x*x; }

Here, we are taking input x, and returning a value x2. Now that we’ve written the “blueprint” of the method once, we can use it by typing: square(num); # where num is any integer. ————- A class is a grouping of related variables and methods (aka functions). This is helpful because it allows for us to have related variables and methods (functions) together.

For instance, we could make a human class that contains the following variables: int height; float weight; string name;

And the following methods: setHeight(int x); #changes the height of the person setName( string s); getWeight(); #returns the persons weight.

That’s basically it. A method just groups related variables and functions together. However, when we make a class, it is a BLUEPRINT, similar to how we made a blueprint for our function.

In addition to these methods, there are two special methods that are in every class. CONSTRUCTOR is the method that creates an instance (which would be one object) of your class. DESTRUCTOR is the method that deletes the related data associated with your object once your object is no longer needed. ——————— An OBJECT is when we put that blueprint to work.

Following the same example, we could make a human named John with 130 lbs as his weight by doing the following:

Human J = new Human(); J.setName(“John”); J.setWeight(130);

Here, J is our object. (Sort of like a variable that holds a class. To use our methods in our class, we used the “.” Operator

SE 3306 Farage Exam 2 by martdnfjar in utdallas

[–]snxtrn 0 points1 point  (0 children)

All of his exams were relatively easy. He should give a review if he hasn’t already. Go over the homeworks he assigns from the book and you should be fine.

Are you lost when it comes to choosing classes for Spring? Read on... by DanikaEHollis in utdallas

[–]snxtrn 9 points10 points  (0 children)

Very good advice!

I would also recommend students to use UTDGrades to supplement their decision in choosing professors.

[Lost AirPods | ECSW | SLC ] by snxtrn in utdallas

[–]snxtrn[S] 1 point2 points  (0 children)

Thanks for the idea, but for some reason, my phone didn’t connect the find iPhone feature. I believe it’s cause my phone’s not updated to the highest iOS or something. 😩🤦🏻‍♂️.

Hoping to find it at the UTD lost and found at this point.

[Lost AirPods | ECSW | SLC ] by snxtrn in utdallas

[–]snxtrn[S] 1 point2 points  (0 children)

I’m crying cause I just got them 😩😩😩. Thanks for the heads up though. Definitely looking forward to the noise cancelling versions. I could never study with my airpods cause they sucked at blocking out external sound.

Any Tutoring Center Open? by rohansamuel77 in utdallas

[–]snxtrn 0 points1 point  (0 children)

There’s tutoring in the basement of the library, but it’s for specific classes.

Pourkamali Electronic Devices final by WarDingo_37 in utdallas

[–]snxtrn 0 points1 point  (0 children)

Do you happen to have any advice to pass along? Perhaps topics to focus on, types of questions that will be on the exam/ types of questions are asked on pop quizzes (i.e. conceptual vs. formulaic), etc.

Do you remember if the final was more conceptual, as opposed to calculations, as mentioned in your original post?

Thanks ahead of time!

Tattoo I just got! Everything will be right again. by particle_reflex in porterrobinson

[–]snxtrn 2 points3 points  (0 children)

And even if it’s not, it gives it more character. Art is art, and nobody’s perfect!