Year: 2021

  • Speed up the Keystroke on Windows

    Speed up the Keystroke on Windows

    Windows provide slowly the keystrokes. It’s too shock me. That’s one reason why i dislike Windows. In this post, get higher keystroke speed. Introduction It drains me just being with slowly keystroke of Windows. So i dislike the os. However, I sometimes use the Windows for work, so I’ll try to speed-up the keystrokes. Before…

  • How to install NuGet packages in Unity

    How to install NuGet packages in Unity

    Unity is a very strange tool from .NET user’s view. It’s for Unity doesn’t provide the NuGet package manager as a first-party tool. Unity users should work with a third-party NuGet package manager. So, if you need it setup to your unity project. Introduction The procedure for installing NuGet Package Manager to Unity is as follows.…

  • Try to use “Xcode debugger (LLDB) integration” with Kaleidoscope v2.4

    Try to use “Xcode debugger (LLDB) integration” with Kaleidoscope v2.4

    Introduction Minor updated Kalidoscope, let’s try it. A minor update to Kaleidoscope has been released v2.4. https://kaleidoscope.app/release-notes If you buy it from the App Store, it costs ¥ 8,500 as of 2/18, but you can buy it for $ 69.99 on the developer’s site. Setup Click Integration… in the Kaleidoscope menu or Enter Shift + Cmd +,to open…

  • Getting started Protocol Buffers in Swift

    Getting started Protocol Buffers in Swift

    In this post, trial the Protocol Buffer on Swift. Introduction If you want to use Protocol Buffer in Swift, try the swift-protobuf. Usage and references are here: https://github.com/apple/swift-protobuf https://github.com/apple/swift-protobuf/blob/main/Documentation/API.md https://github.com/apple/swift-protobuf/blob/main/Documentation/PLUGIN.md Easy to use swift-protobuf is a Swift Package, so you can add it with Xcode. As an example BookInfo.proto, write the data definition in a file. A…

  • Create a Swift Package and publish it to GitHub

    Create a Swift Package and publish it to GitHub

    Introduction To describe building and publishing your swift package in this post. Try to make Swift Package and publish it on GitHub. My environment is as follows: Creat Swift package project In Xcode 12, User can create a swift package project on the one. Click File > New > Swift Package… of Xcode’s menu. Enter Ctrl + Shift + Command +…

  • Use Swift Package with Xcode

    Use Swift Package with Xcode

    Introduction Since Xcode 11, we can add or remove Swift Package by GUI operation. Apple guide you in Xcode 11 Release Notes as follows: The existing package managers CocoaPods and Carthage are the mainstream, but Xcode has supported Swift Package Manager, it seems that the overtaking stance will be spurred. How to use Adding a Swift Package in Xcode is easy.…