Jump to content

Lugruf

Veterans
  • Posts

    948
  • Joined

  • Last visited

  • Days Won

    1

 Content Type 

Profiles

Forums

Events

Reborn Development Blog

Rejuvenation Development Blog

Desolation Dev Blog

Everything posted by Lugruf

  1. I had a good day. I finished the second season of Mr Robot and the ending is amazing. Now I'll have to wait a year for the third though... Anstane?
  2. I think in C# they are called generics. They basically let you create functions and classes that work with any type. For example: template <typename T> void swap (T & a, T & b ) { T c = a; a = b; b = c; } So now you can use the swap function for ints, floats, strings and basically any type that is copy constructible and assignable. You can also create generizñc containers like the std::list<T>. Spine?
  3. Coding is the best puzzle game ever. Except when you get template errors. Template errors just want to see the world burn. Micky?
  4. I wasn't complaining. I like it how it is Spine?
  5. Actually this has become some sort of "say whatever you want thread" Micky?
  6. Episode 11 of the season 2 of Mr Robot and my brain is about to explode

  7. I'm sure in C++ you can make it constexpr or template to make it constant time, but no idea if C# allows it. The algorithm's complexity is probably higher than 0(n) so it will take a long time for sure computing 100 iterations Spine?
  8. Sounds like a cool algorithm to program Micky?
  9. Congrats! Which program was it btw? Spine?
  10. Best Serperior counter ever Azumarill @ Leftovers Ability: Sap Sipper EVs: 252 HP / 252 Def / 4 SpA Bold Nature - Scald - Knock Off - Ice Beam - Toxic
  11. It's probably not but one can never know... Micky?
  12. May his memes never cease #Bibs2k16 I see dragon online
  13. Lugruf

    hi

    Happy third aniversary here Bibs! May your memes never cease
  14. Why? I was just trying to helpDragon come back!
  15. You probably need an interface class and each different thing you need to pass inherit from it. That way, if you have a method that takes a reference to the base class, you can pass any object from a derived class to it (I don't know if you've seen inheritance already). You can this way also have a homogeneous container with all the objects inheriting from the base class also C# is trash Spine?
×
×
  • Create New...