crazyguys — the art of programming. Contact: [email protected]. This page displays a looping terminal animation showing the company brand.
$cat src/kr/azy/brand.ts
/**
* @module kr.azy.hello
* @description the art of programming
* @author [email protected]
* @homepage https://crazyguys.me
*/
import { ascii_art } from './lib/banner';
export const name = 'crazyguys';
export const motto = 'the art of programming';
// every line of code is a brushstroke
ascii_art(name);
$