cpp-lib-and-dll-on-visual-studio (2/2)previous post coverswhat LIB and DLL files arehow to make LIB fileshow to use LIB filesthis post covershow to make DLL fileshow to use DLL filesdifference between LIB and DLLenvironmentWindows 10 / HomeVisual Studio 2017 / Communitymake-dllopen Visual Studio and make an empty solutionadd a new project by selecting Windows Desktop Wizardselect Dynamic Link Li..
cpp-lib-and-dll-on-visual-studio (1/2)this post coverswhat LIB and DLL files arehow to make LIB fileshow to use LIB filesnext post covershow to make DLL fileshow to use DLL filesdifference between LIB and DLLenvironmentWindows 10 / HomeVisual Studio 2017 / Communityoverview recap on c/cpp compilationwhen you compile a c/cpp code, the process above will be donewe call the time during the process;..
shared-folder-in-windows-subsystem-for-linuxthis post covers how to share a folder(including files) in WSLenvironmentWindows 10 / HomeWSL / Ubuntu 18.04 LTSVisual Studio Codepre-taskinstall WSL in your Windows 10open the Microsoft Storesearch for Ubuntuclick Ubuntu 18.04 LTSget and install itprepare the environmentinitialize your WSLmake-link make a folder in some directory on Windowsex) D:\Code..
unity-debug-with-visual-studiothis post covers how to debug with Visual Studio in UnityenvironmentWindows / 10Unity / 2018.3.0f2Visual Studio / 2015 ProfessionalGame Project / 2D UFO Tutorialpre-task double click any CSharp script in the project on Unity editorthen, Visual Studio with the project gonna be opennow, you have Unity editor and Visual Studio openstart-debugthere are two ways to start..
get-profile-picture-on-slackthis post covers how to get profile picture on slackenvironmentWindows 10ChromeStep #1visit your workspace on Chrome and sign inStep #2make DM with someone you wanna get his/her profile pictureStep #3 click small profile picture or nameclick the picture on pop-up menuStep #4 right click the profile picture and select Inspectcopy the url which ends with -512 in Styles ..
git-flow-practicegit-flow 를 실제로 적용하는 과정을 예제로 정리하는 글입니다이 글에서 다루는 git-flow 는 다음의 브랜치들을 사용합니다masterdevelopfeaturerelease사용한 환경Windows 10git bash사용한 저장소 주소https://github.com/BaeMinCheon/test-git-flowStep #1저장소를 준비합니다방법 #1시스템 내에서 로컬 저장소를 만들기ex) 로컬 저장소로 만들 디렉터리 내에서 git init 방법 #2github 또는 gitlab 등의 호스팅 서비스에서 원격 저장소를 생성한 뒤 시스템으로 가져옵니다ex) 원격 저장소를 원하는 디렉터리로 git clone준비된 저장소는 비어있다고 간주합니다.git 폴더만 존재하는 상태임을..
CSharp Just-In-Time Compilation ProcessCSharp JIT 컴파일과정을 정리하는 글입니다아래의 자료들을 참고했습니다https://www.c-sharpcorner.com/UploadFile/8911c4/code-execution-process/https://codeasy.net/lesson/c_sharp_compilation_processhttps://youtu.be/6oYcZ-D8Fyw Step #1CSharp 으로 소스코드를 작성하여 파일로 저장한다ex) some-application.csSource Code Step #2CSharp 컴파일러로 컴파일을 수행한다ex) prompt> csc some-application.cs.dll 또는 .exe 파일이 생성된다컴파일되는 프..
001_communication_between_applications communication-between-applicationsoverview프로그래밍을 하다 보면, 독립적인 프로그램간의 데이터 공유가 필요한 때가 종종 있습니다동일한 프로그래밍 언어로 작성된 프로그램들이라면, 통합하여 하나의 프로그램으로 실행할 수는 있을 겁니다하지만, 서로 다른 프로그래밍 언어로 작성된 프로그램이라면, 통합하는 일이 매우 어려워 다른 방법을 사용하곤 합니다프로그램간 데이터 공유를 위해 크게 2가지 방법을 사용합니다파일 : 동일한 파일에 공유할 데이터를 쓰고 읽습니다네트워크 : 공유할 데이터를 소켓으로 주고 받습니다본 포스팅에서는 네트워크를 사용한 프로그램간 데이터 공유에 대해 알아봅니다contents1 : 1 동기화..
Introduction to A.I. (5/5)인공지능을 공부할 때 알아두면 좋을 기초적인 내용을 정리한 자료입니다정확히는 딥러닝을 기반으로 하는 인공지능 에 대해서입니다추후 시간이 된다면 동영상으로도 제작해볼 생각입니다포스팅마다 50개까지의 이미지만 업로드할 수 있어, 이왕 나누는 김에 5부작으로 나누었습니다(1/5) ... (5/5) 로 구분됩니다(5/5) 5장 Conclusion 에서는 지금까지 봐온 내용들을 요약합니다이전까지 알아보았던 내용들의 의미를 되새겨보도록 합니다 딥러닝이란 결국 크게 두 가지 작업을 하는 것을 말합니다행렬 연산 수행행렬 원소 보정(위의 내용을) 넓은 시각으로 본다면전자의 과정을 Forward Propagation 이라 합니다현재 입력에 대한 해당 인공신경망의 출력을 구하는..
Introduction to A.I. (4/5)인공지능을 공부할 때 알아두면 좋을 기초적인 내용을 정리한 자료입니다정확히는 딥러닝을 기반으로 하는 인공지능 에 대해서입니다추후 시간이 된다면 동영상으로도 제작해볼 생각입니다포스팅마다 50개까지의 이미지만 업로드할 수 있어, 이왕 나누는 김에 5부작으로 나누었습니다(1/5) ... (5/5) 로 구분됩니다(4/5) 4장 Layer 에서는 퍼셉트론의 묶음인 레이어에 대해 알아봅니다이번 장의 내용은 이전 내용들과 대부분 독립적입니다따라서 이전 내용들을 소화하지 못했다 하더라도 이해할 수 있습니다 레이어는 인공신경망의 각 단계를 의미합니다그 단계들은 연산 단위로 나뉩니다즉, 레이어를 지날 때마다 연산이 수행되는 것입니다일반적으로 인공신경망은 입력레이어로 시작해 출..
- Total
- Today
- Yesterday
- visualstudio
- pclaf
- Docker
- Slack
- Game
- C/C++
- cuDNN
- WindowAPI
- CAFFE
- Hashtable
- NOX
- tensorflow
- windows
- Python
- JIT
- unity
- lib
- shader
- csharp
- CUDA
- unreal
- A.I.
- vscode
- ATOM
- dll
- DirectX
- git
- Anaconda
- visual-studio
- PopeTV
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |