Remove Smart Quotes in WP

Posted October 9th, 2009 in blog by admin

I don’t want to use smart quotes in my wordpress blog because most of the people can’t copy easily. In HTML code and XML code are changed and people need to replace a text again. So, I decided to disable smart quotes in my wordpress blog. I use wordpress blog in www.saturngod.net. My english blog is using habari.

 

Ok.. Go to your Admin Panel > Apperance > Editor and then click the function.php from the right sidebar. Add follwoing two line below of the <? .

remove_filter(‘the_content’, ‘wptexturize’);
remove_filter(‘comment_text’, ‘wptexturize’);

 

It work in my blog and I can disable smart qutoes in this way.

 

Cheer!!!

Scrum in 10 minute

Posted October 9th, 2009 in blog by admin

Nice Video for to learn SCRUM

Github Note

Posted October 9th, 2009 in blog by admin

I copy from www.github.com. I always forget step by step using method in github. So, I need to note in my blog.

Global setup:

Download and install Git
git config –global user.name “Your Name”

git config –global user.email “Your Email”

Next steps:

mkdir projectdir

cd projectdir
git init

touch README Making File
git add README Adding File
git add .
Add All File
git commit -m ‘first commit’

git remote add origin git@github.com:username/projectname.git

git push origin master

 

Is a information message. No Need to type.

Existing Git Repo?

cd existing_git_repo

git remote add origin git@github.com:username/projectname.git
git push origin master

run_xampp.bat

Posted October 8th, 2009 in blog by admin

I am making new run_xampp.bat. The new code can be stop MSSQL server and IIS also. Sometime, we can’t run apaceh because of MSSQL service. So, we need to stop it or we need to change apaceh port. I choice to stop MSSQL service because I just use MySQL. Ok… This is my new code

iisreset.exe/stop
net stop IISADMIN
net stop MSSQLSERVER
net stop MSSQLServerOLAPService
net stop MsDtsServer100
net stop SQLWriter
net stop ReportServer
C:\xampp\xampp_start.exe

Waterfall VS Agile

Posted October 7th, 2009 in blog by admin

Page 1 of 3123