Skip to content

Instantly share code, notes, and snippets.

View ctalladen78's full-sized avatar

Cy Talladen ctalladen78

  • OstinatoRigore
View GitHub Profile
@ctalladen78
ctalladen78 / dynamodb_single_table.go
Last active June 18, 2025 19:05
Basic CRUD operations with single table dynamodb design
package main
import (
// "errors"
"fmt"
"log"
"time"
// "sync"
import 'package:flutter/material.dart';
class GoogleMapsClonePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Stack(
children: <Widget>[
CustomGoogleMap(),
CustomHeader(),
@ctalladen78
ctalladen78 / gist:e6150f787b351924d7e5b17bf530e07d
Created January 21, 2021 07:47
RXDart PublishSubject example
```
import 'dart:async';
import 'package:rxdart/rxdart.dart';
void main() {
var streamCtrl = PublishSubject<String>();
streamCtrl.stream.listen(observer1);
streamCtrl.stream.listen(observer2);
action(streamCtrl.sink);
}
@ctalladen78
ctalladen78 / all_aws_managed_policies.json
Created December 23, 2020 16:21 — forked from bernadinm/all_aws_managed_policies.json
A list of all AWS managed policies and they're policy documents as well as a short script to generate the list
{
"AWSAccountActivityAccess": {
"Arn": "arn:aws:iam::aws:policy/AWSAccountActivityAccess",
"AttachmentCount": 0,
"CreateDate": "2015-02-06T18:41:18+00:00",
"DefaultVersionId": "v1",
"Document": {
"Statement": [
{
"Action": [
@ctalladen78
ctalladen78 / repository_pattern.md
Last active September 11, 2020 22:27
repository_pattern.md
@ctalladen78
ctalladen78 / introrx.md
Created September 11, 2020 19:30 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@ctalladen78
ctalladen78 / master-javascript-interview.md
Created September 10, 2020 18:12 — forked from Geoff-Ford/master-javascript-interview.md
Eric Elliott's Master the JavaScript Interview Series

Contributing

When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.

Please note we have a code of conduct, please follow it in all your interactions with the project.

Pull Request Process

  1. Ensure any install or build dependencies are removed before the end of the layer when doing a
@ctalladen78
ctalladen78 / intro.md
Created June 29, 2020 15:01
Linking to SVG files hosted on github

https://github.com/potherca-blog/StackOverflow/blob/master/question.13808020.include-an-svg-hosted-on-github-in-markdown/readme.md


permalink: /question.13808020.include-an-svg-hosted-on-github-in-markdown/index.html

Linking to SVG files hosted on github

The purpose of raw.github.com is to allow users to view the contents of a file, so for text based files (SVG, JS, CSS, etc) this means you get the wrong headers and things break in the browser.

@ctalladen78
ctalladen78 / credit_card.dart
Last active June 24, 2020 05:22
Credit card style editor
// https://dartpad.dartlang.org/1a5cf346acdf08979574adabdd3d59db
import 'package:flutter/material.dart';
import 'dart:math';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {