
trq
Staff Alumni-
Posts
30,999 -
Joined
-
Last visited
-
Days Won
26
Everything posted by trq
-
You cannot send any output to the browser before calling the header() function. The output in question is on line 1 of C:\xampp\htdocs\default.asp.
-
Seriously. This question has been asked a million times. Its personal preference. Download a few and follow along with the "Getting Started" tutorials. You decide.
-
svn is old school. git is the more widely used and feature rich version control system. You can host OSS projects for free on https://github.com. If you have't heard of Github, your really have been living under a rock. As for a http server for testing. Just install one locally.
-
BSD and Linux are two completely different beasts. After working with BSD for the last 2.5 years with my previous employer, Im happy that I'm back in the world of Linux. The only thing BSD had going for it was proper jails, but Linux nails this nowadays with LXC and Docker. As for a distro, If you want stable, Debian is always a nice choice for a server. Ubuntu is a desktop distro IMO. If you like mucking around with stuff, use something like Gentoo/Funtoo or Arch.
-
Hence it is recommended to always use spaces instead of tabs when writing code.
-
Most Linux distros include a directory of ini files used to configure and enable extensions. It's a pain to have apackage manager edit the main php.ini file. If you take a look at the output of phpinfo it will show you where this directory is.
-
Without relevant code we cant really help.
-
You described what your wanting to do, but failed to describe any problem. Do you have a question?
-
The second question in particular assumes you are talking about client side (executed in the browser) javascript. Server side javascript is becoming more and more popular these days and is capable of making use of many different database systems.
-
vim for Windows? Yuk.
-
We do not delete accounts. If you don't want it, don't use it, simple.
-
2 & 3 will never happen using vim's autocompletion. And 1, well, vim gets its context from a few different locations depending on the keystroke you use to start completion. Generally, I only ever use the context of the current buffer. This meens variables will only be completed if they already exist in the current buffer. Not that I use completion often anyway.
-
Not at all. That's why I said I rarely use it.
-
vim's code completion is the best (quickest and most flexible) Ive used, not that I use it often.
-
Silex (http://silex.sensiolabs.org) is an awesome micro-framework built on the shoulders of Symfony (another great though full stack framework).
- 8 replies
-
- 1
-
-
- framework
- micro-framework
-
(and 1 more)
Tagged with:
-
This resonates with me more than anything else. http://blog.sanctum.geek.nz/series/unix-as-ide/
-
My main motivation for working in vim is the fact that we do allot of remote stuff via ssh on client machines at work. So, now I can use the same editor under all circumstances. Even when I work from home, it's so much easier to just connect to the vps, ssh in and open vim in a terminal. I don;t have to worry about the overhead of a Desktop.
-
Have you tried an IDE? I used to think a simple text editor was all I needed too, but then I tried an IDE. The only time I use a regular text editor now is just for real quick edits, or stuff that I don't want to make into a project in my IDE. IDE's tend to get in my way. All I use is vim with a few plugins: https://github.com/tpope/vim-pathogen https://github.com/tpope/vim-fugitive https://github.com/tpope/vim-unimpaired https://github.com/vim-scripts/taglist.vim https://github.com/vim-scripts/sessionman.vim https://github.com/vim-scripts/bufexplorer.zip https://github.com/tpope/vim-surround https://github.com/vim-scripts/FuzzyFinder
-
I'm a massive vim fan so don't really have much of an opinion when it comes to IDE's.
-
That's because MS sux balls.
-
There is no definitive answer, just opinion. Often the one that is well suited to your style of development and specific project requirements will be the best one to use.
-
I used to use dynamically loading js, but it ended up being allot more efficient to put all js into one file and the minify it. Its the actual http requests to multiple files that hurts more than size. Of course it would also depend on what sizes where talking about. Loading a 50k-80k file just to use one function etc etc.