전체 글(100)
-
네이버페이 적용
월10일 test_n.php의 수량부분 누락코드 발견되어서 추가하였습니다. 추가적으로 계속 문의오셔서 해결되는 부분들을 추가로 기재해놓겠습니다 ^^ avada테마 부분은 본아님께 도움을 드리면서 알게된 코드입니다. avada테마 이용하시는분들은저에게 문의하신분께서 avada테마를 사용하셔서 정보를 얻게되었습니다. simple.php에서 상품 가격 가져오는 코드입니다. form_data.PRODUCT_PRICE = $('meta[itemprop="price"]').attr("content"); // 상품가격 cart.php에서 상품 가격 부분을 이렇게 기재하시면 될듯합니다.$temp_product_price = $cart_itme['data']->price; --------------------------..
2018.08.24 -
맥에서 C# 언어로 개발하기
osx - 맥에서 C# 언어로 개발하기dotnet sdk 설치brew cask install dotnet-sdk app 만들기$ dotnet new console -o myApp $ cd myApp 다음과 같은 파일들이 생성된 것을 볼 수 있다.$ tree . ├── Program.cs ├── myApp.csproj └── obj ├── myApp.csproj.nuget.cache ├── myApp.csproj.nuget.g.props ├── myApp.csproj.nuget.g.targets └── project.assets.json 1 directory, 6 files Program.cs 수정using System; namespace myApp { class Program { static void M..
2018.08.24 -
Mac OS X에 Python 개발환경 만들기
평소에 R 만 쓰다보니 점점 지식이 편협해 지는 것 같아 Python을 해보려 마음먹었다.나중에 까먹을 것이 분명하므로 일단 Mac에서 수치계산 및 기계학습을 실행할 수 있는 환경을 구축하는 순서를 정리한다.이하 환경에서 정상 작동확인OS X Yosemite (10.10.4)설치 순서Homebrew 설치Ubuntu의 apt-get과 같이 Mac에서 패키지 관리를 편하게 해주는 Homebrew를 설치$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" Python의 버전 관리 툴 pyenv 설치Python의 버전 2.xx과 3.xx의 사양은 큰 차이가 있다고 하나 자세한 것은 잘 모르므로 인터프리..
2018.08.17 -
앱 패키지 이름 변경
Your app on Android StudioAndroid Studio is the official Integrated Development Environment (IDE) to build Android apps, it's based on IntelliJ IDEA and offers even more features that enhance your productivity when building Android apps.Either you created a new app or are editing an existing one, Android projects have their own package name which is an identifier of such project. It usually is m..
2018.08.08 -
MAC OS에서 MongoDB 설치하기
1. Homebrew 설치ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go/install)"2. Brew를 통한 MongoDB설치하기brew install mongodbMongoDB 환경 셋팅3. 데이터베이스 저장할 폴더 만들기mkdir -p /data/db4. 권한 부여하기chown $USER /data/db5. mongod 활성화하기mongod6. mongo shell 접속하기새로운 터미널을 연다음 mongo shell을 접속한다.mongoReferencehttps://www.mongodb.com/
2018.08.08 -
node @7 -> 8 update
Use Node version manager:For development systems you may test different versions so you may want to switch between versions on demand. This is possible using the nvm version manager. This allows you to try out your code in different versions and find problems.Install it using the script:$ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bashThen you may directly use..
2018.08.08