Skip to content

Instantly share code, notes, and snippets.

View caiusCitiriga's full-sized avatar
🙅‍♂️
Not a people person

Caius Citiriga caiusCitiriga

🙅‍♂️
Not a people person
  • BizAway
  • Trento Italy
  • 07:46 (UTC +01:00)
View GitHub Profile
@digitaljoni
digitaljoni / gradient_icon_widget.dart
Created March 17, 2020 02:02
Gradient Icon Widget
class GradientIcon extends StatelessWidget {
GradientIcon(
this.icon,
this.size,
this.gradient,
);
final IconData icon;
final double size;
final Gradient gradient;
@bradtraversy
bradtraversy / docker-help.md
Last active November 23, 2025 10:14
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@ygotthilf
ygotthilf / jwtRS256.sh
Last active December 3, 2025 11:46
How to generate JWT RS256 key
ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key
# Don't add passphrase
openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub
cat jwtRS256.key
cat jwtRS256.key.pub