『 스토리 텔러로서의 켄드릭의 매력을 흠뻑 느낄 수 있는 곡 오바마 전 대통령이 꼽은 2015년 최고의 곡이기도 하다 』 Kendrick Lamar (Feat. james Fauntleroy & Ronald Isley) – How Much a Dollar Cost? “달러의 값어치는?” [Verse 1: Kendrick Lamar]How much a dollar really cost?달러의 진짜 값어치는 얼마일까? The question is detrimental, paralyzin' my thoughts이건 해로운 질문이야, 나의 정신을 마비시키지 Parasites in my stomach keep me with a gut feeling, y'all내 배 속의 기생충은 계속 그곳에서 요동치지 Gotta..
생활코딩 echo C 언어의 printf 처럼 문자열을 출력하는 역할 +서로 다른 문자열(또는 문자열과 변수)를 연결할 필요가 있는 경우연산자 .을 이용하여 결합 php 변수 자료형 정수형/실수형/문자열/불리언/배열/객체/NULL/resource - 외부자원(특히 DB연결) php 에서 변수는 '$'로 시작한다따로 자료형을 선언할 필요는 없으며 그냥 변수를선언하거나 선언과 동시에 초기화 해주면 알아서적절한 자료형이 결정된다 1. php 는 형 강도가 매우 약한 언어이다2. 형 변환은 C 언어 처럼 $a=(double)$b; 와 같은 형태로 사용한다3. 가변 변수 : 변수의 이름을 새로운 변수에 저장할 수 있으며 $$을 통해서그값에 접근, 제어할 수 있다 php 배열 php는 배열의 크기가 동적으로 늘어나..
Android Developer notifyDataSetChangedadded in API level 1void notifyDataSetChanged ()Notifies the attached observers that the underlying data has been changed and any View reflecting the data set should refresh itself. Adapter Android APIs' Reference에 따르면'Adapter' 자체는 하나의 Object로서, 보여지는 View와 그 View에 올릴Data를 연결하는 일종의 Bridge라고 한다 +내가 이해하기론list.setAdatper(adapter);를 통해 Activity와 Adapter를 연결해 주기 때..