Skip to content

Luke McCrone

Freelance Software Developer

  • Home
  • Posts
  • Cheat Sheets
  • Software Under The Hood
  • Personal Links
  • Contact

Author: lmccrone

README Layout

Posted on March 31, 2023No Comments on README Layout

Introduction Installation Manual Other Methods (e.g. from executable) Usage Development Testing Deployment

Docker Cheat Sheet

Posted on March 26, 2023March 26, 2023No Comments on Docker Cheat Sheet

Restart Terminated Container Run docker ps -a to get previously run containers Run docker start {container code} to run container Check Container Log Output Run docker inspect to get any possible log locations Run docker exec -it {container code} {shell} to attempt to access non-mounted logs Run docker attach {container code} to view any standard … Continue reading Docker Cheat Sheet

Python – 2D Array Initialization

Posted on March 22, 2023March 22, 2023No Comments on Python – 2D Array Initialization

Doesn’t work properly, see here. This works properly.

Project Order

Posted on March 16, 2023March 28, 2023No Comments on Project Order

React – Linting

Posted on March 13, 2023No Comments on React – Linting

To install linter: npm init @eslint/config To run: npx eslint {files…}

Golang – Linting

Posted on March 12, 2023No Comments on Golang – Linting

First, install with instructions here. Then, run in project folder with golangci-lint run

Python – Linting

Posted on March 10, 2023No Comments on Python – Linting

In python virtual environment: pip install pylint python {file to lint}

CSS – Padding vs Margin

Posted on March 7, 2023No Comments on CSS – Padding vs Margin

Padding: space between component content and border (invisible or not) Margin: space between border and neighboring component

JSON Consumption – DOM vs Binding vs Streaming

Posted on March 7, 2023No Comments on JSON Consumption – DOM vs Binding vs Streaming

DOM: JSON is consumed at once, and user can navigate the JSON object via function calls Binding: JSON is consumed at once into programming language object Streaming: JSON is consumed as data is read

Golang Interface Examples

Posted on March 4, 2023March 7, 2023No Comments on Golang Interface Examples

Code Output More Code Output

Posts navigation

Page 1 Page 2 Page 3 Next page

Follow Blog via Email

Enter your email address to follow this blog and receive notifications of new posts by email.

Join 1 other subscriber
Luke McCrone

Powered by WordPress.com.

Back to top
 

Loading Comments...