Skip to content

Instantly share code, notes, and snippets.

View bediu's full-sized avatar
🏠
Working from home

bediu

🏠
Working from home
  • Skopje, North Macedonia
View GitHub Profile
@bediu
bediu / 2019-https-localhost.md
Created June 2, 2022 15:59 — forked from cecilemuller/2019-https-localhost.md
How to create an HTTPS certificate for localhost domains

How to create an HTTPS certificate for localhost domains

This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.

Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).

@bediu
bediu / spacelib.css
Last active January 28, 2021 10:43
[spacelib.css] Micro library with spacing classes
/* widths */
.w10 {
width: 10%;
}
.w20 {
width: 10%;
}
.w30 {
width: 10%;
}
@bediu
bediu / flexlib.css
Created January 20, 2021 10:32
[flexlib.css] Micro library with flexbox classes
.flex {
display: flex;
}
.fcol {
flex-direction: column;
}
.jc {
justify-content: center;
}
.jsb {