Skip to content

Instantly share code, notes, and snippets.

View vyk2rr's full-sized avatar
🌠
Deployed as developer, still suspect it’s a side quest

Victor De la Rocha vyk2rr

🌠
Deployed as developer, still suspect it’s a side quest
  • Colima, Mexico
  • 11:37 (UTC -06:00)
View GitHub Profile
@azendal
azendal / demo.js
Last active November 11, 2022 20:14
filter, map, reduce intro
/*
Applications filter -> Map -> Reduce and how it relates to functional
(Not a functional programming talk)
But a lil functional code
*/
@ChuckJHardy
ChuckJHardy / example_activejob.rb
Last active March 12, 2025 21:24
Example ActiveJob with RSpec Tests
class MyJob < ActiveJob::Base
queue_as :urgent
rescue_from(NoResultsError) do
retry_job wait: 5.minutes, queue: :default
end
def perform(*args)
MyService.call(*args)
end