Skip to content

Instantly share code, notes, and snippets.

@Demonium
Demonium / md5algorithm.abap
Created February 26, 2021 09:02 — forked from PawelJagus/md5algorithm.abap
MD5 algorithm in ABAP with Update function
*&---------------------------------------------------------------------*
*& Report ZZZ
*&
*&---------------------------------------------------------------------*
*&
*&
*&---------------------------------------------------------------------*
REPORT zzz.
@Demonium
Demonium / GitLab-CE on Windows 10
Last active May 21, 2020 23:29 — forked from kingbin/GitLab-CE on Windows 10
Using Docker toolbox to create a persistent Gitlab-CE install in Windows 10
$ docker create --name gitlab-data --volume /d/docker/gitlab:/etc/gitlab gitlab/gitlab-ce:latest
# Make sure Bridging is set on the VM in VirtualBox
$ docker run --publish 8080:80 --publish 2222:22 --publish 4443:443 --name gitlab --restart always --volumes-from gitlab-data gitlab/gitlab-ce:latest
Using docker 1.13.1