Follow us on...
Follow us on Twitter Follow us on Facebook
Register

User Tag List

Page 2 of 2 FirstFirst 12
Results 11 to 19 of 19

Thread: Kitto Demo

  1. #11
    Approved Artist FlyingApe's Avatar
    Join Date
    13 Jun 2012
    Posts
    116
    Threads
    11

    My Social Networking

    Follow FlyingApe On Twitter
    Follow FlyingApe on Tumblr Visit FlyingApe's Vimeo Channel

    My User Ranks


    My Reputation

    Re: Kitto Demo

    @cpvr I'd rather code from scratch. Not sure how good I am at the webserver stuff. I'd like to be able to jump into a website that's basic stuff is setup and try my hand at coding a game to see if I even like it haha

    If you join, say FlyingApe referred you.

    Comic Site:
    Nuns N' Cowboys

  2. #12
    Approved Programmer
    Join Date
    23 Jan 2011
    Posts
    826
    Threads
    40
    Blog Entries
    2

    My User Ranks




    My Reputation

    Re: Kitto Demo

    I'll see if I can get a bit of time this weekend to clean up some of the PHP issues that you get ... but it likely won't be until Monday at the earliest.

    ~judda
    Personal Site, Blog, Development Projects all wrapped up into one convenient location. Click here to begin. I am very straight to the point ... if you don't like it ...just feel free to ignore me.

    Blog :: Development Blog :: Resume




    Virtual Pet News - Aggregator of all pet site News Feeds
    SQL Blog Feed - Aggregator of several SQL blog sites
    PHP Blog Feed - Aggregator of several PHP blog sites

  3. #13
    Approved Programmer
    Join Date
    23 Jan 2011
    Posts
    826
    Threads
    40
    Blog Entries
    2

    My User Ranks




    My Reputation

    Re: Kitto Demo

    Okay ... I lied ... I never got to it today ... spent the entire day just relaxing instead XD

    ~judda
    Personal Site, Blog, Development Projects all wrapped up into one convenient location. Click here to begin. I am very straight to the point ... if you don't like it ...just feel free to ignore me.

    Blog :: Development Blog :: Resume




    Virtual Pet News - Aggregator of all pet site News Feeds
    SQL Blog Feed - Aggregator of several SQL blog sites
    PHP Blog Feed - Aggregator of several PHP blog sites

  4. #14
    Message me for help! :D Gabby's Avatar
    Join Date
    01 Apr 2012
    Location
    With the zeros and ones in New York
    Posts
    4,450
    Threads
    249
    Blog Entries
    5

    My Social Networking


    Visit Gabby's Vimeo Channel

    My User Ranks

    My Reputation

    Re: Kitto Demo

    Is it practical to learn off KittoKittoKitto being it's from 2009?
    @judda @PaulSonny @nobackseat

    __________________________________________________

    Maynard: I think most of us grew up in a pretty sterile environment. A
    lot of that stuff just wasn't around. It's all pretty much peaches and
    cream . . . flowers . . . everything's nice, ignore all the bad stuff.
    And the world's just not like that. And I think that the sooner people
    get to the point where they realize that the ugly stuff is just as
    important as the beautiful stuff - it goes hand in hand, I think that
    we can get on with evolving.
    -
    The Tool Page: Articles


  5. #15
    Member Howey's Avatar
    Join Date
    14 Mar 2011
    Location
    Orlando, FL
    Posts
    161
    Threads
    12

    My User Ranks

    My Reputation

    Re: Kitto Demo

    Depends on what you want to gain from working on a site IMO

  6. #16
    Message me for help! :D Gabby's Avatar
    Join Date
    01 Apr 2012
    Location
    With the zeros and ones in New York
    Posts
    4,450
    Threads
    249
    Blog Entries
    5

    My Social Networking


    Visit Gabby's Vimeo Channel

    My User Ranks

    My Reputation

    Re: Kitto Demo

    Quote Originally Posted by Howey View Post
    Depends on what you want to gain from working on a site IMO
    So what would be the good and the bad?

    __________________________________________________

    Maynard: I think most of us grew up in a pretty sterile environment. A
    lot of that stuff just wasn't around. It's all pretty much peaches and
    cream . . . flowers . . . everything's nice, ignore all the bad stuff.
    And the world's just not like that. And I think that the sooner people
    get to the point where they realize that the ugly stuff is just as
    important as the beautiful stuff - it goes hand in hand, I think that
    we can get on with evolving.
    -
    The Tool Page: Articles


  7. #17
    Member Howey's Avatar
    Join Date
    14 Mar 2011
    Location
    Orlando, FL
    Posts
    161
    Threads
    12

    My User Ranks

    My Reputation

    Re: Kitto Demo

    Quote Originally Posted by Gabby View Post
    So what would be the good and the bad?
    Good:
    - Introduce you to PHP
    - Introduce you to web logic
    - Introduce you to what seems like a very poorly done MVC framework of PHP
    - Get a sample database to see what works and what doesn't.

    Bad:
    - From what I've seen it uses a lot of bad (outdated) practices (including the way it handles data which is pretty scary)
    - It has the possibility of teaching you bad practices when it comes to PHP (honestly though, I think that's part of learning, just have to make sure you look at other ways to code than this)
    - It's built off a poor implemented "MVC" framework, so mixing of logic I can see being problematic. Which when doing any /real/ development could give you a headache.
    Really I just don't trust this setup at all, and if I had free time would setup an instance just to run security scans against.

    Honestly when it comes to people wanting to learn how to make a petsite my suggestion would be:
    1) Start with basic HTML/CSS tutorials.
    2) Get a concept of how PHP works.
    3) Get a concept of how databases work.
    4) Learn how PHP and databases work together (hint: SQL/Queries).
    5) Look at KittoKitto and see what it does (how a page is handled, how data is stored, etc) possibly good to setup an instance while you're learning 1-4 and compare usage.
    6) Look into a community driven framework and start going through their tutorial.
    During this whole process your best bet is to find a good developer community and start putting a site together (trial, error, ask).

    -- your first few attempts are going to be horrid. You'll bang your head against a desk, cry, and throw up (maybe not this intense but you get where I'm going.)

    What I'm trying to get at - is learn Basic PHP & SQL, learn from other projects, use a community driven framework to help with setup/security/personal development, and ask questions.
    The statement of "There are no dumb questions" I assure you really applies when it comes to coding questions.

  8. #18
    Message me for help! :D Gabby's Avatar
    Join Date
    01 Apr 2012
    Location
    With the zeros and ones in New York
    Posts
    4,450
    Threads
    249
    Blog Entries
    5

    My Social Networking


    Visit Gabby's Vimeo Channel

    My User Ranks

    My Reputation

    Re: Kitto Demo

    Quote Originally Posted by Howey View Post
    Good:
    - Introduce you to PHP
    - Introduce you to web logic
    - Introduce you to what seems like a very poorly done MVC framework of PHP
    - Get a sample database to see what works and what doesn't.
    What is a MVC Framework?

    Bad:
    - From what I've seen it uses a lot of bad (outdated) practices (including the way it handles data which is pretty scary)
    Could you give me some examples of what's bad and what's good?

    - It has the possibility of teaching you bad practices when it comes to PHP (honestly though, I think that's part of learning, just have to make sure you look at other ways to code than this)
    - It's built off a poor implemented "MVC" framework, so mixing of logic I can see being problematic. Which when doing any /real/ development could give you a headache.
    Really I just don't trust this setup at all, and if I had free time would setup an instance just to run security scans against.
    What do you mean security scans against? What is wrong with the setup?

    Honestly when it comes to people wanting to learn how to make a petsite my suggestion would be:
    1) Start with basic HTML/CSS tutorials.
    I have eight years of experience in the field of HTML/CSS, I just never moved on.

    2) Get a concept of how PHP works.
    I do, I took a computer programming class in High School which taught me qBasic. Surprisingly, I remember it very well, and it's helped me catch on to the basics of php coding lightning fast.

    3) Get a concept of how databases work.
    4) Learn how PHP and databases work together (hint: SQL/Queries).
    Where do you suggest I start?

    5) Look at KittoKitto and see what it does (how a page is handled, how data is stored, etc) possibly good to setup an instance while you're learning 1-4 and compare usage.
    6) Look into a community driven framework and start going through their tutorial.
    During this whole process your best bet is to find a good developer community and start putting a site together (trial, error, ask).
    Good developer community? How so and could you give me examples by chance?

    -- your first few attempts are going to be horrid. You'll bang your head against a desk, cry, and throw up (maybe not this intense but you get where I'm going.)

    What I'm trying to get at - is learn Basic PHP & SQL, learn from other projects, use a community driven framework to help with setup/security/personal development, and ask questions.
    The statement of "There are no dumb questions" I assure you really applies when it comes to coding questions.
    Thank you sooooo much! I will take your advice and regard it highly.

    __________________________________________________

    Maynard: I think most of us grew up in a pretty sterile environment. A
    lot of that stuff just wasn't around. It's all pretty much peaches and
    cream . . . flowers . . . everything's nice, ignore all the bad stuff.
    And the world's just not like that. And I think that the sooner people
    get to the point where they realize that the ugly stuff is just as
    important as the beautiful stuff - it goes hand in hand, I think that
    we can get on with evolving.
    -
    The Tool Page: Articles


  9. #19
    Member Howey's Avatar
    Join Date
    14 Mar 2011
    Location
    Orlando, FL
    Posts
    161
    Threads
    12

    My User Ranks

    My Reputation

    Re: Kitto Demo

    Quote Originally Posted by Gabby View Post
    What is a MVC Framework?
    http://en.wikipedia.org/wiki/Model%E...0%93controller
    TL;DR Essentially a way to help separate your application into data objects, business logic and view structure.
    Most popular PHP frameworks use this approach although recently people have suggested alternatives (different convo)

    Quote Originally Posted by Gabby View Post
    Could you give me some examples of what's bad and what's good?
    If you're really interested in best practices this new site is amazing http://www.phptherightway.com/
    Also it has a great example on proper database usage direct click

    Quote Originally Posted by Gabby View Post
    What do you mean security scans against? What is wrong with the setup?
    http://en.wikipedia.org/wiki/Web_app...curity_scanner

    Quote Originally Posted by Gabby View Post
    I have eight years of experience in the field of HTML/CSS, I just never moved on.
    Awesome, then move on to the next steps!

    Quote Originally Posted by Gabby View Post
    I do, I took a computer programming class in High School which taught me qBasic. Surprisingly, I remember it very well, and it's helped me catch on to the basics of php coding lightning fast.
    Even better, once you know logic, you know programming. PHP, Ruby, Javascript, Objective-C, etc is really just learning the API, structure of applications, and best practices.

    Quote Originally Posted by Gabby View Post
    Where do you suggest I start?
    Again - http://www.phptherightway.com/

    Quote Originally Posted by Gabby View Post
    Good developer community? How so and could you give me examples by chance?
    http://stackoverflow.com/
    http://www.quora.com/PHP
    http://www.quora.com/MySQL
    http://www.quora.com/SQL
    http://www.reddit.com/r/PHP/
    http://www.reddit.com/r/MYSQL/
    http://www.reddit.com/r/SQL/
    Or here, feel free to ping me with questions and I'll get back to you ASAP

    Quote Originally Posted by Gabby View Post
    Thank you sooooo much! I will take your advice and regard it highly.
    Anytime.
    Last edited by Howey; 07-14-2012 at 06:12 PM. Reason: Ugh keep messing up the tags! /fail

 

 

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •