Skip to content

Instantly share code, notes, and snippets.

View rolandjitsu's full-sized avatar
👽

Roland Groza rolandjitsu

👽
View GitHub Profile
@rolandjitsu
rolandjitsu / install_on_debian.sh
Created August 22, 2021 09:12
Install OpenSSL
sudo apt-get -y install build-essential checkinstall zlib1g-dev
git clone --depth 1 --branch OpenSSL_1_1_1k https://github.com/openssl/openssl.git
cd openssl
./config zlib '-Wl,-rpath,$(LIBRPATH)'
make
make test
sudo make install
sudo ldconfig -v
"spec" Reporter:
------------------------------------------------------------------
[chrome 73.0 macOS 10.14 #0-0] Spec: /Users/rolandjitsu/Projects/wdio-sl/e2e/next.spec.js
[chrome 73.0 macOS 10.14 #0-0] Running: chrome (v73.0) on macOS 10.14
[chrome 73.0 macOS 10.14 #0-0]
[chrome 73.0 macOS 10.14 #0-0] next.js integration
[chrome 73.0 macOS 10.14 #0-0] ✖ should work
[chrome 73.0 macOS 10.14 #0-0]
[chrome 73.0 macOS 10.14 #0-0] 1 failing (5.8s)
@rolandjitsu
rolandjitsu / virtualenvwrapper.md
Created July 14, 2016 17:31
Instructions for setting up virtualenvwrapper on Mac OS X.

Virtualenvwrapper

Install steps for virtualenvwrapper on Mac OS X using Homebrew.

Install Python


If you haven't already installed Python, please do so:

brew update && brew reinstall python

Optionally, if you want to work with the latest version of Python:

@rolandjitsu
rolandjitsu / spark.md
Last active February 25, 2021 08:51 — forked from ololobus/Spark+ipython_on_MacOS.md
Apache Spark installation for Mac OS X

Apache Spark

Install steps for Apache Spark on Mac OS X using Homebrew.

Install Java Development Kit


Download and install it from oracle.com, then add following code to your .bash_profile, .zshrc, etc.:

# Apache Spark
if which java > /dev/null; then export JAVA_HOME=$(/usr/libexec/java_home); fi