Fergus Kelly

Fergus Kelly is an academic at the Dublin Institute for Advanced Studies. His research interests centre on early Irish law-texts and wisdom-texts.

A prolific author and researcher, he has written and edited a number of books and many articles including A guide to early Irish law. He co-edits the journal Celtica and has collaborated with many others including Thomas Charles-Edwards.

Publications

Kelly's publications include:

  • Audacht Morainn (Dublin 1976)
  • A guide to early Irish law (Dublin 1988, reprinted 1991, 1995)
  • Early Irish farming: the evidence of the law-texts (Dublin 1997, reprinted 1998)
  • Marriage Disputes: A Fragmentary Old Irish Law-Text (Dublin, 2014)
  • The Life & Work of Oisín Kelly (Carlow, 2015)
gollark: ```python @bot.command(help="Roll simulated dice (basic NdX syntax, N <= 50, X <= 1e6).") async def roll(ctx, dice): match = re.match("([-0-9]*)d([0-9]+)", dice) if not match: raise ValueError("Invalid dice notation") n, x = match.groups() if n == "": n = 1 n, x = int(n), int(x) if n > 50 or x > 1e6: raise ValueError("N or X exceeds limit") rolls = [ random.randint(1, x) for _ in range(n) ] await ctx.send(f"{sum(rolls)} ({' '.join(map(str, sorted(rolls)))})")```
gollark: Nope.
gollark: Fiona's rolldice, while excellently something, could not be used safely on untrusted input.
gollark: No, it uses one (1) regular expression.
gollark: It is not* biased.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.