Go Back   getDare Truth or Dare > Tangents > Lounge

Reply
 
Thread Tools Display Modes
Old 07-06-2019, 01:16 AM   #1
Jaro
A filthy maggot anal whore
 
Jaro's Avatar
 
Join Date: Jun 2016
Location: Netherlands
Posts: 7,473
Blog Entries: 299
Information Seeking kinky web development help

Many of you know and have answered my Ultimate Likes and Limits questionnaire. It's still popular and gets answered a lot. Problem is I need to process the results and while I automated this process a lot, it's still a bit cumbersome. Also sending people an Excel report is a bit old-fashioned.

Therefor I really want to re-create this questionnaire on my own website, pretty much like the bdsm test is laid out. Presenting the questions in the same way as that, using the likert-scale, but then presenting the individual results.

The results are the most tricky part. I want them laid out in a table, with limits in the left-most column and loves in the right-most. I then want all the items color coded based on your experience with them, e.g. blue what you have already done.

Making a custom webpage for this also gives me a lot more flexibility than Google forms does. I have a fair bit of experience in programming, but not so much with web programming. Therefor I am looking for someone to help me out. Someone to team up with to create this, or just someone to point me into the right direction: e.g. what framework I could use. I don't want to re-invent the wheel, so if there's anything already there I could build off of, that would be great.

Thank you in advance for any help you can give!
__________________

Worm owned by
Princess Butterfly


Likes & LimitsToys

Check out my truths and dares here

Jaro is offline   Reply With Quote
Old 07-06-2019, 09:27 AM   #2
Everill
getDare Devil
 
Everill's Avatar
 
Join Date: Nov 2017
Location: Dimension ◐◍⬡, Coordinates: ∛⦜⇗, ∜⍍⇔
Posts: 1,163
Blog Entries: 9
Default

Dreamweaver may be a good option for you as it let's you build a website using the drag and drop method while still allowing you to access the code and work on it more behind the scenes but it depends if you're willing to fork over some money for the site.

I think the results table will alot simpler than you think as you can just have a table already there and just use some javascript to write the results into the table and also colour the different items as it's writing them in.

Are you wanting to do the results processing server side or client side?

Also machine learning even though it would probaly be more work than needed.

Last edited by Everill; 07-06-2019 at 09:31 AM.
Everill is offline   Reply With Quote
Old 07-06-2019, 09:39 AM   #3
LinoySlave
Senior Member
 
LinoySlave's Avatar
 
Join Date: Jan 2019
Location: On my knees, mouth wide open, hands behind head
Posts: 114
Blog Entries: 5
Default

Well a lot of things changed since I proggrammed last time .. a lot of new technologies came out ..
But yah DreamWeaver is a very good option
Plus it sounds like you don't need any back side only client side languages ..
__________________
24/BI/Sissy Slut
Call me Chloe

Happy to be a Slut - Slave - Cumdump - Trash - Fuckdoll - Pet - Whore in this world
xx ** Ask me about my cookies ** xx
LOVES & LIMITS - My Calender - Rules - PM Dares
BDSM Test - PC Control - Sex Map
LinoySlave is offline   Reply With Quote
Old 07-06-2019, 10:08 AM   #4
Jaro
A filthy maggot anal whore
 
Jaro's Avatar
 
Join Date: Jun 2016
Location: Netherlands
Posts: 7,473
Blog Entries: 299
Default

Thanks for the suggestions guys. No, I don't think I need server side and maybe not even a database. I can just process the questions and results in memory and only perhaps store the final generated result page so that people who took it can link back to it?

Yes, the programming challenge is not that hard I think to build from scratch. I was just wondering if there isn't like a Javascript framework with which I can quickly create something like that.
__________________

Worm owned by
Princess Butterfly


Likes & LimitsToys

Check out my truths and dares here

Jaro is offline   Reply With Quote
Old 07-06-2019, 10:17 AM   #5
Everill
getDare Devil
 
Everill's Avatar
 
Join Date: Nov 2017
Location: Dimension ◐◍⬡, Coordinates: ∛⦜⇗, ∜⍍⇔
Posts: 1,163
Blog Entries: 9
Default

I think as long you do the IDs correctly all you're really going to have to do is use something like:
Code:
var str = new String(insert kink);
document.getElementById("recordID").innerHTML = str.fontcolor("blue");
and just repeating for each kink.
I'll see about making a version for you which will work for all the records but this is just an example.

I don't think there's really a framwork for it as it's pretty simple but I'm sure a google search will uncover one.
__________________
Yes, the avatar is me

Master of chaotic energies in atleast 9 of the dimensions

Kinks

Blog O' Rules

Information

Dice Dares

Ultimate kink list

UwU what's this



Last edited by Everill; 07-06-2019 at 10:21 AM.
Everill is offline   Reply With Quote
Old 07-06-2019, 12:43 PM   #6
KittenLicks
getDare's Naughtiest Kitten
 
KittenLicks's Avatar
 
Join Date: Apr 2013
Posts: 2,084
Blog Entries: 19
Default

Hi Jaro!

There's lots of talented web developers on getDare, but if you don't find anyone else, I'd be willing to team up to make this.

Quote:
The results are the most tricky part. I want them laid out in a table, with limits in the left-most column and loves in the right-most. I then want all the items color coded based on your experience with them, e.g. blue what you have already done.
Like Everill said, making a table is a pretty simple task! I think your biggest difficulty is going to be where to host this website, seeing as I'm assuming you don't want to pay for web hosting. If I was doing this, I'd make a static page (no database or serverside stuff) and use Github Pages to host it. It's free and what I use for most of my silly kink websites.

Quote:
Originally Posted by Jaro View Post
Thanks for the suggestions guys. No, I don't think I need server side and maybe not even a database. I can just process the questions and results in memory and only perhaps store the final generated result page so that people who took it can link back to it?
You don't need a database, unless you want to store the answers for statistics reasons. Storing the results page couldn't be done with github pages, but for something this simple I'd use the trick of encoding the result as a string and passing it through in the URL, kind of like I did on the card website for Bloxo: Link! A person's answers could be encoded as a string of letters, and the page would be able to generate a neat little table from them. Presumably it'd be just added to the link instead of pasting it in, but it's a similar concept.

Everill's right again that there really isn't a framework for something like this, but you also don't really need one. If you decide to do it yourself, you'll want to look into CSS to colorize the table, and javascript (or maybe jQuery) to populate it with items.

Quote:
Originally Posted by Everill View Post
I think as long you do the IDs correctly all you're really going to have to do is use something like:
Code:
var str = new String(insert kink);
document.getElementById("recordID").innerHTML = str.fontcolor("blue");
The fontcolor function is kinda deprecated these days! You can just do it with css instead.

Code:
<style>
.like
{
  background:green;
}
</style>
<script>
  document.getElementById('spanking').className = 'like'
</script>
__________________
Trans/Girl/Kitty
Likes/Dislikes/Limits

PM Dares
"Oh god help! Bunny is trapped in KittenLicks signiture 0///0 Save Bunny!!! 9/10"
~ Fieldofbunnies
KittenLicks is offline   Reply With Quote
Reply

Advertisements
Kink Talk


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 06:40 PM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc. - Also check out Kink Talk!reptilelaborer