An experimental animation where cards slide through a glowing beam and transform into code. Inspired by the awesome Evervault visuals ✨
A Pen by BL/S® Studio on CodePen.
An experimental animation where cards slide through a glowing beam and transform into code. Inspired by the awesome Evervault visuals ✨
A Pen by BL/S® Studio on CodePen.
//#region: Markdown parsing utils | |
import rehypeFormat from "rehype-format"; | |
import rehypeStringify from 'rehype-stringify'; | |
import remarkGfm from "remark-gfm"; | |
import remarkParse from 'remark-parse'; | |
import remarkRehype from 'remark-rehype'; | |
import { unified } from 'unified'; | |
export async function parseMarkdown(textToParseIntoMarkdown: string): Promise<unknown> { | |
const markdownProcessor = unified() |
// ==UserScript== | |
// @name Medium Paywall Bypass | |
// @namespace Violentmonkey Scripts | |
// @run-at document-start | |
// @match *://*.medium.com/* | |
// @match *://medium.com/* | |
// @match *://*/* | |
// @grant none | |
// @version 2.4 | |
// @inject-into content |
""" | |
Single Responsibility Principle | |
“…You had one job” — Loki to Skurge in Thor: Ragnarok | |
A class should have only one job. | |
If a class has more than one responsibility, it becomes coupled. | |
A change to one responsibility results to modification of the other responsibility. | |
""" | |
class Animal: | |
def __init__(self, name: str): |
This was created years ago; at the time I'd been a Shibboleth admin for nearly a decade but we needed something that could handle OIDC/OAuth and that explicitly supported OpenJDK. After a lot of investigation, I really liked Keycloak/Red Hat Single Sign-On. More details here: Gluu vs keycloack vs wso2 identity management
(Items in bold indicate possible concerns)