Skip to content

Instantly share code, notes, and snippets.

View mikemimik's full-sized avatar

Michael 'afrolion' Perrotte mikemimik

View GitHub Profile
@mikemimik
mikemimik / quotes-api.md
Last active June 20, 2022 23:13
ACF-TS Quotes API Docs

acf-ts-technical-exercises - Quotes API

The following document describes the endpoints implemented for this exercise and it's resources. You can test the endpoints against https://acf-ts-quotes-api.ondigitalocean.com/.

For any questions on this document please refer to the assigned slack channel at Auth0's chat.

API

GET /api/quotes

@mikemimik
mikemimik / keybase.md
Created February 9, 2021 18:10
Keybase GitHub Approval

Keybase proof

I hereby claim:

  • I am mikemimik on github.
  • I am mikemimik (https://keybase.io/mikemimik) on keybase.
  • I have a public key ASDj01pzxe2Bx7ZWTiBtHEuUYXh3kbRwjcIM66ED9j1s5Qo

To claim this, I am signing this object:

@mikemimik
mikemimik / aboutme.md
Created July 23, 2020 05:39
My About Me - Versioned

First and foremost I am a lover of gadgets and technology! Anything new and techie, I'm all over it, especially with regards to mobile devices, wearable tech, and now, connected devices in the realm of the internet of things. I used to coach both, women's artistic gymnastics and power tumbling gymnastics competitively but specialized in power tumbling over the last decade and a half of coaching. I dabble in languages only spoken by computers and am a programmer and software developer by education and career, however a passionate problem solver at heart. I live in Canada, no not in an igloo but yes I do wear a tuque. I'm always smiling and I bet I can make you, too.

@mikemimik
mikemimik / data-events.json
Last active October 3, 2017 07:14
fixture data for flutter calendar component
[{"id":1,"title":"Event 1","url":"/events/1","date_start":"2017-10-25 12:00:00.000","date_end":"2017-10-25 13:00:00.000","details":"anything"},{"id":2,"title":"Event 2","url":"/events/2","date_start":"2017-10-25 12:00:00.000","date_end":"2017-10-25 13:00:00.000","details":"anything"},{"id":3,"title":"Event 3","url":"/events/3","date_start":"2017-10-25 12:00:00.000","date_end":"2017-10-25 13:00:00.000","details":"anything"},{"id":4,"title":"Event 4","url":"/events/4","date_start":"2017-10-25 12:00:00.000","date_end":"2017-10-25 13:00:00.000","details":"anything"},{"id":5,"title":"Event 5","url":"/events/5","date_start":"2017-10-25 12:00:00.000","date_end":"2017-10-25 13:00:00.000","details":"anything"},{"id":6,"title":"Event 6","url":"/events/6","date_start":"2017-10-21 12:00:00.000","date_end":"2017-10-21 13:00:00.000","details":{"foo":"bar"}},{"id":7,"title":"Event 7","url":"/events/7","date_start":"2017-10-21 12:00:00.000","date_end":"2017-10-21 13:00:00.000","details":{"foo":"bar"}},{"id":8,"title":"Event
Mon Jul 31 20:52:43 UTC 2017
@mikemimik
mikemimik / main.dart
Last active August 3, 2022 04:21
Flutter: Custom theme data
import 'package:flutter/material.dart';
import 'theme.dart' as Theme;
void main() {
runApp(
new MaterialApp(
title: 'CompanyApp',
color: Theme.CompanyColors.blue[500],
theme: Theme.CompanyThemeData,
home: new Scaffold(
@mikemimik
mikemimik / asyncWidget.dart
Last active July 21, 2018 05:31
Flutter: Async widget
import 'package:flutter/material.dart';
import 'loadScreen.dart';
class AsyncWidget extends StatefulWidget {
@override
_AsyncWidgetState createState() => _AsyncWidgetState();
}
class _AsyncWidgetState extends State<AsyncWidget> {
Widget currentComponent;
@mikemimik
mikemimik / main.dart
Created November 25, 2016 23:30 — forked from anonymous/main.dart
calendar-proof-concept
void main() {
var now = new DateTime(2013, 1, 10);
var year = now.year;
var month = now.month;
DateTime firstDay = new DateTime(year, month, 1);
DateTime lastDay = new DateTime(year, month + 1, 0);
List<Day> monthDays = new List<Day>();
@mikemimik
mikemimik / C# - example
Last active September 20, 2015 01:16
Object Oriented Programming Examples
/// <summary>
/// Base class that Generalizes Vehicles.
/// </summary>
public class Vehicle {
/// <summary>
/// Every vehicle has an Identification Number.
/// </summary>
protected string VIN { get; set; }
/// <summary>