by Garth | Nov 18, 2021 | MYSQL
https://app.quickdatabasediagrams.com/#/d/05057d
by Garth | Nov 16, 2021 | Amazon Web Services - AWS
https://www.linkedin.com/pulse/deploy-code-scale-aws-ec2-autoscaling-load-balancer-codedeploy-das/
by Garth | Nov 11, 2021 | Javascript, PHP
When you write your script and save it, it will not automatically run. You must load the file first. After loading the file the cronjob will continue running automatically. <script type=”text/javascript”> // Cron Timer (Set run timer)...
by Garth | Nov 3, 2021 | Flutter and Dart
by Garth | Nov 1, 2021 | Flutter and Dart
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( // Application name title:...
by Garth | Nov 1, 2021 | Flutter and Dart
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( // Application name title:...
by Garth | Oct 20, 2021 | Flutter and Dart
crossAxisAlignment: CrossAxisAlignment.stretch,
by Garth | Oct 14, 2021 | Sailing
What makes a sailboat safe? All sailboats are designed to be somewhat safe, it would be strange if they weren’t. That being said, some are going to be safer than others. There are complex calculations that can be made about the safety of a boat based on the square...
by Garth | Sep 5, 2021 | Vue JS
save_post(id) { if (id != null) { // Update Existing Record } else if (id == null) { // Create New Record } },