並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 40 件 / 277件

新着順 人気順

'elseの検索結果1 - 40 件 / 277件

  • これでフルCG?!ネットで話題騒然の映像作家Alex Roman氏の新作CG「Above Everything Else」

    映像・アニメ これでフルCG?!ネットで話題騒然の映像作家Alex Roman氏の新作CG「Above Everything Else」 「バングラデシュ国会議事堂」「フィリップ・エクスター・アカデミー図書館」などの世界屈指の建築物をフルCGで再現した動画「The Third & The Seventh」でネット上で話題騒然となった映像作家Alex Roman(本名:Jorge Seva、ホルヘ・セバ)による新作フルCG映像「Above Everything Else」のご紹介です。 3DモデリングにはAutodesc社の3D Studio Max(3DS Max)、レンダリングにはV-rayを使用しているとのこと。 The Third & The Seventh – Alex Roman Above Everything Else – Alex Roman 同じ映像にナレーションがついた

      これでフルCG?!ネットで話題騒然の映像作家Alex Roman氏の新作CG「Above Everything Else」
    • 自らを強いエンジニアにするための3つの習慣 / I need to be myself, I can't be no one else

      Developers CAREER Boost 2023 登壇資料

        自らを強いエンジニアにするための3つの習慣 / I need to be myself, I can't be no one else
      • else 句に「// 何もしない」コメントを書く意味について

        確かに、パッと見で 「なんだこれ?」 になりますね。 意味のないコメントとして else 句ごと削除してしまって良さそうにみえます。 しかし、実はこの「何もしない」コードは、 プログラミング(理論)的に面白い側面を持っている ので、簡単に記事にまとめてみたいと思います(記事中では Swift に似た擬似コードを使用します)。 キーワード if 式、網羅的パターンマッチ、参照透過、副作用、モナドと単位元 else 句が省略できる条件 例えば、次のコード例を考えてみます: let array: Array<Int> = ... var positiveArray: Array<Int> = [] // var = 可変変数 for x in array { if x > 0 { positiveArray.append(x) } else { // 何もしない } } ここでは array か

          else 句に「// 何もしない」コメントを書く意味について
        • CSSだけでif~else文と同じことができる! しかもすべてのブラウザでサポートされています

          CSSでif~else文が使えたら、と思ったことはありませんか? もちろんifとかelseはCSSにはありませんが、CSSだけでif~else文と同じようにスタイルを設定できます。

            CSSだけでif~else文と同じことができる! しかもすべてのブラウザでサポートされています
          • if-then-else文の順番 : 小野和俊のブログ

            ペアプロで if-then-else 文が出てきた際、「これ、else if の順序、こっちの方が良くない?」というような会話をすることが時折ある。 どれも当たり前のものかもしれないが、「ああ、確かに」という反応があることもあるので、今日はそんな会話の際に出てくる視点についてまとめてみた。 if (よくあるケース/正常なケース) { // 処理 } else if (比較的特殊なケース) { // 処理 } else if (さらに特殊なケース) { // 処理 } else { // 処理 } 条件式の結果がtrueになる確率が高く、「ノーマル」に近いものを上に書く。可読性が上がる他、特に2.で触れる条件式の判定に時間のかかる場合や、ループの最奥にある処理などのif-then-else文の実行される回数が極めて多い場合には体感レベルで実行速度にも大きな差が出ることもある。 Code Co

              if-then-else文の順番 : 小野和俊のブログ
            • Perspective | Japan should cut its losses and tell the IOC to take its Olympic pillage somewhere else

              Japan should cut its losses and tell the IOC to take its Olympic pillage somewhere else A boat sails past illuminated Olympic rings floating in the waters off Odaiba island in Tokyo last month. (Toru Hanai/Bloomberg) Somewhere along the line Baron Von Ripper-off and the other gold-plated pretenders at the International Olympic Committee decided to treat Japan as their footstool. But Japan didn’t s

                Perspective | Japan should cut its losses and tell the IOC to take its Olympic pillage somewhere else
              • 文字列でswitchするときはif-else switchイデオムを使うほうが安全 - きしだのHatena

                Java SE 7から、switch構文で文字列が使えるようになりました。 public void hoge(String s){ switch(s){ case "a": System.out.println("AA"); break; case "b": System.out.println("BB"); break; default: System.out.println("Other"); } } ところが、残念なことに、sがnullの場合はdefaultには飛ばず、ぬるぽが発生します。 そこで、null判定は事前にif文で行うことになるので、次のようなif-else switchイデオムを使うと便利です。 if(s == null){ System.out.println("Null!"); }else switch(s){ case "a": System.out.printl

                  文字列でswitchするときはif-else switchイデオムを使うほうが安全 - きしだのHatena
                • Rustのlet-else文気持ち良すぎだろ - Qiita

                  // let 論駁可能パターン = 値 else { never型を返す処理 }; let Ok(val) = reqwest::get(url).await else { return }; このコードの意味としてはreqwest::get(url).awaitがOk(結果)を返してきたらvalに束縛し、ダメだったら関数を抜ける、になります。 if-let式 let-else文の詳細を説明する前に、まずはRustのif-let式について説明いたします。 Rustは式指向言語のためifも標準で式になっています。よく他言語では三項演算子使用で宗教戦争が起きていますが「if"式"があれば争いなんて起きないのに...(トオイメ」といつも思っています。

                    Rustのlet-else文気持ち良すぎだろ - Qiita
                  • WordPressのテーマデザインでよく使うPHP構文、if-else文について

                    前回に、 WordPressのテーマデザインでよく使うPHP構文、if文について という記事を書きました。 PHPプログラムにおいて、if文は、いわゆるPHPの制御構造、条件分岐と言いまして、その条件式がTRUE(当てはまる)の場合にのみ、処理を実行するPHP関数です。なので、その条件式がFALSE(当てはまらない)の場合には、if文の中は無視されて何の処理も行われません。 そこで、その条件式がFALSE(当てはまらない)の場合にも、何かしらの処理がしたい場合があると思います。 そのような時に用いるのが、PHP構文のif-else文です。 なお、if-else文は、if文と同様に、他のif文やif-else文の中に何重にも入れ子ができるので、柔軟に対応ができます。つまり、if文やif-else文の中にさらにif文やif-else文を書くこともできます。 具体的な使い方の説明を致します。 i

                    • 【JavaScript】本日未明、[ if - else ]さんが死体で発見され... - Qiita

                      「な、なんじゃこりゃあああぁあっtっt!!!!」 ・・・ ・・・ ・・・ 読みやすいコードを書きたい 複雑な条件分岐は、書いている本人も、後からそれを読む他人も非常に疲れるものです。 令和プログラマー*1である私自身、なるべく気を付けようと思っていますが、ついつい条件反射でif-elseを書いてしまいそうになります。 (*1: 令和になってからプログラミングを知った人。初心者のこと。) if - elseを使わない条件分岐のレパートリーを増やす if - else文が絶対ダメということでは決してありません。 たくさんのレパートリー、つまり引き出しを持っておけば、適切な読みやすいコードをかける可能性が上がるかなと思うのです。 文と式 JavaScriptには「文」と「式」があります。 この2つの違いを意識することが重要ではないかと思います。 「文」は、マシンへの命令です。 「式」は数学的な値

                        【JavaScript】本日未明、[ if - else ]さんが死体で発見され... - Qiita
                      • else を禁止してはいけない - Qiita

                        複雑なプログラムを書いてしまうのを避けるために、if 文の else を避ける制約を設けてプログラミングしてみましょう、というアプローチがあります。これはあくまで、ThoughtWorks アンソロジーに書かれていた、ある種のプログラミング思考のトレーニング方法のひとつにすぎないものです。 しかし、権威だからか、あるいは、あまりコードを書かない人がわかりやすいと感じるからか、プロダクションコードの規約に使おうとする誤った考えがあります。そんなことをすると、コード品質は下がります。 else 禁止制約というのは、「これまで if-else で記述していた多くのコードは、実は、生成するオブジェクトの多態性によって、分岐の前倒しが可能になるものだったのか」という認識を得られれば、すぐに忘れるべきルールです。 ある実在の OSS コードを例に説明します。 https://github.com/xr

                          else を禁止してはいけない - Qiita
                        • else ifが複数回出てきたら考えること

                          こんにちは!アルダグラムでエンジニアをしている@sohichiroです。 本記事は株式会社アルダグラム Advent calendar 2023 13日目の記事です。 前日は、@kageyama さんによる、SQLインジェクションの話でした。 セキュリティはいつも万全にしておく必要があるので、大変ためになる記事でした。 さて、隠れ関西民として関東地方に生息している私にとっては、翔んで埼玉〜琵琶湖より愛をこめて〜は、いろいろ込み上げてくるものがありました。確かに兵庫県は神戸と芦屋だけが飛び抜けて都会指数が高いですよ😂(私、兵庫県の田舎の方出身)。関西弁を勉強したいなら、格好の教材だと思いました。 else ifが複数回出てくることのつらみ さて、else ifです。 else if。プログラマーであれば、一度は書いたことあると思います。 言語によっては、elsif(Ruby)、elif(P

                            else ifが複数回出てきたら考えること
                          • else句を使わないのが良いコードなの?いや、そんなはずは・・・ · DQNEO日記

                            if (条件) { return 20; } else { return 30; } ↓ if (条件) return 20; return 30; こうすれば確かにネストは浅くなりますが、いつも毎回こう書く方がよいのでしょうか? elseを書いた方がよいケースもあるのではないか 条件の部分が特殊・例外的な場合は、確かにこの方がわかりやすいと思います。 例えば、スーパーマリオで、マリオの状態が「無敵・チビ・大きい」の3種類しかないとします。 敵に触れたときの挙動を関数として書きます。 (オブジェクト指向っぽくないかもしれませんが、本記事の主眼はif-elseの書き方です。) function () { if (マリオ.is無敵モード) { 敵.死ぬ(); return ; } //以下、通常モードの場合のコードを書く } 無敵モードは特殊な状態だから、これはよいと思います。 しかし、マリオ

                            • GitHub - David-Else/modern-typescript-with-examples-cheat-sheet: Fully printable summary of modern TypeScript language features with extensive examples to help you learn

                              You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                GitHub - David-Else/modern-typescript-with-examples-cheat-sheet: Fully printable summary of modern TypeScript language features with extensive examples to help you learn
                              • CSS で条件分岐を行う `@when/@else` ルール

                                CSS で条件分岐を行う `@when/@else` ルール 2024.06.22 `@when/@else` アットルールは条件付きスタイルをまとめて記述するためのルールです。`@media` や `@support` の条件を `@when` にわたすことで、`true` の場合には `@when` ブロック内のスタイルが、`false` の場合には `@else` ブロック内のスタイルが適用されます。このルールを使うことでより簡潔なコードを書くことができます。

                                  CSS で条件分岐を行う `@when/@else` ルール
                                • Google Chrome Addons, Tips, and Tutorials - We tell you stuff about Chrome that nobody else does

                                  Google Chrome is one of the most popular web browsers in the world. It is known for its speed and ease of use, but it can also be a memory…

                                  • PHPのelseifとelse ifの違い - cloned.log

                                    2018/12/28追記 この記事は2007年に書いたものです。現在は PSR-2: Coding Style Guide - PHP-FIG に従うことが多く elseif を利用するのが一般的だと思います。 Javaの次にPHPを学んだせいというか、最近PHPのソースを見たときにelseifがあって違和感に感じることがあった。 PHPでは、(単語二つで)'else if'と書くこともできます。 動作は(一単語の) 'elseif'と同じです。文法的な意味はやや異なっています。 (あなたが C 言語に詳しいとすると、C 言語のそれと同じ動作です。) しかし、最終的な両者の動作は全く同じです。 PHP: elseif - Manual となっているようにどちらでもちゃんと動く。挙動は同じと書いてあるので疑うことはないにしても「文法的な意味はやや異なっています」と言われると気になる。 そもそ

                                      PHPのelseifとelse ifの違い - cloned.log
                                    • PHPでのif〜else部分を3項演算子で短くするするサンプル色々:phpspot開発日誌

                                      PHP Shorthand If / Else Examples In looking at my Google Analytics statistics, I see a lot of visitors searching for PHP shorthand if/else (ternary) information. PHPでのif〜else部分を3項演算子で短くするするサンプル色々。 まず、変数への代入の分岐を1行で行う。 $is_admin = ($user['permissions'] == 'admin' ? true : false); // $user['permissions'] が admin だったら true 、そうでなければ false 次に、変数の状態によって表示内容を分岐。1行で。 echo 'Welcome '.($user['is_logged_in']

                                      • SOMETHING ELSE - 美の特攻隊

                                          SOMETHING ELSE - 美の特攻隊
                                        • if-then-else/if-then-else.md at master · e-n-f/if-then-else

                                          Video Hi, I'm Eric. I'm here to talk about what seems like an absurd idea: that if-then-else had to be invented. If-then-else is how we talk about conditions in programming languages: if something is true, then do a thing, else do a different thing. That's just English, right? Except that it isn't. I can't use "else" as a conjunction in normal speech, only in computer programs. Where did this else

                                            if-then-else/if-then-else.md at master · e-n-f/if-then-else
                                          • If.Else Log

                                            Hi, I'm Phu I’ve spent over a decade leading teams at high growth, consumer facing product-led companies. I’m currently heading up the Product org at Thriva where I’m leading product teams on a mission to put better health in everyone’s hands. Things I care about I enjoy working on challenging problems and impactful products. I care passionately about culture, building great teams and crafting mea

                                            • GitHub - jayphelps/git-blame-someone-else: Blame someone else for your bad code.

                                              You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                GitHub - jayphelps/git-blame-someone-else: Blame someone else for your bad code.
                                              • Why do so many brands change their logos and look like everyone else?

                                                Why do so many brands change their logos and look like everyone else? A few months ago, I received an email from Revolut (a British fintech company) in which they proudly unveiled their new logo. Previously, Revolut had a distinct and instantly recognizable logo. They replaced it with… something I was sure I had seen before. The previous Revolut logo had a unique font, a recognizable color gradien

                                                  Why do so many brands change their logos and look like everyone else?
                                                • How GitHub Conquered Google, Microsoft, and Everyone Else

                                                  Chris DiBona was worried everything would end up in one place. This was a decade ago, before the idea of open source software flipped the tech world upside-down. The open source Linux operating system was already running an enormous number of machines on Wall Street and beyond, proving you can generate big value---and big money---by freely sharing software code with the world at large. But the ope

                                                    How GitHub Conquered Google, Microsoft, and Everyone Else
                                                  • Swift 2.0とオープンソース化が発表されたSwiftの制御構文――比較演算子、条件分岐(if、else、switch)、繰り返し(for、while)&Playgroundのグラフで確認

                                                    Swift 2.0とオープンソース化が発表されたSwiftの制御構文――比較演算子、条件分岐(if、else、switch)、繰り返し(for、while)&Playgroundのグラフで確認:初心者のためのSwiftで始めるプログラミング入門(4)(1/4 ページ) 本連載では、これからプログラミングやiPhoneアプリ開発を始めてみたい方を対象に、開発に必要な知識を基礎から解説していきます。今回は、Swiftの制御構文として、比較演算子や条件分岐(if、else、switch)、繰り返し(for、while)について解説し、Playgroundのグラフで確認してみます。

                                                      Swift 2.0とオープンソース化が発表されたSwiftの制御構文――比較演算子、条件分岐(if、else、switch)、繰り返し(for、while)&Playgroundのグラフで確認
                                                    • ガード節を用いた if-then-else 文の置き換え : 小野和俊のブログ

                                                      昨日 if-then-else 文の順序に関するエントリを書いたところ、いくつか「レアケースは先に切って return する」というブクマコメントがあり、確かにこの点も考慮すべき重要な点なので前のエントリの補完的な意味も含めてエントリを書く。 if (よくあるケース/正常なケース) { // 処理 } else if (比較的特殊なケース) { // 処理 } else if (さらに特殊なケース) { // 処理 } else { // 処理 } しかしもしこれがメソッド/関数で、次のように後続の処理がないものだった場合を考えてみる(後続の処理がある場合には先のエントリに書いた検討を行う)。 public void method() { if (よくあるケース/正常なケース) { // 通常の処理 } else if (特殊なケース1) { // 特殊な処理1 } else if (特殊

                                                        ガード節を用いた if-then-else 文の置き換え : 小野和俊のブログ
                                                      • モチベーションを強力に上げるサイト「Succeed or Else!」 | ライフハッカー・ジャパン

                                                        とはいえ、目標に向かって日々成長することは大事なこと。 モチベーションが下がりがちな自分にカツを入れるウェブサイトが「Succeed... or else!」です。 「成功の秘訣は罰だ!」と銘打つこのサイトは、ヒトの心情を巧みに利用。なんと、目標達成できなかったら、罰金としてお金を取られちゃうサイトなんです。 具体的には、以下のような仕組み。 「Succeed... or else!」で、自分が達成したいこととその期限を投稿します。 すると、未達成の場合の「罰金」がサイトから通知されます。 条件に合意し、罰金として示された金額を送金すると、彼らは目標達成までこれを管理。設定期限内に目標達成できないと、そのお金はそのままサイトのものになってしまいます。 このサイトを利用すべきかどうかはさておき、米Lifehacker過去記事「Hack Attack: Motivate yourself(自分

                                                          モチベーションを強力に上げるサイト「Succeed or Else!」 | ライフハッカー・ジャパン
                                                        •  「Why everyone (else) is a hypocrite」 - shorebird 進化心理学中心の書評など

                                                          Why Everyone (Else) Is a Hypocrite: Evolution and the Modular Mind 作者: Robert Kurzban出版社/メーカー: Princeton Univ Pr発売日: 2011/01/03メディア: ハードカバー購入: 4人 クリック: 174回この商品を含むブログ (25件) を見る 本書は進化心理学者ロバート・クツバン*1によるヒトの心のモジュール性,そしてそれによる道徳と偽善の説明の本である.ヒトの心がモジュール的であるというのは,進化心理学勃興時から強調されていたことで,コスミデスとトゥービイがこれをスイスアーミーナイフに例えていることは有名だ.多くの進化心理学のリサーチはその一つ一つのモジュールがどうなっているのかをみていくものだが,本書では「ヒトの心が多くのモジュールの集合体である」というモジュール性から何が説明

                                                             「Why everyone (else) is a hypocrite」 - shorebird 進化心理学中心の書評など
                                                          • Pythonの例外処理(try, except, else, finally) | note.nkmk.me

                                                            Pythonで例外(実行中に検出されたエラー)をキャッチして処理するにはtry, exceptを使う。例外が発生しても途中で終了させずに処理を継続できる。さらにelse, finallyを使うと終了時の処理を設定可能。 8. エラーと例外 - 例外を処理する — Python 3.11.3 ドキュメント

                                                              Pythonの例外処理(try, except, else, finally) | note.nkmk.me
                                                            • GitHub - mizzy/serverspec: RSpec tests for your servers configured by CFEngine, Puppet, Chef, Ansible, Itamae or anything else even by hand

                                                              You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                                GitHub - mizzy/serverspec: RSpec tests for your servers configured by CFEngine, Puppet, Chef, Ansible, Itamae or anything else even by hand
                                                              • Silestone -- &#039;Above Everything Else&#039;

                                                                Verify to continue To continue, please confirm that you're a human (and not a spambot).

                                                                  Silestone -- &#039;Above Everything Else&#039;
                                                                • GEMM --Online Shopping For Music, Books, Dvds, Electronics, and Everything Else You Can Buy and Sell

                                                                  GEMM.COM is for sale.GEMM.COM is for sale.GEMM.COM is for sale.GEMM.COM is for sale.

                                                                    GEMM --Online Shopping For Music, Books, Dvds, Electronics, and Everything Else You Can Buy and Sell
                                                                  • ECMAScript 6 from an Attacker's Perspective - Breaking Frameworks, Sandboxes, and everything else

                                                                    ECMAScript 6 from an Attacker's Perspective - Breaking Frameworks, Sandboxes, and everything else ECMAScript 6, in short ES6, has been boiling in a copper pot for many years by now and step-by-step, browser vendors come forward to taste the first sips of this mystery soup. So, ES6 is no longer a theoretic language but already crawled across the doorstep and now lurks under your bed, ready for the

                                                                      ECMAScript 6 from an Attacker's Perspective - Breaking Frameworks, Sandboxes, and everything else
                                                                    • Will Hare replace C? Or Rust? Or Zig? Or anything else?

                                                                      Will Hare replace C? Or Rust? Or Zig? Or anything else? May 2, 2022 by Drew DeVault Nope. If the short answer leaves you wanting, keep reading. I must admit that this sentence from the Hare announcement may have caused some confusion: Hare is most similar to C, and almost all programs written in C can also be written in Hare. This is especially true in the context of the rising and competing compl

                                                                        Will Hare replace C? Or Rust? Or Zig? Or anything else?
                                                                      • ACCESSとEmblaze Mobile、携帯向けプラットフォーム「ELSE INTUITION」発表

                                                                        ACCESSとEmblaze Mobile、携帯向けプラットフォーム「ELSE INTUITION」発表:片手操作にこだわったUIを提案 組み込み機器向けミドルウェアの開発を手がけるACCESSは10月22日、イスラエルのEmblaze Mobileと携帯電話向けプラットフォーム「ELSE INTUITION」を開発中であることを明らかにした。同日開催された年次イベント「ACCESS DAY 2009」で、同プラットフォームを搭載した携帯端末「ELSE」も披露した。 ELSE INTUITIONは、ACCESSが開発しているLinuxベースの携帯電話向けプラットフォーム「ACCESS Linux Platform v3.0」に、Emblaze Mobileのユーザーインタフェースエンジンとサービスを付加したもの。2D/3Dのグラフィック環境に対応しており、高精細な静止画や動画、トランジショ

                                                                          ACCESSとEmblaze Mobile、携帯向けプラットフォーム「ELSE INTUITION」発表
                                                                        • OS X Daily Ten OS X Command Line Utilities you might not know about - Mac Apps, Tips, Tricks, and everything else related to Mac OS X

                                                                          The Mac OS X command line interface is home to thousands of programs that the average user doesn’t know exists. Leveraging years of hard work by the GNU foundation and others in the open source community, Apple designed a wonderful OS that doesn’t “need” any use of the command line. While using the command line in Mac OS X is not necessary for the every day operation of a Macintosh, if harnessed c

                                                                            OS X Daily Ten OS X Command Line Utilities you might not know about - Mac Apps, Tips, Tricks, and everything else related to Mac OS X
                                                                          • Why You Should Never Search For Free WordPress Themes in Google or Anywhere Else - WordPress, Multisite and BuddyPress plugins, themes, news and help – WPMU.org

                                                                            There are so many free WordPress themes out there it can put your head in a tail spin. So in an effort to help you sift through the good and the – let's face it – crap, we've put together this ultimate guide to free WordPress themes. There are so many free WordPress themes out there it can put your head in a tailspin. So in an effort to help you sift through the good and the – let’s face it – crap

                                                                              Why You Should Never Search For Free WordPress Themes in Google or Anywhere Else - WordPress, Multisite and BuddyPress plugins, themes, news and help – WPMU.org
                                                                            • TweetFeel - Real-time Twitter search with feelings towards your favorite brand, celebrity or anything else. (Tweet Feel)

                                                                              Enter a brand, celebrity or anything else and our insanely complex analysis will tell you people's attitudes about it. 100% Guarantee Our analysis is not perfect. Getting sentiment analysis to be 100% accurate is near impossible but we're doing our best to achieve perfection. If it makes you feel better we guarantee our honesty to be 100%. Terms of Service

                                                                              • {if},{elseif},{else} | Smarty

                                                                                {if $name eq 'Fred'} Welcome Sir. {elseif $name eq 'Wilma'} Welcome Ma'am. {else} Welcome, whatever you are. {/if} {* 論理演算子 "or" の例 *} {if $name eq 'Fred' or $name eq 'Wilma'} ... {/if} {* 上と同じ *} {if $name == 'Fred' || $name == 'Wilma'} ... {/if} {* 括弧は使用可能 *} {if ( $amount < 0 or $amount > 1000 ) and $volume >= #minVolAmt#} ... {/if} {* PHP 関数を埋め込むことも可能 *} {if count($var) gt 0} ... {/if} {* 配列のチ

                                                                                • PAM_thing_Else

                                                                                  九州インフラ交流勉強会(Kixs) Vol.004 春の認証祭りにてPAMについてトークしました。

                                                                                    PAM_thing_Else