본문 바로가기
  • 실행력이 모든걸 결정한다
반응형

전체 글580

개발자들을 위한 무료 이미지 사이트 저작권 걱정없는 무료 이미지 사이트 unsplash, pixabay를 소개한다. https://unsplash.com/ Beautiful Free Images & Pictures | Unsplash Beautiful, free images and photos that you can download and use for any project. Better than any royalty free or stock photos. unsplash.com 위 사이트 검색창에 카테고리별 해당 이미지를 검색 할 수 있다. 아래 사진은 Coding 을 검색하여 Coding 카테고리에 해당하는 사진이 보기좋게 나온것을 볼 수 있다. 그리고 위 작은 메뉴에서 Programmig, Computer, hacker 등등 연관 키.. 2020. 8. 4.
html/css/javascript/sql/python/php 튜토리얼 사이트 여러 태그, 함수 들을 배우며 직접 실행도 해볼 수 있는 유용한 사이트 www.w3schools.com/ W3Schools Online Web Tutorials HTML Example: This is a heading This is a paragraph. Try it Yourself » CSS Example: body { background-color: lightblue; } h1 { color: white; text-align: ce www.w3schools.com 2020. 8. 3.
HTML 태그 빈도 통계 https://www.advancedwebranking.com/html/ The average web page from top twenty Google results Apparently, an average web page uses twenty-eight different element types: The twenty-eight elements used on most pages, ordered by appearance frequency: www.advancedwebranking.com 태그는 HTML의 꽃인데, 세계적으로 주요 웹 사이트들을 분석하여 태그들의 사용 비율 통계를 보여준다. 2020. 8. 3.
간단한 배열 셔플 소스 랜덤으로 인덱스를 2개 골라서 선택된 인덱스에 해당하는 값들끼리 바꿔주는 방법이다. void Start(){ for (int i = 0; i < 7; i++) { int a = Random.Range (0, 7); int b = Random.Range (0, 7); string temp = test.sum [a]; test.sum [a] = test.sum [b]; test.sum [b] = temp; } } } 2020. 8. 3.