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
  • 18:47 (UTC +02: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 April 26, 2025 18:27
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@ygotthilf
ygotthilf / jwtRS256.sh
Last active April 26, 2025 05:11
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