Programing (프로그래밍) 썸네일형 리스트형 PHP - 해당 사이트 외 접근제한 링크제한 하기 .htaccess SetEnvIfNoCase Referer "^http://(.*).[site]/" locally_linked=1 SetEnvIfNoCase Referer "^http://(.*).[site]$" locally_linked=1 SetEnvIfNoCase Referer "^http://[site]/" locally_linked=1 SetEnvIfNoCase Referer "^http://[site]$" locally_linked=1 SetEnvIfNoCase Referer "^https://[site]/" locally_linked=1 SetEnvIfNoCase Referer "^https://[site]$" locally_linked=1 SetEnvIfNoCase Referer "^https://(.*)... 더보기 안드로이드스튜디오 ListView 리스트뷰 ( AndroidStudio / List<String> / ArrayAdapter ) activity_main.xml 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 Colored by Color Scripter cs MainActivity.java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 package com.example.listviewexample; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.widget.ArrayAdapter; import android.widge.. 더보기 안드로이드스튜디오 ToastMessage 토스트메세지 ( AndroidStudio ) 안드로이드스튜디오 ToastMessage 토스트메세지 ( AndroidStudio ) activity_main.xml 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 Colored by Color Scripter cs MainActivity.java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 package com.example.myapplication; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import andr.. 더보기 NotePad++ 노트패드++ 설치 및 셋팅 하기 & 단축키 & PHP NotePad++ 노트패드++ 설치 및 셋팅 하기 & 단축키 & PHP1. 백업설정도구 - 환경설정 에서 다중백업으로 설정하고, 백업 위치는 기본 폴더위치를 복사해서 붙여넣기 한다.필요시 해당 폴더에 가서 백업 자료를 가져오면 된다. %AppData%\Notepad++\backup 2. 폰트 및 스타일 설정기본폴더 : %AppData%\Notepad++기본폴더에 stylers.xml 파일을 덮어 쓰기 한다.폰트는 D2코딩 폰트를 사용했다. stylers.xml 의 설정 내용은 아래와 같다. 3. 다크스타일의 테마 ( VS2015-Dark.xml )다크스타일 테마도 좋은듯하여 하나 챙겨두었다.VSCODE 스타일을 따라한듯하다.출처 : https://github.com/Ludomancer/VS2015-Da.. 더보기 HTML - Table 기본구조 ( 테이블 표 caption figure figcaption table thead tbody tfoot tr th td ) HTML - Table 기본구조 ( 테이블 표 caption figure figcaption table thead tbody tfoot tr th td ) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 caption 학생나이 홍길동33 김영희23 figcaption 상단 학생나이 홍길동33 김영희23 figcaption 하단 figcaption 상단 caption 학생나이 홍길동33 김영희23 figcaption 하단 Colored by Color Scripter cs caption 은 상단만 나오고 figcaption 은 상하단에 표출이 가능하다. caption 과 figcaption 은 .. 더보기 WPF & C# - SoundPlayer wav ( 사운드플레이어 웨이브 MP3 ) WPF & C# - SoundPlayer wav ( 사운드플레이어 웨이브 MP3 ) MainWindow.xaml 1 2 3 4 5 6 선택 재생 전체 재생 Colored by Color Scripter cs MainWindow.xaml.cs 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91.. 더보기 WPF & C# - SystemSounds.Beep.Play ( 시스템사운드 / Beep / Question / Exclamation / Asterisk / Hand ) WPF & C# - SystemSounds.Beep.Play ( 시스템사운드 / Beep / Question / Exclamation / Asterisk / Hand ) MainWindow.xaml 1 2 3 4 5 6 7 Beep Question Exclamation0 Asterisk Hand Colored by Color Scripter cs MainWindow.xaml.cs 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 private void btnPlayBeep_Click(object sender, RoutedEventArgs e) { SystemSounds.Beep.Play(); } private void btnPlayQuesti.. 더보기 WPF & C# - SplashScreen ( 스플래쉬 / 스플래시 / 스플래쉬스크린 / 스플래시스크린 / 로딩중 / Loading ) WPF & C# - SplashScreen ( 스플래쉬 / 스플래시 / 스플래쉬스크린 / 스플래시스크린 / 로딩중 / Loading ) MainWindow.xaml 1 2 3 SplashScreen Colored by Color Scripter cs MainWindow.xaml.cs 1 2 3 4 5 6 7 8 9 public MainWindow() { InitializeComponent(); for (int i = 0; i 더보기 이전 1 2 3 4 5 6 7 ··· 35 다음