Language 132

meta tag

HTML 문서를 보다 보면 다음과 같은 tag가 존재한다 ... DOCTYPE 은 문서 HTML 버전을 나타내는 태그은 html 문서의 시작을 알리는 태그는 문서의 일반적인 정보를 포함하고 있는 태그로 아래와 같은 태그를 포함할 수 있다. , , , , , , ... 그렇다면 위 head에 포함될 수 있는 태그 중 meta tag는 무엇을 하는 태그일까.. w3mschools 에서는 다음과 같이 정의하고 있다. Metadata is data (information) about data.The tag provides metadata about the HTML document. Metadata will not be displayed on the page, but will be machine parsable...

Language/HTML 2015.10.15

Ipython .. python 과 무엇이 다른가.

Ipython 이라는 것을 처음 접했을 때 Python 과 어떤 관계가 있는지 개념이 서지 않았다. OverviewOne of Python’s most useful features is its interactive interpreter. It allows for very fast testing of ideas without the overhead of creating test files as is typical in most programming languages. However, the interpreter supplied with the standard Python distribution is somewhat limited for extended interactive use.[http://ipytho..

Language/Python 2015.09.14

Python Chart, Graph library

Python 으로 chart나 graph를 그리는 방법 Matplotlib (http://matplotlib.org/) 가장 기본적인 char library로 다른 library 들 조차도 이 library와의 비교를 통해 자신들의 library를 소개하고 있다. Plotly (https://plot.ly/python/) Sample들만 보았을 때 다른 라이브러리는 사용해 보고 싶지 않을 정도로 내가 원하는 chart를 그려주고 있다. 페이지를 보다보니 online 기반. sample char - https://plot.ly/pandas/ PyChart (http://home.gna.org/pychart/) 소개 내용만으로 보았을 때 chart 결과물을 png로 남겨주고 있어 zoom in/out 등 원..

Language/Python 2015.09.11

python excel xls xlsx

Python 으로 xls, xlsx file을 수정하는 방법으로 아래의 library 를 사용하는 방법이 있다. 하지만 각각의 장단점 및 제약 사항이 있기 때문에 혼용해서 사용하는 것이 가장 좋은 방법으로 생각된다. pandas를 사용하면 조합하여 사용가능하다 Reading Excel FilesThe read_excel() method can read Excel 2003 (.xls) and Excel 2007 (.xlsx) files using the xlrd Python module. Writing Excel FilesFiles with a .xls extension will be written using xlwt andthose with a .xlsx extension will be written u..

Language/Python 2015.08.09

fill_parent, match_parent and wrap_content

fill_parent, match_parent and wrap_content fill_parent : 부모의 크기를 꽉 채우라는 말이다. 다만 부모의 안쪽 padding(여백)이 설정되어 있을 경우 보기엔 꽉차보이지 않을 수 있다. 이와 같은 이유로 fill_parent 의 명칭이 froyo 부터 match_parent로 변경되었다. fill_parent, match_parent 모두 같은 것..... wrap_content : 부모의 크기에 맞추는 것이 아니라 해당 view에 설정된 값에 맞게 보여준다.

Language/Java 2015.05.23

새로운 apk의 버전 코드(1)가 이미 존재합니다.

새로운 apk의 버전 코드(1)가 이미 존재합니다. 새롭게 업데이트를 좀 해서 apk를 업로드 하려고 하니 "새로운 apk의 버전 코드(1)가 이미 존재합니다." 라는 에러가 발생한다. 이럴 경우는 AndroidManifest.xml 의 상단 부분을 수정하면 된다. http://schemas.android.com/apk/res/android" package="com.calliemason.kidsanimation" android:versionCode="11"

Language/Java 2015.05.23

ListView에서 textSize 변경하기.

인터넷을 찾아 보니 textSize를 변경하기 위해 android:textSize 를 추가 하면 된다고 한다. 하지만 아무리해도 ListView안에 해당 속성을 추가해도 바뀌지 않는 것이 아닌가....! 좀 더 자세히 읽어 보니 ListView 속성이 아니라 TextView 속성이었다. 그렇다면 ListView 속성은 어떻게 변경해야 하는 것인가... res/layout 밑에 list_layout.xml과 같은 xml 파일을 만든 후 아래와 같이 추가한다. http://schemas.android.com/apk/res/android" android:text="@+id/TextView01" android:id="@+id/TextView01" android:layout_height="wrap_content"..

Language/Java 2015.05.23

Java - @ (annotation)

@Override, @SuppressWarnings ...Java 코드를 보다보면 위와 같이 흔히 말하는 골뱅이 @가 붙어있는 문법을 볼 수 있다. C만 사용하던 나에게 대체 의미를 알 수 없는 문법이다. @를 annotation이라고 부르는데 결론적으로 @ (annotation)은 있어도 그만 없어도 그만이다.주석과는 달리 컴파일러가 실행되기 전 실수를 보정해 주는 역할을 하고 있다. 흔히 사용되는 예로는 다음과 같다. @OverrideSuper class의 method를 재정의 한다는 의미이다. 만약 @Override를 선언하고 method를 재정의하였는데 해당 method가 super class에 없다면 에러를 표시한다 @SuppressWarnings일반적으로 경고하는 내용을 경고하지 말도록 지시하..

Language/Java 2015.05.23