The package that linked you here is now pure ESM. It cannot be require()
'd from CommonJS.
This means you have the following choices:
- Use ESM yourself. (preferred)
Useimport foo from 'foo'
instead ofconst foo = require('foo')
to import the package. You also need to put"type": "module"
in your package.json and more. Follow the below guide. - If the package is used in an async context, you could use
await import(…)
from CommonJS instead ofrequire(…)
. - Stay on the existing version of the package until you can move to ESM.
Sora Labo と Momo の使い方は把握している前提の資料です
- Sora Labo を利用します
- macOS 10.15 であること
- ブラウザではまだ確認できません
This file contains 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
use std::collections::HashMap; | |
use std::fmt; | |
use std::io; | |
use std::num::ParseFloatError; | |
use std::rc::Rc; | |
/* | |
Types | |
*/ |
This file contains 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
y=201904;eval(c=(%w(c=("y=#{y^1};eva | |
l(c=[7m([m[7m%[m[7mw[m[7m([m[7m#[m[7m{[m[7mc[m[7m}[m[7m)[m[7m*[m[7m'[m').gsub(/#{9[7m2[m.c[7mh[mr}x1B | |
.7?m/[7m,[m'')[7m)[m").[7mc[mhars;370.time[7ms[m{|i[7m|[mx=27 | |
.chr;$[7m>[m<<[7m([mi%[7m3[m7==36?$/[7m:[m[7m[[m[7mx[m[7m+[m[7m"[m[7m[[m[7m7[m[7mm[m[7m%[m[7ms[m[7m"[m[7m+[m[7mx[m+" | |
[m",'%s[7m'[m][7m[[m'[7mt[m97hors0ui[7m0[m6fp5k[7mk[m6ug8vdyd | |
ok[7ml[m[7mq[m[7md[m[7mk[m[7mj[m[7mb[m[7mg[m[7m8[m[7mm[m[7mt[m[7mp[m[7mh[m[7mn[m[7md[m[7mh[mtu3q[7m9[m[7mc[m[7m3[m[7m1[mwxn[7me[m49[7mw[mpe6m | |
rkconuqfj[7mo[m85ezlffy7zg[7ma[m7m[7m6[meagp[7mk[m[7my[mij5bf | |
cfg9yn1jb[7m8[mvyynfkv2y3n[7mo[mz9[7mj[mc4f1[7mt[m[7m3[mlk[7mf[m17 | |
ehg3nk0pa[7m7[m'.to_i(36)[7m[[m(y[7m&[m[7m1[m)*[7m3[m[7m7[m0+[7mi[m[7m][m]%[ | |
c.shift])})*'').gsub(/\x1B.7?m/,'')) |
日時: | 2019-06-01 |
---|---|
作: | voluntas |
バージョン: | 19.06.2 |
URL: | https://voluntas.github.io/ |
祭っぽいので私も書いてみることにした!お手軽に gist で。
コンテキスト:https://togetter.com/li/1331865
と書き出したはいいが、私が受けたときは本も情報もあまりなく、かつ競プロ的なものの存在も知らなかったので、とりあえず家にあったアルゴリズムの本を2回くらい読み直した。そして受かった。最初っから情報があまりない方のパターンで申し訳ない 😄
- Remote Code Executionとして、Advisoryが更新された。
- https://groups.google.com/d/msg/rubyonrails-security/zRNVOUhKHrg/GmmcVXcmAAAJ
- Thanks to @sorah @tenderlove
NewerOlder