Skip to content
View MaxEtMoritz's full-sized avatar
📱
📱
Block or Report

Block or report MaxEtMoritz

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
MaxEtMoritz/README.md

Hi there 👋

I'm MaxEtMoritz, a student of computer science from Nuremberg, Germany.

currently, i'm in the third master semester.

In my spare time, i like playing Pokémon GO and Ingress. Sometimes i'm also searching for Geocaches.

My current projects 💻

Also check out my GitLab account (not much to see there, yet, but maybe that will change some time)

My Gists worth checking out

  • woov_timetable_2_ical.js: NodeJS script that fetches the timetable for music events hosted on the Woov platform and converts it to the standard iCalendar format so it can be viewed with any calendar client (and does not require you to make an account and/or download the proprietary woov app).
  • Muzio2LB.md: Tutorial and python script to extract saved listening events from the android music player Muzio and import them into ListenBrainz.

My GPG key 🔑

I'll sign all my commits with my GPG key, the fingerprint is FDCA BF91 BC66 823A 8F64 BF4E A018 EDB7 62AD BE7C.

You can find my public key on keys.openpgp.org if you want to send me an encrypted email.

Pinned

  1. PNavCopy PNavCopy Public

    IITC Addon that copies Portal Names and Locations to Clipboard or sends them to Discord in the format needed by the PokeNav Discord Bot.

    C# 5 2

  2. iitc-glympse iitc-glympse Public

    View a Glympse tag directly on the Intel map

    JavaScript 1 1

  3. Muzio to ListenBrainz Muzio to ListenBrainz
    1
    # Muzio to ListenBrainz
    2
    Helper to import listens of a music player app to ListenBrainz.
    3
    
                  
    4
    Written for [Muzio Player](https://play.google.com/store/apps/details?id=com.shaiban.audioplayer.mplayer),
    5
    but can maybe be adapted for other players.
  4. WaymarkingTweaks WaymarkingTweaks Public

    Tweaks to waymarking.com

    JavaScript

  5. lb_radio lb_radio Public

    Utility to submit listens to ListenBrainz done with a dumb radio receiver

    JavaScript

  6. Woov (https://woov.com/) event timet... Woov (https://woov.com/) event timetable to ical. Designed to run in NodeJS, but can be adapted for browser if needed.
    1
    const fs = require('fs');
    2
    const { exit } = require('process');
    3
    const readline = require('readline');
    4
    const rl = readline.createInterface({ input: process.stdin, output: process.stdout });
    5
    const prompt = query => new Promise(resolve => rl.question(query, resolve));