2022-07 WINDOWS 7 升级 WINDOWS 10 出现 0x80072F8F - 0x20000 问题排除

http://slashview.com/archive2022/20220711.html 原来是TLS问题,照着这篇下载作者的三个修正档案执行后重开机,执行微软升级程式即可解决升级,目前正在升级中。

【ruby】GCP 部署 Ruby on Rails - 环境设定

首先要将 VM 软体套件更新至最新版本 apt-get 是更新 Ubuntu 上的软体套件版本的指令 sudo apt-get update sudo apt-get upgrade -y 设定 VM 的时区 sudo dpkg-reconfigure tzdata

leetcode with python:383. Ransom Note

题目: Given two strings ransomNote and magazine, return true if ransomNote can be constructed by using the letters from magazine and false otherwise. Each letter in magazine can only be used once in

leetcode with python:387. First Unique Character in a String

题目: Given a string s, find the first non-repeating character in it and return its index. If it does not exist, return -1. 给定一字串,找出第一个独一无二的值,回传它的index,若不存

【JavaScript】物件、阵列 解构赋值 (Destructuring Assignment)

赋予值 一开始在学习 JavaScript 时,常需要宣告参数并赋予值,而等号右边便是宣告参数的值。 範例中宣告两个参数分别为 device 、 fruit ,他们的值分别为

leetcode with python:18. 4Sum

题目: Given an array nums of n integers, return an array of all the unique quadruplets [nums[a], nums[b], nums[c], nums[d]] such that: 0 = a, b, c, d n a, b, c, and d are distinct. nums[a] + nums[b]

leetcode with python:268. Missing Number

题目: Given an array nums containing n distinct numbers in the range [0, n], return the only number in the range that is missing from the array. 给定一个阵列,里面本来应该有0~n的数各一

leetcode with python:7. Reverse Integer

题目: Given a signed 32-bit integer x, return x with its digits reversed. If reversing x causes the value to go outside the signed 32-bit integer range [-2^31,2^31-1], then return 0. Assume the envir

我...也想成为火箭队(11) - 切版班专题发想讨论

前言 嗨嗨各位,第十一天了,我好像该取个笔名才对,先用小弟代替吧。 切版班的课程前几天正式开始了,这届很讚的还有协助製作专题。 首先要构想的

主机代管 – IDC 是什么? 谁适合主机代管、申请方式

主机代管是什么? 主机代管 (Colocation) 为客户自有主机设备,只是向主机商承租机柜及网路频宽等,将自己的主机放在主机商的 IDC 机房,主机商为客户提供

leetcode with python:278. First Bad Version

题目: You are a product manager and currently leading a team to develop a new product. Unfortunately, the latest version of your product fails the quality check. Since each version is developed based