DonzBox.com(599)
-
MLTR - Someday
Someday(1995)/ Michael Learns to Rock ① In my search for freedom (자유와 마음의 평화를) And peace of mind (찾아 다니면서) I've left the memories behind (추억들은 뒤로 했어) Wanna start a new life (새로운 삶을 시작하고 싶어) But it seems to be rather absurd (그런데 지금도 늘 당신 생각 하고) When I know the truth (있다는 사실 생각하니) Is that I always think of you (왠지 말도 안되는 짓 같아) ② [Chorus:][후렴:] Someday someway (언젠간 언젠간) Together we will be baby (우리..
2022.05.07 -
GO 언어 문법 (type에 method 추가하기) #3
go version go1.18 windows/amd64 main.go package main import ( "fmt" dict "scraping/typeExample/main/detail" ) func main() { // 이것은 Dictionary에 대한 Constructor가 아님!!!!!! dict := dict.Dictionary{"Donz": "I'm a boy"} dict["hello"] = "I'm find" fmt.Println("Setting :", dict) //-> Setting : map[Donz:I'm a boy hello:I'm find] // Search s, err := dict.Search("Donz") if err != nil { fmt.Println(" Search ..
2022.03.30 -
GO 언어 문법 (struct에 method 추가하기) #2
go version go1.18 windows/amd64 main.go package main import ( "fmt" banking "scraping/structExample/main/detail" ) /* main의 의미 : 컴파일을 위해 필요한 것! 명령어 go run main.go 뜻 1. main package 찾음 2. main function 찾고 실행 */ func main() { // fmt : formattiing 을 위한 패키지, Print의 "P"가 대문자인 이유는 function을 export 하겠다는 의미 fmt.Println("GO 에서 Constructor 와 Method 사용") // [01] GO 에서 Constructor를 만드는 방법 a := banking.NewAc..
2022.03.30 -
GO 언어 문법 (노마드 강의) #1
!!! 이것만 알면 나도 GOPHER !!! 01. 상수 const name string = "a" 변수 var name string = "a" function 내에서는 축약 가능 name := "a" 02. 복수 형태의 return int와 string을 동시에 리턴함 func test (a, b int) (int, string) {...} 03. 무제한 파라미터 test("a", "b", "c", "d", "e"); func test (a ...string) { ... } 04. naked return 리턴값의 변수명을 function선언시에 지정하여 return 시에는 return 문장만 사용함 05. defer function 이 끝나고 난 직후 실행함, 파일을 닫는던지 등에 사용함 06. for..
2022.03.30 -
다고쳐 펠릭스 (Fix-it Felix : arcade game)
https://filehippo.com/download_fixit-felix-jr Disney 作 "주먹왕 랄프" 에 나오는 게임들 중 실제 존재하는 게임들을 다운받을 수 있는 곳을 찾아봄 Download Fix-It Felix Jr. 1 for Windows - Filehippo.com Foxit Reader Foxit Reader is a free and popular PDF editor suitable for individuals, as well as large corporations. It provides users with various tools that make reading, editing, annotating, reviewing, and signi filehippo.com Download..
2022.01.23 -
bash에 대응하는 ksh의 콘솔창에서 탭과 위쪽방향키
1. 나의 콘솔 shell 종류 echo $SHELL 2. ksh shell에서 bash의 TAB키 자동 완성기능 사용하기 Esc + \ Esc + = 3. ksh shell에서 bash 의 위쪽,아래쪽 방향키 Esc + k Esc + j
2020.07.22