Skip to content

Instantly share code, notes, and snippets.

View ctalladen78's full-sized avatar

Cy Talladen ctalladen78

  • OstinatoRigore
View GitHub Profile

haskell challenges

blockchain tasks using ada api

use case decentralized banking compliance tests

Fisher Kasparov simulated game

Fischer-Springer Game clarification: The term "Fischer-Springer game" in classic chess opening theory is not a standard or widely recognized named opening. Possibly the user refers to a specific line or a thematic game involving Fischer and a "springer" (German for knight), or a shorthand for a Fischer-related opening with knight involvement.

Opening with Kasparov Black: Kasparov was known for his sharp and well-prepared defenses as Black, particularly in the Sicilian Defense, Najdorf Variation, which Fischer also frequently played as White, notably with the Fischer-Sozin Attack involving an early Bc4. This was a classic battleground of Fischer’s openings and Kasparov’s defenses.

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);
}