Skip to content

Instantly share code, notes, and snippets.

@Bill-tran
Bill-tran / how-to-install-openssl-1.1.1-on-centos-7.md
Created September 7, 2021 09:22
How to install openssl 1.1.1 on CentOS 7

How To Install OpenSSL 1.1.1 on CentOS 7

This tutorial goes through how to install openssl 1.1.1 on CentOS 7, since the yum repo only installs up to openssl 1.0.

Requirements

Upgrade the system

yum -y update
@berkedel
berkedel / flow-error-icu4c-not-loaded.md
Created April 4, 2018 14:13
dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.60.dylib

How to solve dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.60.dylib

brew uninstall --ignore-dependencies node icu4c
brew install node
@wojtha
wojtha / download.rb
Last active February 3, 2023 14:06
Download binary file with 'open-uri' and 'IO.copy_stream'
require 'open-uri'
# Net::HTTP.get(uri) does't work for binary files. File gets corrupted.
#
# File is opended in binary write mode "wb". The "open" method is provided
# by open-uri and is considered unsafe for user input! The "rb" stands for
# binary read mode.
#
# IO.copy_stream does not load the whole file in memory.
#