1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Best site for programming.

Discussion in 'Programming' started by Ryan_Stevens, Apr 20, 2017.

  1. lyhiz

    lyhiz Member

    Messages:
    10
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    46
    #21
    https://www.codecademy.com/ :)
     
    lyhiz, Oct 20, 2017 IP
  2. trader_josh

    trader_josh Member

    Messages:
    4
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    31
    #22
    https://www.udemy.com for cheap discounted £10 courses that you can binge watch.
    https://www.udacity.com/nanodegree for more expensive, monthly courses, with a tutor and curriculum.
    https://stackoverflow.com/ probably has a lot of answers to problems that you get stuck on.
    https://opentechcalendar.co.uk/ attend some nearby events
     
    trader_josh, Oct 22, 2017 IP
  3. Roger Luis

    Roger Luis Peon

    Messages:
    7
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    1
    #23
    I like tutorialspoint, because their tutorial are clear and easy to understand.
     
    Roger Luis, Nov 1, 2017 IP
  4. David Morrison

    David Morrison Active Member

    Messages:
    230
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    53
    Digital Goods:
    1
    #24
    DevShed is good.
     
    David Morrison, Nov 4, 2017 IP
  5. K Padmapriya

    K Padmapriya Member

    Messages:
    53
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    38
    #25
    There are many best sites for programming.
    They are:
    Hacker News.
    Slash Dot.
    DZone.
     
    K Padmapriya, Nov 6, 2017 IP
  6. mlamarize12

    mlamarize12 Peon

    Messages:
    6
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    1
    #26
    https://www.codecademy.com is how I got started and they do a great job helping you learn through interaction. Making your learning experience more practical which is how you're gonna learn best once you start getting the hang of it.

    For references I highly recommend https://www.w3schools.com because they have easily understood simple explanations for how everything works while programming. They even have great detailed directions for some basic projects you might be interested in.

    Those two sites are the reason why I was able to teach myself programming. They will definitely help you too.
     
    mlamarize12, Nov 27, 2017 IP
  7. Swapw

    Swapw Well-Known Member

    Messages:
    586
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    133
    #27
    w3schools, but better yet just start creating a site from scratch. The best ways to learn is through experience!
     
    Swapw, Dec 6, 2017 IP
  8. chrislim2888

    chrislim2888 Active Member

    Messages:
    46
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    53
    #28
    If you are unsure which programming language to move on, I will recommend you to start exploring the https://www.udemy.com.
     
    chrislim2888, Dec 7, 2017 IP
  9. necko16

    necko16 Greenhorn

    Messages:
    8
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    21
    #29
    hi ,

    Codecademy is good website to teach you to code interactively. There are good helpful interface and well-structured courses.

    you can use motivating on-screen consoleand start tasting the programming right away.
     
    necko16, Dec 8, 2017 IP
  10. Sumit_Singh

    Sumit_Singh Well-Known Member

    Messages:
    716
    Likes Received:
    64
    Best Answers:
    6
    Trophy Points:
    100
    #30
    There are many websites on the web you can learn programming but what programming you want to learn is matter. You can watch online tutorials on Youtube and follow the top blog for programming as well.
     
    Sumit_Singh, Dec 8, 2017 IP
  11. seductiveapps.com

    seductiveapps.com Active Member

    Messages:
    200
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #31
    php.net, w3schools.com, jQuery.com and my http://facebook.com/SeductiveAppsAcademy are all good places to get started.
    you may also need wampserver.com/en or a LAMP software stack to start editing files on your local host.
    be sure to read into apache2 virtualhost syntax for their sites-available folder.
     
    seductiveapps.com, Dec 24, 2017 IP
  12. seductiveapps.com

    seductiveapps.com Active Member

    Messages:
    200
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #32
    apache2 virtual host definition : also applies to wampserver :

    rene@hummingbird:~/data1/htdocs/localhost$ cat /etc/apache2/sites-available/001-localhost.conf
    <VirtualHost *:80>
    # The ServerName directive sets the request scheme, hostname and port that
    # the server uses to identify itself. This is used when creating
    # redirection URLs. In the context of virtual hosts, the ServerName
    # specifies what hostname must appear in the request's Host: header to
    # match this virtual host. For the default virtual host (this file) this
    # value is not decisive as it is used as a last resort host regardless.
    # However, you must set it for any further virtual host explicitly.
    ServerName localhost

    ServerAdmin
    DocumentRoot /home/rene/data1/htdocs/localhost

    # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
    # error, crit, alert, emerg.
    # It is also possible to configure the loglevel for particular
    # modules, e.g.
    #LogLevel info ssl:warn

    ErrorLog ${APACHE_LOG_DIR}/localhost_error.log
    CustomLog ${APACHE_LOG_DIR}/localhost.access.log combined

    # For most configuration files from conf-available/, which are
    # enabled or disabled at a global level, it is possible to
    # include a line for only one particular virtual host. For example the
    # following line enables the CGI configuration for this host only
    # after it has been globally disabled with "a2disconf".
    #Include conf-available/serve-cgi-bin.conf

    <Directory /home/rene/data1/htdocs/localhost>
    Options -Indexes +FollowSymlinks
    AllowOverride All
    Require all granted
    </Directory>
    </VirtualHost>

    # vim: syntax=apache ts=4 sw=4 sts=4 sr noet
     
    seductiveapps.com, Dec 24, 2017 IP
  13. firas_abb

    firas_abb Peon

    Messages:
    25
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    1
    #33
    First of all, you have to choose what do you want to program! like mobile apps, games, web, .... after that, you have to read about the most used programming languages for that purpose, and start getting some lessons on Youtube, Lynda, Udemy, Tuts+, ...
    For example, if you started with Python and you want to develop mobile apps, Python is not useful for that kind, you have to learn Java for Android, Swift or Objective C for iOS, or javascript for both (Hybrid).
    If you have any further questions feel free to ask me.
     
    firas_abb, Jan 19, 2018 IP
  14. worldintercom

    worldintercom Greenhorn

    Messages:
    9
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    13
    #34
    You can find a lot of questions with solution on stackoverflow.
    But firstly you need to decide what do you want to develop, which technologies do you want to use.
    Also youtube has a lot of useful video tutorials for different languages and Frameworks.
     
    worldintercom, Apr 30, 2018 IP
  15. Chester.ben

    Chester.ben Member

    Messages:
    12
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    36
    #35
    udemy(dot)com
     
    Chester.ben, May 14, 2018 IP
  16. YYDevelop

    YYDevelop Member

    Messages:
    32
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    33
    #36
    Hey, from my experience i found it to be easiest to learn programming from online video tutorials.
    You can try the 2 website below and find courses that you might be interested in:
    https://www.lynda.com/
    https://www.udemy.com/
    They are paid website but i think they are worth the price if you will find good course.
     
    YYDevelop, May 29, 2018 IP
    wordslinger likes this.
  17. mmerlinn

    mmerlinn Prominent Member

    Messages:
    3,197
    Likes Received:
    818
    Best Answers:
    7
    Trophy Points:
    320
    #37
    Utterly IMPOSSIBLE!

    There can ONLY EVER be ONE BEST of anything. There can NEVER be TWO BEST sites. There can NEVER be THREE BEST sites. There can NEVER be MORE than ONE BEST site.
     
    mmerlinn, Jun 9, 2018 IP
  18. Cameron Fillers

    Cameron Fillers Member

    Messages:
    33
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    33
    #38
    w3schooles.com is pretty fantastic for allowing you to play around with different languages and "try out" code, as they have numerous languages that allow you to see what the end result should be, and allow you to modify the existing code to see how the results will turn out. It is good for getting you feet wet, and then to more fully explore your options.

    Personally, I would choose a specific language or CMS (content management system) and then lurke in their respective mIRC channel. Being a fly on the wall, and being able to ask questions and get feedback from the community can be immensely helpful in getting new perspectives, as well as assistance in developing.

    I suggest Drupal if you want to become familiar with developing in PHP. Wordpress can be a good moneymaker, as everyone is using it these days, but their code base leaves a lot to be desired.

    But whatever you decide, just start dabbling and trying stuff out. Nothing teaches you quite like trial and error.
     
    Cameron Fillers, Jun 18, 2018 IP
  19. Erdemym

    Erdemym Greenhorn

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    21
    #39
    https://www.udemy.com/ is good choice and you can reach this courses free on https://www.discudemy.com/all or http://www.udemyfreebies.com/ ;)
     
    Erdemym, Jul 25, 2018 IP
  20. fastefund

    fastefund Well-Known Member

    Messages:
    256
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    128
    #40
    You nailed it very squarely. It is better to get a practice engaging site.
     
    fastefund, Sep 13, 2018 IP