Skip to content

Instantly share code, notes, and snippets.

View NisalSP9's full-sized avatar

Nisal Sanjaya Perera NisalSP9

View GitHub Profile
@PurpleBooth
PurpleBooth / README-Template.md
Last active November 19, 2024 11:04
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@sergiotapia
sergiotapia / images_dimensions.go
Last active November 16, 2024 05:40
Golang - Getting the dimensions of an image. jpg, jpeg, png
package main
import (
"fmt"
"image"
"os"
_ "image/jpeg"
_ "image/png"
)