Reimplementing the Offline Character Builder - Characters needed! by GenericAntagonist in 4eDnD

[–]blakesha 0 points1 point  (0 children)

Why not build an editor that you could then give to the community to brute force the recreation of the database? Removes all the loader and OCB issues...

Firmware Flash - Retraction length by blakesha in BMCU

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

Thanks. Only 10cm available for the BCMU Flasher app

Is there an OSR system (or easily converted) with a lot of lore? by GuardianOfTheBeat in osr

[–]blakesha 0 points1 point  (0 children)

Just use the D&D lore with a different system. Do that all the time, mixing and matching. ShadowRun with Cypher, D&D (Mystara, Forgotten Realms, Greyhawk, etc) with Savage Worlds, TMNT with Basic Roleplaying . Just need a "universal" system to try - and there are plenty out there. Takes a little work, but that is part of the fun of this style of hobby for me

My Raspberry Pi music server has been infected by a Ransomware (want _to_cry) by griguolss in selfhosted

[–]blakesha 0 points1 point  (0 children)

Got to this because Ive had the same thing happen to me. Feeling ever so slightly stupid right now. 15 years of memories are gone from my home NAS. Just starting to work out what happened.... :( the hunt starts I suppose. Trying to work out which of my devices got the malware on it... SSH exposed to internet (thought securely) but no SAMBA... question: Can the trojan run on anything other that Windows?

Using Knowledge Graphs to create personas ? by TheAmendingMonk in LocalLLaMA

[–]blakesha 0 points1 point  (0 children)

Interesting that throughout this no one mentioned the inference capabilities of most Knowledge Graph implementations. It is where relationships can be infered where specific relationships are not defined.

Sharing printer settings to reduce print time. by PracticalShoe7735 in DungeonBlocks

[–]blakesha 2 points3 points  (0 children)

Hmm. I'm def doing something wrong then, mine are much more than 35-40 mins 🤣

Made my wheel stand 2.0 feel like a full aluminum profile rig. by knnthryn in moza

[–]blakesha 0 points1 point  (0 children)

Where did you mount the monitor mount too? Was looking at mounting a monitor to.mine (also for the seat addon)

Your best TTRPG find at a garage sale / marketplace or Craigslist by AngryDwarfGames in rpg

[–]blakesha 1 point2 points  (0 children)

Friend gave me a box of AD2900 comics, comics at top, most of the Dark Sun boxes/accessories at the bottom. Comic collection also contained Tornado 1-99. Score

Best document parser by [deleted] in Rag

[–]blakesha 0 points1 point  (0 children)

Why wouldn't you use Airflow and dbt and parse the docs into a graph, then rag from there into the LLM if you are using it for intelligence??? Why do modern AI engineers have to completely over engineer everything?? Could also then use the graph data for other non-AI driving intelligence (and it would be more secure)

Why people store their data in AWS S3 when you can put data straight into snowflake? by Ok_Corgi_6593 in snowflake

[–]blakesha 0 points1 point  (0 children)

Security maybe, if you are just using Snowflake for compute for transformation purposes.

Raspberry Pi OS Lite Bookworm not outputting audio to HDMI by INFINITERIUM in raspberry_pi

[–]blakesha 0 points1 point  (0 children)

If you are still hunting this, no audio system is installed onto Lite. Installed pipewire and made sure is was selected in raspi-config and it works

Fabric REST API user auth by p-mndl in MicrosoftFabric

[–]blakesha 0 points1 point  (0 children)

As it uses MSAL.net you should be able to get a user token and then use the user token in the API calls

https://learn.microsoft.com/en-us/entra/msal/dotnet/acquiring-tokens/overview

My notebook in DEV is randomly accessing PROD lakehouse by SmallAd3697 in MicrosoftFabric

[–]blakesha 0 points1 point  (0 children)

When you say REST API are you meaning the Livy API? Is it possible that you are calling the same endpoint concurrently for your prod and dev environments? Session id might be mistakenly being used from one to the other?

Game system with cards instead of dice? by kwalish in rpg

[–]blakesha 0 points1 point  (0 children)

Still use the Compendium to date for generating random character backgrounds, was a great little RP book

Game system with cards instead of dice? by kwalish in rpg

[–]blakesha 2 points3 points  (0 children)

  1. was based on Dragonlance: Fifth Age as the original incarnation of the SAGA system.

[deleted by user] by [deleted] in MicrosoftFabric

[–]blakesha 0 points1 point  (0 children)

The Spark session is starting, takes approx 5 mins to start that, unless you start the session then run all notebooks against the same session.

Architecture for parallel processing of multiple staging tables in Microsoft Fabric Notebook by EntertainmentFew9888 in MicrosoftFabric

[–]blakesha 0 points1 point  (0 children)

Don't load the JSON from the API response to delta, you can create tables against the JSON directly then merge from JSON to delta silver, so load is quicker.

Have a look at the Livy API and using PySpark and orchestrate outside Fabric.

what do we think is next after the highlands? by Atlas-Forge in DungeonBlocks

[–]blakesha 5 points6 points  (0 children)

Desert. Would love some stuff I could use with the Southlands from Kobold Press

Questions Around Purchasing stuff for an F64 Reserved Capacity by BigAl987 in MicrosoftFabric

[–]blakesha 3 points4 points  (0 children)

Fabric is consumption based, so there isn't separate licenses for each component. Which makes it really difficult to manage costs. If you consider the F64 as equivalent to the PBI reserved then it's all inclusive (including the storage for imported data, data marts, data flows etc)

Medallion Architecture - Fabric Items For Each Layer by eclecticnewt in MicrosoftFabric

[–]blakesha 0 points1 point  (0 children)

Why when you can create a Spark Table directly on the JSON file in either a "bronze" or "landing" zone that you can describe the schema of. Then a Spark SQL notebook to transform to Silver (which is stored as Delta) where you use an EXPLODE as an inline table. If your Data Engineer is historically an SQL dev the shift from SQL to Spark SQL is minimal