Skip to content

Instantly share code, notes, and snippets.

View wjford's full-sized avatar

William Ford wjford

  • Martin Bros. Distributing Co
  • Carmel, IN
View GitHub Profile
@mjkstra
mjkstra / arch_linux_installation_guide.md
Last active October 26, 2025 16:14
A modern, updated installation guide for Arch Linux with BTRFS on an UEFI system
@technion
technion / Password References.md
Last active June 11, 2025 12:07
A set of references on modern password policies

References on modern password policies

Below links provide source, reference link and relevant quote

Standards

NIST

https://github.com/usnistgov/800-63-3/blob/nist-pages/sp800-63b/sec5_authenticators.md

Verifiers SHOULD NOT impose other composition rules (e.g., requiring mixtures of different character types or prohibiting consecutively repeated characters) for memorized secrets. Verifiers SHOULD NOT require memorized secrets to be changed arbitrarily (e.g., periodically).However, verifiers SHALL force a change if there is evidence of compromise of the authenticator.

Major organisations

@leehinde
leehinde / html.json
Created November 28, 2016 18:47
4D Snippets for Visual Studio Code
"4dscript": {
"prefix": "4dscript",
"body": [
"<!--#4dscript/$1-->"
]
},
"4deval": {
"prefix": "4deval",
"body": [
"<!--#4deval $1-->"
@gaearon
gaearon / index.js
Last active January 21, 2025 08:07
Breaking out of Redux paradigm to isolate apps
import React, { Component } from 'react'
import Subapp from './subapp/Root'
class BigApp extends Component {
render() {
return (
<div>
<Subapp />
<Subapp />
<Subapp />
@iangreenleaf
iangreenleaf / gist:b206d09c587e8fc6399e
Last active September 5, 2025 19:33
Rails naming conventions

Rails naming conventions

General Ruby conventions

Class names are CamelCase.

Methods and variables are snake_case.

Methods with a ? suffix will return a boolean.