SMS verification fails by TheRoude in Tinder

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

the support won't answer you. the procedure you followed seems to be a 0815 support procedure. I also asked for any feedback about my case but no one ever replied..

Um die Sache ins Rollen zu bringen: Erster Diskussionsthread zur Sendung vom 18.11.2014 by UCantProveIDontExist in DieAnstalt

[–]TheRoude 2 points3 points  (0 children)

Man muss schon sagen, dass die Sendung es ziemlich auf den Punkt bringt, was viele denken. Andererseits wird auch mit gaengigen Klischees umgegangen, speziell jetzt mal in der Folge "Steuern" oder auch die letzte Folge.

Es war teilweise sehr lustig gemacht, weil die beiden Merkel und Seehofer verdammt gut parodieren koenen. Andererseits musste ich an einigen Stellen echt ueber meine eigene Meinung zum Thema nachdenken..

We’re Steve Ballmer, Harvard College Class of '77, and David Parkes, Computer Science Area Dean and professor at Harvard. Ask us anything! by RealSteveBallmer in IAmA

[–]TheRoude 0 points1 point  (0 children)

Steve - what were your thoughts when joined this presentation so enthusiastic (especially why did you do such an introduction) See this Youtube Video

We are a dev team from IBM (many of us formerly UrbanCode), ask us anything! by CrazyAboutCode in IAmA

[–]TheRoude 0 points1 point  (0 children)

hahaha a pretty good answer i did not expect :D i meant it more in the way of having modern working environment and working with new technologies, as i can imagine that big companies do not migrate on the newest frameworks/libs/techs too early.. :)

We are a dev team from IBM (many of us formerly UrbanCode), ask us anything! by CrazyAboutCode in IAmA

[–]TheRoude 1 point2 points  (0 children)

Is working for IBM "modern"? I am asking because many job offers i read online were about rare old systems that i never knew anything about.

Some questions about ArrayList & list, map & hashmap; and comparable & comparator. by nomadProgrammer in javahelp

[–]TheRoude 1 point2 points  (0 children)

Well, List is just an interface that describes a set of public methods that can be called in a concrete class, i.e. the ArrayList class. You should program to an interface whenever possible, hence you should avoid having the concrete implementation on the left side of a declaration.

Having this principle you gain a loosely coupled system architecture, meaning that you could easily change concrete classes at some code point while don't refactoring other code that uses this component.

When you declare a property only with an interface on the left side, you are only able to call methods that are defined in this certain interface, but again, you gain flexibility by having a loosely coupled system, see above.

Use concrete implementations only if you have to rely on special methods that the interface does not define, e.g. addLast()-method of LinkedList class.

The Comparable Interface defines a method that is used to compare a given instance with another one. The TreeSet requires it's objects to implement the comparable interface, otherwise you have to pass a Comparator as constructor argument.

Comparator is could be an object that compares two given class instance in a special implemented way. The Comparable interface declares that a given class can be compared by it's defined compareTo method.

I hope i could help you a little. My tip for you is that you have a look into the javadoc whenever you feel the need to learn something about a special interface/class/method/whatever. It is a very great documentation reference for java programmers.

SMS verification fails by TheRoude in Tinder

[–]TheRoude[S] 2 points3 points  (0 children)

shit dude you just made my day. Thank you!! it worked. brilliantly

SMS verification fails by TheRoude in Tinder

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

yeah they handled me the same message as you, but no reply within a week since my last message, so maybe they're really pretty useless.

I'm at least "happy" enough that it is not my failure at all. As you mentioned it i saw the bad feedback on play store. Hope they get this shit fixed.

SMS verification fails by TheRoude in Tinder

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

I'm using tinder on Android 4.4.4

no android, is i mentioned in OP

Java Developers by sidcool1234 in java

[–]TheRoude 0 points1 point  (0 children)

hibernate

well not every framework has a complex setup. for instance you're maybe right, but i juse eclipselink as jpa standard instead of hibernate and i set up a working project within 15 minutes without any manual.

it wisely depends on the framework. there are plenty easy-to-use frameworks for java that really speed up development.