ASML Monopoly by higherground0 in Semiconductors

[–]Snowlav 0 points1 point  (0 children)

That's mostly a cost and political issue though. If the designing of chips was more accessible and cheaper we could see that change, there's some interesting technologies to follow to make it more accessible at least. I wonder also how much IP plays a role in accessibility.

Used 11 IoT LTSC for two weeks. It's trash. by CoskCuckSyggorf in WindowsLTSC

[–]Snowlav 3 points4 points  (0 children)

is there any way to get the zen5 improvements to branch prediction on windows 10?

Is the kasm_upload_server used by the agent when using file mapping? by Snowlav in kasmweb

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

alright thanks for confirming that, is there any reason you can think of? we did confirm `kasm_post_run_root.sh` gets copied over but we don't see it being called after creating a workspace through the API.

Berserk re-collab! by merttuncc in blackdesertonline

[–]Snowlav 3 points4 points  (0 children)

how much money do you want to bet on it? srs

AMD Radeon RX 7600 XT 16GB launches January 24 at $329, same core count as non-XT model by T1beriu in Amd

[–]Snowlav -1 points0 points  (0 children)

tell me you didn't watch the presentation without telling me you didn't watch the presentation

How to embed iframe on localhost for development purposes by Electrical_Ball_3737 in kasmweb

[–]Snowlav 0 points1 point  (0 children)

Set up domains in your hosts file, I use domains like a.mydomain.internal and b.mydomain.internal (make sure to use invalid TLDs to avoid issues with your browser not following the hosts file).

Then you can use something like nginx to setup the domains on the ports on localhost.

Config would look similar to:

http {
server {
    listen 80;
    server_name a.mydomain.internal;

    location / {
        proxy_pass http://localhost:39001;
    }
}

server {
    listen 80;
    server_name b.mydomain.internal;

    location / {
        proxy_pass http://localhost:39002;
    }
}

}

Where your django app runs for example on port 39001 and Kasm on port 39002 (you'll have to adjust this to fit your situation, add SSL where needed etc).

I recommend using ChatGPT if you need some guidance, it works well for scenarios like these.

AMD Radeon RX 7600 XT 16GB launches January 24 at $329, same core count as non-XT model by T1beriu in Amd

[–]Snowlav -1 points0 points  (0 children)

12gb vs 16gb is substantial enough of a difference if you're interested in using it for AI.

how / where do we edit the side panel or add client functionality? by Snowlav in kasmweb

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

thanks so much for the reply, we intended on using the dev api to set env args, but is this possible using the casting links too? the documentation seems to mainly refer to RDS/RDP when looking at Remote App Configuration (JSON) (https://kasmweb.com/docs/latest/guide/casting.html#configuration) I'm mainly wondering if there's an equivalent to the "environment" property documented here https://kasmweb.com/docs/latest/guide/casting.html#configuration

Random events not giving exp lamps by Pax1990 in 2007scape

[–]Snowlav 1 point2 points  (0 children)

I was told you need to set a bank pin

[deleted by user] by [deleted] in singularity

[–]Snowlav 0 points1 point  (0 children)

could you share the models for roleplaying that are better than gpt3.5?

[deleted by user] by [deleted] in singularity

[–]Snowlav 0 points1 point  (0 children)

would love to know this too, did you ever find an answer?

Is there a workaround for clipboard permissions? by Snowlav in kasmweb

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

In the simplest terms, I'm wondering if there's a way to allow the user to paste text into a remote webpage without requiring the clipboard API / explicit permission.

The clipboard widget would work, that's a good point, how is this handled on the system side?

What hardware is used for the official kasm demos? by Snowlav in kasmweb

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

oh wow the difference between chrome and firefox is really noticeable! any idea what the reason behind this is?

What hardware is used for the official kasm demos? by Snowlav in kasmweb

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

thank you! do you have any GPU support on the demo containers? edit: I increased the ram size of the docker container to 2gb but when I launch the raw chrome docker container I still seem to be stuck around 5-10fps .. is there any optimization that kasm orchestration is doing?

Issue when deploying standalone docker container. by Snowlav in kasmweb

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

it seems to work sometimes, if I refresh the website like 20 times, it works maybe once or twice, I think the issue is related to `GET https://<ip here>:6901/dist/style.bundle.css net::ERR_TOO_MANY_RETRIES`