Skip to content

Instantly share code, notes, and snippets.

View Mikkou's full-sized avatar
👣
step by step to the goal

Mikkou Mikkou

👣
step by step to the goal
View GitHub Profile
@abepark01
abepark01 / install-mongodb-2.6.12-from-tarball.sh
Created November 16, 2017 20:42
install mongodb-2.6.12 from the tarball
#!/usr/bin/env bash
# run this script from your home folder
# sudo bash
curl -O http://downloads.mongodb.org/linux/mongodb-linux-x86_64-2.6.12.tgz
tar -zxvf mongodb-linux-x86_64-2.6.12.tgz
cp mongodb-linux-x86_64-2.6.12/bin/* /usr/local/bin
groupadd mongodb
useradd --system --no-create-home -g mongodb mongodb
@boodle
boodle / Making Apple Developer certificates on Linux.md
Last active April 8, 2024 12:30
Making Apple Developer certificates on Linux
  1. Create a new directory;
mkdir Apple\ Enterprise
cd Apple\ Enterprise
  1. Generate a certificate signing request
openssl req -nodes -newkey rsa:2048 -keyout ios_enterprise.key -out CertificateSigningRequest.certSigningRequest