Harry Potter |
Hermione Granger |
Ron Weasley |
Neville Longbottom |
Draco Malfoy |
Vincent Crabbe |
Greggory Goyle |
Ginny Weasley |
Cho Chang |
Cedric Diggory |
|
---|---|---|---|---|---|---|---|---|---|---|
錬金術 (Alchemy) |
- | 9 | - | 4 | - | 1 | 2 | 8 | - | 6 |
数占い学 (Arithmancy) |
- | 10 | - | - | 7 | 2 | 2 | - | 8 | - |
天文学 (Astronomy) |
6 | 9 | 6 | - | - | - | - | - | 9 | 8 |
魔法生物飼育学 (Magical Creatures ) |
8 | 9 | 7 | 5 | 4 | 2 | 3 | 8 | - | 8 |
呪文学 (Charms) |
5 | 10 | 7 | 4 | 7 | - | - | 9 | 7 | 7 |
対闇魔術防衛 (Dark Arts) |
10 | 9 | 8 | 4 | 3 | 1 | 2 | 9 | 7 | 6 |
占い学 (Divination) |
4 | 1 | 7 | 5 | - | - | - | - | - | - |
薬草学(Herbology) | 7 | 10 | 8 | 10 | 8 | 3 | 2 | 9 | 8 | 6 |
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
# compose.yaml | |
version: '2.4' | |
x-app: &app | |
build: | |
context: .dockerdev | |
dockerfile: Dockerfile | |
args: | |
DISTRO_NAME: 'bullseye' | |
RUBY_VERSION: '3.1.2' |
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
# .dockerdev/Dockerfile | |
ARG RUBY_VERSION | |
ARG DISTRO_NAME | |
FROM ruby:$RUBY_VERSION-slim-$DISTRO_NAME | |
# Common dependencies | |
RUN apt-get update -qq \ | |
&& DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends \ | |
build-essential \ |
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
version: '2' | |
services: | |
web: | |
build: . | |
command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'" | |
volumes: | |
- .:/myapp | |
ports: | |
- "3000:3000" | |
depends_on: |
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
version: '7.0' | |
environment: | |
RAILS_ENV: development | |
compose: | |
files: | |
- docker-compose.yml | |
interaction: |
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
> emoji_flag("eu") | |
#=> "🇪🇺" |
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
emoji_flag("AA") | |
#=> "🇦🇦" |
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
"FR".codepoints | |
#=> [70, 82] | |
70 + 127397 | |
#=> 127467 | |
127467.chr(Encoding::UTF_8) | |
#=> "🇫" | |
82 + 127397 |
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
"🇪🇺".chars | |
#=> ["🇪", "🇺"] |
NewerOlder