Skip to content

Instantly share code, notes, and snippets.

View glacials's full-sized avatar
🍻
Beer me

Ben Carlsson glacials

🍻
Beer me
View GitHub Profile
@glacials
glacials / update-work-calendar.gs
Last active November 23, 2024 17:54
Sync personal events to your work calendar
// WHAT DOES THIS DO?
//
// If you follow the instructions below, your work calendar will show you as busy during events on
// your personal calendar.
//
//
// NOTES
//
// This code is based on [Jeremy Hon's code][1].
//
@demisx
demisx / active_record_objects_autosave.md
Last active July 4, 2024 14:20
When Active Record Child Objects are Autosaved in Rails

belongs_to:

  1. Assigning an object to a belongs_to association does not automatically save the object. It does not save the associated object either.

has_one:

  1. When you assign an object to a has_one association, that object is automatically saved (in order to update its foreign key).
  2. In addition, any object being replaced is also automatically saved, because its foreign key will change too
  3. If either of these saves fails due to validation errors, then the assignment statement returns false and the assignment itself is cancelled.
  4. If the parent object (the one declaring the has_one association) is unsaved (that is, new_record? returns true) then the child objects are not saved. They will automatically when the parent object is saved.