Skip to content

Instantly share code, notes, and snippets.

@TMschar
TMschar / nordea_csv_to_fortnox.sh
Last active April 6, 2023 16:27
Convert Nordea Account Stmt Export to Fortnox Check off Account https://support.fortnox.se/sv_SE/bokforing/stam-av-konto
awk -F ';' '{ if (NR == 1) { print "Datum" ";" "Ingående saldo-Beskrivning" ";" "Belopp" } else { gsub(/\//, "-", $1); print $1 ";" $5 ";" $2 } } END {print "Läses;Inte;In"}' input.csv > output.csv
body section.sidebar ul.menu li a,
body section.sidebar ul.menu li:hover a,
body section.sidebar ul.menu li a i.fa,
body section.sidebar ul.menu li:hover a i.fa,
body section.sidebar ul.menu li a button.fa-repeat,
body section.sidebar ul.menu li:hover button.fa-repeat,
body section.sidebar div.labels ul li a,
body section.sidebar div.labels ul li a:hover {
font-size: 14px;
color: #616161 !important;
### Keybase proof
I hereby claim:
* I am simzor on github.
* I am simzor (https://keybase.io/simzor) on keybase.
* I have a public key whose fingerprint is 5E81 5C74 7407 CCB7 DCB6 34BB 173B 0B37 B5DA 1AE9
To claim this, I am signing this object:
sudo yum install python36 python36-virtualenv python36-pip
/**
* Examples with Object Oriented Programming (OOP).
* Created 2017-10-25 - 16.30.
*
* @author: Simon Arledal
*/
// This is a class for the object "Car", this represents the object
// with its properties
class Car {
@TMschar
TMschar / test.sqf
Created October 7, 2017 23:25
Can you guess what it will output in RPT?
["test1", "test2"] call {
24;
call {
diag_log [_this]
}
}
from flask import Flask
from flask import render_template
from .blueprints import home
app = Flask(__name__,
static_folder='static',
template_folder='templates')
app.register_blueprint(home.blueprint)
@TMschar
TMschar / index.html
Created October 27, 2016 13:21
Canvas
<!--
* _______________________________________________________________________________
* Author: Simon "SimZor" Arledal (arledal.simon@gmail.com)
* Created: 27-10-2016
* Last Modified: 27-10-2016
*
* This work is licensed under the Creative Commons Attribution 4.0 International License.
* http://creativecommons.org/licenses/by/4.0/
* _______________________________________________________________________________
-->