'WEB-INF'에 해당되는 글 916건

donaricano-btn

Remote config


1. git remote add    

git remote identifier is origin


2. git push


2_1. transmission from master

 -u

local branch's upstream will be set up as a origin(remote)'s master branch

so when you execute a pull command, you can get a master branch on the remote repository


2_2. transmission from others


3. git clone


3_1. To get a remote repository


3_2. remote's branch feature-D How to checkout

- git checkout -b feature-D

(Create a branch's feature-D)

- origin/feature-D

(reference to remote branch's feature-D)


3_3 Commit as a feature_D


3_4 To push to feature-D


3_5. git pull







'CM(ConfigurationManagement) > git' 카테고리의 다른 글

[git] gitignore 설정이 작동안 할 때  (0) 2018.08.01
[git] 3. commit control  (0) 2016.05.09
[git] 2.Create a branch  (0) 2016.05.08
[git]1. Basic information  (0) 2016.05.08
블로그 이미지

리딩리드

,

[Java] Array

Back-End/Java_1 2016. 5. 12. 13:30
donaricano-btn

Array

Array is a group of same kind of variables and can be accessible by a common name


1. How to convert Array to List in java

Utility method Arrays.asList() helps us to convert an Array of objects to List of objects



2. BinarySearch

Arrays.binarySearch() helps us to find an object from an array of objects by using binary search algo


3. Copy array and increase size dynamically

Arrays.copyOf() helps us to create new array with new size and copy old arrays content to the new array at the same time


4. Copy range of elements from an array

Arrays.copyOfRange() helps us to copy range of object from existing array to new array


5. Compare two arrays and confirm they are equal

Arrays.deepEquals() helps us to compare two arrays

Arrays.deepEquals() can compare only object(not int)




6. Fill an Array with default 

Arrays.fill() helps us to fill an empty array with default values


7. Sort an array

Arrays.sort() helps us to sort an array of object


8. Sort an array using comparator

Arrays.sort() helps us to sort an array of objects by passing Comparator object,where Comparator holds the sorting logic



'Back-End > Java_1' 카테고리의 다른 글

[Java] JDK, JRE, and JVM  (0) 2016.06.03
[Java] Exception  (0) 2016.05.18
[Java] Constructor  (0) 2016.05.17
[Java] Enum  (0) 2016.05.13
[Java] Static  (0) 2016.05.11
블로그 이미지

리딩리드

,
donaricano-btn

Screen English

Zach : We are not here for book club

Champ: I know, but why are these books locked?

I mean, who would lock a book?

Maybe there's like a.... key or something

we can unlock it with


Zach : 우린 여기 독서모임 때문에 온게 아니야

Champ: 알아, 하지만 왜 이책들이 잠겨 있는 걸까?

 내 말은, 누가 책에 자물쇠를 채우겠냐는 거야

아마도 책을 열 수 있는 열쇠 같은게 어딘가에 있을거야


우린 여기 독서 모임 때문에 온게 아냐

- We didn't come here because of book club

- Book club is not why we've come


Kiss English

Dialogue 1

A: The Boss said we are closing down

(보스가 우리 문닫을거래)

B: His announcement came as a big shock to me

(그의 발표가 나에게는 커다란 충격으로 다가왔어)


Dialogue 2

A: I like  lots of plot twists

(나는 반전이 많은 구성을 좋아해)

B: The movie ending is a big shock to viewer

(그 영화의 마지막은 관객들에게 충격이였어)


Dialogue 3

A: Congratulation

(축하해)

B: Being pregnant with triplets is a big shock to us

(세 쌍둥이를 가진건 우리에게 충격이야)

'English > GMP.2016' 카테고리의 다른 글

[GMP] I'm so over this  (0) 2016.05.16
[GMP] Nobody ever talks about that  (0) 2016.05.13
[GMP] We'll be out of your hair  (0) 2016.05.12
[GMP] Whatever happened to that guy?  (0) 2016.05.10
[GMP] That's weird  (0) 2016.05.09
블로그 이미지

리딩리드

,
donaricano-btn

Screen English

Hannah : Did you unlock a book?

Zach : Yeah. I did, I'm sorry

It's around somewhere.

I just dropped it

and I will put it back where it belongs

and we'll be out of your hair


Hannah : 너가 책을 열었니?

Zach : 응, 내가 그랬어 미안해

여기 어딘가에 있을거야

단지 책을 떨어뜨렸을 뿐이야

다시 원래 있던 곳으로 갖다놓을게

그리고 네앞에서 사라질게


네 근처엔 얼씬도 하지 않을게

- We'll get out of your way

- We'll let you be


Kiss English

Dialogue 1

A: What's it like?

(그거 어때?)

B: If you don't try, you'll never know how it feels

(만약 니가 시도해보지 않으면, 어떤 느낌인지 절대로 모를걸)


Dialogue 2

A: I don't understand

(이해가 안되)

B: If you don't ask questions, it's hard to learn

(질물은 하지않으면, 배우기가 어렵지)


Dialogue 3

A: I might be pretty late

(나 꽤 늦을지도 몰라)

B: If you don't have time, we can reschedule

(네가 시가이 없으면, 우리 일정을 조정해도 돼)

'English > GMP.2016' 카테고리의 다른 글

[GMP] Nobody ever talks about that  (0) 2016.05.13
[GMP] We are not here for book club  (0) 2016.05.12
[GMP] Whatever happened to that guy?  (0) 2016.05.10
[GMP] That's weird  (0) 2016.05.09
[GMP] We haven't properly met  (0) 2016.05.08
블로그 이미지

리딩리드

,