Skip to content

Instantly share code, notes, and snippets.

View marilira's full-sized avatar
💜
studying

Mariana Lira marilira

💜
studying
  • UFCG
  • Paraíba, Brazil
View GitHub Profile
@diego3g
diego3g / NODE.md
Last active November 15, 2024 15:01
VSCode Settings (Updated)

⚠️ Note!

With VSCode version 1.94, the APC extension broke and there is no fix yet.

So, for those having issues with APC after the VSCode update, I recommend downloading the previous version of VSCode for now (https://code.visualstudio.com/updates/v1_93) and setting updates to manual by adding this to the editor's configuration:

"update.mode": "manual",
@scmx
scmx / git-commit-title-first-word.md
Last active October 18, 2024 10:58
Example list of verbs / first word to use in git commit title #git #commit #title

Example list of first words to use in a git commit title

I like writing well-formed git commits that explain the intention behind why a code change was made.

Check out Chris Beams excellent How to Write a Git Commit Message if you haven't read it.

Anyway, for a project I've been working on I've gathered up 900+ commits that hold up a pretty high quality (except for one 😁). Let's look at some trends about these commits!

Most common first words in commit titles of a project

@ReneSena
ReneSena / .js
Created January 27, 2021 03:22
Componente simples de player, para adicionar nos projetos da imersão alura.
import React, { useRef, useState } from "react";
import Song from "../../assets/audio/song.mp3";
import styled from "styled-components";
export const Container = styled.div`
width: 50px;
height: 50px;
background-color: #fff;
border-radius: 50px;
display: flex;
@al-codaio
al-codaio / count_colored_cells_google_apps_script.js
Created February 27, 2023 03:09
Count the number of cells with a background color in Google Sheets (Google Apps Script)
function CountFormattedCells() {
// Output the number of formatted cells somewhere in your spreadsheet
var outputNumberOfFormattedCells = 'C52'
// Cell that contains the color you want to count. Default is blank.
var cellWithFormatToCount = ''
var spreadsheet = SpreadsheetApp.getActive();
var currentRangeColors = spreadsheet.getActiveRange().getBackgrounds();