본문 바로가기

전체 글42

Miniflux - Self-hosted RSS Reader 개인적으로 RSS 피드를 뭉쳐서 보려고 찾아본 것 https://miniflux.app/index.html Miniflux - Minimalist and Opinionated Feed Reader Miniflux Miniflux is a minimalist and opinionated feed reader. miniflux.app 2022. 7. 2.
[ML.NET] CLI 설치하고 감정 분석 튜토리얼 따라하기 이번에는 마이크로소프트 ML.NET을 사용해보고자 공식 문서에 있는 튜토리얼을 따라해보고자 한다. 참고로 나는 인공지능, 머신러닝에 대해 아무것도 모른다... 사전 요구사항 1. dotNET 6 SDK https://dotnet.microsoft.com/en-us/download/dotnet/6.0 2. Visual Studio 2022 이상 CLI를 사용할 것이기 때문에 Visual Studio는 설치하지 않을 것이다. .NET 6 SDK를 설치했다면 아래 명령을 입력해본다. dotnet --info 잘 설치되어있다면 아래와 같이 나올 것이다. .NET SDK(global.json 반영): Version: 6.0.201 Commit: ef40e6aa06 런타임 환경: OS Name: Windows OS.. 2022. 6. 14.
Google Code Jam 2022 Qualification Round 결과 올해도 어김없이 Google Code Jam(구글 코드잼) 2022에 참여하였다! 예선전이 이루어졌고 30점을 넘었기에 Round 1로 진출할 수 있게되었다. 1번부터 3번까지는 쉬웠지만, 4번이 어떤 알고리즘이 요구되는지 파악하는데 시간이 꽤나 소요된 듯 싶다. 이번 Code Jam 2022 QR을 진행하며 제출한 코드는 아래에서 확인해볼 수 있다. (4번문제에서 엄청난 시도를....) https://codingcompetitions.withgoogle.com/codejam/submissions/0000000000876ff1/000000000053873c Code Jam - Google’s Coding Competitions Put your coding skills to the test as you w.. 2022. 4. 4.
[React] Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: object. React를 하다 이런 에러가 발생했다. 원인은 컴포넌트 중 어떤 것은 ESM 문법을, 어떤 것은 CJS 문법을 사용해서 그랬다. // ESM(ECMAScript Module) import X from "x"; // CJS(CommonJS) const X = require("x"); 모든 컴포넌트를 ESM 또는 CJS 문법으로 통일하여 해결하였다. 2022. 3. 18.
npm으로 code-server 설치 웹 환경에서 VS Code를 사용할 수 있는 code-server를 설치하는 스크립트를 정리하였다. 환경: 장치: 라즈베리파이(Raspberry Pi) / Model 3B OS: Raspberry Pi OS (64 bit) Lite / Debian 계열 [1] 개발환경 설치 ## 루트 권한이 필요하므로 앞에 sudo를 붙이거나, 루트로 전환 후에 입력한다. apt update apt install build-essential pkg-config python3 gcc g++ make libx11-dev libxkbfile-dev libsecret-1-dev python-is-python3 [2] Node.JS 설치 ## !!모든 명령어에 sudo가 붙어있으므로 주의!! ## code-server는 Node.. 2022. 2. 12.
프론트앤드 컴포넌트 라이브러리 프론트앤드 컴포넌트 라이브러리 https://getbootstrap.com/ Bootstrap The most popular HTML, CSS, and JS library in the world. getbootstrap.com https://github.com/mui-org/material-ui GitHub - mui-org/material-ui: MUI (formerly Material-UI) is the React UI library you always wanted. Follow your own design syste MUI (formerly Material-UI) is the React UI library you always wanted. Follow your own design system, or.. 2022. 2. 2.