본문 바로가기

Programming

깃,깃 허브를 배워보자 https://velog.io/@phantom5087/GitGithub-Git%EC%9D%84-%EB%B0%B0%EC%9B%8C%EB%B3%B4%EC%9E%90 [Git/Github] Git을 배워보자 Git이란? VCS Version Control System 으로 버전을 관리해주는 시스템입니다. 게임을 해보셨던 분들이라면, 버전시스템은 친숙하실겁니다! 웹 앱,게임 등과 같은 소프트웨어들의 버전을 관리할 수 있습 velog.io GIT/Github / Git을 배워보자 Git 이란? VCS Version Control System으로 버전을 관리해 주는 시스템 게임을 해보셨던 분들이라면, 버전 시스템은 친숙 웹 앱, 게임 등과 같은 소프트웨어 들의 버전을 관리 할 수 있음 버전은 'x.x.x'로 나타내.. 더보기
CMS 정리 두번째 시간 CMS 정리 두번째 시간 Which CMS system should you use? Sure, everyone has their answer, their preference, and their opinion, but it is difficult to come up with a factual argument for one content management system being the best in 100% of situations. All three are excellent choices in most cases. But your own unique scenario will require different capabilities, which probably makes ONE of these three C.. 더보기
week1 -1 CMS, Wordpress를 공부하는 이유 : 이것이 내 passive income에 도움 될태니까 당연히 열심히 해야합니다. 성실히 Although Wordpress was initially conceived as a blogging platform, it has grown far beyond that point. you can customize it with little limitations using plugins and themes (of which you have tens of thousands to choose from). The WordPress open source CMS project provides the opportunity for anyone to create and share we.. 더보기
URL 구성표 더보기
객체의 생성, 읽기,쓰기 객체의 생성 과 읽기, 쓰기 Object var coworkers = { "programmer" : "egoing", "designer" : "leezche" }; document.write ("programmer : " + coworkers.programmer + " "); document.write ("designer : " +cowokers.designer+" "); coworkers.bookkeeper = "duru"; 중요 document.write("bookkeeper : " + coworkers.bookkeeper + " "); coworkers["data scientist"] = "taeho"; 중요 document.write("data scientist : " +coworkers["dat.. 더보기