Author Archive

Posts by fahmij

Image Resizing With jQuery

November 1st, 2011 No Comments fahmij

I just found a problem when I want to display image in a web page, especially for image with large dimensions, e.g. : 1024 x 768 pixels. I need this image to be automatically scaled to smaller dimensions, e.g. : 400px x 400px.
There are some solutions that I can think of, such as : get the image dimensions (width & height) using Java then pass the values to JSP. But I think it will take..

List of GIT Commands

August 24th, 2011 No Comments fahmij

I had long enough to hear about GIT, but haven’t worked with this tool yet. So I just read a book from NetTuts : Getting Good With GIT (Andrew Burgess), and this post is about list of GIT commands that I’ve found from this book :

git config –global user.name
Set user information

git config –global user.email
Set user information

git init
Create an empty git repository or reinitialize an existing one

git status
Show the working tree status

git add
Told git to track..