Skip to content

Instantly share code, notes, and snippets.

View CINJ's full-sized avatar

Joe Cincotta CINJ

  • Sydney, Australia
View GitHub Profile
@jblang
jblang / C64.md
Last active September 13, 2023 04:57
C64 Resources

Emulators

VICE is the best by such a commanding margin that you really needn't look elsewhere. Open source and has the largest community.

However, other options are:

  • CCS64, Lots of features, but I found it to be painfully slow. Shareware.
  • Hoxs64. Decent, but not as full-featured as VICE. The ML monitor seems nice.
  • Frodo is pretty outdated and the author admits as much.
  • micro64 seems promising but incomplete.
@tgraham777
tgraham777 / trading_algorithms_for_the_masses.md
Last active August 16, 2018 22:23
Trading Algorithms for the Masses - Outline

Trading Algorithms for the Masses

What is quantitative trading?

  • Quantitative trading is an extremely sophisticated area of finance
  • It has four main components:
    1. Strategy Identification - Finding a strategy, exploiting an edge and deciding on trading frequency
    2. Strategy Backtesting - Obtaining data, analysing strategy performance and removing biases
    3. Execution System - Linking to a brokerage, automating the trading and minimizing transaction costs
    4. Risk Management - Optimal capital allocation, "bet size" criterion and trading psychology
@randomecho
randomecho / australian-postcodes.sql
Last active April 11, 2024 12:08
Australian postcodes (with states and suburb names) geocoded with latitude and longitude.
/*
Taken and cribbed from blog.datalicious.com/free-download-all-australian-postcodes-geocod
May contain errors where latitude and longitude are off. Use at own non-validated risk.
*/
SET NAMES utf8;
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
DROP TABLE IF EXISTS postcodes_geo;