Summary Notes on "Implementing Secure User Authentication in PHP Applications with Long-Term Persistence"
- Secure Authentication is hard
(function () { | |
"use strict"; | |
const table = document.querySelector("table"); | |
if (table) { | |
const thead = table.querySelector("thead"); | |
const tbody = table.querySelector("tbody"); | |
// create "Path" header column |
{ | |
// Place your global snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and | |
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope | |
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is | |
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. | |
// Placeholders with the same ids are connected. | |
// Example: | |
// "Print to console": { | |
// "scope": "javascript,typescript", |
{"version":1,"resource":"file:///h%3A/Digital-Clock-main/Digital-Clock-main/script.js","entries":[{"id":"m8wb.js","timestamp":1662637426203},{"id":"kcQL.js","source":"undoRedo.source","timestamp":1662637430965}]} |
#Using the sass-migrator in monorepo
// @use "../../../package/browser/css/file"; // alternative solution
@use "~package/browser/css/file";
Calling the migrator in the root directory, which is the same directory of packages/node_modules
and node_modules
will only find
Official Blogpost: https://sass-lang.com/blog/the-module-system-is-launched
Release: https://github.com/sass/dart-sass/releases/tag/1.23.0
export function ExternalLink({ | |
href, | |
children | |
}: { | |
href: string; | |
children?: ComponentChildren; | |
}) { | |
return ( | |
<a href={href} target="_blank" rel="noopener noreferrer"> | |
{children || href} |