Changes
Page history
make copy-paste from source markdown easier
authored
Sep 23, 2024
by
anarcat
Show whitespace changes
Inline
Side-by-side
howto/gitlab.md
View page @
ecfce360
...
...
@@ -607,12 +607,14 @@ to get the project ID, and from there, find the project using the API
above. Here's a Python blob that will generate a hash for every
project ID up to 2000:
```
import hashlib
for i in range(2000):
h = hashlib.sha256()
h.update(str(i).encode('ascii'))
print(i, h.hexdigest())
```
## Connect to the PostgreSQL server
...
...
...
...