Skip to content

Instantly share code, notes, and snippets.

@yaronalk
yaronalk / gist:c9ee61b1ff19d9db20dc038a88680e44
Last active November 19, 2023 11:54
Quick-n'-Dirty צבע אדום alerts in Home Assistant
rest:
- resource: https://www.oref.org.il/WarningMessages/History/AlertsHistory.json
scan_interval: 3
binary_sensor:
- name: "Red Alert צבע אדום"
device_class: safety
value_template: >
{% set homeCitiesTf = 'כפר עזה ,בצת' %}
{%- set ns = namespace() -%}
{%- set ns.output=[]-%}
@yaronalk
yaronalk / UIView+Wiggle.h
Last active May 19, 2019 14:43
Make any UIView (e.g., UICollectionViewCell) wiggle like iOS home screen apps before being deleted
//
// UIView+Wiggle.h
//
@interface UIView (Wiggle)
- (void)wiggle;
- (void)endWiggling;
- (BOOL)isWiggling;