Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Simple Developer
Simple Developer
I'll demonstrate configuration to use my 'formatDate' Vue.js filter in my NuxtJS project.
Every blog website need a pagination feature to display content efficiently. Lets start to add pagination feature to blog.
The rules below are not guidelines or recommendations, but strict rules. Contributions to Android generally will not be accepted if they do not adhere to these rules. Not all existing code follows these rules, but all new code is expected to.…
Class Wizard의 중요한 Tip (
현재 안드로이드 폰에서 와이파이가 연결가능한지, 3G가 연결가능한지 확인하는데 사용 가능한 유틸 클래스 사용하는 방법 와이파이 상태 확인 : ZemnaNetworkInfo.IsWifiAvailable(현재 컨텍스트) 3G 상태 확인 : ZemnaNetworkInfo.Is3GAvailable(현재 컨텍스트) 둘중에 아무거나 연결 가능한지 확인 : ZemnaNetworkInfo.IsAnyAvailable(현재 컨텍스트) Source [code language=”java”] import android.content.Context; import…
Google Chrome에서 Mystique Theme가 적용된 블로그에 접근하면 영문은 출력이 되는데 한글이 전혀 보이지 않는 문제가 있다. 원인은 Mystique Theme의 CSS에서 나열된 폰트중에 “Segoe UI“라는 폰트를 사용하는데 이 폰트가 한글이 지원되지 않아서 발생하는 문제다. 해결하려면 테마의 css 파일을 직접열어서 한글 폰트를…
1. Delete .mo and .po files in /wp-content/languages folder 2. Open wp-config.php file and change define (‘WPLANG’, ‘ko-KR’); to define (‘WPLANG’, ‘ ‘);
If you want to upload your file to cloud and download to your pc and mobile phone, Dropbox is the best choice to do it. Dropbox provides 2GB for free. [notice] Go to website [/notice] I’m using Dropbox service to…
Catalog 출처 : Catalog 는 동적으로 Composable Part 를 찾아 Container 에 등록합니다. Composable Part 는 ExportAttribute 으로 Contract 를 선언할 수 있는데 개별적으로 일일이 Composable Part 를 등록하는 것은 너무나 큰 반복 작업이 될 수 있지만, MEF 의…
If you got bellow error when use memcached in Laravel, please check following steps. exception ‘SymfonyComponentDebugExceptionFatalErrorException’ with message ‘Class ‘Memcached’ not found’ in Install memcached $ sudo apt-get install php5-memcached memcached Enabled php5-memcached sudo php5enmod memcached Restart apache web…
PuTTY is a free implementation of Telnet and SSH(Secure shell) for Windows and Unix platforms, along with an xterm terminal emulator. It is written and maintained primarily by Simon Tatham. You can download PuTTY at following website [notice] [/notice]
이번에 최초로 개발한 안드로이드 폰용 어플 추천앱입니다. 그동안 주위 사람과 스마트폰을 쓰면서 불편했던 점이 ‘내가 어떤 어플 써봤는데, 좋더라~ ‘xxxxx’ 인데 한번 써봐~~’ 라고 얘기해 주면, 그 말을 들은 사람이 직접 마켓으로 들어가서 검색 버튼 눌러서 어플명 치고나서 설치해야 한다는…
개요 BitmapHelper 클래스는 인자로 넘겨받은 비트맵 이미지의 모서리를 둥글게 처리한 비트맵으로 변경하여 리턴하는 클래스이다. 소스 [code lang=”java”] import android.content.Context; import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.Paint; import android.graphics.PorterDuffXfermode; import android.graphics.Rect; import android.graphics.RectF; import android.graphics.Bitmap.Config; import android.graphics.PorterDuff.Mode; public class BitmapHelper { public…
개요 카메라 촬영 액티비티를 호출하고 onActivityResult() 함수를 통해 찍힌 이미지에 접근하는 소스 카메라 호출 소스 [code lang=”java”] Intent i = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); startActivityForResult(i, 1004); [/code] 찍은 이미지 가져오기 소스 [code lang=”java”] protected void onActivityResult(int requestCode, int resultCode, Intent data) {…