摘要:
摘自 stackoverflow回答Here is the procedure to reset password of root user.1) Stop mysql (Kill mysql process or run following command)sudo /usr/local/mysq... 阅读全文
摘要:
在nas上面搭了git然后想把本地代码push上去git remote add nas ssh://git@192.168.1.122/volume1/git_repos/test/soapui/.git git push nas mastergit push nas master报错,没连接上.仔... 阅读全文
摘要:
for j in 1...array.size z=j-1 key=array[j] while (z >= 0) and (array[z] > key) do array[z+1]=array[z] z=z-1 end array[z+1]=keyendputs array... 阅读全文