목록분류 전체보기 (257)
일상 코딩
#include using namespace std; class Fraction { private: int m_numerator; int m_denominator; public: Fraction(const int& num_in = 1, const int& den_in = 1) // 생성자, 외부 호출 아님. { m_numerator = num_in; m_denominator = den_in; cout
#include #include #include using namespace std; class Date { // 기본이 private으로 설정되어있음. 안적어도 무방함. private: // access specifier int m_month; int m_day; int m_year; public: void setDate(const int& day_input, const int& year_input) { m_day = day_input; m_year = year_input; } void setMonth(const int& month_input) { m_month = month_input; } const int& getDay() // const로 수정을 막아준다. { return m_day; } void..
#include #include #include using namespace std; // Object(객체) - 코드로 구현한 단어를 class라 부른다. // class Friend{ //sturct는 아 코드가 안들감. public: // access specifier (public, private, protected(상속 단원)) string m_name; string m_address; int m_age; double m_height; double m_weight; void print(){ cout
https://sourcefoundry.org/hack/ Hack | A typeface designed for source code A Family of Four Faces Hack includes monospaced regular, bold, italic, and bold italic sets to cover all of your syntax highlighting needs. sourcefoundry.org
https://github.com/mbadolato/iTerm2-Color-Schemes GitHub - mbadolato/iTerm2-Color-Schemes: Over 250 terminal color schemes/themes for iTerm/iTerm2. Includes ports to Terminal, Ko Over 250 terminal color schemes/themes for iTerm/iTerm2. Includes ports to Terminal, Konsole, PuTTY, Xresources, XRDB, Remmina, Termite, XFCE, Tilda, FreeBSD VT, Terminator, Kitty, MobaXterm, LXTer... github.com
https://beomi.github.io/2017/07/07/Beautify-ZSH/ 멋진 Terminal 만들기 - Beomi's Tech blog 2017-07-07 멋진 Terminal 만들기 이번 가이드는 macOS를 위한 가이드입니다. 맥을 개발용으로 사용하는 경우 터미널을 좀 더 편리하고 다양하게 사용하는 방법 중 기본 Shell인 bash대신 zsh을 사용하는 beomi.github.io git clone https://github.com/zsh-users/zsh-syntax-highlighting.git echo "source ${(q-)PWD}/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> ${ZDOTDIR:-$HOME}/.zshrc
https://medium.com/harrythegreat/oh-my-zsh-iterm2%EB%A1%9C-%ED%84%B0%EB%AF%B8%EB%84%90%EC%9D%84-%EB%8D%94-%EA%B0%95%EB%A0%A5%ED%95%98%EA%B2%8C-a105f2c01bec Oh My ZSH+ iTerm2로 터미널을 더 강력하게 ZSH란? medium.com
https://www.dothome.co.kr/index.php 닷홈 | 호스팅은 닷홈 닷홈은 도메인, 무료 웹호스팅, 웹빌더, 메일호스팅, SSL보안인증서, 서버호스팅, 코로케이션 등 다양한 호스팅 서비스를 제공하고 있습니다. www.dothome.co.kr
1. log in page Register With Us username Email Password Confirm Password Submit /** * author : velog.io/@___ * path : ./login.css */ .main_container{ border: 0px solid; } .login_container{ width: 380px; height: 520px; margin: auto; border-radius: 3px; box-shadow: 0px 0px 20px #000; } .form_container{ width: 300px; margin: auto; } .form_title_div{ margin: auto; text-align: center; } .form_title_p..