Skip to content

Instantly share code, notes, and snippets.

View diegofigmedeiros's full-sized avatar

Diego Figueiredo diegofigmedeiros

  • Instituto Federal de Ciência e Tecnologia da Paraiba
  • João Pessoa
View GitHub Profile
@diegofigmedeiros
diegofigmedeiros / .wslconfig
Created July 30, 2023 18:31
wsl limit memory
# C:\Users\UserName\.wslconfig
[wsl2]
memory=2GB
@diegofigmedeiros
diegofigmedeiros / bootstrap_all_colors.css
Last active July 9, 2022 16:29
Bootstrap All Colors
.bg-blue-100 {
background-color: #cfe2ff !important;
}
.text-blue-100 {
color: #cfe2ff !important;
}
.border-blue-100 {
border-color: #cfe2ff !important;
@diegofigmedeiros
diegofigmedeiros / diego.omp.json
Last active July 5, 2022 18:22
oh-my-posh personalized theme
{
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
"blocks": [
{
"alignment": "left",
"segments": [
{
"foreground": "#45F1C2",
"style": "plain",
"template": "\uf871 {{ .UserName }} <#FFFFFF>in</>",
@diegofigmedeiros
diegofigmedeiros / github_desktop_ubuntu.sh
Created May 28, 2022 19:16 — forked from berkorbay/github_desktop_ubuntu.md
To install Github Desktop for Ubuntu
## Follow this link for further updates to Github Desktop for Ubuntu https://github.com/shiftkey/desktop/releases/latest
# UPDATE (2021-10-18): Thanks to Amin Yahyaabadi's message, the updated code is as follows
sudo wget https://github.com/shiftkey/desktop/releases/download/release-2.9.3-linux3/GitHubDesktop-linux-2.9.3-linux3.deb
### Uncomment below line if you have not installed gdebi-core before
# sudo apt-get install gdebi-core
sudo gdebi GitHubDesktop-linux-2.9.3-linux3.deb
# UPDATE (2021-03-05): Thanks to PaoloRanzi81's comment, the updated code is as follows https://gist.github.com/PaoloRanzi81
@diegofigmedeiros
diegofigmedeiros / gpg-signing.md
Created May 28, 2022 19:15 — forked from xavierfoucrier/gpg-signing.md
GPG signing with Git and Github Desktop

Hi Github users,

You can now signed your commits on Github using at least Git 2.18.0 and Github Desktop 1.6.1.

  1. Generate a GPG key and add it to Github: https://help.github.com/articles/generating-a-new-gpg-key (if you don't want to type a passphrase on every commit, you need to press "Enter" when the console will prompt you to type a passphrase)

  2. Configure Git properly by editing the .gitconfig file using the command line git config --global --edit in a terminal, then replace YOUR_GITHUB_EMAIL, YOUR_SIGNING_KEY and GPG_BINARY_PATH with your data