Skip to content

Instantly share code, notes, and snippets.

View ctalladen78's full-sized avatar

Cy Talladen ctalladen78

View GitHub Profile
@ctalladen78
ctalladen78 / how_GPT_works.md
Created June 20, 2025 14:00 — forked from TheDevPanda/how_GPT_works.md
Collection of resources that explain (Chat-)GPT
@ctalladen78
ctalladen78 / gist:9d62377b186c67cff55ed99cbddc7bce
Created June 20, 2025 13:59 — forked from debasishg/gist:b4df1648d3f1776abdff
another attempt to organize my ML readings ..
  1. Feature Learning
  1. Deep Learning
import 'package:flutter/material.dart';
class GoogleMapsClonePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Stack(
children: <Widget>[
CustomGoogleMap(),
CustomHeader(),
@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 / 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 / average-geolocation.js
Created March 20, 2020 12:05 — forked from tlhunter/average-geolocation.js
Calculate the center/average of multiple GeoLocation coordinates
/**
* Calculate the center/average of multiple GeoLocation coordinates
* Expects an array of objects with .latitude and .longitude properties
*
* @url http://stackoverflow.com/a/14231286/538646
*/
function averageGeolocation(coords) {
if (coords.length === 1) {
return coords[0];
}
@ctalladen78
ctalladen78 / asymmetric.go
Created February 13, 2020 03:49 — forked from cryptix/LICENSE
example of using JWT for http authentication in go
package main
// using asymmetric crypto/RSA keys
import (
"crypto/rsa"
"fmt"
"io/ioutil"
"log"
"net/http"
@ctalladen78
ctalladen78 / README.md
Created February 7, 2020 06:24 — forked from crypticmind/README.md
Setup lambda + API Gateway using localstack