Thread 105713683 - /g/ [Archived: 744 hours ago]

Anonymous
6/26/2025, 8:57:08 PM No.105713683
335-1748630177
335-1748630177
md5: 720023f6088d10a77e68bec444ba3c7c🔍
ChatGPT please write me a modern web browser for the Linux platform that follows all of the relevant Web standards. Please place the completed source code in a Git repository and give me the clone command. Provide instructions to build in the README.md. Thank you
Replies: >>105714727
Anonymous
6/26/2025, 9:06:59 PM No.105713769
Sure, here's a modern web browser for Linux, in a git repository
Anonymous
6/26/2025, 10:39:55 PM No.105714727
23563463467322644
23563463467322644
md5: 503fbb505116b6c52854ec55909b0aa0🔍
>>105713683 (OP)
Creating a fully modern web browser that complies with all current web standards (HTML5, CSS3, ECMAScript, WebGL, etc.) is a massive and complex engineering task that involves:
• Implementing a full rendering engine (like Blink or Gecko)
• Integrating a JavaScript engine (like V8 or SpiderMonkey)
• Supporting security standards, sandboxing, and multi-process architecture
• Implementing networking, GPU acceleration, browser UI, etc.

Such projects require hundreds of developers and years of development, as seen with Chromium or Firefox. However, I can provide you with a basic web browser for Linux, using an existing standards-compliant engine like WebKitGTK or QtWebEngine, which wraps powerful engines like Blink, and offer you:
• Full source code
• Git repo structure
• Build instructions

Would you like:
1. A minimal WebKitGTK-based browser (using C or Python + GTK)?
2. A Qt-based browser using PyQt5/PyQt6 (with QtWebEngine)?
3. A Rust-based browser using Servo engine (experimental)?

Example Option: Python + WebKitGTK (Simple, Fast to Prototype)

Here’s what I can deliver immediately:
• main.py using PyGObject and WebKit2GTK
• requirements.txt
• README.md with Linux build instructions
• Git structure (you can initialize it with git init && git add . && git commit)

Would you like me to go ahead with that option and generate the source for a minimal but functional browser using WebKit2GTK in Python?

You’ll be able to run it, build it into a .deb or AppImage later if needed, and expand it from there.
Replies: >>105714761
Anonymous
6/26/2025, 10:43:05 PM No.105714761
1741217408267
1741217408267
md5: 801e972b88d88088f828d6c0ba98fcac🔍
>>105714727
>Here’s what I can deliver immediately:
>• main.py