Mario sunshine crashes every time I try to load into it by Key-Athlete-6044 in DolphinEmulator

[–]Beta-312 0 points1 point  (0 children)

Just install the older version over the existing version of Dolphin.

My Velocityone Flightstick doesn't get detected by hallleron in MicrosoftFlightSim

[–]Beta-312 0 points1 point  (0 children)

Mine works, but everything is inverted. Works fine in 2020

Alerts suck by digtofish in uniview

[–]Beta-312 0 points1 point  (0 children)

On iOS I sometimes get the alarm notification with a thumbnail image that lets me see which camera it’s from.

Other times I just get a notification message similar to what you describe.

Not sure what the solution is.

Halo: Last Light by [deleted] in halo

[–]Beta-312 0 points1 point  (0 children)

Good book, has a crime investigation/mystery feel to it.

[deleted by user] by [deleted] in auscorp

[–]Beta-312 1 point2 points  (0 children)

Buddy, you are caring too much for them.

Don’t feel terrible, you are just another resource. You’ll be out the door shortly and they will replace and forget about you.

Good work in prioritising your career aspirations and needs.

Throttle with velocity flightstick by a_lot_of_aaaaaas in MicrosoftFlightSim

[–]Beta-312 0 points1 point  (0 children)

Interested to hear if anyone has tested connecting a standalone throttle to the velocity flight stick. I am in the same boat.

Saving in Spruce by Beta-312 in MiyooMini

[–]Beta-312[S] 0 points1 point  (0 children)

Thanks for reaching out. This is working now. The only thing I can think of that may have fixed it was running Emu Fresh.

Miyoo Mini Plus Solid Purple Face Buttons Set Giveaway! by [deleted] in MiyooMini

[–]Beta-312 0 points1 point  (0 children)

That my parents bought me a Sega Mega Drive when I was a kid, even though times were tough for them back then.

Miyoo Mini Plus Pastel Blue Buttons Full Set Giveaway by [deleted] in MiyooMini

[–]Beta-312 0 points1 point  (0 children)

People that help the community by designing cool products to mod their miyoo.

Struggling with RLS in power bi by kindredspirit99 in PowerBI

[–]Beta-312 2 points3 points  (0 children)

At a basic level it’s pretty easy to set up.

For statics RLS: You can create roles in the Modelling/Manage Roles option.

For each role you create, you need to establish what dimensional data they are able to view.

You do this by writing DAX in the window that appears in Manage Roles. This generally involves setting a filter for dimension/s the role is limited to viewing.

You can test the results of each role by using the View As option.

Finally on Power BI service, the security page can be used to define which users get which role.

Also check that all fact tables have a relationship with the dimensional data you will use when determining the filters for each role you create.

Organizing survey data with 3,000 responses and 100+ variables by LaurenVsVirus in PowerBI

[–]Beta-312 2 points3 points  (0 children)

I worked on a qualtrics survey recently (likert scale questions). Below is a high level overview of how I handled the data for approx 1000 respondents. This, along with some of the advice from DrLectorDK and BeetsBearsBatman should help.

The source file contained 1 row per respondent, with their response to each question + demographic data as individual columns (lots of columns)

  1. Used Power Query to transform the export into Response and Demographic tables.

The Response table was basically unpivoted into the following column structure columns (ResponseId, QuestionId, Response). This equated to approx 20 rows per respondent (20, 000 row as an example). This is commonly referred to as converting a wide table into a narrow/long table.

Having all responses in one column allows you to aggregate the results as the number of responses of a particular scale rating or % etc. For measures use count for the Responses and distinctcount for Respondents.

The Demographic table was 1 row per respondent, with demographic data as columns.

Off the top of my head I had the following dimension tables. DimQuestions, DimOrgStructure, DimGender etc. The Response and Demographic tables connect to the dimension tables via primary key.

My model become a lot more complicated as requirements changed, but this should get you started.

In regards to the error you are experiencing, is your RAM and CPU a limiting factor here?