Skip to content

Instantly share code, notes, and snippets.

View poudelprakash's full-sized avatar

Prakash poudelprakash

View GitHub Profile
@t2
t2 / general_notifier.rb
Created September 2, 2025 12:36
Loops.so Noticed Integration
# app/notifiers/general_notifier.rb
class GeneralNotifier < ApplicationNotifier
include LoopsNotifier
configure_loops
required_param :subject
required_param :message
notification_methods do
@tuetenk0pp
tuetenk0pp / media-workflow-jellyfin.md
Last active September 27, 2025 04:30
Media Workflow for Jellyfin
@a-barbieri
a-barbieri / videos_helper.rb
Last active July 6, 2023 08:21
Rails helper to embed YouTube and Vimeo iframe in view
# Helpers for better embedding and manipulation of videos
# Place this code in app/helpers/videos_helper.rb
# Then from any view you can add:
#
# <%= get_video_iframe('http://the.video.url') %>
#
# Optionally you can add width and height.
#
# <%= get_video_iframe('http://the.video.url', '1600px', '900px') %>
#