VIEW MORE ARTICLES
Rinas Writes
March 01, 2024
TIL about Streaming and Server Sent Event
Streaming
class MyController < ActionController::Base include ActionController::Live def stream response.headers['Content-Type'] = 'text/event-stream' 100.times { response.stream.write "hello world\n" sleep 1 } ensure response.stream.close end end
Server Sent Events
class MyController < ActionController::Base include ActionController::Live def index response.headers['Content-Type'] = 'text/event-stream' sse = SSE.new(response.stream, retry: 300, event: "event-name") sse.write({ name: 'John'}) sse.write({ name: 'John'}, id: 10) sse.write({ name: 'John'}, id: 10, event: "other-event") sse.write({ name: 'John'}, id: 10, event: "other-event", retry: 500) ensure sse.close end end
Example Usage of EventSource in JavaScript:
https://developer.mozilla.org/en-US/docs/Web/API/EventSource
https://developer.mozilla.org/en-US/docs/Web/API/EventSource
Recent writings
TIL: How to create new session in tmux and use ...
To create a new session in tmux tmux new -s sessionname Detach from the session crtl + b and then...
March 12, 2025
My remote work schedule
I have been working remotely for more than 5 years now. My work schedule had changed throughout ...
March 04, 2025
2025 is the year I'm going minimalist.
Sorry that's all I can share. (being a minimalist, you know... get it?) Joke aside, I have been...
January 17, 2025
Hello 2025, give me these:
Personal Health is my #1 priority this year, both mental and physical: • Go out for a walk and ...
January 07, 2025