Help Any web developers?

Started by gavin, Feb 2, 2016, in Creative Add to Reading List

  1. gavin
    Posts: 3,727
    Likes: 7,669
    Joined: Nov 4, 2015

    gavin albumdabster.com

    Feb 2, 2016
    I am fluent in PHP, Javascript, HTML, CSS and C++ anybody interested in tips or anything hit me up..
    Might drop some s--- to automate websites in this thread if it picks up some buzz... I know everybody trying to have a blog and not have to work to populate it.

    Current Project.
    How ever long this thread lives for, I will take request on what you guys think I should add to this project, consider it a community project if you guys chip in that's even better.

    - Goal of the website is simple, I want to create an empire for new released music without any intrusive popup ads with simple options to stream and directly download audio if enabled.

    Any website you think we should grab audio from I can code easy we currently automate our website from 7 sources I will include the names a bit later. Throughout the entire project and your guys request I will be sharing the source codes WITH you guys so you can further more learn about what you're asking to be done.

    I have some free time these upcoming months and I think this could be a fun little project.
     
    Last edited: Feb 2, 2016
    #1
    1
    Mike Tyson likes this.
    1
    Mike Tyson likes this.
    Apr 19, 2024
  2. Connor
    Posts: 769
    Likes: 737
    Joined: Dec 2, 2014
    Location: UK

    Feb 2, 2016
    I may need some help with a class I'm doing if you'd be willing to help, web design is something I've never really done and didn't expect it to be on my course
     
    #2
    0 0
    Apr 19, 2024
  3. gavin
    Posts: 3,727
    Likes: 7,669
    Joined: Nov 4, 2015

    gavin albumdabster.com

    Feb 2, 2016
    Current Project.
    - automated music blog for Leaks, Releases and Exclusives.
    Manual adds on Exclusives only it scrapes currently 7 websites and many more being added each day.
    Current feature being worked on.
    View tracker to check the popularity.

    Currently complete.
    <?php $count = get_tptn_post_count_only($POST_ID);
    $rating_class = 'hot';
    if( $count >= 0 && $count <= 1000 )
    {
    $rating_class = 'hot';
    }
    elseif( $count > 1000 && $count <= 2500 )
    {
    $rating_class = 'hot1';
    }
    elseif( $count > 2500 && $count <= 5000 )
    {
    $rating_class = 'hot2';
    }
    elseif( $count > 5000 )
    {
    $rating_class = 'hot3';
    }
    ?>
    View Tracker Backbone.
     
    #3
    0 0
    Apr 19, 2024
  4. gavin
    Posts: 3,727
    Likes: 7,669
    Joined: Nov 4, 2015

    gavin albumdabster.com

    Feb 2, 2016
    I might be open to help for sure.
     
    #4
    0 0
    Apr 19, 2024
  5. Connor
    Posts: 769
    Likes: 737
    Joined: Dec 2, 2014
    Location: UK

    Feb 2, 2016
    Thanks man, I'll pm you
     
    #5
    0 0
    Apr 19, 2024
  6. gavin
    Posts: 3,727
    Likes: 7,669
    Joined: Nov 4, 2015

    gavin albumdabster.com

    Feb 2, 2016
    Sure thing.

    I think future code updates will be through a third party website such as JSFiddle or something so you guys can read proper formatting ect ect right now it looks kinda messy without code support enabled on S80.
     
    #6
    0 0
    Apr 19, 2024
  7. gavin
    Posts: 3,727
    Likes: 7,669
    Joined: Nov 4, 2015

    gavin albumdabster.com

    Feb 2, 2016
    qweqe.JPG

    Seems like we have it working with a different method.. So it seems this plugin does work for the method we're going for which is just track the views and give us a way to check if the views are higher then x amount.
    From the index we see that all post are less than 1,000 so it's displaying our first image.

    You can see the fiddle we're using for our current WordPress loop here.
    http://codepad.org/NqEOTAFB
     
    #7
    0 0
    Apr 19, 2024