Recently I read the article about Apple Glass and in the article it predicted that Apple Glass will be worked with iPhone or iPad like Apple Watch It sounds making a sense to me. Then it also indicated that Apple’s…
After I upgrade helm docker-registry to 2.7.1 and I met an error below. ConnectionError: HTTPSConnectionPool(host='registry.xxxxxxx.com', port=443): Max retries exceeded with url: /v2/ (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x109aa90d0>: Failed to establish a new connection: [Errno 8] nodename nor servname provided,…
You might create several <none> docker images during building a docker container. So cleaning up would be good for your local development environment because they might take your local storage. There are two ways that you can clean up. docker…
I have been struggled to distribute our beta software via fastlane. It used to say that I put an incorrect username or password. But I already assigned the environment variable like below. env["FASTLANE_USER"] = "xxxxxxx@xxxxx.com" env["FASTLANE_PASSWORD"] = "xxxxxxxxx" The error…
Today I have got a strange issue on my Apple Magic Mouse. The symptom was like I tried to scroll a certain place in the screen then the scroll was stuck on the edge of the area. So I tried…
Apple changed the default shell to ZSH. So I would like to run Xcode in the Terminal. So here is the brief instruction for you. Open .zshrc file vim ~/.zshrc Add an alias at the bottom. alias xcode="open -a Xcode"…
I have been a long time user for Slack. The thing that I don’t like Slack is getting heavier and getting slower. Today I read a new article saying Microsoft Teams got over 2M daily active users in their Teams…
If you are a developer you might have used git to manage your source repository. Then you might use .gitignore file to exclude files or folders that you don’t want to sync with your remote repository. .gitignore If you specifies…
Recently I have got an error(?) when I launched a React native application on iOS device for testing. Then it caused a strange symptom like below. No loading from React native testing server The app launched and quit automatically without…
When you try to import a library or a framework in your project you might face an issue saying clang: error: linker command failed with exit code 1 (use -v to see invocation) There could be a bunch of options…