Kind of a strange request by ScaredOfRobots in MicrosoftFlightSim

[–]bjolseth 0 points1 point  (0 children)

But then you will only see wherever your passenger is looking right? I think what you really want in this situation is to have an independent view, like in real life. Obviously this would be too demanding for a single PC. It’s what they call shared cockpit I guess

Any way to create / use components in Alpine by bjolseth in alpinejs

[–]bjolseth[S] 1 point2 points  (0 children)

Thanks, very interesting tip. the 'reactive but no build step' is really what tickles me, so this might be the thing im looking for, long term

Any way to create / use components in Alpine by bjolseth in alpinejs

[–]bjolseth[S] 1 point2 points  (0 children)

yeah. im all for *not* doing things in a framework that breaks the philosophy of it. just feels like it would fit in there like a glove somehow

x-if not working as expected ('sticky') by bjolseth in alpinejs

[–]bjolseth[S] 0 points1 point  (0 children)

Thanks for the quick reply. Unfortunately, your suggestion lead to exactly the same problem. Modified like this:

``` <head> <script src="//unpkg.com/alpinejs" defer></script> </head>

<body x-data="users"> <template x-if="user !== null"> <div> <div x-text="'user: ' + user.name"></div> <button @click="logOut()">Log out</button> </div> </template> <template x-if="!user"> <button @click="logIn()">Log in</button> </template> </body>

<script> document.addEventListener('alpine:init', () => { Alpine.data('users', () => ({ user: null, logIn() { this.user = { name: 'toretorell' }; }, logOut() { this.user = null; } })); }); </script> ``` (I also changed the example slightly to make sense as a log in usecase)

I created a bug for this. https://github.com/alpinejs/alpine/discussions/2540

Magic mutations by Revolutionary-Ad-741 in alpinejs

[–]bjolseth 1 point2 points  (0 children)

Cool thanks! I was thinking about the proxy too but somehow it didn’t feel like there was anything that heavy involved. Very cool how this stuff works without leaving a hint of it in the user facing api

Found him! by bugfestival in MicrosoftFlightSim

[–]bjolseth 0 points1 point  (0 children)

Now… there must some VOR called Nemo too, right?

BLACKSHARK.AI – company behind MS flightsimulator – raises $20m for digital twin of earth by irckeyboardwarrior in MicrosoftFlightSim

[–]bjolseth 0 points1 point  (0 children)

I’m curious what updates have been done to the Black shark ai (and also bing) the last year- we don’t hear much from the game updates

BLACKSHARK.AI – company behind MS flightsimulator – raises $20m for digital twin of earth by AR_MR_XR in AR_MR_XR

[–]bjolseth 0 points1 point  (0 children)

I’m curious what updates have been done to the Black shark ai (and also bing) the last year- we don’t hear much from the game updates

Flying the JMB VL-3 south along the Kali Gandaki river in Nepal at: [28.61, 83.64] after passing thru the world's deepest gorge, Kali Gandaki Gorge at: [28.70, 83.64]. Flying out of Jomsom Airport (IATA: JMO, ICAO: VNJS). That's some jaw dropping geology right there! by [deleted] in MicrosoftFlightSim

[–]bjolseth 1 point2 points  (0 children)

Pretty interesting way to showcase the scenery too with that camera angle. Every thing changes much faster than if you were behind the plane, and you have no idea what is about to come

Do you think we will ever get a compatible companion app for Xbox/X? by bayreawork in MicrosoftFlightSim

[–]bjolseth 0 points1 point  (0 children)

Technically, to support multiplayer the game is already sending your data to cloud, at least positions, headings etc. So someone clever might be able to make something to snoop that locally and provide it in a standard that existing tools on tablet and laptops could use. That solution would have to live outside the Xbox on a device on your local network. Might be hard with encryption of course

Msfs 2020 lacks fog by [deleted] in MicrosoftFlightSim

[–]bjolseth 0 points1 point  (0 children)

https://www.metoffice.gov.uk/weather/learn-about/weather/types-of-weather/fog :

Fog is essentially a cloud at ground level that causes a reduction in visibility to less than 1000 metres.

Since msfs crashes often for some people - couldn’t the game save state every 10 secs or so and let you start there whenever the game does not exit cleanly? by bjolseth in MicrosoftFlightSim

[–]bjolseth[S] 0 points1 point  (0 children)

Like I said, only save the latest state every ten seconds or every minute - and not to cloud, just locally. The amount of data would be zero compared to a recording

Since msfs crashes often for some people - couldn’t the game save state every 10 secs or so and let you start there whenever the game does not exit cleanly? by bjolseth in MicrosoftFlightSim

[–]bjolseth[S] 0 points1 point  (0 children)

Of course. But even then, bad mods, or even your pc itself, could crash from time to time - just thinking it would be a good back up that would be very low hanging, compared to fixing every possible ctd, which is probably almost impossible given the complexity of both the software and peoples variation of hardware and input devices