RonSijm

joined 2 years ago
[–] RonSijm@programming.dev 2 points 1 year ago

Cool thanks, I never heard of that one before, I'll try it out

[–] RonSijm@programming.dev 41 points 1 year ago (8 children)

YouTube is bringing its ad blocker fight to mobile. In an update on Monday, YouTube writes that users accessing videos through a third-party ad blocking app may encounter buffering issues or see an error message that reads, “The following content is not available on this app.”

Yea, noticed that last week. Is already fixed again in latest revanced.

[–] RonSijm@programming.dev 2 points 1 year ago (1 children)

it could be through a stylesheet, an alternative frontend, even just a pointer on how you could style a website into a different style. thanks!

You could download the Lemmy Frontend and rewire the API to point to the reddit API

If you just want to modify a bunch of things client side, you could download the browser extension Stylish

[–] RonSijm@programming.dev 1 points 1 year ago* (last edited 1 year ago)

Yea, what @hydroptic@sopuli.xyz posted is actually Java

What even is the point of creating standards if you design backdoors to them

If you're building in a backdoor anyways, why would the backdoor require 5 lines of weird reflection to get the type, type info, fieldinfo with the correct binding flags, and then invoking the method?

I think it's kinda neat compared to C#, just being able to say "Ignore private/protected/internal keywords"

[–] RonSijm@programming.dev 5 points 1 year ago

Also I don’t remember who said this but if this goes through it could allow C# web builds by loading Godot is a library.

Yea, right now Godot with C# doesn't really work - and they're saying they're transcoding it to HTML5 and WebGL 2.0

so I wonder if with this "LibGodot" you can just transcode LibGodot itself into WASM, and run "native" C#

[–] RonSijm@programming.dev 16 points 1 year ago* (last edited 1 year ago) (9 children)

Is it Java? It looked like ~~Microsoft Java~~ C# to me...

    public static void Main(string[] args)
    {
        var meme = new Meme();
        var joke = GetTheJoke(meme);
    }
    
    public static Joke GetTheJoke(Meme theMeme)
    {
        var memeType = typeof(Meme);
        var jokeField = memeType.GetField("Joke", BindingFlags.NonPublic | BindingFlags.Instance);
        return (Joke)jokeField.GetValue(theMeme);
    }
[–] RonSijm@programming.dev 2 points 1 year ago

Yea, that's why I mentioned these companies are just doing it wrong. Governments have the same problems as private companies, in that they don't really want to maintain their own cloud infrastructure, so they'll use something like AWS

But for example they could host their own On-premises HSM and encrypt their GovCloud to a degree that it's inaccessible to AWS

[–] RonSijm@programming.dev 2 points 1 year ago (2 children)

Struggling with a problem that i just can’t seem to figure out.

What problems are you struggling with specifically?

You basically just pick a system, for example Forgejo - that's comparable to a self-hosted github. Which also comes with github-like actions for CI/CD/Building

If those actions are not good enough for building, you could also self host something like Jenkins or TeamCity

[–] RonSijm@programming.dev 4 points 1 year ago (2 children)

It's pretty common that AWS is doing that, they even have a special GovCloud for them.

These companies are obviously just doing it wrong by having public S3 buckets

[–] RonSijm@programming.dev 2 points 1 year ago

I'm a simple man, I see Nick Chapsas, I upvote

view more: ‹ prev next ›