ラップトップ上ブラウザから引いて見ると。

With 3D Globe Mode on Google Maps desktop, Greenland's projection is no longer the size of Africa.
Just zoom all the way out at https://t.co/mIZTya01K3 😎🌍 pic.twitter.com/CIkkS7It8d
— Google Maps (@googlemaps) 2018年8月2日
いつのまにw
ラップトップ上ブラウザから引いて見ると。

With 3D Globe Mode on Google Maps desktop, Greenland's projection is no longer the size of Africa.
Just zoom all the way out at https://t.co/mIZTya01K3 😎🌍 pic.twitter.com/CIkkS7It8d
— Google Maps (@googlemaps) 2018年8月2日
いつのまにw
A few days ago, I made a place-dock for Magic keyboard and Trackpad by wooden board.
【DIY】700円でつくる Magic Keyboard/Trackpad2 向け Mac Book Pro 13インチ型縦配置の枠



【DIY】700円でつくる Magic Keyboard/Trackpad2 向け Mac Book Pro 13インチ型縦配置の枠
I found this causes un-intented touch on the trackpad upper both sides.

I put on another wood panel on both sides.




I'll use this next weeks more ...
How do you think your code structure and logic?
My policy:
– Exclude magic number "15".
– Consider dividing with a view codes and creating data codes.
– Use StringBuilder for a string combination.
(1..100).map {
// P
StringBuilder().apply {
if (it % 3 == 0) append("Fizz")
if (it % 5 == 0) append("Buzz")
if (isEmpty()) append(it)
}.toString()
}.forEach {
// V
println(it)
}
1
2
Fizz
4
Buzz
Fizz
7
8
Fizz
Buzz
11
Fizz
13
14
FizzBuzz
16
...
How do you assemble standard code fragments about this common simple challenge?