Skip to content

Instantly share code, notes, and snippets.

View yumatsuoka's full-sized avatar

YumaMatsuoka yumatsuoka

  • Tokyo
View GitHub Profile
@mizchi
mizchi / predict-frontend.md
Last active May 12, 2023 03:43
React のユーザーから見た今後のフロントエンドの予想

この記事は議論のたたき台で、ポジショントークや、偏見にまみれています。

今のフロントエンドの分類

  • 古典的なサーバーサイド WAF への +α の味付け
  • 大規模なクライアントアプリケーション管理のための SPA
  • SEO / SSR を考慮した Node ヘヴィーな環境

他、提唱されてるパターン

@wabouhamad
wabouhamad / gist:e0c2cb8937ecbf15870b34f3d669a8f3
Created September 8, 2017 15:33
OCP 3.6 Ansible playbook to tune journald
name: journald optimizations to allow for increased logging rates
hosts: all
gather_facts: False
tasks:
- name: Stop and disable rsyslog
systemd:
name: "{{ item }}"
state: stopped
enabled: no
with_items:
@hoffrocket
hoffrocket / server.py
Last active August 6, 2020 03:56
Tornado + multiprocessing
#!/usr/bin/env python
from multiprocessing import Process, Queue
import os
import sys
import time
import tornado.ioloop
import tornado.web
@dfhe2004
dfhe2004 / gist:2818113
Created May 28, 2012 09:21
Spectral clustering
import numpy as np
from scipy.linalg import eig
from scipy.cluster.vq import kmeans2
from scipy.sparse.linalg import eigen
from scipy.spatial.kdtree import KDTree
from pylab import *
# Three multivariate Gaussians with means and cov listed below