Skip to content

Instantly share code, notes, and snippets.

View 98yejin's full-sized avatar
📖

Yejin Park 98yejin

📖
View GitHub Profile
🌞 Morning 3 commits ▍░░░░░░░░░░░░░░░░░░░░ 2.1%
🌆 Daytime 54 commits ███████▉░░░░░░░░░░░░░ 37.8%
🌃 Evening 61 commits ████████▉░░░░░░░░░░░░ 42.7%
🌙 Night 25 commits ███▋░░░░░░░░░░░░░░░░░ 17.5%
⭐ Total Stars: 7
➕ Total Commits: 597
🔀 Total PRs: 12
🚩 Total Issues: 5
📦 Contributed to: 3
@98yejin
98yejin / flutterForBeginners.md
Created February 18, 2024 04:18
Flutter for beginners 정리

참고

노마드 코드의 무료 강의 Dart 시작하기를 들으면서 정리한 요약본입니다. 링크에서 강의를 들을 수 있으며, 저작권 상 문제가 있다면 o0o2211915@gmail.com 으로 알려주시면 조치하겠습니다.

Dart

Why Dart?

  • UI 에 최적화된 언어
  • 빠름

Array

1

class Solution {
public:
    int removeDuplicates(vector<int>& nums) {
        nums.erase(unique(nums.begin(), nums.end()), nums.end());
        return nums.size();
    }

도커 명령어

  • 도커허브에서 이미지 검색 docker search 이미지명

  • 이미지 다운로드 docker pull 이미지명:태그

  • 이미지 리스트 확인

@98yejin
98yejin / RHCSA.md
Last active February 18, 2024 04:15

1. 초기 root 설정


grup →  e → rd.break 입력 → ctrl+x 입력

# sysmount 위치에 마운트(read, write 권한)
mount -o remount,rw /sysroot

# chroot: 루트 디렉토리 설정
연도 내용
1996 설계상 결함 발견 → SHA-1 등 대체 알고리즘 사용 권장
2004 암호화 결합 발견
2006 1분 내 해시 충돌 발견 가능한 알고리즘이 발표 → 보안 용도 사용 권장 X
2008 SSL 인증서 변조가 가능
@98yejin
98yejin / tistory-update-date.py
Created May 19, 2021 05:21
티스토리 게시글 업데이트 날짜 확인하기
import scrapy
import re
class TistorySpider(scrapy.Spider):
name = 'tistory_update_dates'
allowed_domains = ['tistory.com']
# for n in range(start-of-page, end-of-page)
start_urls = ['https://hello-i-t.tistory.com/category/Algorithm?page='+str(n) for n in range(1, 8)]
def parse(self, response):