Skip to content

Instantly share code, notes, and snippets.

View deverebor's full-sized avatar
🦥
sudo rm rf /

Lucas Souza deverebor

🦥
sudo rm rf /
View GitHub Profile
@deverebor
deverebor / README.md
Last active May 2, 2023 13:35
ZSH + Starshipt +Terminal - Personal settings

Plugins

  • Oh my zsh
  • zinit
  • Autosuggestion
  • SyntaxHgihlight
  • Globalsearch - fzf
  • zsh-z

Dependencies

@probonopd
probonopd / Wayland.md
Last active June 30, 2024 10:16
Think twice about Wayland. It breaks everything!

Think twice before abandoning Xorg. Wayland breaks everything!

Hence, if you are interested in existing applications to "just work" without the need for adjustments, then you may be better off avoiding Wayland.

Wayland solves no issues I have but breaks almost everything I need. Even the most basic, most simple things (like xkill) - in this case with no obvious replacement. And usually it stays broken, because the Wayland folks mostly seem to care about Automotive, Gnome, maybe KDE - and alienating everyone else (e.g., people using just an X11 window manager or something like GNUstep) in the process.

Wayland proponents make it seem like Wayland is "the successor" of Xorg, when in fact it is not. It is merely an incompatible alternative, and not even one that has (nor wants to have) feature parity (missing features). And unlike X11 (the X Window System), Wayland protocol designers actively avoid the concept of "windows" (making up incompr

@hjJunior
hjJunior / lista_encadeada.c
Created April 11, 2018 19:33
Lista duplamente encadeada em c
// LISTA DUPLAMENTE ENCADEADA
#include <stdio.h>
#include <stdlib.h>
typedef struct elemento Elemento;
struct elemento {
int valor;
Elemento *proximo;
Elemento *anterior;
@kelvinst
kelvinst / git-aliases.md
Last active April 7, 2024 20:30
Git alias - seja rápido, seja breve!

Git alias - seja rápido, seja breve!

Git freak como sou, precisava compartilhar algo útil sobre ele, claro. E, já que não vejo muito por aí o pessoal usando, resolvi falar dos alias do git! É um recurso que eu uso muito, e nunca entendi porque muitas pessoas não são adeptas. 😕

Pelo nome você já deve perceber que os alias no git são atalhos. Atalhos pro quê? São atalhos para comandos do git e até comandos shell se você quiser. E é bem fácil cadastrar um alias:

$ git config --global alias.st status