Skip to content
View mgustran's full-sized avatar

Block or report mgustran

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. previewer previewer Public

    Previewer is a file browser for linux terminal written in python with curses, it is meant to easily preview files, with a simple folder tree list as navigation system

    Python 1

  2. festival-python festival-python Public

    Simple python wrapper for Festival TTS Voice Synthentizer, with installer script for debian based distributions and optimized for catalan and spanish

    Shell 1

  3. Convert Latitude-Longitude from NMEA... Convert Latitude-Longitude from NMEA format (AT+CGPSINFO command)
    1
    # value = lat or lon in nmea format, example: 3137.36664
    2
    # DD = int(float(value)/100) = int(3137.36664/100) = int(31.3736664) = 31
    3
    # SS = float(value) - DD * 100 = 3137.36664 - 31 * 100 = 3137.36664 - 3100 = 37.36664
    4
    # formattedValue = DD + SS/60 = 31 + 37.36664/60 = 31 + 0.6227773333333333 = 31.6227773333333333
    5
    # negate lat when 'S', negate lon when 'W'
  4. home-assistant-rest-client home-assistant-rest-client Public

    Simple Java library to interact with HA Rest API

    Java

  5. java-process-plus java-process-plus Public

    Java

  6. mqtt-basics mqtt-basics Public

    Configurations and Examples to set Mosquitto MQTT Broker and Clients with TLS

    Python