Victor Choi

  • Home
  • Business
    • Internet
    • Market
    • Stock
  • Parent Category
    • Child Category 1
      • Sub Child Category 1
      • Sub Child Category 2
      • Sub Child Category 3
    • Child Category 2
    • Child Category 3
    • Child Category 4
  • Featured
  • Health
    • Childcare
    • Doctors
  • Home
  • Business
    • Internet
    • Market
    • Stock
  • Downloads
    • Dvd
    • Games
    • Software
      • Office
  • Parent Category
    • Child Category 1
      • Sub Child Category 1
      • Sub Child Category 2
      • Sub Child Category 3
    • Child Category 2
    • Child Category 3
    • Child Category 4
  • Featured
  • Health
    • Childcare
    • Doctors
  • Uncategorized

12/14/2019

Cannot distribute via Testflight using fastlane in Jenkins

 1:11 AM     fastlane -20101, ios distribution, ios testflight distribution jenkins, testflight fastlane, testflight jenkins     No comments   

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 log Your Apple ID or password was entered incorrectly. (-20101)

In my case I just added another line to reassign the env["FASTLANE_PASSWORD"] before it uploads the file to Testflight. By the way I feel that it takes too much time to process a build in Apple Testflight. So I have thought about moving to another service for my beta software release.

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

12/06/2019

Magic Mouse doesn't scroll properly. Stuck in certain places

 12:57 AM     magic mouse, magic mouse dual display issue, magic mouse reset, magic mouse scroll error, magic mouse stuck, mouse scroll, stuck to scroll in a certain places     No comments   

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 setting displays on the preference option. But it was no luck.

Then I started to suspect the mouse. So I changed my Magic Mouse to another Magic Mouse and it works! So the issue was my Magic Mouse has a software issue I guess. Then you need to reset your Magic Mouse connection with your Mac and try it again.

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

11/20/2019

How to launch Xcode in macos catalina terminal zsh

 3:31 PM     launch xcode terminal, macos catalina terminal zsh, xcode macos catalina terminal     No comments   

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.

  1. Open .zshrc file vim ~/.zshrc

  2. Add an alias at the bottom. alias xcode="open -a Xcode"

  3. Source .zshrc or relaunch the terminal source ~/.zshrc

  4. Run the command using the alias. xcode example.xcworkspace

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Bye Slack, Meet Teams

 2:46 AM     Daily Active Users, Microsoft Teams, Microsoft Teams DAU, Office365, Slack, Teams     No comments   

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 service. I think that they bundled it as a part of Microsoft Office 365 and it could be a booster to acquire enterprise users.

It is interesting to see what Microsoft has been doing in the recent years. Then I feel that I become a fan of Microsoft. So next time if I have a chance to build a new team I would like to try Microsoft solution for our teams.

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

11/18/2019

Git ignore vs Git exclude

 5:22 PM     exclude, gitignore, ignore, react native, source control     No comments   

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 files or folders in .gitignore file, you can exclude files or folders messed up by an unexpected situation. Because it syncs with your remote repository which means all your team members share this configuration for a project.

exclude

git ls-files --others --exclude-from=.git/info/exclude

When I work on a React Native project then I need to be careful not to affect Android sources. In this case exclude file could be a solution for you. The scope of exclude file is for your machine which means that you exclude folders or files in your machine not to sync with the remote repositories.

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

11/17/2019

React Native - launch an app on iOS device and quit immediately without errors

 3:42 PM     ios device closes automatically, ios device crash, ios device crash without errors, ios device launch error, reactnative     1 comment   

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 errors in the Xcode console
So I take a time to figure out. Then I just thought about looking into Device crash log which you can check in the Xcode Device and Simulators menu. Then I found that there was a library linker error and it caused the crash.
After I fix the library link in Xcode and it works fine. I hope it helps someone who faced this kind of error.
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

11/12/2019

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)

 3:39 AM     architecture arm64, ios build error, ios linker error, linker command failed, x86_64 error     1 comment   

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 to fix this issue.

I can't say that my solution is the answer for you. But it could an answer for someone. In my case I did below.

First

  1. Select your target project and go Frameworks, Libraries, and Embedded Content section.
  2. Make Embed column Embed & Sign
  3. Clean and build your project again

Second

  1. Remove the derived data
  2. Clean and build your project again

Third

  1. Go Project > Build Settings
  2. Update Enable Bitcode to No
  3. Go Targets > Build Settings
  4. Update Enable BitCode to No
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg
Newer Posts Older Posts Home

Search This Blog

Popular Posts

  • Git ignore vs Git exclude
  • Keynote Tutorial Character Style , How to use a character style in Keynote
  • If you can't get OAuth Token by SFSafariViewController...?
  • Bitbucket authentication error, Invalid username and password
  • OmniFocus Review Perspective action using Launch Center Pro

Blog Archive

  • ▼  2020 (2)
    • ▼  January (2)
      • Error- helm docker-registry does not have any acti...
      • How to clean up none docker images
  • ►  2019 (21)
    • ►  December (2)
    • ►  November (6)
    • ►  October (5)
    • ►  September (2)
    • ►  August (3)
    • ►  July (2)
    • ►  June (1)
  • ►  2017 (11)
    • ►  December (2)
    • ►  November (2)
    • ►  July (2)
    • ►  May (1)
    • ►  April (1)
    • ►  March (3)
  • ►  2016 (48)
    • ►  December (3)
    • ►  November (2)
    • ►  September (1)
    • ►  August (10)
    • ►  July (5)
    • ►  June (7)
    • ►  May (2)
    • ►  April (18)
Powered by Blogger.

Navigation Menu

  • Home
  • About
  • Documentation
  • Contact

Contact Us

Name

Email *

Message *

Copyright © Victor Choi | Powered by Blogger
Design by Hardeep Asrani | Blogger Theme by NewBloggerThemes.com | Distributed By Gooyaabi Templates