Skip to content

Instantly share code, notes, and snippets.

View Nodd's full-sized avatar

Joseph Martinot-Lagarde Nodd

  • ONERA
  • Grans (France)
View GitHub Profile
@natyusha
natyusha / Naty's FFXIV Dawntrail Add-ons, Plugins and Mods.md
Last active May 11, 2025 18:19
All the third party add-ons, plugins and mods I use for FFXIV.

Last Updated: Patch 7.2

The program which most people use for parsing in FFXIV and several other MMOs. For an open source alternative consider using IINACT though configuring it won't be covered here.

Options

  • Main Table Encounters
    • General
      • Uncheck: Number of seconds to wait after the last combat action to begin a new encounter.
      • Uncheck: Number of seconds to wait after the last combat action to pause the encounter duration.

Plugins

@kolewu
kolewu / PKGBUILD.mma
Last active July 27, 2020 15:00
PKGBUILD script for outdated package mma
# Contributor: Eric Le Bras <[email protected]>
# Contributor: Uwe Koloska <[email protected]>
pkgname=mma
pkgver=12.10
pkgrel=1
pkgdesc="Musical MIDI Accompaniment (MMA) is an accompaniment generator"
url="http://www.mellowood.ca/mma/"
depends=('python2>=2.5.0' 'timidity++')
license=('GPL')
@ghoseb
ghoseb / factorial.py
Created November 14, 2008 18:58
The evolution of a Python Programmer
#Newbie programmer
def factorial(x):
if x == 0:
return 1
else:
return x * factorial(x - 1)
print factorial(6)
#First year programmer, studied Pascal