/images/avatar.png

Unable to interact with text boxes during Build & Publish for VRChat SDK3

Problem Description

Fors some unknow reason, the user is unable to click the text boxes or type anything into the publish window after running the Build & Publish. When the user clicks the main window in Unity, the cursor disappears and the user can not select the text boxes or anything else.

This problem happens under my settings, macOS Catalina 10.15.7, Unity 2019.4.31f1, VRChat SDK3.

Solution

The reason of this problem is that when you click the temp scene created by the SDK3, the cursor will be invisible and locked.

Install kernel for jupyter notebook

  1. Avticate your environment,check for package ipykernel
1
python -m ipykernel --version

If it’s not installed:

1
python -m pip install ipykernel
  1. Add kernel to Jupyter notebook
1
python -m ipykernel install --user --name 'kernelname'
  1. Check Jupyter notebook kernel
1
jupyter kernelspec list
  1. Delet jupyter kernel
1
jupyter kernelspec remove kernelname

Update 2022.09.25:

If you encounter the error: ImportError: cannot import name ‘AsyncGenerator’

lc3.Longest Substring Without Repeating Characters

Given a string s, find the length of the longest substring without repeating characters.

Example 1:

1
2
3
Input: s = "abcabcbb"
Output: 3
Explanation: The answer is "abc", with the length of 3.

Example 2:

1
2
3
Input: s = "bbbbb"
Output: 1
Explanation: The answer is "b", with the length of 1.

Example 3:

1
2
3
4
Input: s = "pwwkew"
Output: 3
Explanation: The answer is "wke", with the length of 3.
Notice that the answer must be a substring, "pwke" is a subsequence and not a substring.

Example 4:

i4.genetic algorithm and evolutionary algorithm

Q. What are genetic algorithm and evolutionary algorithm?

Genetic algorithm (GA) is a sub-class of evolutionary algorithm (EA).

There are 3 implementation of EAs: GA, evolution strategies (ES), and evolutionary programming (EP). Among these, GAs have proved to be the most popular of the 3 EAs. These algorithms are similar in general, yet there are big differences among them:

GA: They were developed by Holland and thoroughly reviewed by Goldberg;