Tag : PHP

1 - 6 of 6

Started using Vim

icn_MacVim_128.png

I've never been a fun of Vi/Vim or E-Macs, but I think there's some reason to use and understand the long-run standards, and I need some kind of default editing environment which is OS-independent 'cause I'm a multi-OS user (OS X, Ubuntu, Win XP), so I've just started using Vim.

Since I'm a newbie I'm gonna clip some tips here in this blog.

Current version of my .vimrc

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 
set foldmarker={{{,}}}
set autoindent smartindent
set shiftwidth=4 softtabstop=4
set expandtab
set guifont=DejaVu\\Sans\\Mono:h13
set showtabline=2
//set transparency=5
 
set showmatch
set showcmd
set number
set wrap
set list
set listchars=tab:>.

Editing

Commenting out

PHP5 Tips

I've been working on Loggix_Core reall hard recently and it requires me a lot of time with concentration so I haven't have a time to writing entries here.

I've googling for "PHP_EOL" issue which doesn't work well on SQLite 2, I don't know why, and I happened to find this PHP5 tips in slide share.

It can be viewed in full-screen and very useful.

Webgrind v.1.0 has been released

I didn't notice that webgrind version 1.0 has been released 4 days ago.

Webgrind is pretty cool PHP based application that can profile Xdebug files. You can do the same thing with KcacheGrindIndex, and I've installed it both on OS X and Ubuntu 8.10, but it looks a little bit ugly on OS X, and movement on it is buggy and is not as smooth as it is on Ubuntu Linux platform.

Webgind is, of course, runs on each platforms since it is a PHP application and OS independent, and it gives me a good enough information with a neat presentation interface. I love this app.


Joakim Nygård, one of the developers of Webgrind wrote about optimizing in PHP platform.

This is very very useful info so don't miss it if you are a PHP programmer or are interested in programming.

Tools

Here's another blogging engine written by PHP.


[Updated]: I downloaded it, installed it on my local XAMPP server running on AMD Dual Core / Windows XP machine. It has a installer with navigation so the installation was very very easy as WordPress.

Functions which is need for blogging was perfectly implemented so you don't need any other modules to prepare for blogging.

UI is overall very rich like other CMS tools came up recent years. Some people may like this kind of rich UI.

I won't use this tool because I'm a developer of Loggix but without it it's too rich to customize for me. Too rich to be mine.

Useful PHP info website

This is a very very useful website to learn PHP language.

Above all, I'm interested in these articles:

These are useful information when you create any kind of web application powered by PHP. The tutorial is written for using PDO, so it is really up-to-date example in the latest PHP environment.

Zend Framework PDF

Here's some PDF about using Zend Framework.

PHP in Cocoa