본문 바로가기

관리

팀에 있으면 이기는 사람 농구나 축구를 하다 보면 크게 화려한 플레이를 하지도 않지만 그가 팀에 있으면 꼭 경기에 이기게 되는 사람이 있다. 이는 비단 동네 리그가 아니라 프로리그에서도 해당하는 이야기.이 기사를 보고 난 다음, NBA의 셰인 베티에를 완전히 다른 앵글에서 다시 보게 되었다. 농구팬이 아니더라도 꼭 읽어보기를 권하는 글. 야구에서도 머니볼이라는 영화가 이런 비슷한 주제를 다룬바 있다. 조직에서도 함께 일하다보면 이런 사람들이 있다. 다른사람 하는 일에 대해서 뭐라고 말하거나 자기 일을 포장해서 부풀리기 전에 일단 자기 일부터 누가 보든 보지않든 말끔히 해내는 사람. 이를테면 개발을 할때도 혹시나 있을 소위 "빵꾸"에 대비해서 확실히 맺음을 해놓아서 결국 큰 사고없이 지나가게끔 하는 사람. 그런 사람들은 화려하게 .. 더보기
[C#] Dictionary (Map) 예제 using System;using System.Collections.Generic;using System.Linq;using System.Text; namespace DictionaryExample{ class Program { static void Main(string[] args) { Dictionary d = new Dictionary(); d.Add("cat", 2); d.Add("dog", 1); d.Add("llama", 0); d.Add("iguana", -1); Console.WriteLine(d.Count); Console.WriteLine(d["cat"]); foreach (KeyValuePair kvp in d) { Console.WriteLine("Key: " + kvp.Key); .. 더보기
[Tomcat] server.xml 의 reloadable 속성 reloadableSet to true if you want Catalina to monitor classes in /WEB-INF/classes/ and /WEB-INF/lib for changes, and automatically reload the web application if a change is detected. This feature is very useful during application development, but it requires significant runtime overhead and is not recommended for use on deployed production applications. That's why the default setting for this at.. 더보기