Skip to content

Instantly share code, notes, and snippets.

View Maarrk's full-sized avatar

Marek S. Łukasiewicz Maarrk

View GitHub Profile
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# By Marek Łukasiewicz 2019
filenames = ['GarminGoracy.txt', 'GarminZimny.txt', 'NovatelEgnos.txt', 'NovatelGoracy.txt', 'NovatelZimny.txt']
for filename in filenames:
infile = open(filename, 'r')
out_gga = open('gga_' + filename, 'w')
# A script to improve color channels in diving videos
# By Marek Lukasiewicz 2018
# http://lukasiewicz.tech
# Requires python openCV with ffmpeg installed to open all video types
# Requires ffmpeg installed command ffmpeg used to copy sound from original video
from os import system, remove
from sys import argv
import numpy as np
@Maarrk
Maarrk / InputChart.cs
Created October 17, 2017 18:48
Skrypt do wykładu "Move ya body" w KNTG Polygon 18.10.2017
using UnityEngine;
// Skrypt do wykładu "Move ya body" w KNTG Polygon 18.10.2017
[RequireComponent(typeof(LineRenderer))]
public class InputChart : MonoBehaviour {
// Dla domyślnej kamery w projekcie 2D wystarczy wrzucić ten GameObject na pozycję (-8, 0, 0)
public int pointsCount = 80;
public float scaleY = 4f;