moonarchia
The Scientific Shitlord
- 24,867
- 47,009
Ask used car dealers how often their "make you wait in the office while they talk to the manager" schtick works. People are goddamn morons.
This also works through sheer exhaustion. After they do this six times and you've been sitting in the dealership five hours with nothing but stale donuts and coffee to eat and have experienced maybe 15 minutes of actual human interaction, you just want to get it over with.
Yeah, I don't get it. One dealership tried to do that to my wife and I when we were looking at cars and we just left. They came running asking us where we were going and I said we'd gladly buy our car elsewhere, since they didn't value our time.This also works through sheer exhaustion. After they do this six times and you've been sitting in the dealership five hours with nothing but stale donuts and coffee to eat and have experienced maybe 15 minutes of actual human interaction, you just want to get it over with.
Thinly veiled humble brag, must be a Vinen postCan't wait for new cars to be sold directly by the car company.
Wife and are in the process of getting a Model X and the experience has been AMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZING.
Thinly veiled humble brag, must be a Vinen post
Thinly veiled humble brag, must be a Vinen post
Man trying to buy a house in the city but they're all asking over a million. Kind of disappointing because I hoped they'd ask for two.
Any of you guys work on side jobs? I was thinking of trying to find some side work for extra dough but man, looking through Craigslist gigs section is garbage. I think I live in a fantasy world where I'm going to find some mom and pop business I can bill for 10 hours a month or something.
So you basically just do the schema design for their data and slap an ORM ontop of it and ship it out? Sounds like easy money.
Yeah I'd just use an extremely high level ORM. Anymore with Spring & Hibernate you'd be able to ship out a RESTful API to talk down to a Postgres/MySQL with very, very little code written by yourself. Just boot it up inside a Tomcat on some server and write the web UI to talk to your server and you're good to go. That is basically what I did for a few sample projects I did when applying to Blizzard to try and get my feet wet and the Spring4/Hibernate/Database integration was very slick these days. There is actually a really nice archetype out there on Github doing it all for you. It already has all the plumbing set up for your Spring4 webapp to startup in Tomcat, accept web calls RESTfully and persist whatever you want to a Postgres. It even has Spring Security built in so it does the login page for you and persists the users (securely) into the database as well. Within hours I had a little webapp up that a user would register/login and be presented a messaging queue. I'd hand these messages off to a RabbitMQ queue for "processing" (did nothing except echo the message I just wanted to get Rabbit up) and would persist the messages back into the Postgres for future retrieval and logging.
Hardest part for me would be writing the web front-end since I have no experience using Angular or any of the other sexy frameworks.
We need to talk about REST and API's and Blizzard.Yeah I'd just use an extremely high level ORM. Anymore with Spring & Hibernate you'd be able to ship out a RESTful API to talk down to a Postgres/MySQL with very, very little code written by yourself. Just boot it up inside a Tomcat on some server and write the web UI to talk to your server and you're good to go. That is basically what I did for a few sample projects I did when applying to Blizzard to try and get my feet wet and the Spring4/Hibernate/Database integration was very slick these days. There is actually a really nice archetype out there on Github doing it all for you. It already has all the plumbing set up for your Spring4 webapp to startup in Tomcat, accept web calls RESTfully and persist whatever you want to a Postgres. It even has Spring Security built in so it does the login page for you and persists the users (securely) into the database as well. Within hours I had a little webapp up that a user would register/login and be presented a messaging queue. I'd hand these messages off to a RabbitMQ queue for "processing" (did nothing except echo the message I just wanted to get Rabbit up) and would persist the messages back into the Postgres for future retrieval and logging.
Hardest part for me would be writing the web front-end since I have no experience using Angular or any of the other sexy frameworks.
I'd probably tell them I'm going to write my own data model and just import the data from their broken database. But of course all of that takes time and I have no clue what the expectations are for these consulting gigs. I'm actually investing a bunch of my free time in actually trying to learn Unity. I figure if I work in a place that sells games I may as well know my way around the basic structure even if I have no real aspirations of that side of the coding world.