Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

Category Uncategorized

Desktop Tower Defense

각 위치에 방어탑을 구축해서 벌레들이 최대한 돌아 지나가도록 만들면서 방어탑을 이용해서 다 때려잡는 게임 정말 잘 만든 플래시 게임으로 하다보면 시간가는 줄 모름. ㅋㅋㅋ 게임하러 가기 :

Get current language in device

[code lang=”java”] // 현재 설정된 언어의 코드를 리턴한다. (예, ko) Locale.getDefault().getDisplayLanguage(); // 현재 설정된 언어의 국가를 리턴한다. (예, KR) Locale.getDefault().getDisplayCountry(); // 현재 설정된 언어를 문자열로 반환한다. (예, ko_KR) Locale.getDefault().toString(); [/code]

How to update timestamp in pivot table in Laravel

When insert a new row to pivot table, we can use attach() method like this: $company = Company::find(1);$company->users()->attach(1); But this will not update created_at and updated_at timestamps column in pivot table. To update timestamps, use withTimestamps() method on the relationship…

Make ‘Sub Main()’ function like C#

비주얼 베이직 닷넷(이하 VB.NET)에는 프로젝트 속성에 이전 VB처럼 응용프로그램 정보를 설정할 수 있는 기능인 ‘응용 프로그램 프레임워크 사용‘ 기능을 가지고 있다. VB.NET 프로젝트를 하나 생성한 후 프로젝트 속성을 살펴보도록 하자. [simage=3440,576,n,center,] ‘응용 프로그램‘ 탭에서 ‘응용 프로그램 프레임워크 사용‘ 체크박스를 찾을…

.NET Assembly 등록하기

.NET Assembly를 운영체제에 등록할때는 regasm 명령어를 사용하면 된다. 😉 등록할 때 windowsmicrosoft.netframeworkv2.0.50727regasm Test1.dll /codebase 제거할 때 windowsmicrosoft.netframeworkv2.0.50727regasm Test1.dll /unregister 이걸 못찾아서 또 몇십분을 헤맸다……. 😥

Separate Datasets from TableAdapters

Orcas Datasets – Separate Datasets from TableAdapters In Visual Studio 2005, we were introduced to the new DataSet Designer, that also generated a TableAdapter for each DataTable in the DataSet.   Along with this great way of creating Data…

StarUML을 이용한 UML정복 – StarUML 이란?

UML툴하면 제일먼저 떠오르는것이 Rational Rose와 Boland Together일 것입니다. 그러나 위의 프로그램들은 고가의 비용을 지불해야 사용가능한 툴입니다. 그래서 유용한 다른 UML프로그램을 찾던 도중 StarUML이라는 프로그램을 알게 되었습니다. 이전에 Agora Plastic 이라는 곳에서 만든 UML개발 툴이 있었습니다. 보니까 이 프로그램이 버전업 되면서…