본문 바로가기

전체 글19

[데이터엔지니어링] 실시간 코인 데이터를 활용한 모의투자 게임 "코인예측왕" 개발 part.1 (코인 데이터 활용, 데이터 파이프라인 설계) 이번 포스팅은 코인 데이터를 활용한 모의투자를 게임으로 제작한 "코인 예측왕"이라는 게임을 개발한 내용으로 작성하겠다.1. 코인 데이터를 활용하게 된 계기일단, 코인 데이터를 활용해서 모의투자 게임을 개발한 계기를 설명해보겠다.처음부터 모의투자 게임을 개발을 생각했던 것은 아니었다. 2024년 9월 비트코인이 7000만원 넘어가고 있을 때 한창 코인이 열풍이라서 코인에 대한 관심이 있었고,한창 데이터 엔지니어링 멘토링을 찾아 다니면서 강연을 듣고 있을 때, 코인 데이터를 활용하여프로젝트를 진행하면 포트폴리오에 도움이 될 거라고 들어서, 코인 데이터를 활용한 프로젝트를 생각하기 시작했다. 처음에는 트레이더하면 떠오르는 다수의 모니터와 그래프들을 보고 미장, 국장, 원자제, 코인 등원하는 데이터를 하나의 모.. 2024. 11. 27.
[Algorithm & English Study] LeetCode.26 Remove Duplicates from Sorted Array English ContentGiven an integer array nums sorted in non-decreasing order, remove the duplicates in-place such that unique element appears only once.The relative order of the elements should be kept the same.Then return the number of unique elements in nums.Consider the number of unique elements of nums to k, to get accepted, you need to do the following things:Change the array nums such that th.. 2024. 11. 24.
[Algorithm & English Study] LeetCode 27. Remove Element English ContentGiven an integer array nums and an integer val, remove all occurrences of val in nums in-place.The order of the elements may be changed. Then return the number of elements in nums which are not equal to val.Consider the number of elements in nums which are not equal to val be k, to get accepted,you need to do the following things:Change the array nums such that the first k element.. 2024. 11. 23.
[알고리즘 & 영어공부]LeetCode 88. Merge Sorted Array English contentYou are given two integer arrays num1 and num2, sorted in non-decreasing order, and two integers m and n, representing the number of elements in num1 and num2 respectively.Merge num1 and num2 into a single array sorted in non-decreasing order.The final sorted array should not be returned by the function, but instead be stored inside the array num1. To accommodate this, num1 has a .. 2024. 11. 21.
[Hadoop] YARN(Yet Another Resource Negotiator) 이번 포스팅은 Hadoop의 YARN에 대해 알아보도록 하겠다.내가 계획한 Hadoop 포스팅은 총 3파트로 MapReduce, HDFS, YARN, 이렇게 구성된다.2024.11.08 - [Hadoop] - [Hadoop] Apache Hadoop - MapReduce [Hadoop] Apache Hadoop - MapReduce글을 작성하기에 앞서..데이터 엔지니어링을 공부하기 시작하면 먼저 Hadoop ecosystem를 접하게 된다.Hadoop ecosystem을 보면 다뤄야할 프레임워크나 스킬들이 너무 많아서, 배우는 데 오래걸리겠다는dont-make-excuses.tistory.com2024.11.15 - [Hadoop] - [Hadoop] Apache Hadoop - HDFS(Hadoop D.. 2024. 11. 19.
[졸업작품] 'OCR & NFC 기반 시각 장애인 사물 인식 보조기기' 제작 2023년 대학교 3학년부터 2024년 4학년까지, 졸업 작품 개발을 팀장으로써 진행했다.이번 포스팅은 '성장기'팀의 1년 동안 생각하고 개발한 졸업작품에 대해 작성하고자 한다. 한 학기 동안 아이디어를 선정하고 담당 교수님과 팀원들이 전부 마음에 든 아이디어를 채택해서 개발을 시작했다.그렇다면, 우리 팀의 아이디어 선정을 어떻게 하게 되었는 지 얘기해보겠다.1. 졸업작품 아이디어 선정 - NFC 스티커와 OCR 기술을 활용우리는 먼저 대주제를 잡고 자료조사를 했다.먼저, 대주제는 홀로 생활하는 장애인의 불편함 개선이라는 주제를 잡고 자료 조사를 하기 시작했다. 사실 누군가를 대상으로 어떤 서비스를 개발할 때는,대상 집단에게 설문조사를 진행하고 설문조사를 바탕으로 개발할 서비스를 정하는 게 일반적이다. .. 2024. 11. 16.