Skip to content

Instantly share code, notes, and snippets.

View iyahoo's full-sized avatar
💭
🛌

Tomoya iyahoo

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

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

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

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

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

@y2q-actionman
y2q-actionman / a_road_to_common_lisp_jp.md
Last active August 10, 2024 03:38
A Road to Common Lisp 翻訳

この文章は、 Steve Losh 氏の記事 "A Road to Common Lisp" の翻訳です。

原文はこちらです: http://stevelosh.com/blog/2018/08/a-road-to-common-lisp/


A Road to Common Lisp (Common Lisp への道)

これまで、「最近のCommon Lispをどう学ぶとよいでしょう?」と助言を求めるメールをたくさん受け取ってきました。そこで私は、これまでメールやソーシャルメディアに投稿した全てのアドバイスを書き下すことにしました。これが誰かに有益ならば幸いです。

@gkondo
gkondo / new_gist_file.css
Created March 9, 2017 02:16
CSSアニメーション(フワッと横から入ってくる)
.info {
-webkit-animation-fill-mode: both;
-ms-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-duration: .6s;
-ms-animation-duration: .6s;
animation-duration: .6s;
-webkit-animation-name: sliderinfo;
animation-name: sliderinfo;
visibility: visible !important;
@yutopp
yutopp / 温泉.md
Last active February 10, 2020 03:28

適当に感想を書くので、ググって行ってどうぞ。 多分全部日帰りで使えるところです。

北海道

名前 感想 行った回数 行った時期 オススメ感
第一滝本館 登別の地獄谷が窓から全部見られる。温泉の種類も多く、露天風呂からは季節によっては紅葉とかも見られそうだった。少し割高なものの、1日中居られそうな気がするくらい充実していると思う。 1 晩夏/昼 95点

会津(若松のほう)

|名前|感想|行った回数|行った時期|オススメ感|

@paultopia
paultopia / navbar.cljs
Last active June 7, 2018 22:29
Floating navbar with only a single css property changed (thanks to the magic of reagent, a clojurescript interface to react)
;; I think this will work. It's extracted from a working version here:
;; https://github.com/paultopia/stdio (mostly in the nav namespace)
;; so if you try this and it doesn't work, I probably left something off, feel free to go to the original.
(ns navbar.core
(:require [reagent.core :as r :refer [render atom]]))
(defn loren [reps]
(apply str (take reps (repeat "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim
@voluntas
voluntas / webrtc.rst
Last active October 29, 2024 04:43
WebRTC コトハジメ
@kohyama
kohyama / stm.md
Last active February 9, 2023 05:35
Clojure ref, atom, agent の要約