티스토리 툴바


여자친구가 소개한 영화 어플 - 너무 유용하고 좋아요.

모든 극장, 모든 영화 정보
영화의 느낌을 한눈에 알려주는
"버즈니 영화 가이드"

버즈니 영화 가이드는 
★ 아이폰, 안드로이드 70만 다운로드 돌파
★ 전세계 검색대회 1위한 특허기술 적용
★ 매일경제 으뜸앱에 선정
★ 영화를 좋아하는 여성팬들에게 인기가 많은 앱 

사용자 목소리
★ 영화 보기 앱 '버즈니', 키워드+소셜 리뷰 종결자 by 이빈나 @ twitter
★ 버즈니 리뷰보는 맛도 있고 예매연결도 해주는것도 괜찬더라고요 ㅋㅋ by jeankim89 @twitter
★ 영화관련 어플로는 모두가 써보시면 단번에 아실수있듯이 '버즈니'가 최고인듯. 사용자들의 오감을만족시키는 어플!! by 9second @twitter

아래는 네이버 "아사모" 카페에 소개된 글입니다.


메인 화면 




 

상영작 버튼을 클릭하면 아래와 같은 화면이 보입니다.



 

"분노의 질주" 영화를 선택

영화의 느낌을 한눈에 알수 있는 태그 클라우드가 뜹니다.

영화의 느낌을 한눈에 알수 있어서 전 개인적으로 맘에 듭니다.



 밑으로 스크롤을 하면 Twitter, Facebook 유저들이 

남긴 생생한 리뷰도 볼수있습니다.

여성 유저가 좀 더 많은것 같아요.
 




극장 탭을 클릭하면, 극장 시간정보도 볼수 있고

하이라이트된 버튼을 클릭하면 예매까지 가능합니다.



 

 

 영화 DB 메뉴에서는 연도별, 장르별, 국가별로 
2000년 이전 영화 까지 볼수 있어서

심심할때 좋은 영화 중에서 내가 못본 영화 없는지 살펴보고

리뷰도 보면서 시간 떼우기 좋은것 같아요.
 
 



 

리뷰 메뉴에서는 사용자들이 올린 리뷰를 실시간으로 볼수 있고

내 Facebook, Twitter로 로그인 하면 내 지인들이

어떤 리뷰를 썼는지도 확인할수 있습니다.

 


 

이상은 "버즈니 영화 가이드"에 대한 간단한 소개이며

영화어플은 이거 하나로 충분한것 같습니다



아이폰 버전 다운로드
 

안드로이드 버전 다운로드

 


 

Trackback 0 Comment 0

media_url을 이용하여 매번 서버에 css를 올릴필요없이 바로 로컬에서 사용하기

http://code.djangoproject.com/wiki/CookBookUsingExternalMedia

To take advantage of the MEDIA_URL in the settings.py file for hosting your static media on a separate server, you need to do a little internal work on your templates and some work to make that setting available to the templates.

Inside a template, where you would normally have:

blah blah <img src="/img/foo.jpg" alt="this is a foo"> blah blah..

You would instead insert {{media_url}} so that it would look like:

blah blah <img src="{{media_url}}/img/foo.jpg" alt="this is a foo"> blah blah..

It generally requires a big search and replace the first time you implement it. After that, seeing other references in the templates has been enough to remind me to use {{media_url}} before any static content.

We could pass {{media_url}} in through each view, but since we'll want it throughout the site, it's often easier to set up a simple context processor to do the heavy lifting.

Here's a example snippet from a context process:

from myproject import constants
from django.conf import settings

def common(request):
ctx = {}
ctx['constants'] = constants
ctx['media_url'] = settings.MEDIA_URL
... more stuff here ...
return ctx

Then in the settings.py under TEMPLATE_CONTEXT_PROCESSORS, we added:

"myproject.context_processors.common",

and from there, the MEDIA_URL in settings.py became available in all templates as {{media_url}}.

Note: There is a default media context processor since revision 5379 and will be included in version 0.97 once it is released. See http://code.djangoproject.com/changeset/5379. You can access using {{ MEDIA_URL }} in your templates.


Trackback 0 Comment 0

Setup script exited with error: command 'gcc' failed with exit status 1

우분투에서 파이썬 라이브러리 설치시 아래와 같은 에러가 뜰때:
 Setup script exited with error: command 'gcc' failed with exit status 1

aptittude install python2.4-dev 를 하면 된다.

http://plone.org/support/forums/setup#nabble-td351958 

Trackback 0 Comment 0
prev 1 2 3 4 5 ... 7 next