일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
- 설치
- 우분투
- Orange Pi 3B
- Visual Studio Code
- Rails
- 주차장 시스템
- install
- change_column
- 사용중인포트검색
- docket
- 우분투 24
- ubuntu
- mac
- 쿠버네티스
- with_indifferent_access
- Time.znoe.now
- after_update
- 코틀린
- 오랜지파이
- Migrate
- Kotlin
- Ruby on Rails
- RUBY
- Java
- 이것이 자바다
- change_column_null
- MySQL
- 도커
- after_save
- docker
- Today
- Total
목록전체 글 (116)
중고 신입이 개발해보기..
DAO - Data Access Object DTO - Data Transfer Object - https://gmlwjd9405.github.io/2018/12/25/difference-dao-dto-entity.html
첫째.. 사용하지 않은 노트북에 리눅스를 설치해서. 서버를 만들어보자~~~ 우분트는. 최신 버전으로 OS는 여기서 다운로드 https://ubuntu.com/download Get Ubuntu | Download | Ubuntu Download Ubuntu desktop, Ubuntu Server, Ubuntu for Raspberry Pi and IoT devices, Ubuntu Core and all the Ubuntu flavours. Ubuntu is an open-source software platform that runs everywhere from the PC to the server and the cloud. ubuntu.com 윈도우즈 피스에서 USB 설치 파일을 만든다. https:..
https://github.com/derailed/k9s GitHub - derailed/k9s: 🐶 Kubernetes CLI To Manage Your Clusters In Style! 🐶 Kubernetes CLI To Manage Your Clusters In Style! - GitHub - derailed/k9s: 🐶 Kubernetes CLI To Manage Your Clusters In Style! github.com brew install k9s kubectl명령어로 할수 있지만. 터미널 기반 UI툴인 k9s을 이용하면 좀 더 편하게 쿠버네티스 클러스터를 제어할수 있다. 실행 k9s -n -n, --namespace string If present, the namespace scope f..
in_groups_of array를 특정갯수만큼 끊어서 호출하고 싶을때 arr = [ 5 , 6, 7, 8, 9, 10 , 11 , 12, 13, 14] arr.in_groups_of(5) { |ar| p ar } [5, 6, 7, 8, 9] [10, 11, 12, 13, 14] => nil arr.in_groups_of(7) { |ar| p ar } [5, 6, 7, 8, 9, 10, 11] [12, 13, 14, nil, nil, nil, nil] arr.in_groups_of(7, false) { |ar| p ar } [5, 6, 7, 8, 9, 10, 11] [12, 13, 14]
코틀린은 안전성, 간결성, 상호 운융성을 강주하는 다중 패러다임, 다중 플랫폼 프로그래밍 언어다.~~ https://kotlinlang.org/ Kotlin Programming Language kotlinlang.org 현재 코틀린 버전 Latest stable version: 1.7.10 https://kotlinlang.org/docs/home.html Kotlin Docs | Kotlin kotlinlang.org
보호되어 있는 글입니다.

https://www.heroku.com/ Cloud Application Platform | Heroku Heroku is a platform as a service (PaaS) that enables developers to build, run, and operate applications entirely in the cloud. www.heroku.com 해당 사이트가서 회원가입을 한다. https://dashboard.heroku.com/apps Heroku dashboard.heroku.com 새로운 프로젝트를 만든다.. 물론 공짜. 요즘 github에서 한개의 private를 제공하기 때문에.. github를 연동하도록한다. main branch로 푸쉬도면 자동배포가 된다. DB를 신청하지....