jmora / snippets

Collection of code snippets (some may be sizeable for a snippet) with a wide range of purposes, but this is basically to store gists. I like to have a tree structure and gist collections can become messy easily, or so it seems to me.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

General description

This is a collection of code snippets I may have done for a number of different reasons:

  • To share some code.
  • To try something (new) and see whether it works and how, like code, tools, languages, features in them, etc.
  • To keep a recipe or small fragment of code somewhere.
  • To make some small exercise (usually considered to be a programming kata).
  • To pass some time for entertainment and amusement.

Basically this is a collection of gists, but instead of keeping them at https://gist.github.com/jmora, since that does not provide tagging capabilities I decided to keep them here in a single repository, this allows using directories to keep them sorted. Versioning control is slightly worse when mixing all these things, but I hope not to make changes in most of them once they are finished, so hopefully this won't be too messy. If gist implemented some system for folders or tags I'd switch back to that for the snippets from that point on.

Index

The snippets grouped in directories by programming language and listed here in alphabetical order. Note that py and py3 may be grouped for convenience, also in js code there may be some html or css, along with the Javascript, I consider the businesslogic is in the Javascript and the other files are auxiliary files, as it may happen with other languages, although more prominently in this case. The snippets are so far:

java/relationChecker

Snippet to check ontological relations between concepts, the main focus in this case was to test the Manchester syntax and how could that be parsed when having a repository in which ontologies could be added and removed, so you can see in the jUnit tests that there are quite a few to check the short names in Manchester syntax could be properly used and also full URIs to avoid collisions if the same short name was being used in several ontologies. I didn't go for the intermediate option of having prefixed short names because it seems to me that it has the cons of both options and the pros of none.

java/unicornPatter

Implementation for the unicorn patting puzzle. I guess the kind of expected solutions were something harder or interesting in some sense, ok, KISS. You can also see this may not work in a more general context, I could use the class name as well as the line number, ok YAGNI.

js/cesar

Interactive solution for the Cesar encoding kata. The whole text is processed again with each modification in the text but reasonable long texts can be processed in reasonable times.

js/pomodoro

Implementation for the Pomodoro kata. Please don't look at the interface. It's possible to make something that looks really great but that was out of scope, or at least it is out of scope for now.

py/hanoi

Several implementations for the Hanoi towers kata. Alas some problems can't simply be solved in a nicer way, in this case there has to be some sacrifice, either memory or CPU.

py/jsonCall and py3/jsonCall

Snippet to call a JSON service, it was developed in the context of a project and a specific service, so it includes some code to call that service with random data as a test.

About

Collection of code snippets (some may be sizeable for a snippet) with a wide range of purposes, but this is basically to store gists. I like to have a tree structure and gist collections can become messy easily, or so it seems to me.


Languages

Language:Java 54.7%Language:Python 12.6%Language:Scala 8.3%Language:HTML 7.7%Language:JavaScript 6.3%Language:CoffeeScript 5.0%Language:TeX 2.2%Language:CSS 1.5%Language:Prolog 1.0%Language:Shell 0.8%