IT/synology[NAS] rushmac
Synology NAS 전원 예약으로 전기 절약 및 수명 늘리는 방법 시놀로지나스에는 전원 예약 기능이 있습니다. 원하는 시간에 나스 off 및 on 기능으로 가정에서는 나스 켜 놓을 필요가 있을까 하는 생각이 듭니다. 전기세도 절약하면서 장비 수명도 늘릴 수 있습니다. 1) 시놀로지의 Disk Station에 접속한 후 제어판 실행 후 하드웨어 및 전원 실행 합니다. 2. 전원예약 탭 이동 후 생성 버튼 클릭으로 시작 or 종료 세팅합니다. 이 글이 도움이 되었거나 마음에 든다면, ♥(공감) 눌러주세요!! 궁금한 부분이 있으시다면 댓글 달아주세요~
IT/Apple[애플] rushmac
iPhone 11 Pro 대해 리뷰 정보 입니다. 요약 하면 1.카메라 기능( 센서 업그레이드 외 이미지 처리 알고리즘 개선, 야간모드) 2.배터리 대폭 개선 https://9to5mac.com/2019/09/17/iphone-11-pro-review-roundup/?fbclid=IwAR3E_UxLfRst3xAp69O1gkzU0cHh_Z-U_2pNdIHvKfNxZRzoIj3v3ZHLICw iPhone 11 Pro review roundup: massive jump in camera quality, battery life claims deliver - 9to5Mac The iPhone 11 and iPhone 11 Pro reviews are out. The top line appears to be tha..
iPhone 11 대해 리뷰 정보 입니다. 요약 하면 1.카메라 기능 추가( 야간모드, 초광각 등) 2.저렴한 가격 [리뷰 정보] https://9to5mac.com/2019/09/17/iphone-11-almost-like-pro-but-cheaper/?fbclid=IwAR1kxHONcdfc6CM3urhcDbau-LbsrNFMrel12-K0aZusRjtn1ZvXLEbgR6o iPhone 11 review roundup: impressive Night Mode, ultra-wide camera is a useful addition, great price - 9to5Mac The iPhone 11 Pro has garnered most of the attention, featuring its three-c..
Developers/Delphi[델파이] rushmac
function GetMACAdress2: string; var NCB: PNCB; Adapter: PAdapterStatus; RetCode: char; I: Integer; Lenum: PlanaEnum; _SystemID: string; begin Result := ''; _SystemID := ''; Getmem(NCB ,sizeof(TNCB)); Fillchar(NCB^ ,Sizeof(TNCB) ,0); Getmem(Lenum ,sizeof(TLanaEnum)); Fillchar(Lenum^ ,Sizeof(TLanaEnum) ,0); Getmem(Adapter ,sizeof(TAdapterStatus)); Fillchar(Adapter^ ,Sizeof(TAdapterStatus) ,0); Len..
Developers/Git[깃허브] rushmac
개발 소스(Git) 대 쉽게 관리하는 소트웨어(sourceTree) 설치 (windows and Mac) https://www.sourcetreeapp.com/ Sourcetree | Free Git GUI for Mac and Windows A Git GUI that offers a visual representation of your repositories. Sourcetree is a free Git client for Windows and Mac. www.sourcetreeapp.com Git 개발 소스 관리하는 Cilent 툴 화면
Unit에 포함이 안 될 때 유용한 정보 The following table (which is not exhaustive) lists types and functions (but generally not constants) together with the unit required: Type Unit _Stream ADODB_TLB akTop, akLeft, akRight, akBottom Controls AnsiLowerCase SysUtils Application (the variable not a type) Forms Beep SysUtils or Windows (different functions) CGID_EXPLORER ShlObj CN_BASE Controls CoInitialize Activ..
사용하시는 DDNS가 있다면 그것을 도메인이름으로 사용하시면 됩니다. 1. DSM > 제어판 > 네트워크 서비스 > DDNS 설정 -예제: ssl.Synology.me 2. DSM > 패키지 센터 -Mail Server 설치 -Mail Station 설치 3. DSM > Mail Server 실행, SMTP 설정 -SMTP 활성화 체크 -도메인 이름: ssl.Synology.me -확인 4. DSM > 제어판 > DSM 설정 > 인증서 > 인증서 생성 ㅇ인증서 서명 요청(CSR) 생성 -개인 키 길이: 2048 -공통 이름: ssl.Synology.me -이메일: admin@ssl.Synology.me -국가: [KR] 남한 -시/도: Seoul -구/군/시: Seoul -조직: SSL -부서: SSL ..
procedure TForm1.FormShow(Sender: TObject); var wDate : TDateTime; y,m,d : word; begin wDate := now; //현재일자 //wDate := StrToDate(FormatMaskText('0000-00-00;0', '20190901')); //특정일자 DecodeDate(wDate,y,m,d); Label1.Caption := formatDateTime('yyyymmdd',wDate); MaskEdit1.text := formatDateTime('yyyymmdd',IncMonth(wdate,1)-d); //월말 MaskEdit2.text := formatDateTime('yyyymmdd',IncMonth(wdate,-1)-d+1); ..
function Tdm.Get_LocalIP: String; var WSAData : TWSAData; HostName: String; HostEnt : pHostEnt; begin WSAStartup(2, WSAData); SetLength(HostName, 255); GetHostName(PChar(HostName), 255); SetLength(HostName, StrLen(PChar(HostName))); HostEnt := GetHostByName(PChar(HostName)); if Assigned(HostEnt) then with HostEnt^ do Result := Format('%d.%d.%d.%d', [Byte(h_addr^[0]), Byte(h_addr^[1]), Byte(h_add..