검색결과 리스트
전체에 해당되는 글 249건
- 2015.03.07 안드로이드 터미널 명령어
- 2015.02.20 Chrome 리로딩 기능
- 2015.02.20 AppCompat v4 v7 의 의미
- 2015.01.10 자바스크립트 hoisting
- 2015.01.10 CSS float 요소 중앙 정렬 시키기
- 2015.01.09 크기에 따른 가로 스크롤 div 생성
- 2015.01.06 우분투 Ruby on Rails 설치
- 2014.12.26 Git 기초 설정
- 2014.12.25 CSS 삼각형 만들기
- 2014.12.22 Android Studio Migrating Gradle Projects to version 1.0.0
글
안드로이드 터미널 명령어
adb install -l -r app-release.apk -l = forward lock -r = reinstall
- 해당 apk를 재설치 해준다.
'A > Android' 카테고리의 다른 글
proguard 설정 로그 제거 방법 (0) | 2015.04.15 |
---|---|
AppCompat v4 v7 의 의미 (0) | 2015.02.20 |
Android Studio Migrating Gradle Projects to version 1.0.0 (0) | 2014.12.22 |
Android 4.4 kitkat 웹뷰 디버깅 (0) | 2014.11.25 |
EOFException with Spring REST Template | Android (0) | 2014.09.03 |
글
Chrome 리로딩 기능
서버 개발을 하면서 image, css, javascript 소스를 수정하고 변경한걸 보기 위해 크롬을 켜서 보면 바로 적용되지 않는 걸 알 수가 있다.
그 이유는 캐쉬를 쓰고 있기 때문인데, 크롬에 있는 캐쉬를 매번 작업할 때마다 제거하면서 로딩을 다시 하기가 번거로웠다.
하지만 그럴 필요가 없었다. 왜냐하면 크롬 기능 중 캐쉬를 제거하면서 새로고침하는 기능이 따로 있기 때문이다.
다만 f12를 하여 개발자 도구에 들어간 후에 새로고침 버튼을 길게 누르면 해당 화면이 나온다.
참조
http://superuser.com/questions/220179/how-can-i-do-a-cache-refresh-in-google-chrome
http://stackoverflow.com/questions/14969315/whats-the-difference-between-normal-reload-hard-reload-and-empty-cache-a
글
AppCompat v4 v7 의 의미
참조 : http://stackoverflow.com/questions/18271429/difference-between-android-support-v7-appcompat-and-android-support-v4
android-support-v4.jar: Support android.app
classes to assist with development of applications for android API level 4 or later. So that you will able to make your application backword compatible,
android-support-v7.jar It is recently added in latest support library updation. ActionBar to allow implementation of the action bar user interface design pattern back to Android 2.1 (API level 7) and higher. Use of this class requires that you implement your activity by extending the new ActionBarActivity
class.
'A > Android' 카테고리의 다른 글
proguard 설정 로그 제거 방법 (0) | 2015.04.15 |
---|---|
안드로이드 터미널 명령어 (0) | 2015.03.07 |
Android Studio Migrating Gradle Projects to version 1.0.0 (0) | 2014.12.22 |
Android 4.4 kitkat 웹뷰 디버깅 (0) | 2014.11.25 |
EOFException with Spring REST Template | Android (0) | 2014.09.03 |
글
자바스크립트 hoisting
참조 : http://rootbox.co.kr/p/421
'J > Javascript' 카테고리의 다른 글
Javascript 확인, 취소 팝업창 confirm (0) | 2014.06.05 |
---|---|
iframe 안에서 부모에 있는 자바스크립트 function 호출하기 (0) | 2014.03.19 |
location.href 와 location.replace() 차이 (0) | 2014.03.19 |
자바스크립트 최적화 (반복문) (0) | 2014.03.19 |
자바스크립트에서 delete 연산자 (0) | 2014.03.19 |
글
CSS float 요소 중앙 정렬 시키기
참조 : http://rootbox.co.kr/p/268
예)
#test {
float: right;
position: relative;
left: -50%;
}
#test li {
float: left;
position: relative;
left: 50%;
border: 1px solid red;
}
<ul id="test">
<li>아이유</li>
<li>효느님</li>
<li>수지</li>
<li>리지</li>
<li>돼지</li>
</ul>
구경하러가기: http://jsfiddle.net/E2aVK/
'H > Html' 카테고리의 다른 글
푸터 하단 고정 시키기 (0) | 2017.10.15 |
---|---|
IOS Safari minimal-ui 적용기 (0) | 2017.10.15 |
크기에 따른 가로 스크롤 div 생성 (0) | 2015.01.09 |
HTML: How to make a submit button with text + image in it? (0) | 2014.06.23 |
parent.location 해당 a name 으로 이동 (0) | 2014.03.19 |
글
크기에 따른 가로 스크롤 div 생성
horiz라는 스크롤이 생기게 될 div를 설정해주고.
table 태그를 이용해서 그 안에 box 설정 해주면 된다.
Horizon Div
.......
'H > Html' 카테고리의 다른 글
IOS Safari minimal-ui 적용기 (0) | 2017.10.15 |
---|---|
CSS float 요소 중앙 정렬 시키기 (0) | 2015.01.10 |
HTML: How to make a submit button with text + image in it? (0) | 2014.06.23 |
parent.location 해당 a name 으로 이동 (0) | 2014.03.19 |
meta 태그, base 태그, map 태그, fieldset 태그 (0) | 2014.03.18 |
글
우분투 Ruby on Rails 설치
우선 루비 버젼부터 2.0 이상으로 맞추어보자.
http://bigmatch.i-um.net/2013/12/%EB%A9%98%EB%B6%95%EC%97%86%EC%9D%B4-rvm%EA%B3%BC-%EB%A3%A8%EB%B9%84-%EC%84%A4%EC%B9%98%ED%95%98%EA%B8%B0/
대략 이렇다.
rvm을 설치한 후, 그 담에 루비 stable 버젼을 설치하는 방식이다.
단 주의할 점은 apt-get install ruby-rvm 형식으로 설치하는 것이 아니라
https://rvm.io/ 에 있는 가이드 보고 따라 설치하면 된다.
rvm 설치하고 나서 루비를 설치하면 될것이다.
rails 까지 설치를 완료하면 끝.
Requirements installation failed with status: 100. - rvm에서 루비 설치 시 에러
http://stackoverflow.com/questions/20789754/rvm-requirements-error-on-ubuntu-13-10
can't install pg gem - bundle install 시 에러
http://stackoverflow.com/questions/9668753/rails-3-cant-install-pg-gem
레일즈 가이드
http://rubykr.github.io/rails_guides/getting_started.html#Starting-up-the-Web-Server
글
git 파일 다운로드 - http://git-scm.com/
SSH 설정
http://nararacds.tistory.com/45
SSH 설정 시,
ssh-agent -s
ssh-add ./.ssh/id_rsa 부분에서
Could not open a connection to your authentication agent의 오류가 뜰 경우,
eval $(ssh-agent) 이렇게하면 된다.
깃헙 기초 가이드
http://rogerdudler.github.io/git-guide/index.ko.html
만약 기존에 있던 원격 저장소를 복제한 것이 아니라면,
git remote add origin <원격 서버 주소> ( git@github.com:myname/Test.git )
와 같이 하게 되는 데,
잘못 입력하게 되는 경우가 있다.
이때, git push origin master 를 하게 될 경우 Remote가 이미 존재한다는 에러가 뜨게 된다.
따라서 기존 remote 설정을 삭제해야한다.
git remote rm origin 을 하고 다시 git remote add origin <원격 서버 주소>를 제대로 추가해주면 끝.
'G > Git' 카테고리의 다른 글
gitignore 적용이 안될 시 (0) | 2015.03.26 |
---|---|
git 명령어 모음 (0) | 2014.10.25 |
글
CSS 삼각형 만들기
css triangle 이라 구글에 검색하면 잘 나오겠지만 그래도 설명하도록겠다.
#triangle { background: purple; width :150px; height:150PX; border-left: 50px solid yellow ; border-right: 50px solid green; border-bottom: 50px solid red; border-top: 50px solid blue; }
왼쪽, 오른쪽, 아래, 위 경계선을 한눈에 알 수가 있다.
이때 Width, Height 가 없게 될 경우,
이런 모양으로 표시된다.
만일 border-left, right, top부분을 transparent를 하게 될 경우, 빨간색 부분만 남게 되어 삼각형이 만들어지게 된다.
다만 top 부분은 지정을 해주지 않아야 삼각형 위 빈공간을 차지하지 않게 된다.
#triangle {
background: purple;
width :0px;
height:0PX;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 50px solid red;
}
반응형 삼각형을 만들고 싶다 할 경우엔
/*Up pointing*/
.triangle-up {
width: 10%;
height: 0;
padding-left:10%;
padding-bottom: 10%;
overflow: hidden;
}
.triangle-up:after {
content: "";
display: block;
width: 0;
height: 0;
margin-left:-500px;
border-left: 500px solid transparent;
border-right: 500px solid transparent;
border-bottom: 500px solid #4679BD;
}
식으로 하면된다.
참조문서
http://jsfiddle.net/josedvq/3HG6d/
http://stackoverflow.com/questions/7073484/how-does-this-css-triangle-shape-work
'C > CSS' 카테고리의 다른 글
facebook comments 리사이즈 (0) | 2014.08.04 |
---|---|
CSS 기초 공부 (0) | 2014.03.23 |
스크롤 관련 CSS (0) | 2014.03.19 |
CSS zoom 오브젝트를 확대 시켜 주는 속성 (0) | 2014.03.19 |
CSS로 심플라인 테이블 (0) | 2014.03.18 |
글
Android Studio Migrating Gradle Projects to version 1.0.0
Gradle 업뎃하면서 쓰임새의 변화가 어느정도 생겼다.
참고 : http://tools.android.com/tech-docs/new-build-system/migrating-to-1-0-0
There are some additional other properties that were renamed as well, in both build types and product flavors.
ApplicationId in Library Projects
You cannot use applicationId to customize the package of a library project. The package name has to be fixed in library projects (and specified as packageName in the manifest). The Gradle plugin did not enforce this restriction earlier.
Renamed Properties in BuildTypes
runProguard => minifyEnabled
zipAlign => zipAlignEnabled
jniDebugBuild => jniDebuggable
renderscriptDebug => renderscriptDebuggable
Renamed Properties in ProductFlavors
flavorGroups => flavorDimensions
packageName => applicationId
testPackageName => testApplicationId
renderscriptSupportMode => renderscriptSupportModeEnabled
ProductFlavor.renderscriptNdkMode => renderscriptNdkModeEnabled
'A > Android' 카테고리의 다른 글
안드로이드 터미널 명령어 (0) | 2015.03.07 |
---|---|
AppCompat v4 v7 의 의미 (0) | 2015.02.20 |
Android 4.4 kitkat 웹뷰 디버깅 (0) | 2014.11.25 |
EOFException with Spring REST Template | Android (0) | 2014.09.03 |
Manifest merger failed : uses-sdk:minSdkVersion 14 (0) | 2014.08.25 |