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
| {{Infobox animanga/Header | |
| | タイトル = 機動戦士ガンダム 水星の魔女 | |
| | ジャンル = [[ロボットアニメ|ロボット]] | |
| }} | |
| {{Infobox animanga/TVAnime | |
| | 原作 = [[矢立肇]]、[[富野由悠季]] | |
| | 監督 = [[小林寛 (アニメーション監督)|小林寛]] | |
| | シリーズ構成 = [[大河内一楼]] | |
| | キャラクターデザイン = モグモ(原案)<br />田頭真理恵、戸井田珠里<br />高谷浩利 | |
| | メカニックデザイン = [[JNTHED]]、[[海老川兼武]]<br />稲田航、[[形部一平]]<br />[[寺岡賢司]]、[[柳瀬敬之]] |
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
| 前作『[[きらりブックス迷走中!|きらりブックス迷走中!]]』(まんがタイムきららMAX)の連載を終えたはまじが、漫画以外の自身の趣味から[[バンド (音楽)|バンド]]をテーマに選んで描いた4コマ漫画{{R|comicspace9592}}。担当編集は瀬古口拓也、原作音楽監修はInstantが務める<ref>{{Cite tweet|title=ぼっち・ざ・ろっく!のアニメと原作の最大の架け橋は原作の担当編集の瀬古口拓也さんです。はまじさんと信頼し合ってる様子やメールの返事の速度と的確さに、仕事ができる人がこのプロジェクトの中心にいて安心〜!てなりました。アフレコは監督と瀬古口さんが特に楽しそうに笑ってました | |
| |access-date=2022-12-24|number=1606608302023925761|user=kafunsyokougun|language=ja|author=梅原翔太|date=2022-12-24}}</ref>。 | |
| [[次にくるマンガ大賞]]2019・コミックス部門で8位にランクインした<ref>{{Cite web|title=次にくるマンガ大賞2019 |url=https://tsugimanga.jp/winner/2019/comics.html |accessdate=2021-03-26}}</ref>。 | |
| 系列誌のヒット作で、同じく女子高生による[[ガールズバンド]]を取り扱った『[[けいおん!|けいおん!]]』の舞台が高校の部活動([[軽音楽]]部)であるのに対し、[[ライブハウス]]を中心に活動するバンドを題材としており、はまじ自身も差別化をはかるうえで意識した部分の1つであるとインタビューで述べている<ref name="comicspace9592">{{Cite web|title=【インタビュー】『ぼっち・ざ・ろっく!』はまじあき「きららの女子高生だって、学校以外に居場所があっていい」|url=https://media.comicspace.jp/archives/9592|website=コミスペ!|publisher=株式会社comicspace|date=2019-02-27|accessdate=2022-12-07|language=ja}}</ref>。 | |
| キャラクターのデザインはシンプルな線で描きわけがなされている。これはデザインが複雑 |
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
| /"([^"]*)";v="([^"]*)"/ |
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
| #!/bin/bash | |
| export USER=kubeuser | |
| password=$(base64 /dev/urandom | tr -d -c '[:alnum:]' | head -c 16) | |
| useradd -m -p $password -s /bin/bash $USER | |
| # Install microk8s | |
| echo Install microk8s | |
| sudo snap install microk8s --classic --channel=latest/stable | |
| sudo usermod -a -G microk8s $USER |
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
| #!/bin/sh | |
| # Based on gist.github.com/gboudreau/install-ffmpeg-amazon-linux.sh | |
| # and https://trac.ffmpeg.org/wiki/CompilationGuide/Centos | |
| if [ "`/usr/bin/whoami`" != "root" ]; then | |
| echo "You need to execute this script as root." | |
| exit 1 | |
| fi | |
| cat > /etc/yum.repos.d/centos.repo<<EOF |
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
| #!/bin/bash | |
| input="$1" | |
| output="$2" | |
| size="$3" | |
| color="$4" | |
| resized_image=`mktemp --suffix .png` | |
| echo convert -geometry $size $input $resized_image | |
| convert -trim -geometry $size $input $resized_image |
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 spark.Spark.*; | |
| fun main(args: Array<String>) { | |
| get("/hello/:name", { req, res -> | |
| "Hello, " + req.params(":name") | |
| }) | |
| } |
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
| sqlContext.setConf("spark.sql.parquet.compression.codec", "snappy") | |
| val jsonDataFrame = sqlContext.read.json(jsonFilePath) | |
| val jsonDataFrame.select("id","type","arg1","arg2","arg3","time").write.format("parquet").save(parquetPath) |
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
| wget http://bitbucket.org/jmurty/jets3t/downloads/jets3t-0.9.3.zip | |
| unzip jets3t-0.9.3.zip | |
| cp jets3t-0.9.3/jars/jets3t-0.9.3.jar jars/3rdparty/ |
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
| 0: jdbc:drill:zk=local> SELECT test1.*, test2.point FROM | |
| . . . . . . . . . . . > dfs.`/opt/drill/test1.json` test1 | |
| . . . . . . . . . . . > JOIN dfs.`/opt/drill/test2.json` test2 ON (test1.id = test2.id); | |
| +------------+------------+------------+ | |
| | id | name | point | | |
| +------------+------------+------------+ | |
| | 1 | foo | 100 | | |
| | 2 | bar | 200 | | |
| +------------+------------+------------+ | |
| 2 rows selected (0.253 seconds) |
NewerOlder