Google Map がしれっと球体になってる件

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

いつのまにw


A Mac Book Pro style Wooden Dock for Magic Keyboard and Trackpad 2

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 ...


Fizz Buzz on Kotlin

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?

Fizz buzz - Wikipedia