9Stream Web WS w/ eGPU

Comments, suggestions, compliments, etc
Post Reply
User avatar
tommhnsn
Posts: 4
Joined: 2022/01/12 01:00:33
Location: Okeechobee, Florida
Contact:

9Stream Web WS w/ eGPU

Post by tommhnsn » 2022/01/12 04:30:33

The most notable change from my Fedora to Cent OS 9 Stream was that my login screen appears on my external display with Fedora as opposed to CentOS Stream 9 running on a System76 Galp4, Razer Core X with NVIDIA GTX 1660 TI on a LG display 165 hertz extended adaptive sync display.

Not having FFMPEG, I use Google Chrome for videos when I rather have Firefox. I think this is the responsibility of the web site to provide AV1, Opus, Youtube by Google requiring me to use Chrome feels like a scheme.

Visual Studio Code by Microsoft is the best development environment but I would want an IDE built with a modern user interface. The vscode is a fragmented typescript puzzle. Compared to the text editor "Code" from the Elementary OS team the source code for the user interface is easily interpreted.

I am in the midst of making my own PHP forum with the Fat Free framework. Basing the design off of Flarum I have 4 media styles, phone <768px, tablet 768px-991px, desktop 992px-1099px, desktop-hd 1100px. Setting the viewport to tablet on noscript is needed because the phone drawer does not work without ECMAScript.

Code: Select all

<head><meta name="viewport" content="width=768, initial-scale=1" />
<script>
document.querySelector("meta[name=viewport]").setAttribute("content", "width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0");
var link  = document.createElement('link');
link.rel = 'stylesheet'; link.type = 'text/css'; link.href = "phone/phone.css";
document.getElementsByTagName('head')[0].appendChild(link)
</script><style type="text/css">.noscript {min-width: 769px;}</style></head>
<body class="noscript">
	<script>document.getElementsByClassName("noscript")[0].classList.remove('noscript');</script>
</body>
There should be <ifscript> tag and the viewport is capable of adjusting media queries. Instead I have to import the phone CSS to prevent the phone media query on noscript and add a class to set the new minimum width. I plan on making my forum open source, and integrate a wiki. My plan is to make a language learning site where people can share lessons and embed interactivity. I made a proof of concept Japanese language learning website you can see at http://abokado.herokuapp.com/ the text to speech use to only work on Linux with Google Chrome but now see a Japanese option on CentOS. I want to learn Japanese, Arabic, and Russian and support the ever interested language learning community.
Last edited by tommhnsn on 2022/01/12 22:10:50, edited 3 times in total.

User avatar
tommhnsn
Posts: 4
Joined: 2022/01/12 01:00:33
Location: Okeechobee, Florida
Contact:

Re: 9Stream Web WS w/ eGPU

Post by tommhnsn » 2022/01/12 21:43:56

After starting my computer from a shutdown and opening Firefox, the window is maximized but renders in a 640x480 with the rest of the window blacked out and my previous tabs open. I forgot to take a screenshot. When the bug occurred I had >7 tabs open

User avatar
TrevorH
Site Admin
Posts: 33191
Joined: 2009/09/24 10:40:56
Location: Brighton, UK

Re: 9Stream Web WS w/ eGPU

Post by TrevorH » 2022/01/12 22:01:29

As far as I know, no--one from the Stream team reads or even glances at the forums so reporting bugs in Stream 9 here will probably not help.

For information on filing bugs against CentOS Linux or CentOS Stream please see https://wiki.centos.org/ReportBugs
The future appears to be RHEL or Debian. I think I'm going Debian.
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are deadest, do not use them.
Use the FAQ Luke

User avatar
tommhnsn
Posts: 4
Joined: 2022/01/12 01:00:33
Location: Okeechobee, Florida
Contact:

Re: 9Stream Web WS w/ eGPU

Post by tommhnsn » 2022/01/12 22:42:39

mochiron, of course

Post Reply