- 27 отличных open source-инструментов для веб-разработки / Хабр
- HTML5 UP! Responsive HTML5 and CSS3 Site Templates
- CSS Layouts collection
- Development Tools
- Neumorphism/Soft UI CSS shadow generator
- Free Frontend
- Руководство по иконкам для современных браузеров.
- Animation Library - SCSS / CSS3
- Favicon Generator for perfect icons on all browsers
- Can I use... Support tables for HTML5, CSS3, etc
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 491a50b88d82dc9a775a89ddc7e26fa7527a7b16 Mon Sep 17 00:00:00 2001 | |
| From: Roman Orlowski <[email protected]> | |
| Date: Tue, 24 Oct 2023 18:57:13 +0300 | |
| Subject: [PATCH] add '--disable-gpu' flag | |
| --- | |
| packages/lib/BaseApplication.ts | 7 +++++++ | |
| 1 file changed, 7 insertions(+) | |
| diff --git a/packages/lib/BaseApplication.ts b/packages/lib/BaseApplication.ts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| if command -v bun > /dev/null 2>&1; then | |
| if [ -p /dev/stdin ]; then | |
| stdin_fd="$(mktemp -t XXXXXXXX.bun_stdin.ts)" | |
| command cat - >"$stdin_fd" | |
| command exec 0<&- | |
| command bun "$@" "$stdin_fd" |
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++. It is used in Chrome and in Node.js, among others. It implements ECMAScript and WebAssembly, and runs on Windows 7 or later, macOS 10.12+, and Linux systems that use x64, IA-32, ARM, or MIPS processors. V8 can run standalone, or can be embedded into any C++ application.
SpiderMonkey is Mozilla’s JavaScript and WebAssembly Engine, used in Firefox, Servo and various other projects. It is written in C++, Rust and JavaScript. You can embed it into C++ and Rust projects, and it can be run as a stand-alone shell. It can also be [compiled](https://bytecodealliance.org/articles/making-javascript-run-fast-on