Skip to content

Instantly share code, notes, and snippets.

@imk2o
imk2o / canvas_animation.html
Last active August 30, 2017 09:29
Canvasアニメーションテンプレ #HTML #PHH
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>HTML Canvas Animation</title>
<script src="canvas_animation.js"></script>
<style type="text/css">
canvas { border: 1px solid black; }
@imk2o
imk2o / RxPublished.swift
Last active January 17, 2024 15:12
RxPublished (property wrapper)
import Foundation
import RxSwift
import RxCocoa
// NOTE
// 参考実装
// https://www.swiftbysundell.com/articles/property-wrappers-in-swift/
//
// Exclusively Enforcement問題
// (購読の仕方によって wrappedValue.setter 内で getter が呼ばれるケースがある)