これは時雨堂が開催しているオンラインイベントである WebRTC 入門の 講師用 の資料であり、 参加者用の資料ではありません。
ChatGPT がある今、学ぼうと思えば好きなだけ学べる時代がきています。
これは時雨堂が開催しているオンラインイベントである WebRTC 入門の 講師用 の資料であり、 参加者用の資料ではありません。
ChatGPT がある今、学ぼうと思えば好きなだけ学べる時代がきています。
| const path = require('path'); | |
| const { spawn } = require('child_process'); | |
| const flags = process.argv.slice(2); | |
| const config = require('./postcss.config.js'); | |
| // Parse postcss.config.js's extra fileds like webpack.config.js | |
| const entries = []; | |
| for (const [name, src] of Object.entries(config.entry)) { | |
| const input = path.join(config.context, src); |
| # Based on CentOS7 fork of @smartmadsoft: https://gist.github.com/moneytoo/ab3f34e4fddc2110675952f8280f49c5 | |
| # "6" for CentOS6 or Amazon Linux, "7" for CentOS7 | |
| CENTVER="6" | |
| OPENSSL="openssl-1.1.0-pre5" | |
| NGINX="nginx-1.11.0-1" | |
| yum clean all | |
| # Install epel packages (required for GeoIP-devel) |
NOTE I'm trying to find the most optimal fav/touch icon setup for my use-cases. Nothing new here. Read Mathias Bynens' articles on re-shortcut-icon and touch icons, a FAQ or a Cheat Sheet for all the details.
I'd like to hear how you approach this: @valuedstandards or comment on this gist.
You have to include a boatload of link elements pointing to many different images to provide (mobile) devices with a 'favicon' or 'touch icon':
| /** | |
| http://mythosil.hatenablog.com/entry/20111017/1318873155 | |
| http://blog.dealforest.net/2012/03/ios-android-per-aes-crypt-connection/ | |
| */ | |
| @interface NSData (AES) | |
| - (NSData *)AES128EncryptedDataWithKey:(NSString *)key; | |
| - (NSData *)AES128DecryptedDataWithKey:(NSString *)key; | |
| - (NSData *)AES128EncryptedDataWithKey:(NSString *)key iv:(NSString *)iv; |
| # Send Japanese mail using Gmail SMTP server. You need tlsmail. | |
| # $ sudo gem install tlsmail | |
| require "rubygems" | |
| require "tlsmail" | |
| require "nkf" | |
| require "net/smtp" | |
| def sendgmail(from, to, subject, body, user, pass, host = "smtp.gmail.com", port = 587) | |
| body = <<EOT |