Skip to content

Instantly share code, notes, and snippets.

View turing4ever's full-sized avatar

Yi Wang turing4ever

View GitHub Profile
@estorgio
estorgio / Mounting VirtualBox shared folders on Ubuntu Server 18.04 LTS (Bionic Beaver).md
Last active April 19, 2024 16:34
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).

@KorbenC
KorbenC / sfdcidconverter.py
Created November 7, 2013 15:40
Salesforce.com ID Converter allows you to convert 15 digit, case-sensitive IDs to an 18 digit, case-safe version for use with Salesforce.com records.
#!/usr/var/env python
import sys
def convert_To_18(id):
#check valid input
if id is None:
return id
if len(id) < 15:
print "not a valid 15 digit ID"
return