2022.06.27
Please see the previous post for the details: https://paigekim29.medium.com/toast-ui-editor-next-js-c9b48927fbf7
2022.06.27
Please see the previous post for the details: https://paigekim29.medium.com/toast-ui-editor-next-js-c9b48927fbf7
2022.05.16
Medium
Given an array of integers nums
sorted in non-decreasing order, find the starting and ending position of a given target
value.
If target
is not found in the array, return [-1, -1]
.
You must write an algorithm with O(log n)
runtime complexity.
Example 1:
Input: nums = [5,7,7,8,8,10]…
2022.05.11
WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested
M1 is an arm64/v8 architecture, so that Docker will build an image with arm64/v8 architecture. In order to use Docker image in AWS EC2, which generally uses amazonlinux OS and its architecture is linux/amd64, docker image should be a linux/amd64 architecture. So when you build, you can designate image’s platform to be based as linux/amd64.
docker build --no-cache --platform=linux/amd64 -t [TAG_NAME].
2022.04.17
<?php ini_set('max_execution_time', '300'); ?>
2022.03.29
oncontextmenu
in body tag<body oncontextmenu="return false;">
reference:
https://stackoverflow.com/questions/13719096/right-click-disable-in-php
2022.03.21
./node_modules/antd-mobile/es/components/action-sheet/action-sheet.css Global CSS cannot be imported from within node_modules. Read more: https://nextjs.org/docs/messages/css-npm Location: node_modules/antd-mobile/es/components/action-sheet/index.js
https://mobile.ant.design/guide/ssr