ASP.NET Core Blazor WebAssembly - イベント【フロントエンド開発入門者向け】
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
| $(".element").animate({width: 'toggle'}, 400); | |
| $(".element").hide('slow'); | |
| $(".element").show('slow'); |
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
| FROM armhf/alpine:latest | |
| MAINTAINER souri-t <[email protected]> | |
| # Install Python | |
| RUN apk --update --no-cache add git python3 python3-dev musl-dev | |
| RUN pip3 install --upgrade pip | |
| RUN pip3 install awscli |
ヒエログリフとは、紀元前3000年頃から紀元400年頃まで古代エジプトで使用された象形文字の一つ。現代でも使用されるアルファベットの原型。19世紀にフランスのシャンポリオンによって解読された。
ヒエログリフと現代文字の変換表を元に、Unicodeで記述した表です。
Unicode 5.2.0 (U+13000 - U+1342F Egyptian Hieroglyphs)に基づいています。
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
| FROM resin/raspberry-pi-alpine:latest | |
| # dependencies required for running "phpize" | |
| # these get automatically installed and removed by "docker-php-ext-*" (unless they're already installed) | |
| ENV PHPIZE_DEPS \ | |
| autoconf \ | |
| dpkg-dev dpkg \ | |
| file \ | |
| g++ \ | |
| gcc \ |
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
| FROM armhf/alpine:latest | |
| MAINTAINER souri-t <[email protected]> | |
| # Install dependencies | |
| RUN apk update | |
| RUN apk add python3 python3-dev musl-dev gcc | |
| RUN pip3 install --upgrade pip | |
| RUN pip3 install rpi.gpio | |
| RUN apk add wiringpi |
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
| FROM resin/rpi-raspbian:jessie | |
| MAINTAINER souri-t <[email protected]> | |
| # Install dependencies | |
| RUN apt-get update -y | |
| RUN apt-get install -y --no-install-recommends python3-pip python3-dev gcc nano | |
| RUN pip3 install rpi.gpio | |
| # Define working directory |
NewerOlder