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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Base class that Generalizes Vehicles. | |
/// </summary> | |
public class Vehicle { | |
/// <summary> | |
/// Every vehicle has an Identification Number. | |
/// </summary> | |
protected string VIN { get; set; } | |
/// <summary> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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>(); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'loadScreen.dart'; | |
class AsyncWidget extends StatefulWidget { | |
@override | |
_AsyncWidgetState createState() => _AsyncWidgetState(); | |
} | |
class _AsyncWidgetState extends State<AsyncWidget> { | |
Widget currentComponent; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mon Jul 31 20:52:43 UTC 2017 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{"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 |
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:
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.