Skip to content

telope

A tel(e)- (r)ope that connects the world and me

  • Home
  • About Plenoh
  • telope!?
  • Archives

코딩 연습 웹사이트

Leave a reply
  • 코드업(https://www.codeup.kr)
  • 정올(http://www.jungol.co.kr)
This entry was posted in Programming Challenges on 2023-02-11 by Plenoh.

CSS 스타일링 순서(Styling Order)

Leave a reply
  1. CSS reset
  2. web font subsets
  3. default styles, common, theme
  4. typography
  5. layout, modules, media queries
… Read more “CSS 스타일링 순서(Styling Order)”
This entry was posted in HTML/CSS on 2023-01-21 by Plenoh.

웹 퍼블리싱 프로세스

Leave a reply
  • 설계/가이드 작성
  • 마크업 작성
  • 공통 스타일시트 작성
  • 이미지 슬라이싱
  • 개별적 스타일 입히기
This entry was posted in HTML/CSS on 2023-01-21 by Plenoh.

자바 스터디 노트 #5

Leave a reply

자바 객체지향(OOP) 다시 돌아와서 보기(Revisiting Java OOP)

메서드(Method)

int sellApple(int money) // 사과 구매액이 메소드의
… Read more “자바 스터디 노트 #5”
This entry was posted in Java on 2022-08-30 by Plenoh.

독서(책 읽기) 목록

Leave a reply

‘희망을 한땀 한땀 스스로 만들어 나간다’

  1. 2주에 1권 책 읽기(나를 발전시키는 첫 번째 습관), 윤성화 지음, 더난출판사
  2. 네 꿈에 미쳐라(컴퓨터 의사 안철수),
… Read more “독서(책 읽기) 목록”
This entry was posted in Agenda, General Studies on 2022-07-26 by Plenoh.

Call-by-value vs. call-by-reference

Leave a reply
void swapValues(int *val1, int *val2)
{
    int temp;

    temp = *val1;
    *val1 = *val2;
    *val2 = temp;
}
int 
… Read more “Call-by-value vs. call-by-reference”
This entry was posted in C/C++ on 2022-03-29 by Plenoh.

실행 중인 프로그램의 메모리 공간

Leave a reply

데이터 영역의 경우는 전역 변수나 static 키워드가 붙는 변수가 저장되는 공간이다.

스택 영역의 경우 지역 변수 및 매개 변수가 저장된다.

힙 영역의 경우 동적으로 할당/해제되는 변수가 … Read more “실행 중인 프로그램의 메모리 공간”

This entry was posted in C/C++ on 2022-03-29 by Plenoh.

C/C++에서 키워드 const의 의미 정리

Leave a reply

const int num = 10;

정수형 상수 num을 선언하는 동시에 10으로 초기화한다.
상수(constant)의 뜻을 나 같은 경우 "read-only"(읽기… Read more “C/C++에서 키워드 const의 의미 정리”

This entry was posted in C/C++ on 2022-03-29 by Plenoh.

프로그래밍 도전 #2 – 에라토스테네스의 체

Leave a reply

‘에라토스테네스의 체’에 관한 위키백과 문서를 참고해 소수(prime numbers) 구하기 프로그램을 C로 작성해보았다.

인덱스(index) 값이… Read more “프로그래밍 도전 #2 – 에라토스테네스의 체”

This entry was posted in Programming Challenges on 2022-02-23 by Plenoh.

프로그래밍 도전 #1 – 유클리드 호제법

Leave a reply

‘유클리드 호제법’에 대한 위키백과 문서를 참고하여 두 수 간의 최대공약수(GCD)를 구하는 코드를 작성해보았다.

초등/중등 교육과정에서 배운 방법을 코드로… Read more “프로그래밍 도전 #1 – 유클리드 호제법”

This entry was posted in Programming Challenges on 2022-02-23 by Plenoh.

Post navigation

← Older posts
Newer posts →

Pages

  • About Plenoh
  • Archives
  • telope!?

Technology, information, and Computer Science
My studies and tech documents

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

Categories

  • Agenda (20)
  • General Studies (9)
    • Latin (1)
  • Git/GitHub (2)
  • Personal Essays (12)
  • Programming Challenges (4)
  • Programming Languages (16)
    • C/C++ (3)
    • Java (5)
    • JS (3)
    • PHP (3)
    • Ruby (1)
  • Resources (9)
  • Uncategorized (1)
  • UNIX/Linux (7)
  • VI/VIM (1)
  • Web Development (12)
    • Django Tutorial (2)
    • HTML/CSS (9)

Recent Posts

  • 종이책, 전자책 장단점 정리
  • 소프트웨어를 잘 만드는 사람은…
  • 모던 JavaScript 스터디 노트 #2
  • 모던 JavaScript 스터디 노트 #1
  • 내가 서른에 만난 진리

Archives

Proudly powered by WordPress