스타크래프트 개인 넥서스 부수기 다운로드(개넥뿌 Exi 0.10v)

썸네일

일명 개넥뿌라고 불리는 개인 넥서스 부수기 유즈맵입니다.(Exi님 제작 및 업데이트) 팀전으로 플레이하던 넥서스 부수기 맵들과는 달리 육각형 모양의 맵에서 개인전으로 진행됩니다.(최대 8명) 배틀로얄 방식으로 마지막에 살아남는 1인이 승리하는 방식입니다. 상대의 넥서스를 부숴서 탈락시킬 수 있고, 반대로 자신의 넥서스가 파괴되면 게임에서 패배합니다. 개인전이기 때문에 자신이 못해서 팀원의 눈치를 볼 필요도 없고, 반대로 1인분을 전혀 못하는 팀원 … Read more

평점

git 기존 저장소 파일 삭제하고 새롭게 git init 생성하기(reinit)

기존 git 저장소가 존재하거나 git clone으로 불러온 프로젝트에서 다시 git init을 하면 Reinitialized existing Git repository in 저장소 파일 위치 와 같은 재초기화 메시지가 뜬다. 하지만 이러한 재초기화가 아니라 다른 레포지토리 저장소로 새롭게 옮기고 싶은 경우엔 어떻게 해야할까? 아쉽게도 git reinit과 같은 명령어는 존재하지 않지만 명령어로 현재 디렉토리의 .git 저장소 폴더를 삭제한 후 새롭게 생성할 … Read more

평점

VSCode “code is already running” 오류

문제 CTRL + ALT + N 또는 오른쪽 클릭 메뉴의 ‘Run Code’ 기능을 통해 코드를 실행해보려는데 가끔 “code is already running” 메세지와 함께 가로막히는 경우가 있다. 이미 Run Code가 실행되고 있어서 안된다는 의미인데, 실제로는 코드가 돌아가는 상황이 아닌데도 위 메세지가 떠서 곤란한 상황. 해결책 CTRL + ALT + M(윈도우 기준) 키를 통해서 코드 종료 기능을 작동시키고 다시 Run … Read more

평점

리액트(react) TypeError: react__WEBPACK_IMPORTED_MODULE_0___default.a.createClass is not a function 에러

TypeError: react__WEBPACK_IMPORTED_MODULE_0___default.a.createClass is not a function 에러가 발생된 자바스크립트 코드: const Panel = React.createClass({ render(){ return <div>{this.props.children}</div> } }); 수정된 코드: var createReactClass = require(‘create-react-class’); const Panel = createReactClass({ render(){ return <div>{this.props.children}</div> } }); 리액트가 처음 배포되었을 때 JavaScript로 클래스를 생성하는 관용적 방법이 없었으므로 자체적으로 리액트에서는 React.createClass 함수를 제공해주었다. 하지만 추후에 ES2015의 일부로 JavaScript 언어에 … Read more

평점

리액트 mui-org/material-ui Module not found: Can’t resolve ‘@material-ui/icons/’ 오류

Failed to compile ./src/component/Main.js Module not found: Can’t resolve ‘@material-ui/icons/PhotoCamera’ in ‘C:\react_study\src\component’ GitHub – mui/material-ui: MUI Core: Ready-to-use foundational React components, free forever. It includes Material UI, which implements Google’s Material Design. MUI Core: Ready-to-use foundational React components, free forever. It includes Material UI, which implements Google’s Material Design. – GitHub – mui/material-ui: MUI Core: … Read more

평점

리액트 PropTypes 인식 불가 에러

static propTypes = { title: React.PropTypes.string // Error! } 위와 같이 리액트 안에서 Prop 타입을 정해주려 하면 아래와 같은 에러가 출력된다. Movie.js:6 Uncaught TypeError: Cannot read property ‘string’ of undefined at Module../src/Movie.js (Movie.js:6) at __webpack_require__ (bootstrap:784) at fn (bootstrap:150) at Module../src/App.js (App.css?4433:45) at __webpack_require__ (bootstrap:784) at fn (bootstrap:150) at Module../src/index.js (index.css?f3f6:45) at __webpack_require__ (bootstrap:784) at … Read more

평점

우분투 vi 편집 저장시 ‘readonly’ option is set 오류

‘readonly’ option is set vi 편집기로 파일을 수정하고 :wq 명령을 통해 저장하려할 때 쓰기 권한이 없어서 나는 오류이다. 해결 방법은 느낌표를 붙여서 :wq! 로 강제 저장하거나 그마저도 안되면 sudo를 통해 관리자 권한으로 다시 열도록 하자. sudo vi 파일명  관리자 권한으로 편집기를 열어서 수정하고 :wq 를 하면 잘 저장된다. 평점

평점