Empty Space
  • Home
  • Resume
  • Posts
  • Personal
  • Code
Sign in Subscribe
code

Publishing Docker images to Docker Hub

  • Robin Michael

Robin Michael

Dec 13, 2018

Linking to GitHub repository with documentation https://github.com/Siliconrob/dockerfiles

Sign up for more like this.

Enter your email
Subscribe

Find your IP Address Script

Needed to find the outgoing true IP address for computer to provide for whitelisting to another proxy.  Here I am using a third party website to get an IP result icanhazip.com Ideally I would create a client side call that is handled by the server and then queries the
May 31, 2023 1 min read

Enhancing the console.log

Messing around with the console.log and in particular the %c stylized log and tried some experiments and you can enhance the log to render out images etc and in this case I am making a canvas element to hold text and styling it so that the log And here
May 29, 2023 1 min read

Detect PNG image header in data stream

Byte check header for the PNG header in a data stream public static bool HasPngImageHeader(byte[] imageContents) { byte[] imageHeader = { 0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A }; return imageContents.Take(8).SequenceEqual(imageHeader); }
May 22, 2023
Empty Space © 2023
Powered by Ghost