Skip to content

Instantly share code, notes, and snippets.

View srea's full-sized avatar
🐢
Hi!

Yuki Tamazawa srea

🐢
Hi!
View GitHub Profile
@srea
srea / trigger webViewWebContentProcessDidTerminate in simulator
Created November 7, 2025 02:17 — forked from jasonbekolay/trigger webViewWebContentProcessDidTerminate in simulator
Killing a WKWebView content process in the iOS simulator to trigger a webViewWebContentProcessDidTerminate call
# In the command line, find the PID of your simulator process:
ps -p `pgrep launchd_sim`
# or if you have many simulators running:
ps -A | grep launchd_sim
# Find the PID of the WebContent process:
pgrep -P <simulator-pid> 'com.apple.WebKit.WebContent'
# kill it
//
// Plugin.swift
// HomeSecurity
//
// Created by Valery.Kokanov on 20/12/2018.
// Copyright © 2018 Ooma Inc. All rights reserved.
//
import RIBs
import RxSwift
@srea
srea / introrx.md
Created April 24, 2018 02:31 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing