- 1010 - Sularaha kassas
- 1020 - Arvelduskontod
- 1030 - Tähtajalised hoiused
- 1040 - Paigutused ülilikviidsetesse fondidesse
- 1050 - Raha teel
- 1100 - Lühiajalised finantsinvesteeringud
- 1210 - Ostjatelt laekumata arved
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
db.property.aggregate([ | |
{ | |
$match: { | |
deleted: { | |
$exists: false, | |
}, | |
}, | |
}, | |
{ | |
$group: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aws s3api list-objects-v2 --bucket $1 --output text --query "Contents[?StorageClass== 'DEEP_ARCHIVE']" | awk '{ $1=""; print $0 }' | awk 'NF{NF-=3};1' > restore.txt | |
while read i; do | |
echo "$i" | |
aws s3api restore-object --bucket $1 --key "$i" --restore-request Days=21 | |
done <restore.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env pybricks-micropython | |
from pybricks import ev3brick as brick | |
from pybricks.ev3devices import Motor, UltrasonicSensor | |
from pybricks.parameters import Port | |
from pybricks.tools import wait | |
from pybricks.robotics import DriveBase | |
# Play a sound. | |
brick.sound.beep() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- | |
-- Give recursive rights to person on entity | |
-- | |
SELECT id INTO @mihkel FROM entity WHERE old_id = 'mihkel'; | |
SET @person_id = 415167; | |
SET @root_entity_id = 4173; | |
SET @right = 'editor'; | |
SET @edk = 'folder'; | |
INSERT INTO relationship (relationship_definition_keyname, entity_id, related_entity_id, created, created_by) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from tornado import web | |
from suds.client import Client | |
import random | |
import string | |
import time | |
class MobileIDtest(web.RequestHandler): | |
def get(self): |