Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

zemna

zemna

JavaScript Event Calendar – FullCalendar

Website : When it needs Posting schedule for social account need to be managed by staff before posting. Event schedule management for e-Commerce Case Study User can create posting schedule with date, caption, image(s), and video(s) Saved posting schedule…

Increase wordpress performance

configure gzip compression with NGINX Open up the file sudo vi Comment that out gzip options gzip on;gzip_vary on;gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml; Restart NGINX server sudo service nginx restart Configure browser cache Open up the…

IDE에서 자동으로 생성되는 파일들은 도데체 뭔 파일일까?

IDE에서 자동으로 생성되는 파일들은 도데체 뭔 파일일까? Wizard를 사용하여 새로운 Project( MFC Wizard, ActiveX Control Wizard )를 생성하면 새로운 여러 가지 시작 파일이 자동으로 생성된다. 이제부터 Visual C++ project와 관련된 모든 종류의 파일에 대하여 설명하겠다. Project에 삽입되는 실제 파일은 Project의…

Hudson Tutorials – 윈도우에 Hudson 설치하기

Hudson은 간단히 얘기하면 빌드, 배포, 테스트 자동화 시스템이다. 어느 하나의 프로젝트의 소스코드를 업데이트 받아 지정된 시간이 프로젝트를 빌드하여 에러 유무를 출력하고, 각 빌드 별 배포파일 관리 및 테스트 통과 여부를 확인할 수 있는 프로그램이다. 또한, Hudson은 오픈소스로, 기존에 많이 사용하던…

.htaccess 파일을 이용해 특정 IP 접근 차단하기

요즘 댓글, 트랙백 등의 서비스 때문에 서버의 트래픽이 날로 증가하고 있다. 이럴때 맘에 안드는 스팸 IP를 차단하는 방법이 있다. 웹서버의 루트폴더에 .htaccess 파일을 생성한다. 생성된 파일에 아래와 같이 설정하도록 한다. SetEnvIfNoCase remote_addr 94.229.65.* go_out Order allow,deny Allow from all Deny…

How to use Lightbox in Jekyll

Install with bower $ bower install ekko-lightbox –save Basic usage likes bellow, ![Image Title](){: width=”400px” } If you want to give lightbox feature to all images in page, we can it by bellow javascript. first, give anchor to image in…

How to update timestamp in pivot table in Laravel

When insert a new row to pivot table, we can use attach() method like this: $company = Company::find(1);$company->users()->attach(1); But this will not update created_at and updated_at timestamps column in pivot table. To update timestamps, use withTimestamps() method on the relationship…

How to solve SSL error of RubyGems

When you exeucte gem command, you may see SSL error like bellow. SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed This error is produced because of changes in rubygems.org infrastructure. How to solve it? 1. Downlaod update…