본문 바로가기

분류 전체보기171

부산 및 경상도 미세먼지 나쁜 이유와 미세고 활용 방법 및 죄송합니다. 현재 부산, 울산, 경남 지역 미세먼지가 좋지 않습니다.특히 2018년 7월 13일 이후 부터 나쁨상태 이상을 보이고 있습니다. 그 원인에 대해서 JTBC 에서는 아래와 같다고 하고 있습니다. 선박들에서, 또 공단에서 나오는 오염 물질들이 지형적인 이유로 빠져나가지 못하면서입니다. 연간 2만 3000척에 달하는 부산 입출항 선박의 배기가스는 미세먼지의 주범으로 지목돼 왔지만항만에 설치된 측정장치는 3개에 불과합니다.공단지역의 비양심도 한몫했습니다. 최근 환경부가 부산 사하구의 공단내 사업장 82곳을 단속한 결과 40곳에서 52건의 위반행위가 적발됐습니다.이렇게 배출된 선박과 공단의 오염물질은 바닷바람을 타고 도심으로 들어오다 병풍처럼 둘러싼 산맥에 막혀 정체됩니다.이 때문에 지난해 부산의 연평균 초미세먼.. 2018. 7. 20.
CTO Should be A CTO should be:Setting technical direction: E.g., technical product strategy, product line architecture, key features & specs, … (And working closely with other top management to flesh out overall company strategy & tactics.)Making major technical decisions (with input): Selecting core technologies & components, picking platforms.Setting standards & processes - like coding standards & processes.. 2018. 7. 17.
Apple App development guide Link korean language 1. 애플 개발자 등록하기 http://ithub.tistory.com/94 2. 앱 제출 준비하기 및 등록 방법 http://ithub.tistory.com/95 3. 앱 제출을 위해 Xcode를 이용하여 빌드 등록하기 http://ithub.tistory.com/96 4.애플 개발자 인증서 발급 방법 http://ithub.tistory.com/97 출처: http://ithub.tistory.com/96?category=616260 [Fall in IT.] 2018. 6. 27.
Easily write a whole class instance to XML File and read back in Code snippet to serialize your garage to file could look like:var garage = new theGarage(); // TODO init your garage.. XmlSerializer xs = new XmlSerializer(typeof(theGarage)); TextWriter tw = new StreamWriter(@"c:\temp\garage.xml"); xs.Serialize(tw, garage);And code to load garage from file:using(var sr = new StreamReader(@"c:\temp\garage.xml")) { garage = (theGarage)xs.Deserialize(sr); } SOURCE.. 2018. 6. 25.