[Django] cookie情報の設定、取得方法

クラスベース クラスベースビューから操作する場合はdispatchメソッドをオーバーライドするのが一番お手軽だろう。 from datetime import datetime, timedelta from django.views.generic import TemplateView class MyView(TemplateView): template_name =

[Swift] UIImageをリサイズする方法メモ

画像をリサイズしてから保存、送信するケースが多いのでそのとき用のメモ リサイズ用のエクステンション extension UIImage { func resized(withPercentage percentage: CGFloat) -> UIImage? { let canvas = CGSize(width: size.width * percentage, height: size.height * percentage) return

[Python] build-in objectに独自のメソッドを追加する禁断の果実

Pythonはクラスに後からメソッドが追加できる言語です。 class A: pass A().hello() # Traceback (most recent call last): # File "<stdin>", line 1, in <module> # AttributeError: 'A' object has no attribute 'hello' def hello(self): print("hello") setattr(A,'hello',hello) A().hello() # hello しかし、それはあく