Jump to content

spiderwell

Members
  • Posts

    1,008
  • Joined

  • Last visited

Posts posted by spiderwell

  1. I did put this site up for feedback a while ago now, so long it seemed better to starting a new thread, as its progressed a lot since then.

     

    Elemental is a game/procrastination tool where you drag/click elements from the Periodic Table into the 'compounder' and see what you can make.

     

    It was originally born as a jquery showcase, but has evolved awat from that somewhat, since handling quizzes in client side left them vulnerable (you could see the answers using developer tools to see ajax json arrays!!!), so its all been pulled server side. Now its just becoming its own little thing, I do not know what yet!

     

    I have added a fun element where you try and make up words (like BaCoN - Barium Colbolt Nitrogen) also quizzes are finished now, there are leaderboards and achivements (requires registration, feel free to sign up, I won't spam you or hand out emails). Science mode is still limited to my own table of molecules, but there are too many so API to a public resource is the plan. The fun mode words table were generated by a script, and as of such many are unverified, but theres about a dozen I manually added, theres a couple of big cats i added.....

     

    Anyway I am looking for feedback on looks and feel, how does it navigate through a quiz, and other modes, could there be improvements to the UI. Also any ideas of things to do that I havent yet (Daily Word is going to be a bit like Fun mode in reverse, instead of finding a word, you are given it and have a time limit to make it).

    Also let me know if you break it, I need to make sure its robbust too.

     

    Thanks for your time and hope you enjoy it

     

    www.ethickink.co.uk/elemental

  2. whilst reading this, i thought one way to approach it is:when a user logs in, the message system returns all messages since previous login, and this will bypass having to save many messages per user table crap. This does of course rely on your login system recording times/dates for logins

     

    as for ajax jquery, does your login use it? if so, can you not adapt that?

    closing a div wont require ajax, you are just changing its display to none essentially.

  3. odd bug i think:

    if the most recent post is a post that was moved to a different section, it still shows as most recent post in the old section(it was in originally) in the forum home page summary.

     

    not sure how much of a big deal that is really.

  4. Looking good. Only suggestion I have is to add a "New replies to your posts" link to the header again - that was my favorite feature of the old forum.

     

    this too, it was in a very conveniant place, now it isnt, however i wont die from this, so if you do make it like before great, if you dont, great also.

  5. You need to get the information from the ckeditor object and pass it to the textarea, its a odd beast this editor, here's one i used on a site, you should be able to work out what is going on, curator_mission_english is the name of my text area

    function checksubmit()
    {
    if (CKEDITOR.instances.curator_mission_english) 
    {
    	document.getElementById('curator_mission_english').value=CKEDITOR.instances['curator_mission_english'].getData();
    }
    
    if (CKEDITOR.instances.curator_mission_french) 
    {
    	document.getElementById('curator_mission_french').value=CKEDITOR.instances['curator_mission_french'].getData();
    }
    
    }
    

  6. i use codeigniter and implementing my own cms is very easy

     

    my controllers are in an admin folder, and have an index and edit methd , one that lists the table, the other to edit an entry (add goes to edit and uses same form) and each method in the controller has a simple login check to only allow the right users to that section.

     

     

  7. if its missing it should ignore it as it wont be there?? or am I missing something here?

     

    I think you are making this harder for yourself than you need to!!!

     

    a recordset will contain the IDs that you have asked for, and using a while loop it will loop from start to end, whether its 5 records with ID 1 to 5 or 1000 records with ID from 1 to 1000.

    If could even be  a number inbetween , without being incremental all the time due to missing/deleted rows. like ID 50 to 250 but not having 175 to 200

     

    You dont need a usercount, you dont need a max users, unless I have misunderstood greatly what is going on

     

     

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.