Skip to content

Instantly share code, notes, and snippets.

View kellenff's full-sized avatar

Kellen Frodelius-Fujimoto kellenff

  • Renton, WA, USA
View GitHub Profile
@kellenff
kellenff / custom-card.tsx
Created May 21, 2021 19:54
React Layout component example
import React from "react";
import {Card, CardContent, CardHeader, Grid, Typography} from "@material-ui/core";
type Props = {
title: string;
start?: React.ReactNode;
};
const CustomCard: React.FC<Props> = ({title, start, children}) => {
return (
import React, { useState } from 'react';
import {
IsOptional,
MinLength,
registerDecorator,
validateSync,
ValidationArguments,
ValidationOptions,
} from 'class-validator';
import { plainToClass } from 'class-transformer';
@kellenff
kellenff / index.xml
Last active November 22, 2020 18:22
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>Rice, Spice, and Whine</title>
<link>https://ricespicewhine.gitlab.io</link>
<language>en-us</language>
<copyright>Unlicensed</copyright>
<itunes:author>Rice, Spice, and Whine</itunes:author>
@kellenff
kellenff / tsconfig.json
Created October 8, 2020 20:35
Create React App's tsconfig template
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,

Keybase proof

I hereby claim:

  • I am rakenodiax on github.
  • I am kellenfu (https://keybase.io/kellenfu) on keybase.
  • I have a public key ASC0ZVmvyeZCjbEIEK0BvuDoqaAuCFDkDNxzz2yE1gg-8Ao

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am rakenodiax on github.
  • I am kellenfu (https://keybase.io/kellenfu) on keybase.
  • I have a public key ASB1vo5gdcjFEAwL4NhErl4HLzkqoYd2Rni9uKYl1Z3vrgo

To claim this, I am signing this object:

@kellenff
kellenff / hello.html
Last active December 11, 2018 09:37
Gotham Server Example
<!DOCTYPE html>
<html>
<head>
<title>Hello, world!</title>
</head>
<body>
<p>Hello, {{ name }}!</p>
</body>
</html>