본문 바로가기

분류 전체보기171

미세고 앱 소개글 미세고 (기존 미세먼지와 생활 앱)이구요. 미세고 다운받기 https://play.google.com/store/apps/details?id=com.swconsulting.weatherandair 기존앱을 몇분이 추천해 주셔서 다른 앱과 함께 잘 쓰고 있었는데 오늘 업뎃하라 떠서 보니 이름이 미세고로 바뀌고 예보기능이 강화되었어요. (인공지능 알파고에서 착안하신 듯 해요) 구글베이스 인공지능 라이브러리를 이용 해서 (기존에도 있었지만) 예보기능을 힌층 강화했다고 하네요. 아마 알파고처럼 머신러닝을 통해 계속 예보모델이 업그레이드되는 것 같아요. 정말 수치 최악이었던 오늘 새벽 업뎃하며 오후 내내 예보가 파랑파랑하길래 사실... 안 믿어...했는데 정말 오후 내내 파래져서 정말 놀랐어요. 그 때 체크한 다.. 2018. 6. 9.
LEARN TO CODE WITH 21 OF THE BEST WEB DEVELOPMENT COURSES Udemy Udemy has tons and tons of web development courses and series for you to explore. And on top of that, Udemy runs sales on its courses pretty regularly, meaning you could increase your knowledge for as little a $9.99 - $14.99.Here are some you should definitely consider:Complete Web Development BootcampThe Coding Interview Bootcamp: Algorithms + Data StructuresBuild Responsive Real World We.. 2018. 6. 1.
C# memory cache logic Here is the way that I've done it in the past: private static string _key = "foo"; private static readonly MemoryCache _cache = MemoryCache.Default; //Store Stuff in the cache public static void StoreItemsInCache() { List itemsToAdd = new List(); //Do what you need to do here. Database Interaction, Serialization,etc. var cacheItemPolicy = new CacheItemPolicy() { //Set your Cache expiration. Abso.. 2018. 5. 31.
Write exception log in File. private static void writeExceptionLog(Exception ex) { try { string curPath = System.IO.Path.GetDirectoryName(Assembly.GetEntryAssembly().Location); string filePath = curPath + "\\exceptionLog.log"; using (StreamWriter writer = new StreamWriter(filePath, true)) { writer.WriteLine("Message :" + ex.Message + " " + Environment.NewLine + "StackTrace :" + ex.StackTrace + "" + Environment.NewLine + "Da.. 2018. 5. 29.