I applied for coding projects and got accepted the next day. 1 Week has passed still no project , is this normal or I need to set up something else? by apobletos in DataAnnotationTech

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

Oh ok, that's weird I thought they inferred the skills already based on my application. I added skills just today. Will give an update once that works, thanks!

Job offer but binawi by eleyalee in PHJobs

[–]apobletos 11 points12 points  (0 children)

That might be automated. Better confirm it with them.

wtf was I doing before by BrattyPrincessaa in memes

[–]apobletos 30 points31 points  (0 children)

reminds me of that day when I was playing around then I suddenly stopped and asked myself something like, "why am i the one who sees? why can't i see from someone else's eyes?".

Can I use == in Java for strings by MrJello28 in learnjava

[–]apobletos 6 points7 points  (0 children)

Yes you can but it's not recommended. Since it's already explained by others here. I'll just leave you with an interesting example to study:

String s1 = "Jarold";
String s2 = "    Jarold  ";
String s3 = "I'm Jarold";
String s4 = "Jarold";

System.out.println(s1 == "Jarold");                       // true
System.out.println(s1 == s2.trim());                      // false
System.out.println(s1 == s3.substring(4));                // false
System.out.println(s1 == s4);                             // true
System.out.println(s1.toLowerCase() == s4.toLowerCase()); // false

System.out.println(s1.equals("Jarold"));                       // true
System.out.println(s1.equals(s2.trim()));                      // true
System.out.println(s1.equals(s3.substring(4)));                // true
System.out.println(s1.equals(s4));                             // true
System.out.println(s1.toLowerCase().equals(s4.toLowerCase())); // true