Jump to content
xisto Community

wwilliams

Members
  • Content Count

    26
  • Joined

  • Last visited

Posts posted by wwilliams


  1. Well....I am interested in all sorts of things! Lol, I thought doing web design might be fun and a time killer for me. I also thought PHP would help me to better understand more advanced programming languages like C++. Maybe I should start with BASIC? It seems easy and I don't think it has those confusing, annoying, scary pointers. What would you recommend?

    c++ is great............ visual studio's has it's on way of doing everything just so you know.... also make sure you learn alot about javascript and html first... you need to have a very good understanding of html and javascript before you can do php.

    and the language you learn depends on what you want to do... c++ is more for computer programs(you can use it for some intranet or internet programs) php is more for web browser based solutions(you can make desktop / standalone based programs out of it)

  2. first off the website redirects you to http://forums.xisto.com/no_longer_exists/ now and second i love gmail.. 7gigs free and 20 meg attachment limit IMAP and POP3 and several other google apps (including attaching your gmail account to youtube) and all for free... also they let you purchase more space if you want it.. but im only using 30 megs and i have had the account for a few years now


  3. That's crap if people will actually have to purchase new cards that support the full potential of Dx10.1. Personally, I'd be pissed myself if I bought an NVIDIA 8800GT (over $300), or even two of them like our SLI-enthusiasts, only to find out later that the next release of DirectX won't mean any changes BECAUSE of my hardware.
    I don't see why they can't just do what they've been doing like with Dx7, Dx8, and Dx9, which were all supported without the need to purchase new hardware to exploit the upgrades.


    i really dont thing you will need to buy a new card to take advantage of 10.1 if the card supports 10... it is the same version of directx just more like an update to it... now when 11 comes out might be a different story

  4. Well, I started out with Yahoo! mail. But I couldn't stand the ads, how you have to go to home page to sign in, how it won't remember log in passwords, how max log in time is two weeks, and the general look and feel. Plus so much nonspam ends up in the spam folder! Then when I find out Gmail is no longer invite only, I get an account and dump Yahoo.
    I like Gmail's SPAM filter much more, the look, the search function, the page set up, and ease of use. I'll be sticking with Gmail!


    same here.... i even started with yahoo.... but i have used all of the top free ones plus a few that are not listed but gmail is the best...

  5. i'm glad you have decided to try out ubuntu linux... personally i dont think there is a better linux distro and i have tried serveral

    i have a few websites that might help you out

    this one will teach you a little about the shell (command line)

    http://linuxcommand.org/

    this one has a few tutorals that might help you

    https://www.howtoforge.com/

    and this one is the ubuntu community.. best site for help on ubuntu

    https://ubuntuforums.org/


  6. No point in using Dreamweaver...
    Just get Notepad++ there's nothing bad about it... It is better than Dreamweaver. In fact, I have totally decommissioned Dreamweaver, I don't need to anymore after I found Notepad ++...

    @moutonoir The thing is, if you do that, you wouldn't know what tags to use in the first place. I mean, if you keep only to one site that uses tables, you would get really good with tables and leave out <div>s entirely (which is what I did... :lol: )

    So... yeah...



    i second notepad++ for the best windows editor but when im on a linux box i love gedit... only reason i would use something else is if i was using a WYSIWYG editor (which i dont use anyway)
    another editor i have heard alot about is pspad but i prefer notepad++

  7. yes the mono module for apache lets you run asp and asp.net on a linux server( i see https://www.oracle.com/sun/index.html chilisoft being more popular than mono though)..... but... not all functions work... as you have heard the reason is because asp.net requires the .net framework which is microsoft only if you run php it runs better on linux if you run asp it runs a lot better on microsoft... people will say that it is untrue about php being better on linux but if you run a lot of different php applications you will find issues with running some on a microsoft server... and yes if you need asp web hosting get a paid microsoft windows webhosting that will be your best bet


  8. if you just want to make a website a WYSIWYG editor is a good way to go but if you want to learn how to make a good website yourself learn html then move to php or asp... i prefer php myself... but starting out you might just want to go with a WYSIWYG editor... all up to you and what you want to do

    edit:
    if you want a free WYSIWYG editor
    http://www.w3.org/Amaya/
    http://www.kompozer.net/

    if you want to learn just the code i like
    https://notepad-plus-plus.org/


  9. i first tried linux because i had heard alot about it and wanted to see it first hand... that was back when i had dial up, and i dont know how many people have tried to use dial up on linux... with a winfax modem.. but after finding out that you had to pay for a driver for linux for the winfax modem i switched back to windows.. then i finaly got dsl and tried out ubuntu and never looked back... we use ubuntu desktop and i have a ubuntu server that i use for a file server/dns server/LAMP server.. never found any other OS i like better than Ubuntu, they have more hardware support and user friendly than any other distro i have found while still having low system requirements and great stability also if you have a problem ubuntuforums.org will be of great help


  10. syntax

    Dev C++

     

    Ifstream in;

    This is not recognised by dev C++ what alternative to use?


    here is a simple way i have used ifstream to read a .csv file... hope it helps someone

     

    #include #include using namespace std;int readFile(){    string line;        ifstream readFile; 		readFile.open ("file.csv");		if (readFile.is_open())		{		while (! readFile.eof() )		{		getline (readFile,line);		cout << line << endl;		}		readFile.close();		}		else cout << "Unable to open file";     return 0;}

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | 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.