Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. That's not the same project

That's not the same project

Scheduled Pinned Locked Moved The Lounge
designregexquestion
40 Posts 27 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • L loctrice

    Ever been so frustrated that you wanted to make a post, but then couldn't really explain what was happening? I made a web based file checker for one of our clients as per request of the boss. It worked great, so much that we expanded it to work for more companies. No big deal, I had anticipated that so I set it up with nice design patterns to allow flexibility. Had a factory and command pattern. Not to bad. Now they want the program to actually do something different. I can't seem to explain to them that it's something that needs a good conversation and some dev time. They want it to be persistent and have complex rules, which is something I hadn't anticipated. There's now way, in the way the project is laid out, to do that. It was never meant to perform those sorts of tasks. They don't want a new program though, "just add this one thing onto it". So , like, if they just say it different and treat it like no big deal it will become easy enough for me to say ok. They just keep pressuring. We had been discussing other similar items, and then I guess they found an item that was "easy enough to do". As soon as it was brought up, everyone else is like "but you said you couldn't do that with my thing. If you do that, then we can do my thing too". Of coarse I don't have a choice. They already "sold" it to the client. At least I have until the end of the month. I just need to insert a specific one off into a generic system without breaking anything that works for the other companies.

    Elephant elephant elephant, sunshine sunshine sunshine

    D Offline
    D Offline
    David ONeil
    wrote on last edited by
    #17

    Maybe just be honest and blunt with them. Say you will do it, but it isn't nearly the same, and there is no guarantee it will be done in a month. And if they pressure you for overtime, they will be paying you more, because of their failure to do their job properly.

    My CodeProject Articles :: Our forgotten astronomic heritage :: My website.

    1 Reply Last reply
    0
    • L loctrice

      Ever been so frustrated that you wanted to make a post, but then couldn't really explain what was happening? I made a web based file checker for one of our clients as per request of the boss. It worked great, so much that we expanded it to work for more companies. No big deal, I had anticipated that so I set it up with nice design patterns to allow flexibility. Had a factory and command pattern. Not to bad. Now they want the program to actually do something different. I can't seem to explain to them that it's something that needs a good conversation and some dev time. They want it to be persistent and have complex rules, which is something I hadn't anticipated. There's now way, in the way the project is laid out, to do that. It was never meant to perform those sorts of tasks. They don't want a new program though, "just add this one thing onto it". So , like, if they just say it different and treat it like no big deal it will become easy enough for me to say ok. They just keep pressuring. We had been discussing other similar items, and then I guess they found an item that was "easy enough to do". As soon as it was brought up, everyone else is like "but you said you couldn't do that with my thing. If you do that, then we can do my thing too". Of coarse I don't have a choice. They already "sold" it to the client. At least I have until the end of the month. I just need to insert a specific one off into a generic system without breaking anything that works for the other companies.

      Elephant elephant elephant, sunshine sunshine sunshine

      A Offline
      A Offline
      Andy Brummer
      wrote on last edited by
      #18

      I rarely explain any of the refactoring or maintenance that I have to do to keep a code base sane. No matter how you do it, it's just going to sound over complicated and excessive to them. So, figure out how to change the architecture and keep the system sane, and do that, and it takes as long as it takes.

      Curvature of the Mind now with 3D

      L 1 Reply Last reply
      0
      • A Andy Brummer

        I rarely explain any of the refactoring or maintenance that I have to do to keep a code base sane. No matter how you do it, it's just going to sound over complicated and excessive to them. So, figure out how to change the architecture and keep the system sane, and do that, and it takes as long as it takes.

        Curvature of the Mind now with 3D

        L Offline
        L Offline
        loctrice
        wrote on last edited by
        #19

        Andy Brummer wrote:

        So, figure out how to change the architecture and keep the system sane, and do that, and it takes as long as it takes

        That's where I'm at with it. I've been watching plural sight videos for an upcoming project most of the morning so that I could think about this one. I wasn't going to start coding until I had a solution that was not a hack. I've come up with something that is going to fit nicely into the program, and shouldn't take too long for me to put in place.

        Andy Brummer wrote:

        I rarely explain any of the refactoring or maintenance that I have to do to keep a code base sane. No matter how you do it, it's just going to sound over complicated and excessive to them.

        I'm in an interesting position with that here. The boss and one of the processors were programmers. They are from an old script hack breed though. They don't get why an object is different than a code module, they don't know what design patterns are or how they are useful, and they don't see the need to plan before you start coding. So I end up having to explain myself, but they don't understand in the end anyway.

        Elephant elephant elephant, sunshine sunshine sunshine

        L A 2 Replies Last reply
        0
        • L loctrice

          Ever been so frustrated that you wanted to make a post, but then couldn't really explain what was happening? I made a web based file checker for one of our clients as per request of the boss. It worked great, so much that we expanded it to work for more companies. No big deal, I had anticipated that so I set it up with nice design patterns to allow flexibility. Had a factory and command pattern. Not to bad. Now they want the program to actually do something different. I can't seem to explain to them that it's something that needs a good conversation and some dev time. They want it to be persistent and have complex rules, which is something I hadn't anticipated. There's now way, in the way the project is laid out, to do that. It was never meant to perform those sorts of tasks. They don't want a new program though, "just add this one thing onto it". So , like, if they just say it different and treat it like no big deal it will become easy enough for me to say ok. They just keep pressuring. We had been discussing other similar items, and then I guess they found an item that was "easy enough to do". As soon as it was brought up, everyone else is like "but you said you couldn't do that with my thing. If you do that, then we can do my thing too". Of coarse I don't have a choice. They already "sold" it to the client. At least I have until the end of the month. I just need to insert a specific one off into a generic system without breaking anything that works for the other companies.

          Elephant elephant elephant, sunshine sunshine sunshine

          K Offline
          K Offline
          kmoorevs
          wrote on last edited by
          #20

          It's situations like this that sometimes bring out the best in us! Sounds like you know what you are doing. Good luck! :)

          "Go forth into the source" - Neal Morse

          L 1 Reply Last reply
          0
          • K kmoorevs

            It's situations like this that sometimes bring out the best in us! Sounds like you know what you are doing. Good luck! :)

            "Go forth into the source" - Neal Morse

            L Offline
            L Offline
            loctrice
            wrote on last edited by
            #21

            Yeah, I figured out a good way to do it. I just had to complain about it first.

            Elephant elephant elephant, sunshine sunshine sunshine

            1 Reply Last reply
            0
            • L loctrice

              Ever been so frustrated that you wanted to make a post, but then couldn't really explain what was happening? I made a web based file checker for one of our clients as per request of the boss. It worked great, so much that we expanded it to work for more companies. No big deal, I had anticipated that so I set it up with nice design patterns to allow flexibility. Had a factory and command pattern. Not to bad. Now they want the program to actually do something different. I can't seem to explain to them that it's something that needs a good conversation and some dev time. They want it to be persistent and have complex rules, which is something I hadn't anticipated. There's now way, in the way the project is laid out, to do that. It was never meant to perform those sorts of tasks. They don't want a new program though, "just add this one thing onto it". So , like, if they just say it different and treat it like no big deal it will become easy enough for me to say ok. They just keep pressuring. We had been discussing other similar items, and then I guess they found an item that was "easy enough to do". As soon as it was brought up, everyone else is like "but you said you couldn't do that with my thing. If you do that, then we can do my thing too". Of coarse I don't have a choice. They already "sold" it to the client. At least I have until the end of the month. I just need to insert a specific one off into a generic system without breaking anything that works for the other companies.

              Elephant elephant elephant, sunshine sunshine sunshine

              M Offline
              M Offline
              Mark_Wallace
              wrote on last edited by
              #22

              If it looks like an elephant... Make it look like a giraffe, but don't make it stop being an elephant -- and make sure that it can do what beavers, snakes, and geese do. Tuesday OK?

              I wanna be a eunuchs developer! Pass me a bread knife!

              1 Reply Last reply
              0
              • L loctrice

                Ever been so frustrated that you wanted to make a post, but then couldn't really explain what was happening? I made a web based file checker for one of our clients as per request of the boss. It worked great, so much that we expanded it to work for more companies. No big deal, I had anticipated that so I set it up with nice design patterns to allow flexibility. Had a factory and command pattern. Not to bad. Now they want the program to actually do something different. I can't seem to explain to them that it's something that needs a good conversation and some dev time. They want it to be persistent and have complex rules, which is something I hadn't anticipated. There's now way, in the way the project is laid out, to do that. It was never meant to perform those sorts of tasks. They don't want a new program though, "just add this one thing onto it". So , like, if they just say it different and treat it like no big deal it will become easy enough for me to say ok. They just keep pressuring. We had been discussing other similar items, and then I guess they found an item that was "easy enough to do". As soon as it was brought up, everyone else is like "but you said you couldn't do that with my thing. If you do that, then we can do my thing too". Of coarse I don't have a choice. They already "sold" it to the client. At least I have until the end of the month. I just need to insert a specific one off into a generic system without breaking anything that works for the other companies.

                Elephant elephant elephant, sunshine sunshine sunshine

                A Offline
                A Offline
                Amarnath S
                wrote on last edited by
                #23

                I had read/heard somewhere (Grady Booch?) - "You have a twenty storey building with a basement floor; the building is occupied, has offices, residences, people living and working in it. Now, they want you to add a couple more basements under the existing basement." This is similar to what they want you to do, isn't it?

                L OriginalGriffO 2 Replies Last reply
                0
                • A Amarnath S

                  I had read/heard somewhere (Grady Booch?) - "You have a twenty storey building with a basement floor; the building is occupied, has offices, residences, people living and working in it. Now, they want you to add a couple more basements under the existing basement." This is similar to what they want you to do, isn't it?

                  L Offline
                  L Offline
                  loctrice
                  wrote on last edited by
                  #24

                  Yeah, that sounds pretty close.

                  Elephant elephant elephant, sunshine sunshine sunshine

                  1 Reply Last reply
                  0
                  • A Amarnath S

                    I had read/heard somewhere (Grady Booch?) - "You have a twenty storey building with a basement floor; the building is occupied, has offices, residences, people living and working in it. Now, they want you to add a couple more basements under the existing basement." This is similar to what they want you to do, isn't it?

                    OriginalGriffO Offline
                    OriginalGriffO Offline
                    OriginalGriff
                    wrote on last edited by
                    #25

                    Yeah but that's easy - all you have to do is take stuff away... :laugh:

                    Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

                    "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
                    "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt

                    1 Reply Last reply
                    0
                    • L loctrice

                      Ever been so frustrated that you wanted to make a post, but then couldn't really explain what was happening? I made a web based file checker for one of our clients as per request of the boss. It worked great, so much that we expanded it to work for more companies. No big deal, I had anticipated that so I set it up with nice design patterns to allow flexibility. Had a factory and command pattern. Not to bad. Now they want the program to actually do something different. I can't seem to explain to them that it's something that needs a good conversation and some dev time. They want it to be persistent and have complex rules, which is something I hadn't anticipated. There's now way, in the way the project is laid out, to do that. It was never meant to perform those sorts of tasks. They don't want a new program though, "just add this one thing onto it". So , like, if they just say it different and treat it like no big deal it will become easy enough for me to say ok. They just keep pressuring. We had been discussing other similar items, and then I guess they found an item that was "easy enough to do". As soon as it was brought up, everyone else is like "but you said you couldn't do that with my thing. If you do that, then we can do my thing too". Of coarse I don't have a choice. They already "sold" it to the client. At least I have until the end of the month. I just need to insert a specific one off into a generic system without breaking anything that works for the other companies.

                      Elephant elephant elephant, sunshine sunshine sunshine

                      B Offline
                      B Offline
                      BillWoodruff
                      wrote on last edited by
                      #26

                      "Don't show off every day, or you'll stop surprising people. There must always be some novelty left over. The person who displays a little more of it each day keeps up expectations, and no one ever discovers the limits of his talent." Baltasar Gracián

                      Recommended reading: Full-text of all available at Project Gutenberg, except for Gracian's book. "The Prince" Nicolo Machiavelli "The Art of Worldly Wisdom" Baltasar Gracián [^] "The Art of War" Sun Tzu "The Art of War" Carl von Clausewitz "Meditations" Marcus Aurelius

                      « There is only one difference between a madman and me. The madman thinks he is sane. I know I am mad. » Salvador Dali

                      1 Reply Last reply
                      0
                      • C Colin Mullikin

                        Slacker007 wrote:

                        I wanted to take up cage fighting.

                        Kip?[^] Is that you?

                        The United States invariably does the right thing, after having exhausted every other alternative. -Winston Churchill America is the only country that went from barbarism to decadence without civilization in between. -Oscar Wilde Wow, even the French showed a little more spine than that before they got their sh*t pushed in.[^] -Colin Mullikin

                        R Offline
                        R Offline
                        Roger Wright
                        wrote on last edited by
                        #27

                        Mind bleach!!! I need mind bleach!!! :wtf: :wtf: Even Chuck Norris had to start somewhere, I guess... :sigh:

                        Will Rogers never met me.

                        1 Reply Last reply
                        0
                        • L loctrice

                          Ever been so frustrated that you wanted to make a post, but then couldn't really explain what was happening? I made a web based file checker for one of our clients as per request of the boss. It worked great, so much that we expanded it to work for more companies. No big deal, I had anticipated that so I set it up with nice design patterns to allow flexibility. Had a factory and command pattern. Not to bad. Now they want the program to actually do something different. I can't seem to explain to them that it's something that needs a good conversation and some dev time. They want it to be persistent and have complex rules, which is something I hadn't anticipated. There's now way, in the way the project is laid out, to do that. It was never meant to perform those sorts of tasks. They don't want a new program though, "just add this one thing onto it". So , like, if they just say it different and treat it like no big deal it will become easy enough for me to say ok. They just keep pressuring. We had been discussing other similar items, and then I guess they found an item that was "easy enough to do". As soon as it was brought up, everyone else is like "but you said you couldn't do that with my thing. If you do that, then we can do my thing too". Of coarse I don't have a choice. They already "sold" it to the client. At least I have until the end of the month. I just need to insert a specific one off into a generic system without breaking anything that works for the other companies.

                          Elephant elephant elephant, sunshine sunshine sunshine

                          M Offline
                          M Offline
                          mikepwilson
                          wrote on last edited by
                          #28

                          It's funny. (Funny "uh oh", not to be confused with "funny ha ha", see The Animaniacs for more.) I understand that "Business doesn't understand technology", having been doing this professionally for closer to 30 than 20 years. But it is continually aMAZING to me how PERFECTLY they have the sign bit switched between "easy" and "impossible".

                          1 Reply Last reply
                          0
                          • L loctrice

                            Andy Brummer wrote:

                            So, figure out how to change the architecture and keep the system sane, and do that, and it takes as long as it takes

                            That's where I'm at with it. I've been watching plural sight videos for an upcoming project most of the morning so that I could think about this one. I wasn't going to start coding until I had a solution that was not a hack. I've come up with something that is going to fit nicely into the program, and shouldn't take too long for me to put in place.

                            Andy Brummer wrote:

                            I rarely explain any of the refactoring or maintenance that I have to do to keep a code base sane. No matter how you do it, it's just going to sound over complicated and excessive to them.

                            I'm in an interesting position with that here. The boss and one of the processors were programmers. They are from an old script hack breed though. They don't get why an object is different than a code module, they don't know what design patterns are or how they are useful, and they don't see the need to plan before you start coding. So I end up having to explain myself, but they don't understand in the end anyway.

                            Elephant elephant elephant, sunshine sunshine sunshine

                            L Offline
                            L Offline
                            Lost User
                            wrote on last edited by
                            #29

                            loctrice wrote:

                            I've come up with something that is going to fit nicely into the program, and shouldn't take too long for me to put in place.

                            See! They told you so! You just had to think harder!

                            PooperPig - Coming Soon

                            1 Reply Last reply
                            0
                            • L loctrice

                              Andy Brummer wrote:

                              So, figure out how to change the architecture and keep the system sane, and do that, and it takes as long as it takes

                              That's where I'm at with it. I've been watching plural sight videos for an upcoming project most of the morning so that I could think about this one. I wasn't going to start coding until I had a solution that was not a hack. I've come up with something that is going to fit nicely into the program, and shouldn't take too long for me to put in place.

                              Andy Brummer wrote:

                              I rarely explain any of the refactoring or maintenance that I have to do to keep a code base sane. No matter how you do it, it's just going to sound over complicated and excessive to them.

                              I'm in an interesting position with that here. The boss and one of the processors were programmers. They are from an old script hack breed though. They don't get why an object is different than a code module, they don't know what design patterns are or how they are useful, and they don't see the need to plan before you start coding. So I end up having to explain myself, but they don't understand in the end anyway.

                              Elephant elephant elephant, sunshine sunshine sunshine

                              A Offline
                              A Offline
                              Andy Brummer
                              wrote on last edited by
                              #30

                              loctrice wrote:

                              I'm in an interesting position with that here. The boss and one of the processors were programmers. They are from an old script hack breed though. They don't get why an object is different than a code module, they don't know what design patterns are or how they are useful, and they don't see the need to plan before you start coding. So I end up having to explain myself, but they don't understand in the end anyway.

                              That's a shame, it's really helpful to have someone to bounce design decisions off of. Though, at least you can do the opposite of what they suggest. :laugh:

                              Curvature of the Mind now with 3D

                              1 Reply Last reply
                              0
                              • L loctrice

                                Ever been so frustrated that you wanted to make a post, but then couldn't really explain what was happening? I made a web based file checker for one of our clients as per request of the boss. It worked great, so much that we expanded it to work for more companies. No big deal, I had anticipated that so I set it up with nice design patterns to allow flexibility. Had a factory and command pattern. Not to bad. Now they want the program to actually do something different. I can't seem to explain to them that it's something that needs a good conversation and some dev time. They want it to be persistent and have complex rules, which is something I hadn't anticipated. There's now way, in the way the project is laid out, to do that. It was never meant to perform those sorts of tasks. They don't want a new program though, "just add this one thing onto it". So , like, if they just say it different and treat it like no big deal it will become easy enough for me to say ok. They just keep pressuring. We had been discussing other similar items, and then I guess they found an item that was "easy enough to do". As soon as it was brought up, everyone else is like "but you said you couldn't do that with my thing. If you do that, then we can do my thing too". Of coarse I don't have a choice. They already "sold" it to the client. At least I have until the end of the month. I just need to insert a specific one off into a generic system without breaking anything that works for the other companies.

                                Elephant elephant elephant, sunshine sunshine sunshine

                                L Offline
                                L Offline
                                Lost User
                                wrote on last edited by
                                #31

                                Sounds like it might be worth building a plugin framework into your original project? Then you could leave that code clean and do the dirty stuff in each custom plugin :)

                                How do you know so much about swallows? Well, you have to know these things when you're a king, you know.

                                1 Reply Last reply
                                0
                                • L loctrice

                                  I'm not really sure what you mean by that. I googled the term, but I got a bunch of drop down box related links. Nothing useful.

                                  Elephant elephant elephant, sunshine sunshine sunshine

                                  M Offline
                                  M Offline
                                  Member 10707677
                                  wrote on last edited by
                                  #32

                                  Look up Nassi-Shneiderman. (If conditions are met, branch to <>.)

                                  1 Reply Last reply
                                  0
                                  • L loctrice

                                    Ever been so frustrated that you wanted to make a post, but then couldn't really explain what was happening? I made a web based file checker for one of our clients as per request of the boss. It worked great, so much that we expanded it to work for more companies. No big deal, I had anticipated that so I set it up with nice design patterns to allow flexibility. Had a factory and command pattern. Not to bad. Now they want the program to actually do something different. I can't seem to explain to them that it's something that needs a good conversation and some dev time. They want it to be persistent and have complex rules, which is something I hadn't anticipated. There's now way, in the way the project is laid out, to do that. It was never meant to perform those sorts of tasks. They don't want a new program though, "just add this one thing onto it". So , like, if they just say it different and treat it like no big deal it will become easy enough for me to say ok. They just keep pressuring. We had been discussing other similar items, and then I guess they found an item that was "easy enough to do". As soon as it was brought up, everyone else is like "but you said you couldn't do that with my thing. If you do that, then we can do my thing too". Of coarse I don't have a choice. They already "sold" it to the client. At least I have until the end of the month. I just need to insert a specific one off into a generic system without breaking anything that works for the other companies.

                                    Elephant elephant elephant, sunshine sunshine sunshine

                                    D Offline
                                    D Offline
                                    daleofcourse
                                    wrote on last edited by
                                    #33

                                    That happened with a large project of mine; I designed and built a web based dynamic database front end that allowed rapid access to any SQL database on our system and did a ton of other important in house functions; then we got a new marketing guy who decided he couldn't sell it as it was and wanted a new version that completely changed the premise of the original so I had to do six months of rewrites. He couldn't or wouldn't understand why it took so long to make such "small" changes, and the pressure was to make them very fast as he was selling this promised software to clients; the result was a Frankenstein's monster which was a nightmare to debug and make changes to. The kicker was that nobody actually wanted this new hybrid product and it was canned 6 months later. Everyone in the office still uses the original version every day.

                                    1 Reply Last reply
                                    0
                                    • P Pete OHanlon

                                      At this point, if I were you, I would introduce your management to the project triangle. This is a triangle that balances Scope, Cost and Time to deliver. In other words, if one of those items changes, then the other two parts have to be adjusted to compensate - so, the scope of your application has changed, then the time to deliver changes as does the cost. This is project management 101, and if they don't understand this, they need to be pushed.

                                      H Offline
                                      H Offline
                                      Herbie Mountjoy
                                      wrote on last edited by
                                      #34

                                      Speak to them in language they understand. COST, COST, COST, COST, COST.....

                                      I may not last forever but the mess I leave behind certainly will.

                                      1 Reply Last reply
                                      0
                                      • L loctrice

                                        Ever been so frustrated that you wanted to make a post, but then couldn't really explain what was happening? I made a web based file checker for one of our clients as per request of the boss. It worked great, so much that we expanded it to work for more companies. No big deal, I had anticipated that so I set it up with nice design patterns to allow flexibility. Had a factory and command pattern. Not to bad. Now they want the program to actually do something different. I can't seem to explain to them that it's something that needs a good conversation and some dev time. They want it to be persistent and have complex rules, which is something I hadn't anticipated. There's now way, in the way the project is laid out, to do that. It was never meant to perform those sorts of tasks. They don't want a new program though, "just add this one thing onto it". So , like, if they just say it different and treat it like no big deal it will become easy enough for me to say ok. They just keep pressuring. We had been discussing other similar items, and then I guess they found an item that was "easy enough to do". As soon as it was brought up, everyone else is like "but you said you couldn't do that with my thing. If you do that, then we can do my thing too". Of coarse I don't have a choice. They already "sold" it to the client. At least I have until the end of the month. I just need to insert a specific one off into a generic system without breaking anything that works for the other companies.

                                        Elephant elephant elephant, sunshine sunshine sunshine

                                        J Offline
                                        J Offline
                                        Jonas Hammarberg
                                        wrote on last edited by
                                        #35

                                        No, I walked.

                                        1 Reply Last reply
                                        0
                                        • Mike HankeyM Mike Hankey

                                          loctrice wrote:

                                          Ever been so frustrated that you wanted to make a post, but then couldn't really explain what was happening?

                                          Yes, several times.

                                          loctrice wrote:

                                          Now they want the program to actually do something different.

                                          Can I get fries with that also? :)

                                          New version: WinHeist Version 2.1.0 Beta There's a fine line between crazy and free spirited and it's usually a prescription.

                                          S Offline
                                          S Offline
                                          Simon ORiordan from UK
                                          wrote on last edited by
                                          #36

                                          "Can I get fries with that also?" - clearly you need a man of philosophy.

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups