Skip to content

Instantly share code, notes, and snippets.

View anacvignola's full-sized avatar
📖
Learning everyday.

Ana Claudia Vignola anacvignola

📖
Learning everyday.
View GitHub Profile
@anacvignola
anacvignola / discord-webhook.md
Created May 2, 2022 22:17
Discord Webhook github

Step 1 - Make a Discord Webhook

  1. Find the Discord channel in which you would like to send commits and other updates

  2. In the settings for that channel, find the Webhooks option and create a new webhook. Note: Do NOT give this URL out to the public. Anyone or service can post messages to this channel, without even needing to be in the server. Keep it safe! WebhookDiscord

Step 2 - Set up the webhook on Github

  1. Navigate to your repository on Github, and open the Settings Settings
code --install-extension clinyong.vscode-css-modules
code --install-extension CoenraadS.bracket-pair-colorizer
code --install-extension Dart-Code.dart-code
code --install-extension Dart-Code.flutter
code --install-extension dbaeumer.vscode-eslint
code --install-extension donjayamanne.githistory
code --install-extension eamodio.gitlens
code --install-extension EditorConfig.EditorConfig
code --install-extension esbenp.prettier-vscode
code --install-extension formulahendry.auto-close-tag
"use strict";
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',
// default font size in pixels for all tabs
@anacvignola
anacvignola / gist:fd9743b540812cdf6585af1df7e7b1dc
Created January 16, 2021 06:50
Windows Terminal settings
// This file was initially generated by Windows Terminal 1.4.3243.0
// It should still be usable in newer versions, but newer versions might have additional
// settings, help text, or changes that you will not see unless you clear this file
// and let us generate a new one for you.
// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
{
"$schema": "https://aka.ms/terminal-profiles-schema",
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="/home/anacvignola/.oh-my-zsh"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
@anacvignola
anacvignola / media-queries-example.css
Created July 27, 2020 10:38
CSS Responsive media queries
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
}
@anacvignola
anacvignola / eslintrc.js
Last active November 11, 2019 01:37
eslintrc.js for ReactJS App
module.exports = {
env: {
browser: true,
es6: true,
},
extends: [
'airbnb',
'prettier',
'prettier/react'
],
@anacvignola
anacvignola / settings.json
Last active January 5, 2022 19:50
VSCode settings.
{
"editor.fontSize": 14,
"window.zoomLevel": 0,
"editor.lineHeight": 22,
"editor.fontLigatures": true,
"workbench.colorTheme": "Omni",
"terminal.integrated.fontSize": 14,
"editor.fontFamily": "JetBrains Mono",
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
root = true
[*]
end_of_line = lf
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
@anacvignola
anacvignola / .prettierrc
Created September 22, 2019 06:54
Prettier configuration.
{
"singleQuote": true,
"trailingComma": "es5"
}