misogihagi
misogihagi
building under termux environment is a kind of special way. I think Docker couldn't simulate. maybe ./configure helps ? ``` $ ./configure checking build system type... armv7l-unknown-linux-gnueabi checking host system...
確か `変数 {A}={値} `でAに値を代入できたように `定数 {B}={値} `でBを定数扱いにして値を代入できるようにしてもいいかもしれませんね。 ただ定数であるため `定数 {B} `のように値を代入しなかった場合エラーを起こす場合の手間が増えますが。 そして「代入」関数に対応させて「固定」関数もあった方が便利ですね。
すみません。自分の中の記憶違いでした。 以下のスニペットはほぼ同じ意味になるというころですかね。 スニペット1 ``` 変数 個数=5 定数 値段=100 ``` スニペット2 ``` 5を個数に代入 100を値段に定める ``` スニペット3 ``` 個数=5 値段:=100 ```
I found a strange way for 'amazon-cognito-identity-js' ` echo export default AmazonCognitoIdentity >> node_modules\amazon-cognito-identity-js\dist\amazon-cognito-identity.js ` and in your app ```javascript import AmazonCognitoIdentity from 'amazon-cognito-identity-js/dist/amazon-cognito-identity.js'; ... ```
パーサーだけならあちこちに落ちてるんですけどねえ https://github.com/jbeder/yaml-cpp とか でも問題はこういうのをttlで書けということでしょう。 javascript版のソース見てたんですけど、なんか配列256個宣言してエスケープチェックしてたんです。 で、**テラタームマクロって変数のところ融通きくんですかね?** 何かyamlをパースしたものを読み込むのならまだしもテラターム上でyamlパースするのは大変そう。
I am sorry, but my AWS environment is suspending and I cannot try to deploy. The terraform code looks like this. provider.tf: ```hcl terraform { required_providers { eksctl = {...
If this is a specification rather than a bug, this would seem to apply to all examples. Are there any related issues?
The examples I have shown, the examples you have shown, and the examples other documents have shown all seem to be the same. After much trial and error, my client...
単語を禁止するだけなので作ってみました。 https://github.com/misogihagi/textlint-rule-ja-no-confusing-word もともとこのルールが欲しかったのは本来の意味で使われていない単語を検知するためでしたが、それをやろうとすると意味解析まで必要としていて、なかなか面倒な実装になり… ということで、意味解析をするのではなく、諦めて使わせないことで辞書的な意味に忠実にしていこうという発想でした。