Skip to content

Instantly share code, notes, and snippets.

View MarcellHarmaci's full-sized avatar

Marcell Harmaci MarcellHarmaci

View GitHub Profile
@MarcellHarmaci
MarcellHarmaci / hp-rpg-tracks.md
Last active October 30, 2025 16:18
HP RPG Tracks

Session 1

1 - Relaxing, Studying, Sleeping

https://files.catbox.moe/6m63tc.m4a

2 - Peaceful morning music & Ambiance

https://files.catbox.moe/ik661h.m4a
@MarcellHarmaci
MarcellHarmaci / kill-erlang-node.sh
Last active April 18, 2023 22:09 — forked from robertoaloi/kill-erlang-node.sh
Kill an Erlang process by node name or erlang pid
#!/usr/bin/env bash
# Kill an Erlang process by node name
#
# e.g.: kill-erlang-node kred
# Check usage
if [ -z "$1" ]; then
echo "Usage: `basename $0` <node_name>"
exit 1
@MarcellHarmaci
MarcellHarmaci / linux_command_output_redirection.md
Created April 16, 2023 18:42
Linux command output redirection
          || visible in terminal ||   visible in file   || existing
  Syntax  ||  StdOut  |  StdErr  ||  StdOut  |  StdErr  ||   file   
==========++==========+==========++==========+==========++===========
    >     ||    no    |   yes    ||   yes    |    no    || overwrite
    >>    ||    no    |   yes    ||   yes    |    no    ||  append
          ||          |          ||          |          ||
   2>     ||   yes    |    no    ||    no    |   yes    || overwrite
   2>>    ||   yes    |    no    ||    no    |   yes    ||  append
          ||          |          ||          |          ||
@MarcellHarmaci
MarcellHarmaci / gitlab.md
Last active October 9, 2022 14:30
Self-hosted GitLab server installation on old Raspberry Pi

Install gitlab on own server

Try #1 - Raspberry OS (based on Debian 10 "buster")

  1. Install 32 bit legacyRaspberry OS which works with my old Pi 2B
  2. Follow instructions on GitLab's page for the chosen distro
  • Install dependencies
  • Add GitLab package repo
  • Install GitLab - This is where I ran into an error
@MarcellHarmaci
MarcellHarmaci / yaws-install-for-referl.md
Last active April 16, 2022 16:09
Build and install YAWS from GitHub repository on Ubuntu 20.04

Compile and install yaws on Ubuntu 20.04

Clone repo

$ git clone https://github.com/erlyaws/yaws.git

Create ./configure script

$ cd yaws/