Skip to content

Instantly share code, notes, and snippets.

View viniciusnevescosta's full-sized avatar
:atom:

Vinícius Neves Costa viniciusnevescosta

:atom:
View GitHub Profile
@viniciusnevescosta
viniciusnevescosta / obsidian-syncthing-gitwatch.md
Last active May 24, 2023 03:49
This Gist ains to help you use obsidian, sync the files in all your devices and auto-backup them.

Obsidian + Syncthing + Gitwatch

This Gist ains to help you use obsidian, sync the files in all your devices and auto-backup them.

Acknowledgements

@viniciusnevescosta
viniciusnevescosta / metatags.html
Created July 8, 2022 16:21
Most commonly used metatags
<meta name="theme-color" content="" /> <!-- put hex color -->
<meta name="description"
content="Veja projetos da comunidade no Github.">
<meta name="keywords" content=""> <!-- put the keywords -->
<meta name="author" content=""> <!-- put the author -->
<meta name="robots" content="index, follow">
<meta property="og:title" content=""> <!-- put a title -->
<meta property="og:description" content=""> <!-- put a description -->
<meta property="og:image" content="" class="metaimg"> <!-- put a link to an image -->
<meta property="og:image:width" content="400" />
@viniciusnevescosta
viniciusnevescosta / 7_1SassArchitecture.scss
Created May 1, 2022 21:22
One popular and effectively modular way to structure Sass projects is the 7-1 pattern. If your internship or eventual place of employment uses Sass, there's a high chance they use some variation of this type of architecture. So let's make sure you're familiar with it before moving on!
// sass-utils
@import 'sass-utils/variables';
@import 'sass-utils/mixins';
// components
@import 'components/button'; // or any other component created...
// layout
@import 'layout/header';
@import 'layout/main';