참고 사항 및 기타/참고 사이트

    자료구조를 직관적으로 알기 쉽게 그려주는 사이트

    https://visualgo.net/en visualising data structures and algorithms through animation - VisuAlgo VisuAlgo is generously offered at no cost to the global Computer Science community. If you appreciate VisuAlgo, we kindly request that you spread the word about its existence to fellow Computer Science students and instructors. You can share VisuAlgo throu visualgo.net

    Extracting Titles

    # 2.6 NomadCoder 니코쌤의 python 크롤링 강좌 indeed 사이트 title 추출하기 import requests from bs4 import BeautifulSoup LIMIT = 50 URL = f"https://www.indeed.com/jobs?q=python&limit={LIMIT}" def extract_indeed_pages(): result = requests.get(URL) soup = BeautifulSoup(result.text, "html.parser") pagination = soup.find("div", {"class":"pagination"}) links = pagination.find_all('a') pages = [] for link in links[:-1..

    깃허브 포트폴리오 페이지 변경 # 2

    Setup And Deployment 🔧 To Get Started, Fork this repository to your GitHub account: Clone the forked repo from your account using: git clone https://github.com//home.git Open in editor and edit src/editable-stuff/config.js file. Add your resume as in place of src/editable-stuff/resume.pdf Edit title and meta description in public/index.html. Change URL in package.json file: "homepage": "https://..

    CodingTest with Github pull request

    깃헙으로 스터디분들과 함께 코딩테스트 준비를 하게 되었다. 10년차 개발자분께서 깃헙으로 pull request를 사용하자고 하셔서 협업을 위한 준비 과정을 적어보려고 한다. 많은 조언 부탁드립니다. 1. 주최자분의 깃헙 clone 2. 자신의 branch 생성 및 checkout 3. 내용 작성 및 add commit push -> origin 4. master에 pull request 요청 5. commit and push 누락해서 다시 시도 6. pull request 버튼 생성 7. pull request 작성

    깃허브 포트폴리오 페이지 변경 # 1

    지금 쓰고있는 포트폴리오용 템플릿은 루비 기반의 jekyll로 만들어졌다. 디자인이 조금 맘에 들지 않아서 새로 변경하려고 한다. github.com/sproogen/modern-resume-theme sproogen/modern-resume-theme A modern static resume template and theme. Powered by Jekyll and GitHub pages. - sproogen/modern-resume-theme github.com github.com/hashirshoaeb/home hashirshoaeb/home The personal website/portfolio of Hashir Shoaib. Built using React and Bootstrap. - hash..