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.

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

Pinned Loading

  1. ls1intum/Artemis ls1intum/Artemis Public

    Artemis - Interactive Learning with Automated Feedback

    Java 506 292

  2. workplace-reservation workplace-reservation Public

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

    TypeScript 6

  3. 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
  4. 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'