Skip to content

Instantly share code, notes, and snippets.

View donwardpeng's full-sized avatar

don-ward-peng donwardpeng

  • Rocket Mortgage
  • Detroit, Michigan, USA
View GitHub Profile

AWS Certification Resources

Preparing for the AWS Cloud Practitioner Exam (earned Feb 2020)

ACloudGuru.com has a good course and practice test available to help you score >90% found here.

Preparing for the AWS Solutions Architect Exams (Associate and Pro) (earned in 2020)

ACloudGuru's course does not go in-depth enough for either of these exams I have found. I found the best, super in-depth training from a former Linux Academy instructor, Adrian Cantrill. ACloudGuru purchased Linux Academy in 2020, and unfortunately, most of their content was retired :( Adrian has started his own set of reasonably priced courses under his name, and they are here.

Preparing for the AWS Developer Associate Exam (earned Oct 2022)

@donwardpeng
donwardpeng / jetbot_resources.md
Last active October 22, 2021 13:10
Jetbot Resources

Interested in the NVIDIA Jetbot Nano?

Are you interested in getting started with the NVIDIA Nano Jetbot? The sections below contain links and insights I have gained as I explored the Nano Development kit and Jetbots.

Start Here

The NVIDIA Jetbot has an excellent set of documentation and tutorials built up over time. It includes video series for those who do not like to read the boring manuals and detailed step-by-step instructions with diagrams on how to build a Jetbot.

Documentation can be found here.

Where can I buy a kit?

Great question - this is often the best way to get started quickly and 'hacking away' on some Machine Learning examples. Below are two highly-rated kits from Sparkfun for the Jetbot.

@donwardpeng
donwardpeng / gist:ab79a8025ec94290cca6dd287c5e9635
Last active May 18, 2020 01:16
Wiring Links for Arduino Nano BLE Experiments
Push Button Switch - https://elinux.org/images/4/4b/Mpushbuttonworking.jpg
Adafruit Starter Pack - https://www.adafruit.com/product/2678
BLE Example - https://rootsaid.com/arduino-ble-example/
NOTE: The Battery Level Service is "2A19" and not "2101" as described in the example
BLE Library - https://www.arduino.cc/en/Reference/ArduinoBLE
Excellent Background on BLE - https://www.novelbits.io/basics-bluetooth-low-energy/
@donwardpeng
donwardpeng / Links for TinyML.md
Last active August 24, 2023 20:20
Useful Links to Get Started with TinyML
@donwardpeng
donwardpeng / main.dart
Created January 9, 2020 21:07
Flutter Example with Screen Size Displayed
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
@donwardpeng
donwardpeng / main.dart
Created January 8, 2020 18:04
Codemash Flutter Demo 1
import 'package:flutter/material.dart';
final Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
gsutil cp -r gs://midevfest.appspot.com/ .
@donwardpeng
donwardpeng / Common_Flutter_and_Dart_Commands.md
Last active July 29, 2019 01:52
Common Flutter and Dart Commands

Common Flutter and Dart Commands

Flutter Web Specific Commands

Rebuild all json_serializable generated files:

flutter pub run build_runner build --delete-conflicting-outputs
@donwardpeng
donwardpeng / kubernetes.md
Last active April 13, 2019 14:19 — forked from agup006/kubernetes.md
Kubernetes Commands
@donwardpeng
donwardpeng / docker-help.md
Created April 12, 2019 19:38 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info