Habble
Sep 6 2007, 07:18 AM
While browsing the internet, you've most likely heard people mention different web scripting languages? What are they? What do they do? What do they stand for? You'll find all the answers here! I've tried to list some of the most common languages for your benefit HTMLProbably one of the languages you will hear about the most, HTML stands for Hyper-Text Markup Language. HTML is the main language used to code websites. Without HTML, there would be no websites! If you opened up the source code for this page, and looked throuugh it, you'd find little bits of code that look <b>like</b> <i>this</i>. The things like <this> are called tags. Tags can either affect what's on the page at that spot, e.g. <img src="hello.gif"> would place an image with the filename "happy.gif" in that spot on the page. Or they can affect what comes between them, e.g. <u>Hello!</u> would show up as Hello!. Note the ending tag (</u>) that tells the browser when to stop underlining the text. File extensions: .html, .htm Find out more: http://www.w3.org/html/XHTMLXHTML stands for Extensible Hyper-Text Markup Language. It is designed to show as both XML (See below) and HTML, allowing a wider variety of browsers to view it properly. XHTML users must conform to certain rules, such as tags must be written in lowercase, and elements cannot overlap. File extensions: .xhtml, .html, .htm Find out more: http://www.w3.org/MarkUp/XMLXML stands for Extensible Markup Language. It is similar to HTML, except it's designed to be used not only in web browsers, but a wide variety of other programs. XML offers an easy way to lay things out in an application. XML is also designed to be clear and concise, and easy readable by people. XML allows you to create tags that will appear differently in a program, and therefore making an extremely flexible language. File extension: .xml Find out more: http://www.w3.org/XML/CSSCSS stands for Cascading Style Sheets. CSS is used to style a website, setting colours, backgrounds, fonts etc. Without excessive use of tags surrounfing the whole page. A typical CSS Sheet would look like this: body { background-color: #DDDDDD; font-family: Verdana; font-size: 10px; color: #000000; } a:link { text-decoration: none; color: #FF0000; } a:active { text-decoration: none; color: #FF0000; } a:visited { text-decoration: none; color: #FF0000; } a:hover { text-decoration: underline; color: #00FF00; }As you can see, we declare what element we're setting the style of (e.g. body), then inside { } brackets, we define the style attributes in the form attribute: value;. Style sheets can be placed within <style> tags in the head of the document, called from an external style sheet using the <link> tag, or the style for a particular element can be set using the style="" attribute. File extension: .css Find out more: http://www.w3.org/Style/CSS/PHPPHP stands for Hypertext Preprocessor (Don't ask me how!) It's a server-side scripting language, which means it's interpreted and converted to HTML before the browser recieves it. PHP is placed within <?php ?> tags in a document. To interpret PHP, you must be accessing the document through a server that can interpret PHP, rather than just locally. PHP is used for many things, connecting to databases, creating cookies, performing calculations and more. It's one of the most used scripting languages, and can be extremely powerful. File extension: .php (Although you can set other extensions to allow PHP functionality with) Find out more: http://www.php.netJavaScriptJavaScript, not to be confused with Java, is a clientside scripting language, this means that the users browser does all the processing. Disadvantages with this are that you're relying on the fact that the user has an up-to-date browser for the scripts to work. JavaScript is placed withing <script> tags, or a source code is defined using <script src="">. JavaScript works like many other scripting languages. It is object-oriented, and is designed to interact with HTML elements. File extension: .js Find out more: http://www.javascript.comSQLSQL stands for Structured Query Language. It's the language used by SQL Database managers, such as MySQL, to carry out requests. Although it isn't a very large language, it's important for every webmaster using Databases to know. To get all results from a table using SQL, we would call "select * from tablename;", or if we wanted to select a specific column and a specific row, we could call "select lastname from tablename where firstname = 'John';" All commands in SQL require a semicolon at the end, except for when using PHP's SQL functions, or when using the "use" function, to switch databases. SQL can be either called directly, or SQL commands can be read from a file. File extensions: .sql Find out more: http://www.sql.org/AJAXAJAX isn't really an entirely different language, but people use it to refer to the funtions in JavaScript used to remotely access a webpage. This is extremely useful for Webmasters who don't like the idea of reloading pages all the time to refresh information. Find out more: http://en.wikipedia.org/wiki/Ajax_(programming)
Reply
vujsa
Sep 6 2007, 11:16 AM
Very nice summary of web related "languages". PHP: PHP Hypertext Preprocessor is a recursive acronym meaning that the definition of the acronym contains the acronym. I couldn't possibly think that far ahead in naming a language nor poses the skill to write my own language which leads me to believe that the originators are pretty smart people.  I did think that given the importance that Perl has played in the development of web based applications, it should also be mention. Perl (Practical Extraction and Report Language) is usually what is running when you see anything that uses the cgi-bin directory. It is a very powerful language and was the main server side parser before PHP. File extensions include .cgi and.pl ASP (Active Server Pages) is also a common language for the web. Personally, I don't use it and don't have little personal information about the language but thought it should be mentioned. It is limited in usefulness since support on Unix/Linux based web servers (usually running Apache) isn't very good which is problematic since the vast majority of web servers use this platform. ASP is a Microsoft language and as a result is rather complex but very powerful! I like the point that you made about PHP parsing the script into HTML prior to being sent to the browser. Many people don't understand this. In fact, most people don't understand that there are only four ways to display information as a web page. HTML, JavaScript, Plain Text, and graphical (through JS or HTML usually). These are the only formats that your browser will understand. While it is possible to code a website entirely in JavaScript, I don't recommend it.  vujsa
Reply
HellFire121
Sep 6 2007, 11:45 AM
Nice summaries there, it's amazing at how many languages there are and most can acomplish the same things in a different way, more or less efficient. Choosing a language can simply be seeing what you want to do, what you already know and what seems the easiest. There is so much to choose from and i find most are based more or less around a general concept. -HellFire
Reply
FirefoxRocks
Sep 12 2007, 03:57 AM
I prefer using XHTML over HTML. It is the next generation of web languages, and many sites are currently adopting it. Oh and by the way, you forgot about XSLT, XLink, XForms, MathML, and SVG, which are XML-based languages that should be mentioned at least a little with XML.
Reply
Quatrux
Sep 12 2007, 06:55 AM
Well, yeah a lot of people today prefer to use xhtml over html4, but as in some topics on this forum, it has been said, that most of people use xhtml for not the purpose it was created, but I also use it, due to it is more strict than html4, when html5 will become a standard for most, some people might notice that even really good designers still use html4, because they understand that it won't change the layout a lot if they will move to xhtml, also if xhtml2 comes sooner as a standard than html5, when it will be hard..
Reply
uNiT
Sep 14 2007, 11:06 PM
Great summaries, and I'm sure they will help a lot of people; however, you left out a few =[. Languages such as Python, SMARTY, and PERL are still used on the web (though less commonly), and should be included as well, along with the other languages previously mentioned. As to the html over xhtml debate..I personally believe xhtml is the future of static web design, rather than HTML 5. Obviously HTML 5 will be wider used, as it will be more supported by programs, but the majority of good web developers will probably use xhtml. It loads faster, and works better across many browsers than HTML 4.0 does, plus it utilizes good practices in coding such as ending statements (tags in html), and properly nesting code, which must be done in almost all programming languages.
Reply
Arbitrary
Sep 15 2007, 12:40 AM
QUOTE I prefer using XHTML over HTML. It is the next generation of web languages, and many sites are currently adopting it. I do as well. However, I do question what the advantage really is. People say that XHTML is a lot more strict so webmasters are forced to do things the standards-compliant way. However, this is only if these webmasters actually bother checking to see if their website validates. If they don't bother to do this, then XHTML will have the same problem as HTML--there will still be many mistakes. Moreover, there are some changes in XHTML that I think are rather pointless----<strong> instead of <b>? What's the difference besides an arbitrary change in wording? Besides, <b> is actually shorter than <strong>, so why the change? Then there's <center>, which is actually a very very useful tag. There isn't an easy way to do centering with CSS on all browsers. (It's a hack, basically.) Nonetheless, XHTML still has its good points, or else I wouldn't be using it. I've heard that it scales nicely to other non-computer platforms like cell phones and such. Always useful, I guess. Though that does make me wonder why Google doesn't switch to XHTML...considering all their new mobile technology and all.
Reply
Quatrux
Sep 15 2007, 08:57 AM
xhtml is strict for the only reason that it should be, it is used with xml which most of people doesn't use and the data should be well written or else the data will be corrupted, in other way, html4 and eventually html5 isn't so strict, but the idea behind it is to show the code as better as possible even with not valid documents, that is usually called transitional.. and changing <b> tag to <strong> or <i> to <em> is a logical way to do, CSS is used to do everything with appearance, that includes bold, italic and center, html or in this way xhtml doesn't need to do anything with the appearance of the website/layout whatever, it needs to deal with data and it needs to be valid by xml tools, html even wasn't designed to do such things like addition of colours, it was the browsers which added this stuff and w3c agreed with it until css and xhtml came in ~1999.. and today, if you want to use b tags and etc. just use html4 and it will validate and you won't have any problems with most of the browsers parsing the documents.
Reply
Habble
Sep 16 2007, 07:22 AM
I personally prefer html. xhtml is edsigned to be strict, but it isn't like you can't be strict with html. And I think some parts of xhtml are unnecessary, such as /> at the end of tags that don't have a closing tag. I personally think that having a tag like this: <br /> looks alot messier than a tag like this: <br>. But that's just my opinion. I don't like unnecessary spaces.
Reply
Sten
Sep 16 2007, 08:08 AM
i rather xhtml over html (as u no jay) cos when im making a page it has to be strict so when i go back over it for some reason like changing or updating, i know where everything is and no which tags to play with and make sure im not using the wrong tag. xhtml is cleaner to read so when you are on a site copying or learning from the code, its easier to know what it all is.
Reply
Latest Entries
Habble
Dec 15 2007, 05:04 AM
QUOTE(Mordent @ Dec 14 2007, 06:44 PM)  PHP, XHTML (none of this HTML nonsense  ) and CSS are allI ever really use. That might be because I've never even vaguely attempted to learn anything else, but so far I've found little need to go elsewhere to find the functionality that I require. PHP is, in my mind, sheer awesomeness. I find it a slight pain to try to make my .php files look tidy when having to <i>echo</i> chunks of XHTML code in them, and I'm always trying to find ways around that, but if you combine it with MySQL the sheer level of versatility can't be beaten. Still, I'm by no means an expert web developer. More of a tinkerer, with a love for clean code.   I can relate to you there... Yeah, sometimes whenever I'm using a script that I downloaded from a site somewhere, and I see it organised like this: if (whatever==whatever) { do such; and such; } I can't stand it! I also can't stand pieces of code that switch between using single quotation marks (') and double ones (").
Reply
Sten
Dec 15 2007, 01:11 AM
yeah i love clean code too, when i look at the code of sites, i hate just seeing it all on one line or just a few things on one line and like chunks and that. thats wot i like about xhtml, to actually make it valid, it has to be clean. i also think people who make sites without css should really start. i had one once, i decided to learn css after that because i had to change something on every page once but if i had a style sheet then i wouldnt of had too. i also had to put the stupid font tags for everything, lol.
Reply
Mordent
Dec 14 2007, 06:44 PM
PHP, XHTML (none of this HTML nonsense  ) and CSS are allI ever really use. That might be because I've never even vaguely attempted to learn anything else, but so far I've found little need to go elsewhere to find the functionality that I require. PHP is, in my mind, sheer awesomeness. I find it a slight pain to try to make my .php files look tidy when having to <i>echo</i> chunks of XHTML code in them, and I'm always trying to find ways around that, but if you combine it with MySQL the sheer level of versatility can't be beaten. Still, I'm by no means an expert web developer. More of a tinkerer, with a love for clean code.
Reply
FirefoxRocks
Dec 11 2007, 04:05 AM
QUOTE(muztagh @ Oct 5 2007, 04:29 PM)  If you go deeper in web development and try to create more complicated features on your website actually you have to mix those languages. for example I have a website which is mainly built on html but I also use some scripts of php and code the styles with css, furthermore sql and javascript also used.
for some reason each language has some advantages and shortcomings, for instance html is plain, fast but at the same time not so dynamic, on the other side php is more dynamic but little more complicated; css is more stylish and easy to maintain but it is not supported by all the browsers.
My suggestion is that you have to learrn each language a bit and mix it on your website for your own goal. I totally agree with that. I love to code using XHTML and of course with that you need CSS too, but I do learn JavaScript here and there to spruce up my pages a little (not something dramatic flash text, just little things executed onmouseover and stuff). I do use PHP for server-side scripting needs, and I do use MySQL for databases, which is an essential. HTML is plain and not dynamic because it is designed to be a markup language. It is designed to tell browsers how to display the page. PHP is dynamic because it is a server-side language to generate dynamic content. CSS is the language for styling HTML/XHTML documents but unfortunately I need to write separate CSS for Internet Explorer because its CSS support isn't very good  XML is for organizing data which I use to organize data  XSLT is to transform the XML files into nicely formed XHTML documents so that people can read them easily. Remember, even expert developers (Yahoo!, Google, Facebook, etc) do not memorize all functions in PHP, they refer to reference material at times when necessary.
Reply
muztagh
Oct 5 2007, 10:29 PM
If you go deeper in web development and try to create more complicated features on your website actually you have to mix those languages. for example I have a website which is mainly built on html but I also use some scripts of php and code the styles with css, furthermore sql and javascript also used. for some reason each language has some advantages and shortcomings, for instance html is plain, fast but at the same time not so dynamic, on the other side php is more dynamic but little more complicated; css is more stylish and easy to maintain but it is not supported by all the browsers. My suggestion is that you have to learrn each language a bit and mix it on your website for your own goal.
Reply
Recent Queries:--
most common languages - 306.94 hr back. (1)
Similar Topics
Keywords : language, guide, common, web, languages,
- Common Ftp Server Error Codes
error codes that you come across (0)
An Absolute Basic Guide To Algorithms For Dummies
(0) I really want to learn about algorithms but i dont know how it works at all. Can anyone suggest a
site, or more preferably a book that can introduce me to algorithms?....
Who Is No. 1 Actor In India (all Language Including Bollywood)?
(1) Who is No. 1 Actor in India (All language including Bollywood)? My choice Amithab Bachan....All
time hero.......
My Guide On Runescape Making Millions
guide (4) Alright so you want to make millions in 2 hours. First you need to work yourself up to get the
millions, What you do is with about 60+ str kill flesh crawlers and start fishing. Once you have 300
k cash start tanning Green d hide; Which after tanned will be called green leather. Math: 300 000
spent on supplies. Around 500 green d hides can be tanned every 15 mins. Buy green d hide at med,
Which would cost 1698 ea. Which will get you about 177 which you can do in like 2 mins. You sell the
green d hide back for 1850 ea, A little below med price. Which is 327 000 thats ....
Increase Your Knowledge Of Html Language
(11) For Creating good website you have to be master in HTML Language. It is a scryptic Language. If you
want to Learn this language than visit the link http://zwqa.page.tl/Increase-you-HTML-Knowledge.htm
....
The Ultimate Businness Man Online Game Guide
A guide for the Ultimate Businness Man (2) Theubm (The Ultimate Businness Man) is a free Text Based online game. You are able to win over 1,500
dollars of prizes each week. Here is a guide I made for the UBM the game itself, and for you
guys! http://theubm.com is the link for the game A fast start for the ubm 1 - Go to
the Recruit section to recruit some producers (engineers and scientists) and collectors (managers
and investors). DO NOT recruit a lot until you know for sure how to make them happy! On average,
you get 2 scientists, 3 engineers, 3 investors and 5 managers per turn. Managers and ....
Help Me Make A Guide To Website Making!
HELP! (0) I been wanting for a time now to make a guide to website making, i now i have have decided im going
to, i will need colleagues, if anyone has medium knowledge in this area it would be nice if they
could be the co-author (or probably the main as i am 10). CSS would be a VERY good thing to know as
i am only reasonable in HTML/XHTML. all credit will be shared. P.S. you are probably thinking "this
idiot is a newbie and hes only ten" please do not, i have been doing html for a while now and i
really beleive i can do this, if you want i could even give you FULL credit for ALL ....
Guide For Beginner Convert Video To Psp
Video convert iPod iPhone (2) Guide for beginner how to convert WMV, ASF, WMA, AVI, RMVB, RM, RA, MOV ect to psp PSP Video Format
The video codec supported by the PSP is a proprietary variant of the H.264 codec closely related to
DivX. The format is also referred to as the Memory Stick Video Format. The audio codec used is AAC.
Before loading video onto your PSP it needs to be transcoded using one of the tools listed below.
Some compatible (Sony) devices may be able to produce video in the correct format, and therefore may
not require transcoding. The PSP manual states that the maximum supported ....
A Guide To Using Ftp
(2) Here is a small guide QUOTE What is FTP? FTP (File Transfer Protocol) is the simplest and most
secure way to exchange files over the Internet. Whether you know it or not, you most likely use FTP
all the time. The most common use for FTP is to download files from the Internet. Because of this,
FTP is the backbone of the MP3 music craze, and vital to most online auction and game enthusiasts.
In addition, the ability to transfer files back-and-forth makes FTP essential for anyone creating a
Web page, amateurs and professionals alike. When downloading a file from ....
A Quick Start Guide Anyone?
(6) Hey, I really want to learn how to write my own scripts in PHP, but i just cant learn it properly.
Ive looked at tutorials and such but just cant seem to grasp it:( I know the basic jist of it but
most of the time i just dont know what to put. So basically what im asking is do any of you guys
know any sort of tips or tricks or anywhere i could go to learn it? Btw i first want to make a
Download system thing if you know what i mean? Thanks in advance:)....
Make A Wish And It'll Come True...if....
Common email chain letters (6) Do you ever come across email chain letters that say something like: QUOTE Now make a wish and
scroll down ((scrolls down about 15 seconds)) STOP!!! Send this to ## people and your
wish will come true in ## minutes/hours/days. Or things like this: QUOTE 13 ways to tell if
someone loves you ... (a list) ... Send this to 20 of your friends and you will get a date within
the next day! Well I am on the hunt for an EXTREMELY important chain letter that is of the
2nd variety. It was quite lengthy, and consisted of maybe 50-120 lines on tips to get....
Poll / Debate: Is Php A Programming Language Or A Scripting Language?
(12) There is an ongoing discussion about the nature of PHP that is taking place in the shoutbox, and I
think it should be moved into a topic in its own right. People seem to be divided into 3 camps.
Some people are saying things like: "but php is a programming language..." "it is a full-fledged
programming language; it's actually quite similar to c++, and also offers classes, which I
consider a powerful feature" Then again others are saying: "by official definition I would imagine,
I don't like thinking of it as one" "someone i know is making a php bnc, but in all....
How To Change Language At Login Screen
I've been locked out! (7) I got a computer from the store that had been preinstalled with Windows XP Pro, it would
automatically log on. The default language was Arabic, and i changed it to English. Everything was
working fine until I added a password to my account. After restarting, I can't log in to the
computer because my password was in english and the default language at login is Arabic. So I did
also make another account with no password so that I could bypass the password on this account if
something was to go wrong, but I can't even log on to that one. When I hit Ctrl+Alt+Del+Del,....
Rags To Riches Iv - My Best Guide
another awesome runescape guide (10) Rags To Riches IV- The Final Chapter The best money making guide EVER! Introductions From
Rags to Riches IV- The Final Chapter ~ Rags to Riches Iv- The final chapter ~ Has all the money
making ideas that the high levels don’t want you to know. They have been trying to keep the secrets
away from you for years. They don’t want you to know how they make all the money. But guess what?
Mobil and I do want you to know. ~ In Runescape money = power. If you don’t have a lot of money
even if you’re a high level people just don’t respect you. Well, that’s all about to c....
Runescape Multi Logon Guide
how to multi logon (7) Hi i was told by one of my school friends how to login on multiple account so u never have to drop
trade items and risk getting banned. All u need is ure computer thats it!!!! lol,
well heres the steps: 1) Go to the runescape home page. 2) Click "Play runescape" (Existing user).
3) When the detail selection comes up scroll down and there should be a grey box which says "Signed
Applet Using Defult Java(Recommended). Leave this and as it is and click low detail. 4) Choose a
world. 5) Open another windows explorer and do steps 1 and 2. 6) Now when u ge....
Run A Webserver From Usb-stick On Windows Guide
(2) Run a webserver from USB-stick on windows guide Introduction A few weeks ago we got a
256MB USB-stick from school (yes I didn’t have one yet!), and I haven’t played with it since I
got it till my computer broke and I had to use my moms laptop. Since I didn’t want to break up my
moms laptop, I thought about my USB-stick and wanted to install a webserver on it. Though it can
also be used if you want to demonstrate a project of yours to your clients or friends
whatsoever! It can even be used as a real webserver! But please keep in mind that a USB-st....
Apache Tutorial: Enable mod_rewrite In Windows
A brief action guide to enable mod_rewrite in Windows (2) Hi everybody, If you are using Windows OS and want to enable mod_rewrite module here is how to do
it. This is the general configuration guideline both for Windows and Linux server: QUOTE 1. Find
the httpd.conf file (usually you will find it in a folder called conf, config or something along
those lines) 2. Inside the httpd.conf file uncomment the line LoadModule rewrite_module
modules/mod_rewrite.so (remove the pound '#' sign from in front of the line) 3. Also find
the line ClearModuleList is uncommented then find and make sure that the line AddModule mod_....
Add A Forum To Your Site
A guide to adding discussion forums to your site (23) QUOTE When you’re setting up a site using CSS, it’s a good idea to do a little planning ahead
and think how you’ll be using your styles, otherwise you could end up spending much more time later.
As a case in point – for a site I’ve recently built, a basic style sheet was put together, with
entries for matters like headlines, section headings, item headings and so on. When it came to forms
on the site that needed headings next to the data entry boxes, the logical choice was the item
headings style. It helped maintain a consistent look across the site, but it came bac....
Runescape Money Guide
A must (50) My runescape money guide. The following are some tips to earn some easy money: (1) Through mining
-PART 1- Get your mining level to lv115 1st, If your going for the easy way, Get your mining level
to 60 (mine only irons) You'll have about 7822 iron ores You can sell your iron ores for 100gp
each and that'll earn you around 770k-800k -PART 2- If you're going for the tougher task,
Like in part 1,get your mining to 15 but after 30 start to mine coals From my calculation: The iron
ores between level 15-30 + coals between lv30-60 will let u make this amount : ....
What Language Is Linux Written In ?
(15) I''ve been wondering lately, what language is Linux written in? I'm interested in
this, because my friend and I are considering writing our own distro. I know, it sounds like a bit
of a feat, but one guy wrote MEPIS by playing with the Debian source code. I think the two of us
could do something similar. /tongue.gif' border='0' style='vertical-align:middle' alt='tongue.gif'
/> ....
How To Connect Dual/triple Monitor + Advantages
Guide on how to install mult. monitors (21) I'm sure 95 % of you are running your system with one monitor. Primarily because that is the
default for any computer. What if i told you that running your system with dual monitors or even
triple monitors will increase your user performance extensively? Ways it helps: - can play some
games while instant messaging, writing emails, watching movie on other screen, looking up something
online, etc... - Helps with working on websites or other programming, because code can be on one
side, while the preview image is on the other monitor. - Spreads the space out so you h....
Imho, You'll Be Rotfl!
A guide to understanding Email stupidity (12) IMHO, you'll be ROTFL! A guide to understanding Email stupidity
----------------------------------------------------------------------------------------------- By:
Cube Domain Created: October 22, 2005 Licensed To: Astahost The Internet is, in the most general
sense, quite stupid actually. Inhibitions are unknown, ignorance could not be more prevalent, and
idiocy is the language of the majority of Internet users. They’ve even gone as far as inventing
their own acronyms. You may use this guide to comprehend the language found mainly in email and
message boards....
Does Anyone Code Using Turing
A student programming language (2) Does anyone use Turing here? It's a Delphi/Pascal based programming language developed by
University of Toronto and is now owned by Holt Software in Toronto. Sample: var name:string var
input:string put "Please enter your name" get name:* cls put "Please enter your message: " ..,
input cls put "Your name is: ", name put "Your message : ", input It should accept your name and
show your name and message. xboxrulz....
Python Versus Java ?
Which of this language is the best? Why? (4) Chandler choosed Python, arguing that Python is more open source than Java. Apache brought an open
source java to the market. Is Python covering so many domains than Java? Would it be possible to
code every kind of application with Python? For wich reason would you choose Python for an
application development? ....
VB.NET: Switch Regional Language Automatically
When the field being edited gets FOCUS (1) Switch the language of the Textbox Control automatically upon receiving focus Hi guys, This
tutorial sparked off from my own ventures to incorporate a particular feature in my own software -
which uses mixed language (English & Thai) on a couple of screens to store user data. Certain
fields, apart from First & Last Names & parts of address were to be entered in Thai. Now the current
language can be easily switched by pressing Alt-Left Shift (or whatever key combination you've
set your system to) - but when you consider the same key-combination has to be repe....
(Nearly) Ultimate Music Posting Guide
Making your music available online (11) The (Nearly) Ultimate Music Posting Guide For several years, indie and established musicians
relied on MP3.com as their primary off-site music host. While there were a small number of other
similar sites, and MP3.com had its share of problems, it was still THE place to get your music
posted. It also allowed artists and music fans to create "Stations" where customized playlists could
be created and shared with the world. Vivendi Universal eventually bought MP3.com and ultimately
shut it down only to rebuild it as a site for "established" artists, leaving all of the in....
Online Multiplayer Game
What language to learn in order make it? (16) If you look at e.g. THIS LINK What language would you use to make something like that?
/wink.gif' border='0' style='vertical-align:middle' alt='wink.gif' /> ....
Basic C++ Language
Getting started with C++ (19) You will need passion , devotion and even obsession to really appreciate C++ Programming.
Lets grab a compiler If you have a C++ Compiler then you are all set for turning your C++ code
into executable files, if you do not then I recommend getting dev-c++ . To learn more about that
compiler I recommend browsing their site. First Program - number.cpp So now I'm going to
write up our first program to learn from, which shows how we can display text to the screen. I know
it's probably a bit simple, so maybe I'll spruce it up a bit, as no matter h....
Speeding Up Common Downloads
(33) Most of you probably know all of these but just in case you don’t here’s some stuff you can do if
your not feeling patient. 1. Close your anti-virus. Usually your anti-viral program slows down
all your connections, incoming and outgoing to your computer. If you think what your downloading is
safe, consider temporarily shutting down your anti-virus. 2. Bit Torrent I don’t really know
what it does but I think it has something to do with downloading portions of files from a bunch of
different people instead of just one source so it goes faster. 3. Tweak Downl....
Your Most Favourite Computer Language
(84) what do you think??....
Looking for language, guide, common, web, languages,
|
|
Searching Video's for language, guide, common, web, languages,
|
advertisement
|
|