Skip to content

Instantly share code, notes, and snippets.

View ctalladen78's full-sized avatar

Cy Talladen ctalladen78

View GitHub Profile

ensure ollama installed

# Makefile for javascript react nextjs project

.PHONY: all install run dev test clean

all: install run

Relative Price Comparison Normalize cost of living data across cities: Convert all prices to USD. Use Numbeo or LivingCost.io as cross-references for validation. Create a price index (e.g. NYC = 100, others relative to that)

To create a relative price comparison using cost-of-living data across cities, you'll want to normalize, validate, and index your figures. Here’s how you can structure it:


📊 Step-by-Step: Relative Price Index

  1. Collect Raw Cost Data
  • From sources like Nomad List, scrape or extract the monthly cost of living per city (ensure it's per individual, and includes rent).

Disclaimer: The content provided in this article is the authors personal opinion and is for informational and entertainment purposes only and does not constitute financial, investment, or legal advice. Cryptocurrency investments carry significant risk, and readers should conduct their own research or consult with a qualified professional before making any financial decisions. The author may hold positions in the assets discussed.

agent: determine big money whale accumulation by looking at etf volume inflows and dark pool index vpoc

On Chain Whale Report 2024-2025

To gauge whale accumulation—that is, large-scale investors quietly building Bitcoin positions—you’re spot on to look at ETF inflows and dark pool activity, especially the Volume Point of Control (VPOC).

🐋 ETF Volume Inflows

In the week leading up to June 18, 2025, U.S. spot Bitcoin ETFs saw eight straight days of net inflows, totaling $388 million on June 18 alone. BlackRock’s IBIT led the charge with **$279 mi

@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
@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