Skip to content

Instantly share code, notes, and snippets.

View rajkumarsakthivel's full-sized avatar
🎯
Focusing

Raj rajkumarsakthivel

🎯
Focusing
View GitHub Profile
@mpociot
mpociot / README.md
Last active December 6, 2022 22:45
A Scriptable widget to show the upcoming Laracon talks

Laracon Scriptable Widget

Usage

  1. Install and download the free Scriptable app on your iOS device.
  2. Inside the app, press the "Plus" icon to create a new script
  3. Paste the content of the JS file into the script
  4. Place a Scriptable widget on your home screen
@Popsiclestick
Popsiclestick / Dockerfile
Last active May 29, 2023 19:10
Dockerfile example with best practices
### Generic Dockerfile demonstrating good practices
### Imports
# Bad. You risk both the stability and security of your application
# You don't know what they might merge into their image or who they may give control of the project
# https://twitter.com/b0rk/status/1226856930875932672/photo/1
FROM random-person/golang:latest
# Bad-ish. We don't need Ubuntu, it comes with unnecessary bloat