Posts21-30
CVE vulnerabilities on Google Chrome prior to releases around on Dec. 2022
Rust WebAssembly (wasm) with Webpack on Arch Linux (Rust 1.66)
Summary
WebAssembly (wasm in abbreviation) is “a binary instruction format”. It works on “a stack-based virtual machine”. It is not manually written as code. Instead, it is compiled from various programming languages such as C (programming language), C++, Golang and Rust (rustlang). In addition, it is different in some ways from what assembly is originally.
... ReadFix rustup failed with "error: linker `cc` not found" on Alpine Linux 3.17 (Rust 1.66)
Rust on Arch Linux: Getting started
PostgreSQL 14: Database migration with pg_dump
Summary
PostgreSQL offers native ways to export database as backup from existing server and import to restore it to another one.
... ReadFlutter 3 on Arch Linux: Getting started
Symfony 6 and JWT bundles: Refresh token
Symfony 6 and Lexik JWT Bundle 2: Auth with JSON Web Token
Summary
JWT, JSON Web Token, is one of the open Internet protocol standards, described as “a compact, URL-safe means of representing claims to be transferred between two parties” in RFC 7519 . It is popular and used widely to authenticate where Web API works. It is also available on SSO aka Single Sign-on.
... ReadSymfony 6 and EasyAdmin 4: Hashing password
Summary
With EasyAdmin bundle, you can create admin panel easily.
Well, as to User entity, given it has password field, you must want to hash it before it stored for security.
... ReadSymfony 6 and EasyAdmin 4: Admin Panel for User Management System