- 録画
- OBS
- クロッピング
- Avidemux
- 30 fps で書き出す
- Avidemux
- 画像作成
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
| @import url('https://fonts.googleapis.com/css?family=Roboto:400,400i,700,700i'); | |
| ::selection { | |
| background-color: #d0dee4; | |
| } | |
| :root { | |
| --fg: #11264d; | |
| --fg-muted: #6e7b84; | |
| --bg: #f3f4f7; |
I hereby claim:
- I am qrg on github.
- I am qurage (https://keybase.io/qurage) on keybase.
- I have a public key ASDCatDJQ8N2siCV85GREHFyksQFy4lzb0LztVVh1eQw8wo
To claim this, I am signing this object:
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://github.com/zeit/next.js/blob/42cff0a09c4ae42016500b1797ae4f0bd8438e88/packages/next-bundle-analyzer/index.js | |
| module.exports = ({ enabled = true } = {}) => (nextConfig = {}) => { | |
| return Object.assign({}, nextConfig, { | |
| webpack (config, options) { | |
| if (enabled) { | |
| const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer') | |
| config.plugins.push( | |
| new BundleAnalyzerPlugin({ | |
| analyzerMode: 'static', | |
| reportFilename: options.isServer ? '../analyze/server.html' : './analyze/client.html' |
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
| #!/usr/bin/env fish | |
| echo \nfisher | |
| fisher | |
| echo \nz --clean | |
| z --clean |