Skip to content

Instantly share code, notes, and snippets.

View leeorf's full-sized avatar
always learning

Leonardo Rodrigues leeorf

always learning
View GitHub Profile
@leeorf
leeorf / SHA1_GENERATOR.md
Last active May 25, 2022 03:55
SHA1 generator.

Why this?

This script was mainly made for the sake of having a way to retrieve a sha1 from a string without exposing the string that will be encrypted. I've done this because I rely on some sha1 hashes to access some files at work and I don't want to expose those strings and hashes when I'm in a video call or doing some pair programming

@leeorf
leeorf / css-media-queries-cheat-sheet.css
Created December 14, 2022 01:25 — forked from bartholomej/css-media-queries-cheat-sheet.css
CSS Media Query Cheat Sheet (with Foundation)
/*------------------------------------------
Responsive Grid Media Queries - 1280, 1024, 768, 480
1280-1024 - desktop (default grid)
1024-768 - tablet landscape
768-480 - tablet
480-less - phone landscape & smaller
--------------------------------------------*/
@media all and (min-width: 1024px) and (max-width: 1280px) { }
@media all and (min-width: 768px) and (max-width: 1024px) { }