Software Development

How to stop PRE tags from getting scrollbars

Problem: You are using <pre> tags but you’re getting scrollbars that you don’t want. Solution: <pre style=”white-space:pre-wrap”> Reference: https://stackoverflow.com/questions/13676587/html-pre-tag-values-get-horizontal-scroll-bars-how-to-format-it

Read More

How to install yarn

These instructions were obtained by installing the latest node which outputs the actual yarn instructions right at the end: ## To install the Yarn package

Read More

Useful Docker commands

List Docker instances Run a Docker instance and make sure ports are mapped: sudo docker run -p 1025:1025 -p 8025:8025 ae2e Run a Docker instance

Read More

Bitstamp Encryption

Background Bitstamp requires encryption in order use their API. The example below has a Python script and the equivalent PHP command for the encryption portion.

Read More
Scroll to Top