Skip to content

Instantly share code, notes, and snippets.

<div class="wrapper">
<img class="logolo" src="https://daff.dev/mechadash/logo.gif">
<div class="content" id="a1">
<h2>
סקר ההוראה הגדול
</h2><br/>
שלום לכם וברוכים לסקר ההוראה הגדול.
באמצעות השאלות הקרובות שתשאלו נוכל לבנות את מערך הידע שיאפשר שיפור אינקרמנטלי במערכת ההחלטות הפדגוגיות אשר בונות את הקרקע לשינוי הראדיקלי הצפוי במערכת החינוך הירושלמית.
<button onclick="show(2)">התחל</button>
</div>
@dorkalev
dorkalev / application_record.rb
Last active March 5, 2021 09:37
My last ApplicationJob ever.
# capture every XXXX_just_later call and create a JustLaterJob
class ApplicationRecord < ActiveRecord::Base
self.abstract_class = true
def method_missing(method, *args, &block)
ms = method.to_s
if ms.end_with?('_just_later')
a = ms[0...-11]
if respond_to?(a)
JustLaterJob.perform_later(self, a, *args)
end