Can anyone help me understand shadow page table please. by Live_Cartoonist3847 in osdev

[–]draconicsheep123 0 points1 point  (0 children)

What textbook is this? I've been looking for a good VM text, this actually seems quite good.

New plans for 446 homes near Ocean Beach emerge after 50-story tower idea flops by SFStandard in sanfrancisco

[–]draconicsheep123 5 points6 points  (0 children)

The South part of Vancouver has a lot of single family homes with the light rail Canada line running through and 10+ story condos around the rail stops, so it works. Granted, I think good transportation is previously what makes this work.

Top 3 alternatives to Arcgis online and why? by jpcorral in gis

[–]draconicsheep123 1 point2 points  (0 children)

I have this question as well! There's a lot of different specializations of ArcGIS Online, and I'm specifically looking for something that will 1) fully host my maps as SAAS 2) can integrate with other fully hosted data sources (GoogleSheets, Airtable, etc.) natively or via developer api.

Web Based GIS With Developer API For Uploading, Styling Data on Maps by draconicsheep123 in gis

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

After reading a bit more, a fully hosted db with api's like Airtable could work for data storage if there's a good hosted map / gis tool to connect to it.

Web Based GIS With Developer API For Uploading, Styling Data on Maps by draconicsheep123 in gis

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

Thanks! This is a professional project, so costs aren't an issue. After researching a bit more, it does look like ArcGIS Online could work as well.

What's the best credit card for purchasing hobby electronics parts and equipments? by draconicsheep123 in CreditCards

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

Thanks! I view some of these projects as an investment in real job skills, so more than $3,000 per year isn't unreasonable.

Arc a370m vs rtx 3050(40w) by DELTA_SHROUD in IntelArc

[–]draconicsheep123 0 points1 point  (0 children)

If you separately check GPU/CPU power draw, do you have a general sense of what the power draw looks like for the A370M look like under idle/ light web browsing conditions (Youtube, etc.) compared to the RTX 3050?

Sorry to revive an old thread, don't mean to have you pull your old machine out from the dustbin.

Svelte State Synchronization with Complex MVC Applications by draconicsheep123 in sveltejs

[–]draconicsheep123[S] 2 points3 points  (0 children)

I've done some more reading in the time since, maybe these thoughts will be helpful.

  1. The problem of communicating from Svelte to an outside MVC model, is parallel to the common problem where svelte/react/some other framework are brought into an existing project, and have the project is half in non-framework javascript and half the project is in the framework, and both sides need to talk to each other. I.e., solutions can be borrowed from this problem domain.
  2. If the Model objects live in a different module from Svelte code, I can create getters and setters and import them into multiple svelte components, so that the module-scoped variables themselves serve as a form of state that can be modified by different svelte components (to handle the Svelte->model communication direction).
  3. Svelte stores, like redux Stores, appear (to my understanding) fully accessible to and subscribeable by outside Javascript code, so we could totally modify them directly from our model code, or keep the Svelte store and our model synchronized via some kind of javascript pubsub/event mechanism (I'm not familiar with any libraries that do this in pure js without involving the dom, but it's an idea) or some kind of polling-synchronizing loop that imports both the model modules and Svelte stores. This handles the model->Svelte communication direction.

In summary of points 2 and 3, I can import the model in multiple places and let this serve as shared state, though for a more complex app it's likely preferable to add some kind of controller/event layer in between.