2015년 12월 30일 수요일
2015년 12월 29일 화요일
2015년 12월 28일 월요일
2015년 12월 26일 토요일
2015년 12월 23일 수요일
2015년 12월 21일 월요일
2015년 12월 13일 일요일
2015년 12월 12일 토요일
2015년 12월 11일 금요일
ELKR (ElasticSearch + Logstash + Kibana + Redis) 를 이용한 로그분석 환경 구축하기
http://brantiffy.axisj.com/archives/418
2015년 12월 8일 화요일
2015년 12월 4일 금요일
2015년 12월 3일 목요일
2015년 12월 2일 수요일
VirtualBox 사용
- OSX
- Windows
- 오류
- 문제 : NtCreateFile(\Device\VBoxDrvStub) failed: 0xc0000034 STATUS_OBJECT_NAME_NOT_FOUND (0 retries)
- 여기 C:\Program Files\Oracle\VirtualBox\drivers\vboxdrv\VBoxDrv.inf 드라이버를 재설치하고(해당 파일에서 오른쪽 버튼 -> 설치) 윈도우즈 재부팅
2015년 11월 30일 월요일
2015년 11월 27일 금요일
2015년 11월 26일 목요일
redis 사용해 보자
- 설치
- RHEL/CentOS 에 redis 2.8 설치
- CentOS yum 으로 설치
- CentOS 7 에서 redis 3.0.5 컴파일 설치 : 다른 버전도 가능함
- Ubuntu Redis 설치
- 외부 접속 설정
- /etc/redis.conf 에 bind를 127.0.0.1 -> 0.0.0.0 으로 변경
- 해당 포트 방화벽 열기
- redis script
- redis.call('Time') 사용시 주의 사항
- 명령어
- 랭킹전
- 1위 얻기
- zrange [key] -1 -1 withscores
- In memory dictionary Redis 소개
- Redis를 실무에 사용하기 전에 꼭 알아야 하는 실전 전략
- 설치, Replication, Sentinel, HAProxy
- Tools
2015년 11월 21일 토요일
2015년 11월 20일 금요일
2015년 11월 19일 목요일
announcing-the-vs-gdb-debugger-extension
http://blogs.msdn.com/b/vcblog/archive/2015/11/18/announcing-the-vs-gdb-debugger-extension.aspx
2015년 11월 18일 수요일
2015년 11월 17일 화요일
2015년 11월 10일 화요일
2015년 11월 6일 금요일
2015년 11월 5일 목요일
2015년 11월 1일 일요일
2015년 10월 11일 일요일
2015년 10월 8일 목요일
MySQL - 외부 접속하게 설정
특정 사용자 계정의 외부접속 허용하기 - 여기서는 root 를 예로 든다.
- 권한 설정
mysql -uroot -p
mysql> grant all privileges on *.* to 'root'@'%' identified by 'root의 패스워드';
Query OK, 0 rows affected (0.03 sec) - mysql 접속 후 mysql database 선택
mysql> use mysql; - user 테이블 살펴보기
mysql> select host, user, password from user; - 등록확인하기
mysql> select host, user, password from user; - refresh
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec) - 위 단계는 my.cnf 파일 수정후 서버를 재시작할 것이기 때문에 굳이 안해도 된다.
my.cnf 에서 외부접속 관련사항 변경하기
user@home:~$ sudo vim /etc/mysql/my.cnf
파일 내용중
bind-address = 127.0.0.1
부분 주석처리후 저장하기 - mysql 재시작
user@home:~$ sudo /etc/init.d/mysql restart
외부에서 접속이 안되면 방화벽 설정 체크
2015년 10월 4일 일요일
2015년 10월 2일 금요일
2015년 9월 30일 수요일
GIT 사용법
- 저장소 받아오기(Clone)
git clone "URL" - 최신 HEAD 내용 가져오기
git pull - 로컬 저장소 최신(HEAD)로 되돌리기
git reset --hard HEAD
2015년 9월 25일 금요일
2015년 9월 23일 수요일
MySQL - MySQL WorkBench 사용법
- SQL Query 시 delete, insert, update 안되는 경우에는 아래와 같은 처리 필요
- Query 문 가장 앞에 Safe_Updates 비활성화 필요
- SET SQL_SAFE_UPDATES = 0;
아마존 웹 서비스 구축시 참고사항
- EC2 instance 생성 + EC2용 Security Group 생성 및 instance의 attach
- RDS instance 생성 + RDS용 Security Group 생성 및 instance의 attach
- 외부에서 접속할려면 Security Group의 InBound의 anywhere로 설정 필요
- EC2의 LAMP 설치. 이때 RDS를 사용하면 MySQL은 설치안해도 되었습니다.
- https (SSL) 설치
- 자습서: SSL/TLS를 사용하여 Amazon Linux에서 Apache 웹 서버 구성 (아마존 제공)
- 인증서 만들기
- 인증서 구성
- Configuring SSL on Single Instances of PHP 5.3, PHP 5.4, and PHP 5.5
- Installing SSL on AWS EC2
- 시간 변경
- /etc/php.ini 열기
- timezone 변경
[date]
date.timezone="Asia/Seoul" - Linux OS 시간 동기화
- 참고
- 파일 쓰기 : 해당 폴더에 권한 설정 필수
- 쓰기 권한 QnA
- 웹서비스를 위한 퍼미션 문제
- 아파치가 접속시 사용되는 유저와 그룹 위치
httpd.conf
--------------------------------
User nobody
Group nobody
-------------------------------- - 암화 모듈
- mcrypt : 추가 설치 필요
- 설치
- 자습서: Amazon LinuxLAMP 웹 서버 설치 : 전 여기서 MySQL은 미설치
- 아마존 웹서비스 – 서버 구축
- 아마존 웹서비스 : 여기 잘되어 있음. 많은 도움이 되었음
- RDS 연결
2015년 9월 19일 토요일
2015년 9월 18일 금요일
리눅스 웹 서버 설치
- Ubuntu
- 우분투 14.04 서버 세팅하기 (Virtual Box)
- Ubuntu 서버 14.04에 LEMP 스택 설치하기 (Nginx, MySQL, PHP)
- Azure에서 Linux 가상 컴퓨터에 LAMP 스택 설치
여러 OS에서 설치 방법을 간략하게 설명되어 있습니다. - CentOS
- VirtualBox에서 centos7 설치
- 네트워크 활성화 : root 계정으로 해야함
- ip a // 네트워크 아답터 보기
- ping 168.126.63.1 // ping 테스트
- cd /etc // etc 폴더로 이동
- find -type f -name "*enp0s3" // 아답터 파일 찾기
- cd /etc/sysconfig/network-scripts // 아답터 파일 위치로 이동
- vi ifcfg-enp0s3 // 아답터 파일 편집
- ONBOOT=no // yes로 변경
- service network stop // 네트워크 서비스 재시작
- service network start
- ping 168.126.63.1 // pint 테스트
- 3번째 아답터도 위와 동일하게 변경
- 네트워크 수동 설정
- OS update
- yum update
- 개발 도구 설치(설치 항목)
- yum groupinstall "development tools"
- VirtualBox Guest Plugin 설치 : VirtualBox에서 실행에 느린 부분을 속도를 높여주는 기능
- 현재 실행된 VirtualBox 메뉴 -> 장치 -> "게스트 확장 CD 삽입" 선택
- mkdir cdrom // 이곳에 게스트 확장 CD를 mount 할것입니다.
- mount /dev/sr0 cdrom
- cd cdrom
- ./VBoxLinuxAdditions.run // 확장 설치 실행
- yum install kernel-devel-3.10.0-123.el7.x86_64 // 위 설치시 커널을 변경하므로 개발커널을 추가해야 한다는 Failed 문구가 있음. 버전별로 틀리니 failed 문구에서 요구하는 커널 설치
- ./VBoxLinuxAdditions.run // 다시 활장 설치 실행
- putty ssh 설정
- putty 설치 후 접속 가능
- LAMP 설치
- Install Apache, PHP And MySQL On CentOS 7 (LAMP)
- Installing VirtualBox In CentOS 7 Headless Server With Support for phpVirtualBox
- MySQL 만 설치
- 최신 버전의 MySQL 설치
- 초기 mysql root 패스워드 설정 및 비번 변경과 root 비번 잃어버렸을 경우
- [CentOS7] MySQL 설치 및 설정
- 설치 오류
- ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (111) : 저는 서비스로 다시 실행하면 해결되었습니다.
- 외부 MySQL 사용 설정
- 리눅스 : setsebool -P httpd_can_network_connect 1
- 참고
- CentOS 7 방화벽
- 네트워크 수동 설정
- CentOS에서 실행중인 아파치에서 DB로 연결이 안될때
그리고 가급적 mysql*() 보다는 PDO를 이용하는게 보안 및 호환성에도 좋다
PHP 7에서는 mysql*() 없어짐. mysqli*()는 사용 가능함 - 시간 동기화
- SSH
- 참고
- 파일 쓰기 : 해당 폴더에 권한 설정 필수
- 쓰기 권한 QnA
- 웹서비스를 위한 퍼미션 문제
- 아파치가 접속시 사용되는 유저와 그룹 위치
httpd.conf
--------------------------------
User nobody
Group nobody
-------------------------------- - 암화 모듈
- mcrypt : 추가 설치 필요
- cache 서버
- Redis 사용
- Redis install on CentOS 7/6
- RHEL/CentOS 에서 PHP 로 redis 연계 하기
# webtatic 저장소에서 PHP-5.4를 설치할 경우yuminstallphp54w-pecl-redis --enablerepo=webtatic## PHP 5.5yuminstallphp55w-pecl-redis --enablerepo=webtatic
- Apache2 restart 오류시 해결 방법
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message. new version of apache2 you just following command like this:
sudo nano /etc/apache2/apache2.conf
Add the following new line end of file: ServerName localhost
Then restart apache2: sudo nano service apache restart
It's done.
2015년 9월 16일 수요일
PHP 암호화/복호화
- 참고
- MySQL의 Aes_encrypt / Aes_decrypt와 호환되는 Python/ Php 구현
- 64진수로 암호화하는 base64 함수
- PHP에서 AES-256과 HMAC을 사용하여 문자열을 암호화하고 위변조를 방지하는 법
- 암호화 사용시 뒤에 쓰레기값이 찍는 문제 발생했음(2015-09-16). 내가 뭘 잘못했나??
- mcrypt_encrypt
2015년 9월 14일 월요일
Apache Server SSL 설정
Apache 설정을 아래와 같이 수정합니다.
파일은 httpd.conf 입니다.
파일은 httpd.conf 입니다.
- 참고
- 리눅스 개인서명 SSL 인증서 생성 : Linux + Apache 환경에서 Self-Signed 인증서 생성하고 SSL 구성하기
- 아파치 환경에서의 SSL 구성하기
- openssl CA 및 인증서 생성하기
- SSL/TLS 기본
- 테스트 페이지
웹서버 openssl로 인증서 만들기
c:/openssl/bin>openssl req -config d:\apache\server\conf\openssl.cnf -new -out server.csr -keyout server.pem
Loading 'screen' into random state - done
Generating a 1024 bit RSA private key
...............++++++
................++++++
writing new private key to 'server.pem'
Enter PEM pass phrase:
Verifying - Enter PEM pass phrase:
phrase is too short, needs to be at least 4 chars
Enter PEM pass phrase:
Verifying - Enter PEM pass phrase:
-----
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [AU]:KR
State or Province Name (full name) [Some-State]:Seoul
Locality Name (eg, city) []:Seoul
Organization Name (eg, company) [Internet Widgits Pty Ltd]:jyblues
Organizational Unit Name (eg, section) []:
Common Name (e.g. server FQDN or YOUR name) []:jyblues.blogspot.kr
Email Address []:
Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []:
An optional company name []:
c:/openssl/bin>openssl rsa -in server.pem -out server.key
Enter pass phrase for server.pem:
writing RSA key
c:/openssl/bin>openssl x509 -in server.csr -out server.crt -req -signkey server.key -days 365
Loading 'screen' into random state - done
Signature ok
subject=/C=KR/ST=Seoul/L=Seoul/O=jyblues/CN=jyblues.blogspot.kr
Getting Private key
unable to write 'random state'
Loading 'screen' into random state - done
Generating a 1024 bit RSA private key
...............++++++
................++++++
writing new private key to 'server.pem'
Enter PEM pass phrase:
Verifying - Enter PEM pass phrase:
phrase is too short, needs to be at least 4 chars
Enter PEM pass phrase:
Verifying - Enter PEM pass phrase:
-----
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [AU]:KR
State or Province Name (full name) [Some-State]:Seoul
Locality Name (eg, city) []:Seoul
Organization Name (eg, company) [Internet Widgits Pty Ltd]:jyblues
Organizational Unit Name (eg, section) []:
Common Name (e.g. server FQDN or YOUR name) []:jyblues.blogspot.kr
Email Address []:
Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []:
An optional company name []:
c:/openssl/bin>openssl rsa -in server.pem -out server.key
Enter pass phrase for server.pem:
writing RSA key
c:/openssl/bin>openssl x509 -in server.csr -out server.crt -req -signkey server.key -days 365
Loading 'screen' into random state - done
Signature ok
subject=/C=KR/ST=Seoul/L=Seoul/O=jyblues/CN=jyblues.blogspot.kr
Getting Private key
unable to write 'random state'
2015년 9월 9일 수요일
2015년 9월 8일 화요일
2015년 9월 7일 월요일
김용환 블로그 :: R 개발 후기
R과 일래스틱서치를 이용하여 데이터의 검색 랭킹 시스템을 구현해보았다.
R 공부를 책으로 하지 않고, 그냥 부딪히면서 (HEAD FIRST R Language) 개발 후기 경험담을 적는다...
... (생략) ...
김용환 블로그 :: R 개발 후기
2015년 9월 4일 금요일
2015년 9월 2일 수요일
2015년 8월 31일 월요일
2015년 8월 30일 일요일
2015년 8월 28일 금요일
2015년 8월 26일 수요일
2015년 8월 25일 화요일
2015년 8월 24일 월요일
2015년 8월 21일 금요일
Android Activity 여러개 사용하는 방법
- Android Activity 여러개 사용하는 방법
Code (csharp):
- #if UNITY_ANDROID
- //Grab the current activity (the one declared as MAIN in the manifest - can be an other plugin)
- //Give the activity instance to my own static method to launch an activity from there
- #endif
In the com.my.package.RootActivity java file :
Code (csharp):
intent.putExtra(RootActivity.EXTRA_BOOLEAN_PARAM1, param1); intent.putExtra(RootActivity.EXTRA_STRING_PARAM2, param2); intent.putExtra(RootActivity.EXTRA_INT_PARAM3, param3); }
2015년 8월 20일 목요일
2015년 8월 19일 수요일
Android Studio 에서 Unity PlugIn 만들기
- Create An Android Plugin For Unity Using Android Studio
- JAR 파일 만들기
- Android Studio Build Language Reference
안드로이드 인앱 결제(In App Billing)
- 구현
- Android In-App Billing 구현하기 (IAB Version 3)
- 안드로이드 앱내결제 (Android In App Billing)
- Google Play 개발자 콘솔에 In App Billing 제품 추가하기
- Implementing In-app Billing (Google Developers)
- In-app Billing Reference (Google Developers)
- Android In-App Billing 보안 완벽 정리 (설명 잘되어 있음. 제품 등록, 패킷 순서도 등등)
- Google In-App Billing의 상품 등록과 보안 이슈 정리
- 안드로이드 keystore 생성(Debug용도 존재, UnityEditor 미사용)
- 구현시 문제 및 해결
- bundle 이름 확인
- 안드로이드로 어플리케이션 제작 및 상용화시에 겪었던 문제들과 해결방법
- 안전함을 위해서 가급적이면 테스트 신청 페이지에서 로그인 후 테스트 계정을 등록할것
- 혹시 APK 베타/알파 게시 -> 비공개 알파 테스트 -> Create list로 등록하였다면 활성 check 등을 확인해야한다
- 안드로이드 인앱 결제 구현 오류 메세지 및 해결 방법
- 결제 에러
- 보안
- 결제 검증
- Validating Android In-App Purchases With Laravel : 최신 버전에 영수증 검증 방법인듯
- 인앱 결제 구현 및 서버 검증 : 설명 잘 되어 있음
- 구글 in-app결제. 서버 사이드 인증의 불편한 진실
- InAppVerify/verify.php
- Google Play In-App Billing Server Purchase Verification
- 구글 마켓 연동 (부제 : 인앱 결재 영수증 확인 A to Z)
- Google In-App Billing의 상품 등록과 보안 이슈 정리
- 참고
- TriviaDriveForGradle (Android Studio 결제 샘플)
- Preparing Your In-app Billing Application : 구글 레퍼런스
- 샘플 위치 설명되어 있음
- 가급적이면 구글 레퍼런스에 샘플을 사용하는게 문제가 없음
- A lightweight implementation of Android In-app Billing Version 3
2015년 8월 18일 화요일
2015년 8월 13일 목요일
2015년 8월 11일 화요일
2015년 8월 10일 월요일
2015년 8월 8일 토요일
2015년 8월 5일 수요일
2015년 7월 28일 화요일
2015년 7월 24일 금요일
Amazon Web Service
- 설치
- AWS EC2 인스턴스 생성하기
- DevOps를 위한 AWS CLI 활용팁
- Apache
- 아마존 웹 서비스를 다루는 기술
- 아마존 EC2 우분투 웹서버 설정
- 블로그 - 개발이 하고 싶어요
- 우분투(Ubuntu)에서 APM 웹서버 구축하기
- Uploading web files to a new Amazon EC2 instance
- 그림으로 그려서 세팅
- NginX
- 참고
- AWS 티어 지역별 속도 비교
- AWS – EC2 에서 S3 로 파일 전송
- AWS 클라우드에서의 웹 애플리케이션 호스팅(2010 년 5 월)
- AWS re:Invent 2013 슬라이드 중에 관심있는 것들
- AWS 아키텍처 센터
- WEB-APPLICATION HOSTING
- 서비스
- Cloud Taekwon 2015 - Amazon EC2 Container Service 자세히 보기
- ]프리티어사용시 요금발생(폭탄)을 막기위한 팁
- Cloud Taekwon 2015 - Amazon EC2 & Auto Scaling 제대로 활용하기
- AWS로 사용자 천만 명 서비스 만들기 (윤석찬)- 클라우드 태권 2015
- 강의
- 툴
- 사례
2015년 7월 16일 목요일
2015년 7월 15일 수요일
2015년 7월 14일 화요일
2015년 7월 8일 수요일
2015년 7월 6일 월요일
2015년 7월 4일 토요일
2015년 7월 3일 금요일
2015년 7월 2일 목요일
2015년 7월 1일 수요일
2015년 6월 28일 일요일
톰캣 알고 쓰기
톰캣 알고 쓰기 (총 11강 완): https://www.youtube.com/playlist?list=PLQUXE_kb6KOj0mvxoAGrz3FT9EDL3fa1z
2015년 6월 27일 토요일
JSON - PHP
Array to Json
// Non-consecutive number keys are OK for PHP
// but not for a JavaScript array
$array = array(
2 => array("Afghanistan",32,13),
4 => array("Albania",32,12)
);
// array_values() removes the original keys and replaces
// with plain consecutive numbers
$out = array_values($array);
json_encode($out);
// [["Afghanistan",32,13],["Albania",32,12]]
Json to Array
$json_data = "["2":["Afghanistan",32,12],"4":["Albania",32,12]]";$out = json_decode($json_data, true);
2015년 6월 26일 금요일
2015년 6월 22일 월요일
2015년 6월 21일 일요일
2015년 6월 20일 토요일
2015년 6월 19일 금요일
2015년 6월 18일 목요일
2015년 6월 15일 월요일
2015년 6월 14일 일요일
2015년 6월 13일 토요일
2015년 6월 10일 수요일
모바일 기기의 Tile Based Rendering(타일 기반 렌더링)과 유니티에서의 주의 사항 #2 : TBR 대응 리소스 제작시 주의점
http://ozlael.tistory.com/m/post/24
모바일 기기의 Tile Based Rendering(타일 기반 렌더링)과 유니티에서의 주의 사항 #1 : TBR의 이해
http://ozlael.tistory.com/m/post/23
2015년 6월 8일 월요일
2015년 6월 6일 토요일
ncanis's Macula (흑점) :: 게임서버의 대세
ncanis's Macula (흑점) :: 게임서버의 대세
GM툴 (GWT)
단순한 하이퍼캐주일이라도 지표는 필요하다. 1,3,5,7,15,30 리텐션, 잔존율, 게임특성에 맞는 서비스, 유저정보 조회, 로그,서버관리,게임플레이로그, 등등 필요한건 엄청나다, 오픈전에 반드시 이런부분이 갖춘 상태에서 서비스를 해야 오픈하고서도 제대로 유저의 행동방향을 예측하고, 거기에 맞는 아이템/이벤트/운영등을 할수있다. 오픈후에 만들면 x된다고 생각한다.
개인적으로 웹에서 접속가능한 GWT(Google App Engine)을 이용하는게 좋다. Smart GWT도 있는데 무겁다는 생각이고, GWT만을 이용해 컴포넌트를 조금만 만들면 쉽다. 개인적으로 html이 들어간 노가다는 싫어서..
물론 현재 만들어서 잘 쓰고있다.
2015년 6월 5일 금요일
2015년 6월 4일 목요일
2015년 6월 2일 화요일
애드립 SDK 소개 애드립 SDK 는 특정 플랫폼에 의존적이지 않으며, 원하는대로 자신의 앱에 최적화하여 다양한 광고 플랫폼을 손쉽게 적용할 수 있도록 제작
http://mocoplex.github.io/adlibr-SDK-ios/
2015년 5월 29일 금요일
2015년 5월 27일 수요일
2015년 5월 26일 화요일
2015년 5월 25일 월요일
2015년 5월 24일 일요일
2015년 5월 23일 토요일
2015년 5월 21일 목요일
2015년 5월 19일 화요일
2015년 5월 15일 금요일
2015년 5월 14일 목요일
2015년 5월 4일 월요일
2015년 4월 27일 월요일
2015년 4월 21일 화요일
2015년 4월 18일 토요일
2015년 4월 10일 금요일
2015년 4월 8일 수요일
2015년 4월 7일 화요일
2015년 4월 2일 목요일
2015년 3월 31일 화요일
2015년 3월 30일 월요일
2015년 3월 25일 수요일
2015년 3월 23일 월요일
2015년 3월 20일 금요일
2015년 3월 16일 월요일
2015년 3월 11일 수요일
2015년 3월 5일 목요일
2015년 3월 4일 수요일
Unity3D - Rendering Path에서 Deferred 방식 문제점
- 문제점
- 여러개의 카메라를 사용시 중첩되는 카메라의 Viewport 내의 그려지지 않는 곳에 쓰레기 값이 출력되는 문제
2015년 3월 3일 화요일
2015년 3월 2일 월요일
2015년 3월 1일 일요일
2015년 2월 25일 수요일
2015년 2월 23일 월요일
2015년 2월 17일 화요일
2015년 2월 11일 수요일
2015년 2월 10일 화요일
2015년 2월 5일 목요일
Smart Indexing at Parse | Parse Blog
Smart Indexing at Parse | Parse Blog
Smart Indexing at Parse
We love running databases at Parse! We also believe that mobile app developers shouldn’t have to be DBAs to build beautiful, performant apps.....
(...)
2015년 1월 15일 목요일
2015년 1월 13일 화요일
2015년 1월 12일 월요일
2015년 1월 10일 토요일
2015년 1월 9일 금요일
세탁기 배수 청소
http://www.samsungsvc.co.kr/reserve/resEngineer/viewDiagPopup.do?prd_map_code=HEW&cond_large=A5&cond_mid=02&cond_small=01
2015년 1월 7일 수요일
피드 구독하기:
덧글 (Atom)
Mac에서 CapCut 캐시를 외장 SSD로 옮기는 방법 (저장공간 절약 + 속도 유지)
영상 편집을 하다 보면 CapCut 캐시와 프록시 파일 때문에 맥 저장공간이 빠르게 줄어드는 경우가 많습니다.특히 쇼츠나 영상 편집을 자주 하는 경우 100GB 이상 캐시가 쌓이는 상황 도 흔합니다. Mac에서는 심볼릭 링크(syml...
-
원본으로 이동 소요유 (2002-09-26 09:02:19) 흠~ 그 동네에서도 나오는 모양이군요. 입체각을 이해하기 위해서는 빛을 예로드는 것이 편리합니다. 랜턴을 안개낀 날 밤에 비추면 빛의 세기는 거리에 따라 제곱분에 일로 ...
-
2026 WBC에서 외국계 선수들이 한국 대표팀으로 출전할 수 있는 이유는 다음과 같습니다. 1. WBC는 국적뿐 아니라 혈통 기준도 인정 2. 부모 또는 조부모가 한국인이면 출전 가능 3. MLB 주도의 국제대회라 규정이 유연 4. 다른 국가들도 ...
-
React보다 Vue3를 더 많이 사용하는 이유? 실제 프로젝트에서 느낀 프레임워크 선택 기준 프론트엔드 개발을 이야기할 때 가장 먼저 떠오르는 라이브러리 중 하나가 바로 React 입니다. React는 글로벌 시장에서 매우 높은 점유율을 가지고 ...