starting pyramid development...

And here we go again, start pyramid development, which i have done in the past but now with the aim of learning Python3 and build a small website for my videos to start with.

I will reuse part of the code i used for the blogcode from some years ago, and we will see how this go.

Also, w...
Continue Reading

access svn via ssh in a secure way...

up until now i have been using svn protocol to access my subversion repos.
Of course if you are inside a corporate/home network then this doesnt pose a big issue, as the traffic for svn protocol is transmitted in the open.

When doing from the internet, then all the traffic is in plain text...
Continue Reading

fix next id in postgres...

Validate that the sequence is out-of-sync

Before we reset the sequence, let us make sure that it is out of sync.

SELECT nextval(PG_GET_SERIAL_SEQUENCE('"table"', 'id'));

SELECT
CURRVAL(PG_GET_SERIAL_SEQUENCE('"table"', 'id')) AS "Current Value",
MAX("id") AS
...
Continue Reading