Skip to content

Instantly share code, notes, and snippets.

View mayannaoliveira's full-sized avatar
:octocat:
I'm on Discord, just send me a message.

Mayanna Oliveira mayannaoliveira

:octocat:
I'm on Discord, just send me a message.
View GitHub Profile
@mayannaoliveira
mayannaoliveira / alacritty-config.md
Created July 5, 2025 01:42
[Alacritty] Alterar font do terminal para Nerd Font

[Alacritty] Alterar a Font do Terminal para Nerd Font

Utilizando o Windows 10 e Alacritty-v0.15.1, mesmo após a instalação eu não encontrei nenhum arquivo de configuração no caminho %APPDATA%\alacritty\alacritty.toml ou %APPDATA%\alacritty\alacritty.yml como aponta no Github do Alacritty então, para resolver o problema fiz os seguintes passos:

  1. Acessei a pasta C:\Users\machine\AppData\Roaming\.
  2. Criei uma nova pasta chamada alacritty então ficou C:\Users\machine\AppData\Roaming\alacritty.
  3. Adicionei um arquivo YML de nome alacritty.yml no C:\Users\machine\AppData\Roaming\alacritty então ficou C:\Users\machine\AppData\Roaming\alacritty\alacritty.yml .
  4. Inserir o seguinte código em alacritty.yml.
# Alacritty 
@adojos
adojos / oh-my-posh_WinPS_Install.md
Last active November 27, 2025 22:33
Oh-My-Posh Installation on Win PowerShell v5.1 #powershell

Oh-My-Posh Installation on Windows PowerShell v5.1


1. Installation

There are number of ways you can install Oh-My-Posh. But commonly you install Oh-My-Posh either from PSGallery by using PowerShell's 'Install-Module' command or with Oh-My-Posh supplied platform-specific install instructions like 'Winget' on their website. Hence you can choose to run any one of the following.

If you want to use 'winget', run following:

winget install JanDeDobbeleer.OhMyPosh -s winget
@lukas-h
lukas-h / license-badges.md
Last active June 17, 2025 19:35
Lizenz-Buttons für dein Projekt

Markdown Lizenz-Buttons

Sammlung von Lizenz-Schildern (Badges) für die README-Datei deines Projekts. Diese Liste enthält die meist verbreiteten Open Source und Open Data Lizenzen. Kopieren und fügen Sie den Code unter den Badges einfach in Ihre Markdown-Dateien ein.

Notes

@jgrodziski
jgrodziski / docker-aliases.sh
Last active December 3, 2025 16:56
Useful Docker Aliases
############################################################################
# #
# ------- Useful Docker Aliases -------- #
# #
# # Installation : #
# copy/paste these lines into your .bashrc or .zshrc file or just #
# type the following in your current shell to try it out: #
# wget -O - https://gist.githubusercontent.com/jgrodziski/9ed4a17709baad10dbcd4530b60dfcbb/raw/d84ef1741c59e7ab07fb055a70df1830584c6c18/docker-aliases.sh | bash
# #
# # Usage: #
@yuwen41200
yuwen41200 / .zshrc
Last active November 7, 2024 19:40
Custom .zshrc File
# 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=/Users/ywpu/.oh-my-zsh
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
ZSH_THEME="agnoster"
@epicserve
epicserve / django_aliases.sh
Created November 20, 2012 16:39
Django Aliases
# Django Aliases
alias d=django-admin.py
alias dt='django-admin.py test'
alias dsa='django-admin.py startapp --template=https://github.com/epicserve/django-app-template/archive/master.zip'
alias dsp='django-admin.py startproject --template=https://github.com/epicserve/django-base-site/archive/master.zip'
alias dsma='django-admin.py schemamigration --auto'
alias dsmi='django-admin.py schemamigration --initial'
alias dm='django-admin.py migrate'
# shortcut for starting django's runserver on a different port