[C#] Finalize vs Dispose http://dotnetmentors.com/c-sharp/implementing-finalize-and-dispose-of-net-framework.aspx 프로그래밍 2019.05.15
[C#] adding descriptions to Enumerations https://www.codeproject.com/Articles/13821/Adding-Descriptions-to-your-Enumerations 프로그래밍 2018.09.17
[C#] async 및 await 을 사용한 비동기 프로그래밍 예제 https://docs.microsoft.com/ko-kr/dotnet/csharp/programming-guide/concepts/async/#BKMK_WhentoUseAsynchrony 프로그래밍 2018.09.17
[C#] Entity framework 1. Entity Framework - http://www.csharpstudy.com/web/article/8-Entity-Framework - https://docs.microsoft.com/ko-kr/aspnet/mvc/overview/older-versions/getting-started-with-ef-5-using-mvc-4/implementing-the-repository-and-unit-of-work-patterns-in-an-asp-net-mvc-application - https://github.com/Microsoft/sql-server-samples 2. GenericRepository<TEntity> - https://www.dotnetc.. 프로그래밍 2018.09.11
[Java] Spring Test Framework Examples Spring Boot Tutorials ========= http://www.javainuse.com/spring/sprboot http://theeye.pe.kr/archives/2014 GitHub ========= https://github.com/LableOrg/java-maven-junit-helloworld https://github.com/rutvikrpatel/springboot-hello-world-jsp https://github.com/spring-projects/spring-framework https://github.com/hamvocke/spring-testing 프로그래밍 2018.08.07
[Node.js] How to make the test case for end-to-end with Protractor on Jasmine? https://www.protractortest.org/#/tutorial 프로그래밍 2018.07.31
[Node.js] How to run Mocha unit test https://buddy.works/guides/how-automate-nodejs-unit-tests-with-mocha-chai http://stackabuse.com/testing-node-js-code-with-mocha-and-chai/ https://heropy.blog/2018/03/16/mocha/ 프로그래밍 2018.07.31
[Node.js] How to copy raw memory to Buffer in node.js? var ref = require('ref'); function callback_on_write(ptr, size) { var buffer = ref.reinterpret(ptr, size); } 프로그래밍 2018.05.02
[Node.js] How to load DLL libraries using pure JavaScript? https://github.com/node-ffi/node-ffi - node-ffi is a Node.js addon for loading and calling dynamic libraries using pure JavaScript. It can be used to create bindings to native libraries without writing any C++ code. https://github.com/node-ffi/node-ffi/tree/master/example (1) 아래 factorial 실행오류 해결방법: - x64 Cross Command Tools 명령 프롬프트에서 x64비.. 프로그래밍 2018.04.24