블로그
-
JAVASCRIPT 제어문
gt; , < : 크기 비교 - 불리언 : TRUE, FALSE [ IF문 ] if(불리언 데이터 타입){ }else{ } [ 리팩토링 ] 중복되는 것들을 줄여주는 것 1. this 변수 [ 배열 ] var name = [ 현명, 혜정, 서연, 유민, 선민 ] document.write(name[0]); //현명 document.write(name[1]); //
blog.naver.com · 2021.12.18
-
[Batch]| was unexpected at this time batch script
batch 에서 명령 실행 결과를 변수에 담으려면 FOR /F "tokens=* USEBACKQ" %%F IN (`command`) DO (SET var=%%F)ECHO %var%Colored 참조 : https://stackoverflow.com/questions/20841622/error-was-unexpected-at-this-time-batch-script/20841821
blog.naver.com · 2021.06.02
-
Intent
{ super.onCreate(savedInstanceState) setContentView(R.layout.activity_intent) //var btn_change : Button 요청생성 intent.putExtra("NAME", "KANGSUNGSIK") //startActivity(intent) //명시적 인텐트 val intent2 = Intent(this
blog.naver.com · 2021.01.21
-
AddView - 1
container = findViewById(R.id.addView_container) //ADD_VIEW를 넣을 컨테이너 val inflater = LayoutInflater.from(this ) for(i in 0 until carList.size){ var itemView = inflater.inflate(R.layout.item_view, null) //ADD할 뷰
blog.naver.com · 2021.01.23
-
<광물 원석> 자수정 - 멕시코 게레로
자수정 - 멕시코 게레로 Quartz var. Amethyst Ex. Britt Coll. As well, many pockets produced crystals with bad luster, although this is very glassy!
blog.naver.com · 2020.10.25
-
<광물 원석> 자수정 - 미국 조지아
자수정 - 미국 조지아 Quartz var. Amethyst on Quartz matrix Ex. Britt Coll. This example is a showy matrix specimen featuring a handful of very sharp, highly lustrous and INCREDIBLY
blog.naver.com · 2020.10.25
-
<광물 원석> 셉터 자수정 - 한국 언양
셉터 자수정 - 한국 언양 Quartz Var. Amethyst (old classic locale!) Not only is this colorful, but it is a scepter, which was the most desired classic style for the location
blog.naver.com · 2020.10.08
-
each()
예시) var result=""; $("p").each(function(){ result+=$(this).html()+"\n"; }); alert($.trim(result) ==""
blog.naver.com · 2018.10.19
-
VMware 로그 확인
# ESXi - cd /var/log - cd /var/run/log 1) vmkernel.log 2) hostd.log 3) vpxa.log # vCenter C:\ProgramData \VMware\vCenterServer\logs 1) vCenter Service vmware-vpx\vpxd.log Use this to troubleshoot issues with
blog.naver.com · 2018.07.11
-
[JSON]stringify() : browser sends data to Web Server with String
Stringify a JavaScript ObjectImagine we have this object in JavaScript: var obj = { "name":"John", "age ":30, "city":"New York"};Use the JavaScript function JSON.stringify() to convert it into a string. var
blog.naver.com · 2017.10.16
블로그 결과 더보기 →