- Dockからいらないアイコンを削除
 - 入れるソフトウェア
- Google Chrome
 - VSCode
 - illustrator
 - Sketch
 - OBS
 
 - karabinar
 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | export default function() { | |
| console.log('My name is PyRun.js') | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // 親が flex-flow: row wrap なときにいい感じで横並びするやつ | |
| @mixin align-cell($row: 4, $gap-horz: 20px, $gap-vert: 20px) { | |
| width: calc(100% / #{$row} - #{$gap-horz * ($row - 1) / $row}); | |
| & + & { | |
| margin-left: $gap-horz; | |
| } | |
| &:nth-of-type(n + #{$row + 1}) { | 
- sysctl kern.maxfilesあたりの上限を上げる必要があった
- npm startしたら案内がちゃんとあった
 
 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | :root { | |
| /* サイズ定義 */ | |
| --side-panel-width: 360px; | |
| --common-header-area-height: 48px; | |
| --comment-post-panel-height: 102px; | |
| --player-margin-height: 140px; | |
| --player-min-height: 400px; | |
| --broadcast-controller-height: 156px; | |
| /* カラー定義 */ | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | https://csstriggers.com/ | |
| https://kitak.hatenablog.jp/entry/2015/11/03/194832 | |
| https://medium.com/ux-in-motion/motion-design-in-digital-products-a-white-paper-48da834261dd | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /* | |
| .column:nth-child(4): LTLのカラム(人によってUI違うっぽいので適宜調整) | |
| .column:nth-child(4) article[aria-posinset][data-id]: LTLの中のトゥートのwrap | |
| .column:nth-child(4) article[aria-posinset][data-id] time: その中の時間 | |
| */ | |
| /* トゥートのwrapをrelativeにする(多分いらない) */ | |
| .column:nth-child(4) article[aria-posinset][data-id] { | |
| position: relative; | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | body { | |
| font-family: 'Avenir Next', 'YuGothic' !important; | |
| -webkit-font-smoothing: antialiased; | |
| } | |
| .columns-area > .column { | |
| display: none; | |
| } | |
| .columns-area > .column + .column { | |
| display: flex; | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | html, | |
| body { | |
| font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Hiragino Sans", sans-serif; | |
| background: black; | |
| -webkit-font-smoothing: antialiased; | |
| } | |
| a { | |
| color: #0080ff; | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | (function(){ | |
| //要素の取得 | |
| var elements = document.querySelectorAll("body > *"); | |
| //要素内のクリックされた位置を取得するグローバル(のような)変数 | |
| var x; | |
| var y; | |
| //マウスが要素内で押されたとき、又はタッチされたとき発火 | 
NewerOlder