전체 글(702)
-
Sencha grid checkcolumn 체크된 row 가져오기
const store = this.up('grid').getStore();const selection = store.getRange().filter(record => record.get('selected') === true);const data = selection.map(record => record.getData());console.log(data);
2025.01.06 -
Sencha grid 기본 체크박스 정보 가져오기
const grid = this.up('grid');const selection = grid.getSelectionModel().getSelection();const data = selection.map(record => record.getData());console.log(data);
2025.01.06 -
Windows에서 NFS 연결하기
NFS 클라이언트 설치윈도우 검색 > 제어판 > 프로그램 및 기능 > Windows 기능 켜기/끄기NFS용 서비스 > NFS용 클라이언트 체크 > 확인재부팅UID, GID 설정Win + R > regedit > HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ClientForNFS\CurrentVersion\DefaultNew > DWORD(32-bit) > UID 정보 입력(Decimal)Name: AnonymousUidValue: {UID 값}New > DWORD(32-bit) > GID 정보 입력(Decimal)Name: AnonymousUidValue: {GID 값} NFS 서버와 연결탐색기 > 내 PC > 오른쪽 마우스 클릭 > 네트워크 드라이브 연결 폴더에 \\NFS 서버 ..
2025.01.06 -
Sencha 이미지 사이즈 변경 후 업로드하기
이미지 사이즈 변경 및 rotation 처리function resizeImage(file, callback) { const reader = new FileReader(); reader.onload = function(e) { const img = new Image(); img.src = e.target.result; img.onload = function() { let width = img.width; let height = img.height; let orientation = -1; EXIF.getData(img, function() { const exifOrientation = EXIF.getTag(this, "Orientation"); if(exifOrient..
2025.01.06 -
Java 핸드폰에서 찍은 이미지 업로드시 주의사항
핸드폰에서 찍은 이미지를 서버에 업로드시 width, height 정보를 가져올때, EXIF orientation를 고려해야 함그냥 width, height 정보를 가져오면, 옆으로 돌려서 찍은 사진의 경우 width와 height가 바껴서 나옴pom.xml com.drewnoakes metadata-extractor 2.18.0 Javaimport com.drew.imaging.ImageMetadataReader;import com.drew.metadata.Directory;import com.drew.metadata.Metadata;import com.drew.metadata.Tag;import com.drew.metadata.exif.ExifIFD..
2025.01.06 -
Ubuntu Dell에 설치
F2: Bios 진입BIOS가 UEFI로 설정SATA 작동이 AHCI(Advanced Host Controller Interface)로 설정레거시 옵션 활성화 ROM(Read-Only Memory): 비활성화하면 F12에서 Disk Driver 선택이 안나옴보안 부팅 비활성화File Browser Del Boot Option에서 모두 삭제F12: 부팅 옵션F12를 통해서만 부팅 가능함LEGACY OPTIONS: Hard Drive 선택네트웍 도구 설치sudo apt-get updatesudo apt-get upgradesudo apt-get install net-tools# 확인ifconfigGUI 설치sudo apt-get install ubuntu-desktopreboot
2025.01.04