Skip to content
View florian-glombik's full-sized avatar

Highlights

  • Pro

Organizations

@JASS-2021 @FA2021-K1

Block or report florian-glombik

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse
florian-glombik/README.md

Hey, I'm Florian 👋

I'm a software engineer building user-centric solutions with modern technologies — with a focus on user experience and code quality.

Currently completing my Master's in Computer Science at the Technical University of Munich (TUM).

Tech Stack

Client   TypeScript Angular React Next.js

Server   Java Spring Boot

Mobile   Swift SwiftUI

Testing   Jest JUnit Playwright

Featured Projects

Project Description
Artemis Open-source interactive learning management system developed at TU Munich — programming exercises, modeling, quizzes with automated feedback. Contributed as a full-stack developer for 3+ years, integrating passkey authentication, new user roles, and exam review UI/UX improvements
TUM Trust Center iOS app for TUM members to securely review and sign documents with advanced and qualified electronic signatures. Set up the project architecture (MVVM) and implemented eID integration via AusweisApp SDK
workplace-reservation A solution to manage the capacity of a shared office
github-review-balance Analyze PR review activity and track the balance of code reviews between collaborators

GitHub Stats

GitHub Stats

Metrics

Metrics

Let's Connect

LinkedIn Website

Pinned Loading

  1. ls1intum/Artemis ls1intum/Artemis Public

    Artemis - Interactive Learning with Automated Feedback

    Java 778 370

  2. workplace-reservation workplace-reservation Public

    Workplace Reservation - a solution to manage the capacity of a shared office

    TypeScript 8

  3. github-review-balance github-review-balance Public

    Analyze PR review activity and track the balance of code reviews between GitHub collaborators

    Python 2

  4. Upload file to Wordpress using REST ... Upload file to Wordpress using REST API (python)
    1
    import base64, requests, logging
    2
    
                  
    3
    logging.basicConfig(level=logging.INFO, format='%(asctime)s %(levelname)s: %(message)s', datefmt='%m/%d/%Y %I:%M:%S %p')
    4
    
                  
    5
    # This solution was inspired by an existing script https://gist.github.com/openroomxyz/f32021d077d1be5235ceb1a716d1e37a
  5. This python script renames .mov file... This python script renames .mov files to .mp4 files, which can be useful when exporting videos from the iOS photos app. You will need to adjust the path variable to the path where your pictures are stored.
    1
    import os
    2
    import glob
    3
    import logging
    4
    
                  
    5
    path_to_mov_files_to_be_renamed = '/path/to/your/movFiles'