Skip to content
View harakka's full-sized avatar
🥔
🥔
  • Finland
Block or Report

Block or report harakka

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
harakka/README.md

Hello there 👋

I shoot troubles. Usually ones I made myself.

Pinned Loading

  1. SQFGrapher SQFGrapher Public archive

    Historical project from 2012. Generates a call graph from Arma 2 SQF script files and outputs it as an edge list CSV file.

    Java 1

  2. Hacky script to display data on Rasp... Hacky script to display data on Raspi-connected oled screen and motioneye overlay. Need to rewrite this into separate polling/data collection and consumer components.
    1
    #!/usr/bin/python
    2
    
                  
    3
    # Original file: https://github.com/adafruit/Adafruit_Python_SSD1306/blob/master/examples/stats.py
    4
    # Modified by Antti 'harakka' Riikonen for personal use, to display readings
    5
    # from AM2302 sensor, the library for which is also from Adafruit. You rock.
  3. Recompresses motioneye-generated mp4... Recompresses motioneye-generated mp4 files after creation event to save space
    1
    #!/bin/sh
    2
    
                  
    3
    # MIT License
    4
    # Copyright (c) 2019 Antti Riikonen
    5
    
                  
  4. Dump Arma 3 equipment configs from i... Dump Arma 3 equipment configs from ingame to csv output in log file. Used primarily to generate diffs for Arma 3 equipment changes between versions when the game was still in major development.
    1
    // todo: figure out common class for bipod/tripod
    2
    
                  
    3
    _allCfgs = [];
    4
    {
    5
    for "_i" from 0 to ((count _x) -1) do {
  5. Trak2HashTable Trak2HashTable Public archive

    Historical project from 2013, hash table implementation for Data Structures and Algorithms 2 course.

    Java