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 March 10, 2025 19:33
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,
@suzker
suzker / arch_auto_mount_ntfs
Last active January 3, 2025 14:24
[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();