전체 글
-
iOS) alamofire.framework failed no such file or directory (2) 에러로 앱 빌드가 안될때Programing Language/iOS(Swift) 2023. 8. 9. 19:26
Install the latest version of cocoapods >= 1.12.1 This version has been released with these fixes. Try the following commands to install the latest version. sudo gem install cocoapods pod install If you want to use cococapods version
-
React) getUserMedia 함수의 카메라 전방 후방 설정카테고리 없음 2023. 3. 18. 13:56
To get the rear camera, you can use the MediaConstraint: video:facingMode property. Available values are 'user' (front camera), 전방 and 'environment' (back camera). 후방 navigator.mediaDevices.getUserMedia({ audio: false, video: { facingMode: 'environment' // vid.srcObject = stream) .catch(console.error); 도움되셨으면 광고 클릭 센스!!
-
React) iOS 스타일의 Switch 버튼 만들기카테고리 없음 2023. 3. 15. 21:42
Component 코드 import styles from '../../../styles/Swtich.module.css'; const Switch = ({ isOn, handleToggle }) => { // 랜덤 키를 생성하지 않으면 component로 분리하여 Switch를 객체화 하여도 input과 label의 아이디가 동일하여 // 객체화해서 따로사용할수가 없다. const rand = Math.floor(Math.random() * 100); const key = `${Date.now()}${rand}`; return ( ); }; export default Switch; - CSS 코드 .react__switch__checkbox { height: 0; width: 0; visibility: ..
-
React) react-toastify 중복 실행 방지하기Programing Language/React.js 2023. 3. 12. 17:05
import { ToastContainer, toast } from 'react-toastify'; const autoCloseDuration = 1000; const toastId = 'current-toast-id'; // { if(!toast.isActive(toastId)){ //isActive로 활성여부 체크 // 중복 실행 방지하기 위해서 고정된 id를 넣는다. toast(msg, { toastId: toastId, position: 'bottom-center', autoClose: autoCloseDuration, hideProgressBar: true, closeButton: false, pauseOnHover: true, progress: undefined, theme: 'dark' })..
-
Mysql) Group by로 중복 제거한것들 count 하기Programing Language/Database 2023. 2. 22. 16:59
중복값 갯수와 값 구하기 위의 테이블 예제로 2번 이상 구입한 사람의 이름과 구입횟수를 검색하는 쿼리입니다. SELECT name, COUNT(name) FROM carts GROUP BY name HAVING COUNT(name) > 1 실행결과는 다음과 같습니다. name COUNT(name) 도현 2 민준 2 준서 3 중복값 구하기로 고생할 누군가에게 도움이 되었으면 좋겠습니다^^ 도움 되셨다면 하단의 광고 클리이잉ㄱ!!
-
EC2) ubuntu 스토리지 추가하기Programing Study/네트워크 2023. 2. 20. 23:45
요약 용량 꽉참. ( df -h 로 확인.) 루트볼륨 늘리기 (EBS 용량 늘리기) 파티션 크기 늘리기 ( growpart 명령) 파일시스템 크기 늘리기 (ext4일 경우 resize2fs 명령) 끝 용량 확인법 df -hT #각 볼륨의 파일시스템 용량, 타입 확인 du # dir과 dir 내부에있는 모든 dir의 용량 확인 보면 현재 용량이 꽉 차있다.. (7.6G / 7.7G) 내 EC2 인스턴스가 쓰고있는 블록 디바이스 확인 EBS 콘솔에서 내 볼륨 우클릭 후 수정해서 크기를 8에서 16으로 수정함. lsblk 명령어로 인스턴스에 연결된 블록디바이스를 확인 루트 볼륨 /dev/xvda 가 8GB에서 16GB로 됨. 볼륨 크기는 커졌지만 /dev/xvda 의 파티션인 /dev/xvda1 은 아직 8G..
-
mysql) 월별 방문자 통계 SQL문 만들기Programing Language/Database 2023. 2. 18. 00:49
- 테이블 정보 CREATE TABLE `statistics` ( `no` int(11) unsigned NOT NULL AUTO_INCREMENT, `date` timestamp NULL DEFAULT NULL, `value` int(11) DEFAULT NULL, PRIMARY KEY (`no`) ) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8; - SQL 문 SELECT DATE_FORMAT(date, '%m') AS month , SUM(value) AS total FROM statistics WHERE YEAR(date) = 2023 GROUP BY month 도움되셨다면 하단의 광고 클릭 센스!
-
mysql) 이번주 또는 저번주 방문자 통계 sql 문Programing Language/Database 2023. 2. 18. 00:47
- 월요일에서부터 일요일까지 기준으로 통계 SELECT SQL CREATE TABLE `statistics` ( `no` int(11) unsigned NOT NULL AUTO_INCREMENT, `date` timestamp NULL DEFAULT NULL, `value` int(11) DEFAULT NULL, PRIMARY KEY (`no`) ) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8; - 이번주(월 ~ 일) SELECT date, DATE_FORMAT(`date`, '%a') AS `week`, value AS total from statistics_table where date_format(date,'%Y-%m-%d') BETWEEN (SEL..