gt5cars.net -- Updated 2012-03-16

  • Thread starter Thread starter encoded
  • 203 comments
  • 20,128 views
That's strange, since http://www.gt5cars.net is supposed to redirect to http://gt5cars.net Could you cut and paste the exact url you used when you got the page not found error? It would greatly help me fix the issue if I could reproduce it.

Thank you,

e.

Your first link gave me 'Sorry Internet Explorer cannot display the webpage' but a refresh brought it up (it's done it a few times). The second link gave me
We're sorry, but something went wrong.
We've been notified about this issue and we'll take a look at it shortly.
 
Your first link gave me 'Sorry Internet Explorer cannot display the webpage' but a refresh brought it up (it's done it a few times). The second link gave me
Thanks. That's really strange. I'll check with my host, perhaps they're having connectivity issues. Interesting that you got that error message, since it's supposed to send me an email when that happens, and I haven't received one yet... Perhaps the mail server is bogged down. *Puts on his Sherlock Holmes hat*

UPDATE Awesome, it turns out my host is experiencing a DDoS attack. :( Man, this host is having it rough lately. I might have to look at moving, but the price at this host (FREE) is of course very nice.
 
Last edited:
Nice and clean and fast, I had initial problems getting to the site, repeated not found(s), but seems to be overall ok, as I'm on it now with no problems.
 
Looks perfect ;)

Nice and clean and fast, I had initial problems getting to the site, repeated not found(s), but seems to be overall ok, as I'm on it now with no problems.
This is good news. Hopefully the DDoS has been thwarted, and things are returning to normal. Thanks for the reports.

e.
 
Really nice setup! I just switched from the other site for all 226 of my cars. I agree with the other poster saying that the overall background is a bit bland (white), but I love the organization. One request: could you add the 'next page' buttons on the top of the database as well? Always going to the bottom is a bit inconvenient. I'm very happy overall. Thanks again for a great site.
 
Yeah, I use mygranturismo.net and I've been going by the stats on there...and yours has different stats...which one is right? lol
 
One request: could you add the 'next page' buttons on the top of the database as well? Always going to the bottom is a bit inconvenient. I'm very happy overall. Thanks again for a great site.
Glad you like it. I think your suggestion should be doable.

e.
 
Yeah, I use mygranturismo.net and I've been going by the stats on there...and yours has different stats...which one is right? lol
This is a good question. The specs for http://gt5cars.net come from the database put together by Famine in this thread. He records the values of the cars as seen in your garage, adjusted for 0 mileage. This can sometimes differ from what is listed in the dealerships, but should (hopefully) provide the most accurate numbers for what you'll be actually driving.

e.
 
Just fixed a little bug that caused the UCD search to fail when you were searching for a specific car which appeared twice in the same game day. Wow, talk about corner cases.
 
Thats a great list, awesome work.
2 bits of input for you.
The Acuras are American, not Japanese.
The price of a VW Nardo Concept in the UCD is around 1,500,000.
 
Hey, great work on the site here. I'm collecting cars, and it is proving very helpful as I have about 20 Standards left to go... of course I'm finding they are for the most part 4 or 5 on the rarity scale. :ouch:

Some thoughts / suggestions / questions:

The flash messages that appear when I have added a car to my garage are great. Have you though about positioning the flash_wrapper div absolutely, so it will not affect the rest of your DOM? The benefit here is the rest of the UI elements won't be positioned relative to of the # of flash messages currently onscreen. As a test, I moved it to the top right by adding these CSS declarations:

position: absolute;
top: 0;
right: 0;

This worked great to keep the messages from affecting the UI. The top and right rules don't matter really, the absolute rule being the key there. Alternately, jGrowl is a great jQuery plugin that creates unobtrusive flash messages a la Mac OS's Growl.

It took me a bit to find the site navigation at the bottom. Have you considered placing it at the top, or maybe even both top and bottom?

I see you're using Datatables, a good choice. I've used, quite extensively, almost every jQuery based grid out there, among others like the amazing grid in ExtJS. I'd use ExtJS more, but it's a pay product if you want to get paid. All the grid products are an exercise in tradeoffs, though I see that area maturing significantly as HTML5 becomes supported in mainstream browsers. That said, I typically find myself using jqGrid. It excels at handling large recordsets, and has some very nice integrated features like subgrids, column grouping, column D&D/resize/hide&show, inline/modal filtering, inline/modal editing, etc. I'm actually very excited to see what the jQuery UI guys come up with, as they've been working on their own grid for some time now. They're taking the best of what's out there, coming at it from a data model perspective, and doing it up right.

As far as web hosts go, you really do get what you pay for. I've paid for not cheap but not expensive hosting since day one, and I'll never go another route. I use Fluidhosting, and they have been a very solid host for years now. However, due to my needs to expand into more Python and Ruby based projects, I am contemplating a move to WebFaction. I've heard nothing but good things about them, and they have a large number of "turnkey" technology based solutions.

Thanks for your hard work!
 
Hey, great work on the site here. I'm collecting cars, and it is proving very helpful as I have about 20 Standards left to go... of course I'm finding they are for the most part 4 or 5 on the rarity scale. :ouch:
Thanks, I hope the UCD gods are kind to you in the future.
Some thoughts / suggestions / questions:

The flash messages that appear when I have added a car to my garage are great. Have you though about positioning the flash_wrapper div absolutely, so it will not affect the rest of your DOM? The benefit here is the rest of the UI elements won't be positioned relative to of the # of flash messages currently onscreen. As a test, I moved it to the top right by adding these CSS declarations:

position: absolute;
top: 0;
right: 0;

This worked great to keep the messages from affecting the UI. The top and right rules don't matter really, the absolute rule being the key there. Alternately, jGrowl is a great jQuery plugin that creates unobtrusive flash messages a la Mac OS's Growl.
Yeah, the current flash messages are a bit annoying. I've been meaning to tweak them. I've used jGrowl in the past, but I have more of a twitter style all ready to go in a branch of the project, I just haven't pulled the trigger yet and merged it.
It took me a bit to find the site navigation at the bottom. Have you considered placing it at the top, or maybe even both top and bottom?
This goes along with the flash messages. I had a friend do up a mock up of the site, and i really liked it, unfortunately, he didn't get around to doing anything but the cars index, and I'm hopeless at coming up with good designs (obviously) and have utterly failed to extend his design on my own. As a result, some of these things have been pushed off, as I hope and hope that my designer friend will find some spare time to lend me a hand. You make a great point though, and since it's taking longer than I had anticipated, I'll have to bump up the priority on at least making a few basic UI improvements. When the site first went up, there was no navigation. Oh how sites grow. ;)

I see you're using Datatables, a good choice. I've used, quite extensively, almost every jQuery based grid out there, among others like the amazing grid in ExtJS. I'd use ExtJS more, but it's a pay product if you want to get paid. All the grid products are an exercise in tradeoffs, though I see that area maturing significantly as HTML5 becomes supported in mainstream browsers. That said, I typically find myself using jqGrid. It excels at handling large recordsets, and has some very nice integrated features like subgrids, column grouping, column D&D/resize/hide&show, inline/modal filtering, inline/modal editing, etc. I'm actually very excited to see what the jQuery UI guys come up with, as they've been working on their own grid for some time now. They're taking the best of what's out there, coming at it from a data model perspective, and doing it up right.
I've used ExtJS, but I avoid it largely due to the creator's license snafu a few years ago. Datatables seems to work very well for me in the past, and I too look forward to see what Resig et al finally release. I've not used jqGrid, I'll have to give it a look, thanks. Most of the features you mentioned are available as datatables plugins if I decide I need them, and I've got a lot of work into the site's datatables implementation, so I doubt I'll switch away from it for this project.
As far as web hosts go, you really do get what you pay for. I've paid for not cheap but not expensive hosting since day one, and I'll never go another route. I use Fluidhosting, and they have been a very solid host for years now. However, due to my needs to expand into more Python and Ruby based projects, I am contemplating a move to WebFaction. I've heard nothing but good things about them, and they have a large number of "turnkey" technology based solutions.
I'll be looking into these, and a few other hosts soon I think. However, I have to say, that everything about heroku has been really really superb, except for the amazon outage (which took them with it), and this latest DDoS... I don't think I'm upset enough yet to leave, especially for a hobby site, but I will be checking prices on paid plans. That said, even were I a paying heroku customer, I would have experienced the same service interruptions.

Thanks for your hard work!
Thanks for your thoughtful feedback.

e.
 
Just integrated over 5200 new entries from Jaymanji's used car dealership observations. Thanks Jaymanji.

If you haven't been able to find a match before, there's a change you will now. Search the Used Car Dealership.

e.
 
I agree with the other poster saying that the overall background is a bit bland (white), but I love the organization.

Disagree, keep it simple. I like how it is more or less a spreadsheet (no distracting images or colors).
 
Just compiled my garage using your website. Thanks again for the great resource.
 
Disagree, keep it simple. I like how it is more or less a spreadsheet (no distracting images or colors).

OK, how bout an option to pick between 2 or 3 backgrounds? Nothing too complicated, I hope.

At any rate, I'm now fully transferred to this website and really enjoy it. Thank a lot, encoded.
 
Just pushed out a new site design, hope you enjoy it.

e.
 
Looks sick! Much cleaner than mygranturismo and I love the UCD calculator!

Kudos to you, Encoded.
 
One thought:

It would be nice if there was a way to indicate which cars are available to trade. For example, there are some cars in my garage which i am completely unwilling to trade. Not surprisingly, many of those (not willing to trade) cars are specifically asked for by people looking to make trades.

It would be nice to mark them as "off limits"

Love the site, glad to have a nice clean place to display my garage
 
One thought:

It would be nice if there was a way to indicate which cars are available to trade. For example, there are some cars in my garage which i am completely unwilling to trade. Not surprisingly, many of those (not willing to trade) cars are specifically asked for by people looking to make trades.

It would be nice to mark them as "off limits"

Love the site, glad to have a nice clean place to display my garage
I have a number of features in the works in that area. Stay tuned. ;)

e.
 
Brilliant website. Easy to use. Nicely presented. Quick navigation.

Everything that the game didn't manage to do quite right.
 
very nice!! any plans for a mobile friendly version, kinda hard to navigate with my android.
 
very nice!! any plans for a mobile friendly version, kinda hard to navigate with my android.
That is something I would like to do eventually, but I can't honestly say I see it happening anytime soon.

e.
 
Wow, nice background update! Thanks, encoded, you should get paid by PD for this work. Truly first class job.
 
More Used Car Dealership listings from jaymanji, that's over 2700 game days. Give a search and see if you're in "charted territory."

e.
 
Looks sick! Much cleaner than mygranturismo and I love the UCD calculator!

Kudos to you, Encoded.

Love the site, glad to have a nice clean place to display my garage

Brilliant website. Easy to use. Nicely presented. Quick navigation.

Everything that the game didn't manage to do quite right.

Wow, nice background update! Thanks, encoded, you should get paid by PD for this work. Truly first class job.
Thanks very much for your kind words everyone! I'm really glad you're enjoying the site.

e.
 
The redesign looks really nice. I got all my Standards entered, and alas I've 31 to go. The Chaparral 2J is the only 10+ million credit car left, so I shouldn't have to do too much more cash grinding at least.

I saw a couple data related items I thought I'd mention.

  • MINI / Mini - all but the Mini Cooper 1.3i '98 are under MINI. Only "Mini" is available from the Filter Results Make list in-game. Could be confusing to some, though I see why it was done as the other three cars do in fact have the make listed as "MINI".
  • The NISMO GT-R Road Going Version '95 is listed in the database as being a Nissan, whereas in the game it's under NISMO. http://gt5cars.net/cars/675

I imagine these were deliberate choices on the part of the data compilers, but you never know. I've done data compilation on this level for GT3 and GT4, so I know that PD's lack of attention to detail in this area can sometimes be frustrating.

re: ExtJS - Indeed, I would not be using the product at all if it weren't bundled with Adobe ColdFusion, which is what we use for app server technology at work.

I am using DataTables as part of a large project at work, and I intend to explore some of the plugins you mentioned hopefully this week.
 
Back