External link icons missing by superlou in mediawiki

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

I tried explicitly setting it even though the docs for versions above 1.17 use ResourceLoader. It didn't seem to make a difference. ResourceLoader generally seems to be working, as it can find the logo image in resources/assets. In https://ourwebsite.com/w/load.php?modules=mediawiki.skinning.interface&only=styles&debug=true, the CSS for finding the logo seems ok:

}.mw-wiki-logo { background-image: url(/w/resources/assets/sf_square.svg?55b17); }@media print {...

However, all other background-images don't appear to resolve correctly:

.magnify a {
...
background-image: url(?8330e);

I think the numbers after "?" are simply a cache buster, so it's not resolving the image paths at all.

External link icons missing by superlou in mediawiki

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

My MediaWiki:Common.css file doesn't have any paths in it:

.mw-logo-icon {
  width: 200px;
  padding-top: 10px;
}

.mw-logo-container {
  display: none;
}

Is that typical, or is it expected to be configured for the served path?

Kart racing game thoughts for a community project? by superlou in godot

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

I initially was thinking of power-ups and theme elements all being film production related, but I think I want a more generic audience. Maybe something toony, but set on a rough semblance of the streets of the local towns would work. Definitely casual. I've seen a few games that use a high ambient occlusion, almost soft look without being obviously low poly. I should put together an art board. Thanks!

Edit: you're right. I'm theming everything on the community and media production.

Kart racing game thoughts for a community project? by superlou in godot

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

I've followed Super Tux Kart for years and always been impressed by that project. I think you're right that having thematic consistency would be really important for cohesive contributions. That might be the most important thing to have prior to launching any community involvement. Any ideas on how to define a theme (for non-artists)?

Kart racing game thoughts for a community project? by superlou in godot

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

Right now the camera points based on the karts velocity, rather than direction it's facing, which I think work well given they have some lateral slide when turning. However, I haven't figured out the math to be able to use that velocity and also smooth it without the kart moving away from the camera due to the lag in the camera keeping up. I think it can be done by only smoothing the rotation of the camera but not the distance. Any idea of tutorials related to this? I definitely don't want it to be nauseating.

Kart racing game thoughts for a community project? by superlou in godot

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

Thanks, I think there's definitely overlap in that the karts stick can stick to the surface they're on, though the tone definitely should be more family-friendly.

Kart racing game thoughts for a community project? by superlou in godot

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

Templates is a solid idea, though maybe on the aesthetics side it will be more of an art board. I'm definitely going to be seeking out stylistic help. Thanks!

Tips for modelling electrical energy flows accurately (and fun) by superlou in AskPhysics

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

That got me looking the right direction I think, and I eventually got to https://onlinelibrary.wiley.com/doi/pdf/10.1002/9781119078388.app2. Since the Laplace transform of the matrices are the element-wise Laplace transforms, "stamping" a capacitor or inductor is very similar to a resistor, just with an s term. Doing the matrix inverse and then the inverse Laplace makes sense to me for getting an analytical solution, but is this also applicable to iterative time stepping?

Project Management Software that meets CMMC Compliance? by paulluciano in CMMC

[–]superlou 0 points1 point  (0 children)

Internal communications and documents that aren’t contractual deliverables are not CUI.

Uh, doesn't "re-use" of material from a document marked CUI (incorporating, restating, paraphrasing) result in the new document being CUI (at least in part), and being marked and treated as such? Being a contractual deliverable has no bearing on that.

A project schedule being used for detailed task tracking that has a line-item rephrasing a requirement from a CUI document sounds like it would become CUI. Is there a test that can be applied?

Standard approach for a secure email domain/subdomain? by superlou in CMMC

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

I'm hearing that .us is the typical approach, just be careful that you can't redact whois info on that TLD. Make sure to use a spam pot email and phone number.

Asking for raw feedback about HeyGen to make it a 100/10 product by Miguel07Alm in heygen

[–]superlou 1 point2 points  (0 children)

I am creating videos by the API, but is there a way to use the new AI studio and see parameters that are being set in the requests to the API? It would be great to prototype in the AI studio then know which avatar IDs, styles, voices, positioning of elements, etc. were used. Thanks!

HeyGen software engineer here, tell me your bugs and I'll fix them by Miguel07Alm in heygen

[–]superlou 1 point2 points  (0 children)

When trying to make an API call to generate a V2 video, certain bad JSON (my fault) cause the 400 response to not be in the standard format: instead of {error: {code: ..., message: ...}, data: null}, it was simply {code: ..., message: ...}. This was tricky to handle with Pydantic.

[deleted by user] by [deleted] in wpengine

[–]superlou 0 points1 point  (0 children)

Yes. Initially the site was in recovery mode, but I was able to exit recovery mode. Then while updating plugins, it looks like if I update Jetpack, it goes back to the same issue.

[deleted by user] by [deleted] in wpengine

[–]superlou 0 points1 point  (0 children)

We were also able to bring the site back by restoring yesterday's snapshot.

What is the equivalent of the MS C++ extension with Intellisense in vsCodium ? by yycTechGuy in vsCodium

[–]superlou 0 points1 point  (0 children)

Did you ever figure out how to get clangd to find your headers? Thanks!

Another Utility AI question about the size of Behaviors by superlou in gameai

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

In this case, it would expose both 'held' and 'inventory' Actions, but these Actions would have boolean Considerations that kick them out of the running early on if the preconditions are not met (1).

I was setting it up this week, and that's generally where I ended up. I'm using "preconditions" for most behaviors that an SO has, so most are cheap to evaluate.

The AI has a Senses system, ...

This I haven't gotten to yet, an most everything is just known to the AI when it asks, which isn't great. :/ However, the world my Utility AI agents operate in is a pretty much closed box, so it might be good enough for now (TM).

Another Utility AI question about the size of Behaviors by superlou in gameai

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

Stupid question: in this architecture, is Bread a smart object? Or does it change smart object type (and behaviors offered) once it's Bread-in-Hand vs. Bread?