Use a "hidden" server, rather than LAN. This means that you can join via the master, using the server name. It's just not published. You may need to faff with firewalls, etc. depending on your situation.
Whilst GI-Frank is describing the situation as a "LAN", the range given is not within the RFC1918 address ranges (one of which you listed). This means one of two things;
1. The "LAN" is made up of publically addressable IPs
2. The "LAN" is inappropriately assigned it's IPs
The off topic forum is for stuff that doesn't fit in with the rest of the forum i.e. LFS. What people seem to do is associate OT with "spam as much crap as you like", which it is not.
Whatever version, of the several cruise mods that are/were available, that you are trying to use is broken. The two or so that had this bug were fixed in updated versions, if I remember correctly, however you'd need to check with the actual developer or the actual thread/location from which you got the mod in the first place.
The issue with becoming a mod is that by default people assume that you aren't allowed any ****ing opinions and must be doing "good for the community at all times". This makes participating with threads somewhat tricky.
The forum are pretty liberally ruled, and this is just how it's been shaped by Victor, etc. over the years.
Yes, there is a rise of crap in the forum but can I remind people one of several things:
1. Most, if not all of the mods have full time jobs and none of us get paid to do this.
2. As such we are not available 24/7, and believe it or not we might actually have other things to do aside from sit on the forum and read every single little thing posted.
3. Whilst we may not always be on the forum, quite a number of us are online a lot, and we rely on reports from users to alert us to problems. Use the "report this post" feature, by clicking the icon at the top right of every post which you feel is inappropriate. Posting "we need a mod" (or some such) in a post is completely, utter unhelpful. We don't see it until it's too late.
Can I offer a single piece of advice - if you intend to use the software, then by default you have an invested interest in producing _something_. It's then up to you whether or not you feel it should be a specific standard.
As nice as it is to do stuff for others, if you get nothing out of using your time to develop InSimInterface, then why bother? Work for yourself first, others second.
That should really render the poll kinda redundant.
The other fact would be that you're asking for a definitive answer about unfinished, unreleased and largely undocumented software. No one can really make the judgement, at this stage, that they intend to use your product.
More often than not it's certification or practical experience, unless you're trying to break into the middle of the market straight off the bat, in which case you'd really need to impress in the interview.
I've done certification for a handful of vendors, including MS. The basic two routes are:
1. Pay some company an obscene amount of money and then get everything all done, including exams and training.
2. Find out the content of the exam from the vendor website (http://www.microsoft.com/Learning/, for example), book the exam using an examination center (I used to use Pearson Vue and Thompson Prometric), study for the exam yourself, and then go in and do it. You can usually find study guides with the same name/ID as the exam on Amazon, etc.
In general terms MS exams are pretty straight forward, as with anything in life, provided you know your examiners and what they want.
Eric does the modelling, etc. Scawen does the programming. Eric's reasons for not posting have been covered by Scawen previously, but I can't lay my hands on it to quote it right now.
Unfortunately most of the real world code I've written to do this sort of stuff over the last 3 years is in a non-public application for work, and most of the personal stuff I do doesn't need the fancy JS stuff, as its only me using it.
However, a high level example would be something like this - a rating form for an item - the client by default gets a full form, with a dropdown list of "poor", "good", "excellant" and a submit button. To make it cooler, on full document load (I use jQuery, so "document ready") I find the form, remove the submit button, and hide the dropdown list. I then insert 3 images (stars), with applicable functions on hover, which changes the star to a filled in star, and on click which submits the rating for that item using a XMLHttpRequest, and sets the value of the dropdown list to match (because in the actual code this happens in, it's possible to submit the form in other ways).
Using jQuery or Prototype, etc. makes stuff like this very easy. Now some will argue that you're making life harder for yourself, and to an extent you are. However, I view it this way - I'm writing 1 full application, which will work in almost any browser from the last 10-15 years, and then I am modifying it only slightly.
If you're using MVC in some form, it makes dealing with getting data back in a compatible format very easy. For the Zend Framework you can write your own context handler, or use the AjaxContext controller plugin, there are applicable examples for almost every framework out there. If you've rolled your own it's almost as easy to do, as most popular JS frameworks send a "X_REQUESTED_WITH: XMLHttpRequest" header, so it's trivial to detect an "ajax" request.
Just a plea to any planning on using JS in any sort of major manner (i.e. in a large project) - make it gracefully degrade. The google countdown is a good example of how to assume that it's turned on, and what happens when it's not.
Use JS to rewrite the DOM, rather than write it completely and provide complete functionality
I've removed the names and links where applicable. I apologise if you didn't get a response from SamH eVo_BR, but believe me when I say if you PM a moderator then we at least pass the message(s) onto any applicable member of the development team.
I'm kinda surprised anyone has posted any code, especially Bob, since you've effectively flat out demanded someone do your homework for you, and all you've got is something that was easily accessible via any number of search engines.
I've closed the thread as I feel that you've got the answers you need. If you want it reopened please PM me rather than starting a new one.
I dont quite understand what you're trying to do tbh. You can use a single thread for talking over InSim, a queue which other threads can put packets in to be sent and received via InSim, and separate threads for the logic. Depending on what you're doing you could even do it in a single thread, as long as you're careful...
InSim also works over TCP (there are only limitations if you use UDP) and can accept multiple connections over that, so it's simply a case of connecting in the same way multiple times. But more than a handful of apps is a bit nutty to be honest.
Hmm, very good but you appear to be using licensed content in one of the videos. Please login with your licensed account or contact one of the mods so that we can verify.
If you modify the exe slightly and inject in a DLL of your own, there's no reason why you can't add a virtual machine to manage the scripting - be it lua, smallc, etc.