1
0
mirror of /repos/dotTiddlywiki.git synced 2025-12-30 07:31:33 +01:00
This commit is contained in:
Aiko Mastboom 2019-11-04 19:38:39 +01:00
parent 630dfb6914
commit 811fa704ef
8 changed files with 224 additions and 12 deletions

View File

@ -1,6 +1,6 @@
created: 20180302135343133
creator: user
modified: 20181102170219909
modified: 20191104183449249
modifier: user
tags:
title: Cleanup CI.bjoola.nl
@ -15,14 +15,16 @@ Host ci.bjoola.nl
```
ssh ci.bjoola.nl
docker ps -aq |xargs docker rm
docker rmi $(docker images --filter "dangling=true" -q --no-trunc) ;
docker images |grep docker-registry | awk '{print $3}' | xargs docker rmi --force ;
find /var/lib/jenkins/jobs/ -name .dobi -exec sudo rm -rf \{\}/images/ \;
sudo rm /var/lib/jenkins/jobs/vrendly-app/workspace/release/*
sudo rm /var/lib/jenkins/jobs/genifer-dev/workspace/release/*
sudo rm /var/lib/jenkins/jobs/genifer-auth/workspace/release/*
df -h / ; \
docker rmi $(docker images --filter "dangling=true" -q --no-trunc) ; \
echo "docker-registry" ; \
docker images |grep docker-registry | awk '{print $3}' | xargs -r docker rmi --force ; echo "dobi" ; \
find /var/lib/jenkins/jobs/ -name .dobi -exec sudo rm -rf \{\}/images/ \; ; \
echo "release" ; \
find /var/lib/jenkins/jobs/ -maxdepth 3 -type d -name release -exec sudo rm -rf \{\} \; ; \
df -h /
```
```
Host ci-worker
@ -35,10 +37,15 @@ Host ci-worker-01.bjoola.nl
```
```
ssh ci-worker
docker rmi $(docker images --filter "dangling=true" -q --no-trunc) ;
docker images |grep docker-registry | awk '{print $3}' | xargs docker rmi --force ;
find /var/lib/jenkins/workspace/ -name .dobi -exec sudo rm -rf \{\}/images/ \;
df -h / ; \
docker rmi $(docker images --filter "dangling=true" -q --no-trunc) ; \
echo "docker-registry" ; \
docker images |grep docker-registry | awk '{print $3}' | xargs -r docker rmi --force ; \
echo "dobi" ; \
find /var/lib/jenkins/workspace/ -name .dobi -exec sudo rm -rf \{\}/images/ \; ; \
echo "release" ; \
find /var/lib/jenkins/workspace/ -maxdepth 2 -type d -name release -exec sudo rm -rf \{\} \; ; \
df -h /
```

View File

@ -0,0 +1,19 @@
created: 20190729075423625
creator: user
modified: 20191015073227866
modifier: user
tags:
title: Coding
type: text/vnd.tiddlywiki
; ITT 2016 - Kevlin Henney - Seven Ineffective Coding Habits of Many Programmers
: https://www.youtube.com/watch?v=ZsHMHukIlJY
; Who Destroyed Three Mile Island? - Nickolas Means | The Lead Developer Austin
: https://www.youtube.com/watch?v=1xQeXOz0Ncs
; How to crash an airplane Nickolas Means | The Lead Developer UK 2016
: https://www.youtube.com/watch?v=099cHWSbAL8
; Structure and Interpretation of Computer Programs
: https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-001-structure-and-interpretation-of-computer-programs-spring-2005/video-lectures/

View File

@ -0,0 +1,27 @@
created: 20190904153357628
creator: user
modified: 20190909115520153
modifier: user
tags:
title: Exact Book invoice
type: text/vnd.tiddlywiki
!!Do you parhaps know how to book a payment on a salesEntry, using EOL?
Our knowledge of bookkeeping and EOL is too limited to do a correct booking. (Or defer me to someone who can assist)
!!!You need to create a bank/cash entry.
#you need to create a entry via `[Financial, Entries & G/L Accounts, Create]`.
#Select the bank journal.
#In the bank entry line you need to select the debtor gl account (probably 1300).
#Select he customer, use your tab key or click on the field Amount.
#Here you can select you invoice.
#You need to save the entry.( and you made sure that the outstanding invoice is match with an payment)
AiGo [4:46 PM]
@Tim van den Broek thank you, we could follow your instructions up until “… and you made sure that the outstanding invoice is match with an payment”
how do you make sure? how do we make payment or match to it?
AiGo [5:03 PM]
@Tim van den Broek appears just saving the bank entry makes the world ok (we at least we see the recievable)

View File

@ -0,0 +1,24 @@
created: 20190909115521821
creator: user
modified: 20190909120046860
modifier: user
tags:
title: Exact MailboxID
type: text/vnd.tiddlywiki
So below I have 2 examples to make things clear.
# Purchase receipt
## Entrepreneur scans, in Exact Go, a purchase receipt
## Exact Go will use MailMessageSent/Attachment to generate the message and sent to the scan service
*** RecipientMailboxID = scanningservice2@exactonline.nl
*** SenderMailboxID = mailbox from client company in EOL
*** The correct type for purchase receipt, etc
You need to use this combination because the scan service will know exactly which mailbox needs to be used to send back the document + entry proposal
# Sales invoice
## Entrepreneur send a sales invoice, in Exact Go, to his customer
## Exact Go will use MailMessageSent/Attachment to generate the mailbox message so that the sales invoice can be created as sales entry in the client company.
*** RecipientMailboxID = mailbox from client company in EOL
*** SenderMailboxID = generic mailbox to be used generated in our hosting db
*** Correct type for sales invoice, UBL file, etc

View File

@ -0,0 +1,34 @@
created: 20190910150109186
creator: user
modified: 20190910151756683
modifier: user
tags:
title: Lines of code
type: text/vnd.tiddlywiki
!Vrendly Api
```sh
# fruit @ pro in ~/Development/trix-incasso on git:exact/split
$ cd src ; find . -not -path "*/www/*" -not -path "./vendor/*" -not -path "./dbscripts/*" -not -path "*/extensions/*" -type f -print -exec cat \{\} \; | wc -l
299073
```
!Vrendly Angular
```sh
# fruit @ pro in ~/Development/vrendly-angular on git:stripped-vrendly
$ find . -not -path "./.dobi/*" -not -path "./.git/*" -type f -exec cat \{\} \; |wc -l
97471
```
!Genifer
```sh
# fruit @ pro in ~/Development/genifer on git:development
$ cd src ; find . -not -path "*/www/*" -not -path "./vendor/*" -not -path "./storage/*" -not -path "*/extensions/*" -type f -print -exec cat \{\} \; | wc -l
149893
```

View File

@ -0,0 +1,10 @@
created: 20191015072445822
creator: user
modified: 20191015073243402
modifier: user
tags:
title: Must Read/View
type: text/vnd.tiddlywiki
* [[Coding]]
* [[Programming]]

View File

@ -0,0 +1,60 @@
created: 20191030082415821
creator: user
modified: 20191030102730190
modifier: user
tags:
title: Vrije dagen
type: text/vnd.tiddlywiki
2017
----
wo 30 aug
do 31 aug
vr 1 sep
ma 4 sep
do 7 sep
vr 8 sep
ma 11 sep
vr 17 nov
ma 20 nov
2018
----
ma 18 jun
wo 20 jun
do 21 jun
ma 25 jun
ma 5 nov
wo 7 nov
do 8 nov
vr 9 nov
ma 12 nov
5 dec /halve dag
ma 24 dec
do 27 dec
vr 28 dec
ma 31 dec
24
13,5
---- -
10,5
2019
----
di 30 april
ma 24 jun
di 25 jun
wo 26 jun
vr 28 jun
vr 23 aug
25 * 8 = 200
6 * 9 = 54
-- -
19 = 146 / 9 = 16

View File

@ -0,0 +1,31 @@
created: 20191030085421189
creator: user
modified: 20191030091440392
modifier: user
tags:
title: toetsenborden/trackpad
type: text/vnd.tiddlywiki
https://www.apple.com/nl/shop/product/MRMH2LB/A/magic-keyboard-met-numeriek-toetsenblok-engels-us-spacegrijs
Magic Keyboard met numeriek toetsenblok
Engels (US)
Spacegrijs
5 * mirjan, pascal, tjardo, wilko, dirk
https://www.apple.com/nl/shop/product/MLA22LB/A/magic-keyboard-engels-vs
Magic Keyboard
Engels (VS)
1 * aiko
https://www.apple.com/nl/shop/product/MRMF2Z/A/magic-trackpad-2-spacegrijs
Magic Trackpad 2
Spacegrijs
2 * aiko, aleks