Skip to content

Instantly share code, notes, and snippets.

View 9helix's full-sized avatar

Dino Gržinić 9helix

View GitHub Profile
@estorgio
estorgio / Mounting VirtualBox shared folders on Ubuntu Server 18.04 LTS (Bionic Beaver).md
Last active December 6, 2025 02:38
Mounting VirtualBox shared folders on Ubuntu Server 18.04 LTS (Bionic Beaver)

Mounting VirtualBox shared folders on Ubuntu Server 18.04 LTS (Bionic Beaver)

This guide will walk you through the steps on how to setup a VirtualBox shared folder inside your Ubuntu Server guest.

Prerequisites

This guide assumes that you are using the following setup:

You could still make this guide work with other setups (possibly with some modifications to the commands and whatnot).

@noob9527
noob9527 / Hmac.kt
Created August 24, 2018 05:33
kotlin Hmac
package com.boosal.ccbba.util
import java.util.*
import javax.crypto.Mac
import javax.crypto.spec.SecretKeySpec
object Hmac {
fun digest(
msg: String,
key: String,
@NickMcSweeney
NickMcSweeney / postgresql_plus_arch-linux.md
Last active December 8, 2025 16:43
Getting postgresql running on Arch Linux

Setup Postgresql

run postgresql with systemctl

Install postgres

latest

sudo pacman -S postgresql

specific version

find version & build from source

@suzker
suzker / arch_auto_mount_ntfs
Last active July 21, 2025 23:25
[ARCH] auto mounting NTFS drives
>> set up mount point
sudo mkdir /mnt/2tb
>> list drives
sudo fdisk -l
>> install ntfs-3g
@kevinswiber
kevinswiber / Program.cs
Created November 23, 2011 23:05
Passing messages between Node.js and C#.
using System;
using System.Text;
namespace NodeIPC
{
class Program
{
static void Main(string[] args)
{
var input = Console.OpenStandardInput();