The online racing simulator
Searching in All forums
(677 results)
traxxion
S2 licensed
You using Logitech pedals there Tristan? Seems like your throttle is spiking a little, I hope that's only the sensor?
Enjoyed watching the vids once again, Croft seems like a fantastic track to me!! Your car looked a lot less driveable here though, was that the different tyre brand, or couldn't you get the setup to work?
traxxion
S2 licensed
Quote from el pibe :i feel sad, ferrari just broke my heart. i dont understand, why replace a driver who filled the whole team and fans with pride during the post shuey era, for a man ( the last man to defeat shuey)

Sounds like a good enough reason to me...
Alonso signs a 5 year deal with Ferrari?
traxxion
S2 licensed
Quote from SportsDeskLive :Alonso has reportedly signed a 5-year-deal with Ferrari. He becomes the 1st Spanish rider at Ferrari since Alfonso de Portago in 1956-57.

Just saw this on Twitter... No one else seems to have this news yet though?

Edit: a Dutch sports magazine's website reports about the deal too.. Source is a Spanish radio channel called Cadena Ser, they say it's a 5 year deal, with an option for a 6th year, that Alonso uses a clause in the Renault contract and that he will earn €25 million per year at Ferrari.

The deal should be announced officially on thursday... Would mean we finally have a true fighter in a Ferrari cockpit again... can't wait!!
Last edited by traxxion, .
traxxion
S2 licensed
Quote from (The Stig) :Hammiltian is up on Pole Posistion!!!

Jes*s f*ck.

Quite boring race, pity about the Vettel penalty, but good to see Alonso and Glock on the podium!
traxxion
S2 licensed
What a great looking and functioning website Yannick.. very nice!
traxxion
S2 licensed
Quote from mackie the staggie :watching practise...and guess who has just parked it at turn 17 :d

Quote from noblef1 :media centre has just erupted in applause at grosjean's crash - 12 months on from piquet

:d
traxxion
S2 licensed
This stuff is great! Wish every country had these kind of league systems, and the final round would be a World Championship with the winners of every country's league or something.. very nice!
traxxion
S2 licensed
As far as I know this has happened in Masters of Endurance (was on livestream) before.. so a known bug!
traxxion
S2 licensed
Quote from amp88 :OK, can you try the following then please. Open command prompt then navigate to the folder where the JAR file is located. Type in the following:

java -jar "LFS Qualifying Ticker 0.1.6 Alpha.jar"

Then copy whatever output is generated in command prompt here, please.

For some strange reason it actually works now that I'm trying that.. did the exact same yesterday to no avail.. Maybe I had to restart LFS yesterday, after all the fails I had trying to launch your app. So anyway, it works now, looks nice!
traxxion
S2 licensed
Quote from amp88 :The contents of the config file are OK. Do you have a "LFSQualifyingTicker.log" file in the directory where your JAR file is? If so could you post the contents of that file here, please?

Nope, sorry.. no log generated here!
traxxion
S2 licensed
Looks like a very interesting application Angus! Trying to run it, but I get the following message:
EDIT: nevermind, forgot to add the -jar option to the command!
EDIT2: still a problem.. see below (config.cfg renamed to .txt so i could upload here)
Last edited by traxxion, .
traxxion
S2 licensed
Finals are today! Some live updates here or here!

EDIT: had to delete some of the updates due to contractual obligations!
Last edited by traxxion, .
traxxion
S2 licensed
Nice, congrats both!
traxxion
S2 licensed
Quote from tristancliffe :"'Do you know that woman?' - 'Not yet!'"

Hahah yeah, that made me laugh out loud!

Just watched the race yesterday. Nice GP with quite an unpredictable result, and tension all the way. Awesome to see Hamilton push even in the final lap, against all odds. I kinda like that "who does Button think he is, driving in front of me.. I'ma show I'm the friggin' best" attitude. Oh and no, I'm not a fan of Hamilton as such..
Too bad to see the RBR's out of the championship fight now, as I'm not a fan of Button or Barrichello either. I hope they're gonna put up a nice fight together!
traxxion
S2 licensed
2h09m44s

Good luck Dan!
traxxion
S2 licensed
Took me some time since I spent the weekend abroad, but I've just tried your suggestions!
Quote from elkdanger :

// Almost the same as your query, but note the placement of the call to ToList()
var memberList = from team in context.Teams.ToList()
where team.Name == "F1RST Racing"
select team.Members;

The "work-around" in both samples above is the call to ToList(), which of course evaluates and executes the query before your extra query parameters are added in to the mix. The difference is after the ToList() call you are performing your query on the results in memory, rather than trying to send to the pubstat service which is why the error is occuring.
Let me know how you get on with that

Perfect, that works, and thanks to your explanation I also know why; much appreciated, thanks a lot!!

Quote from elkdanger :Edit: Since you mentioned the racer sample from my first post, I seem to remember something funny going on with that sample and that actually may not be the correct code, because I don't think you can actually perform a select like that without evaluating the result set first. I'll have a look later and update the code with the correct version if it doesn't in fact work.

I've implemented the racerstats request according to your example and so far I've had no problems with it.. but if you think something's wrong, I'd appreciate hearing your suggestion

Thanks again!
traxxion
S2 licensed
Hi again

I have a problem when requesting team data:
var memberList = (from team in context.Teams
where team.Name == "F1RST Racing"
select team.Members).ToList();

The request above raises the following exception (Anonymous Select not supported):

LinqToLfsWorld.PubstatQueryException was unhandled by user code
Message="Anonymous Select not supported"
Source="LinqToLfsWorld"
StackTrace:
bij LinqToLfsWorld.Queries.LfsWorldQuery`1.GetBaseExpression(Expression expression) in C:\Documents and Settings\René\Mijn documenten\Visual Studio 2008\Projects\LinqToLfsWorld\Queries\LfsWorldQuery.cs:regel 214
bij LinqToLfsWorld.Queries.LfsWorldQuery`1.GetQueryText(Expression expression) in C:\Documents and Settings\René\Mijn documenten\Visual Studio 2008\Projects\LinqToLfsWorld\Queries\LfsWorldQuery.cs:regel 87
bij LinqToLfsWorld.Queries.LfsWorldQuery`1.Execute(Expression expression) in C:\Documents and Settings\René\Mijn documenten\Visual Studio 2008\Projects\LinqToLfsWorld\Queries\LfsWorldQuery.cs:regel 116
bij LinqToLfsWorld.Linq.Query`1.GetEnumerator() in C:\Documents and Settings\René\Mijn documenten\Visual Studio 2008\Projects\LinqToLfsWorld\Linq\Query.cs:regel 70
bij System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
bij System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
bij TalentScout.MainForm.UpdateTeam() in C:\Documents and Settings\René\Mijn documenten\Visual Studio 2008\Projects\TalentScout\TalentScout\MainForm.cs:regel 301
bij TalentScout.MainForm.ExecuteRequest(LfsWorldRequest req) in C:\Documents and Settings\René\Mijn documenten\Visual Studio 2008\Projects\TalentScout\TalentScout\MainForm.cs:regel 256
bij TalentScout.MainForm.tmrRequest_Elapsed(Object sender, ElapsedEventArgs e) in C:\Documents and Settings\René\Mijn documenten\Visual Studio 2008\Projects\TalentScout\TalentScout\MainForm.cs:regel 228
bij System.Timers.Timer.MyTimerCallback(Object state)
InnerException:

Now I just noticed the TeamQuery class, but I can't seem to get that work.. would you mind posting a quick example, like the RacerStats one in your first post? Would be very appreciated!

Cheers!
traxxion
S2 licensed
Quote from NSX_FReeDoM :english dude

Thanks to our real-life cooperation partner we can deliver you a special service. Following our motto "Virtual meets Reality" you will find the latest - first hand - press info from various motorsport teams on our website.

PS Simracers are very welcome, and of course there is also something to win! In every league you can win a PlaySeat in a raffle for all drivers who have participated in 80% of the league races. On top of that we have medals, cups, etc.
Last edited by traxxion, .
traxxion
S2 licensed
Good catch! Grats both!
traxxion
S2 licensed
Quote from elkdanger :Also, have a look here and let me know if this works for you.

Great! That did the trick! Many thanks for your quick reply!!
traxxion
S2 licensed
Quote from elkdanger :No problem - let me know if you have any issues with the library :-)

Thanks! I have one issue.. the library documentation file doesn't seem to work here (see attached). I have IE8 installed, might have anything to do with that? Any ideas?
traxxion
S2 licensed
I know this thread is ages old, but I'd still like to thank you for this one.. I was almost going to try this myself before I did a quick search on the forum.. Very useful, thanks!
traxxion
S2 licensed
Quote from Shotglass :brain the size of a planet and they make me watch clouds

HAahahahahaaaa!!! :ices_rofl
traxxion
S2 licensed
Quote :Regularly consuming alcohol is correlated with an increased risk of developing alcoholism, cardiovascular disease, malabsorption, chronic pancreatitis, alcoholic liver disease, and cancer. Damage to the central nervous system and peripheral nervous system can occur from sustained alcohol consumption.

Quote :Results of autopsy show that patients with a history of chronic alcohol abuse have smaller, less massive, and more shrunken brains than nonalcoholic adults of the same age and gender.

FGED GREDG RDFGDR GSFDG