PHP framework, or hand-made code?

Carson said:
For the record, if anyone uses jQuery, I don't think they should be able to say they don't use a framework. 😛
using a premade and making something in it though are two different things.
 
Stalin said:
I think it is for those that don't have the EXP to create their own framework. Most frameworks need composer to be installed, and there are alot of people that don't have access to server with ssh capabilities.
Creating your own framework won't be necessary in most cases. If an existing framework has things you need for the base, then why not use it? Unless most of your projects will target a specific niche, creating a framework won't be time saving.
And frameworks need composer while developing. If you don't have composer on server, you can manually move dependencies as Carson said.

Stalin said:
Carson said:
For the record, if anyone uses jQuery, I don't think they should be able to say they don't use a framework. 😛
using a premade and making something in it though are two different things.

I'm not sure what you meant by making something in it. jQuery is premade. Yes you can develop jQuery plugins to extend it, but it would be like making something with it and not in it.
 
Stalin said:
Carson said:
For the record, if anyone uses jQuery, I don't think they should be able to say they don't use a framework. 😛
using a premade and making something in it though are two different things.
I don't understand what you mean.
 
Carson said:
Stalin said:
Carson said:
For the record, if anyone uses jQuery, I don't think they should be able to say they don't use a framework. 😛
using a premade and making something in it though are two different things.
I don't understand what you mean.
making plugins or using premade plugins are not the same thing.
 
I cheated and bough Xenforo forum software. I love it and the support has been really great. I had tried using some open source software originally but it was a lot of maintenance and membership started to grow very quickly and complaints about thing breaking were popping up all over. Since I only really run the board as a hobby and have a full time business that I run online I needed something reliable for members and usable for myself so we could all enjoy the forum experience. I love all the great features that xenforo offers and the board has only been live for four days and it's going wonderfully so far. I just worry about things getting stale at some point if I don't work on promoting the site and keep things fresh for current users by adding new features.
 
Pvcomputers said:
I would normaly like to code everything from scratch but I am starting to find it becoming a tedious thing. I am actually created my own web applications framework, because I don't like other frameworks. They seem be more focus on CMS / MVC designs.

Git is so confusing, good luck finding out how to use it rofl
 
Addicted said:
Pvcomputers said:
I would normaly like to code everything from scratch but I am starting to find it becoming a tedious thing. I am actually created my own web applications framework, because I don't like other frameworks. They seem be more focus on CMS / MVC designs.

Git is so confusing, good luck finding out how to use it rofl

Try GitHub for Windows. Its has user friendly GUI.

https://windows.github.com/
 
Addicted said:
Pvcomputers said:
I would normaly like to code everything from scratch but I am starting to find it becoming a tedious thing. I am actually created my own web applications framework, because I don't like other frameworks. They seem be more focus on CMS / MVC designs.

Git is so confusing, good luck finding out how to use it rofl
In terms of just picking up the basics, you can learn git pretty quickly. Note that every contributor on Github uses it and understands it.

Basically knowing:
Code:
git add --all
-- Stages changes for commit
Code:
git commit -m "This is a message"
-- Commits those changes

Is 80% of what you need.
 
Back
Top Bottom