- 最低限求めること
- 趣味への否定がない女性であれば…
- 他人の所有物を勝手に売らない人
- れちせんぱい
- 顔は時折、晒されています: https://twitter.com/ret156
- 男性(未婚)
Use gh v0.11.0 or later for the "shell" aliases.
Run the following gh alias set
commands for each operation. You can confirm the created aliases with gh alias list
.
gh alias set listMilestones "api graphql -F owner=':owner' -F name=':repo' -f query='
query ListMilestones(\$name: String\!, \$owner: String\!) {
repository(owner: \$owner, name: \$name) {
milestones(first: 100) {
module Imports | |
refine(Object) do | |
def from(mod, &block) | |
imports = [] | |
if block | |
RubyVM::AbstractSyntaxTree.of(block).children[2].children.each do |node| | |
case node.type | |
when :VCALL | |
imports << node.children[0] | |
when :DASGN_CURR |
require 'bundler/inline' | |
gemfile do | |
source 'https://rubygems.org' | |
gem 'activerecord', '6.0.0' | |
gem 'sqlite3' | |
end | |
require 'active_record' |
みなさん、まだ Minecraft 遊んでますか? 僕は8時間の仕事をするようになってから全く遊んでないです。
どうも、こんにちは。去年までITカレッジ沖縄で非常勤講師をしてました、「ぽんつよ(ぬこ)」です。
アドベントカレンダーもですが、僕はブログとかで何かを発信するのがニガテキライなので、何を書いていいか迷った結果、modding についてちょろっと書いていきます。
僕が知らない可能性もありますが、modding といえば基本的に Java Edition を使用します。名前の通り Java で開発されています。なので、世の中に出回っている mod も Java で開発されているものが多いです。
ただ、全てではないです。Scala で開発されていたり、Scala と Java の混合もあったりします。実は JVM 上で動くクラスファイルを生成できる言語であればどれでもいい(はず)なので、Kotlin でもイケるだろうということで調べてみました。
references keyword
.<style> | |
body { margin:0; } | |
canvas { box-shadow:0 0 4px inset; width:100%; } | |
div { position:fixed; left: 50%; animation: rotate 1s linear infinite; } | |
@keyframes rotate { 100% { transform:rotate(360deg); } } | |
</style> | |
<div>a</div> | |
<canvas> | |
<script> | |
const canvas = document.querySelector('canvas') |
require 'tempfile' | |
def codegolf_check file, samples: nil | |
unless samples | |
samples = DATA.read.split(/^# ?input\n/).drop(1).map { |s| s.split(/# ?output\n/) } | |
end | |
lines = File.read(file).lines | |
codes = [] | |
lines.each.with_index(1).each do |line, num| | |
next unless /^# ?code ?(?<name>.*)$/ =~ line | |
code = '' |