Rody Davis
Welcome to my site
This is built with Lit-Element, Parcel and Web Components!
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build_web: |
import 'dart:async'; | |
import 'package:firebase/firebase.dart' as firebase; | |
class FBMessaging { | |
FBMessaging._(); | |
static FBMessaging _instance = FBMessaging._(); | |
static FBMessaging get instance => _instance; | |
firebase.Messaging _mc; | |
String _token; |
#!/bin/bash | |
echo "App Release Automator by @rodydavis" | |
action="$1" | |
red=`tput setaf 1` | |
green=`tput setaf 2` | |
reset=`tput sgr0` | |
if [ ${action} = "build" ]; then |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<title>Responses</title> | |
</head> | |
<body> | |
<input type="file" id="file-upload" /> | |
<script type="module"> |
import { html, LitElement, property, query } from 'lit-element'; | |
export abstract class Lit2DCanvas extends LitElement { | |
@query('#base') canvas!: HTMLCanvasElement; | |
@property({ type: Number }) width: number | undefined; | |
@property({ type: Number }) height: number | undefined; | |
canvasWidth = 400; | |
canvasHeight = 400; | |
render() { |
enum MyEnum { | |
simple, | |
special, | |
complex, | |
} | |
extension MyEnumUtils on MyEnum { | |
String get description { | |
switch (this) { | |
case MyEnum.simple: |
<?xml version="1.0" encoding="UTF-8" ?> | |
<rss xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/" xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0"> | |
<channel> | |
<title>Creative Engineering</title> | |
<googleplay:author>Rody Davis, Norbert Kozsir</googleplay:author> | |
<rawvoice:rating>TV-G</rawvoice:rating> | |
<rawvoice:location>San Francisco, California</rawvoice:location> | |
<rawvoice:frequency>Weekly</rawvoice:frequency> | |
<author>Rody Davis, Norbert Kozsir</author> | |
<itunes:author>Rody Davis, Norbert Kozsir</itunes:author> |
# This file contains the fastlane.tools configuration | |
# You can find the documentation at https://docs.fastlane.tools | |
# | |
# For a list of all available actions, check out | |
# | |
# https://docs.fastlane.tools/actions | |
# | |
# For a list of all available plugins, check out | |
# | |
# https://docs.fastlane.tools/plugins/available-plugins |