Official List of Programming Resources
From advanced to novice... come, join in, teach, and learn. Web programming and help. We have stuff on it all: php, html, asp, asp.net, etc. Share your coding expertise too.

Moderators: Forum Experts, Management

Official List of Programming Resources

Postby jbullard on Tue Dec 13, 2005 10:49 pm

All,

I have compiled a list of programming resources that are available to you on the net. These are intended to help you out with programming. Mostly web languages but I am trying to get a list of other sites together like VB, VB.net, C, C++. So if you have any please share.

Web Resources
Microsoft-specific Resources
Apple-specific Resources
Linux-specific Resources
General Programming Resources
If you have a site please feel free to share it because as programmers, we need all the resources that we can get. Sometimes your code doesn't want to work for you but maybe with the help of these resources they will!

Again I hope these help those in need,

Jason
PROnetworks Staff
Last edited by jbullard on Thu Nov 22, 2007 1:00 am, edited 1 time in total.
User avatar
jbullard
VP - Software
 
Posts: 3604
Joined: Sun Jun 06, 2004 10:17 pm
Location: Utah
Real Name: Jason Bullard

Postby coreyw2000 on Tue Dec 13, 2005 10:55 pm

This is a great idea ^*^ I have stickied this thread :)

I have noticed that www.vbforums.com has some good resources
Be nice to nerds.... chances are you will end up working for one

<u><b>Current system</b></u>
ASUS M3A78-EMH HDMI
AMD Athlon X2 6000+ o/c'd at 3.2GHz
4GB (2x2GB) OCZ RAM
Integrated Radeon HD 3200 (HDMI out)
500GB SATA/360GB IDE HDD's
32" Sharp 1080p Monitor/TV
Vista RTM/Vista SP2 Beta/7 6801
coreyw2000
PROfessional Member
 
Posts: 4644
Joined: Tue Oct 05, 2004 5:30 am
Location: Saskatchewan, Canada

Postby Grav!ty on Tue Dec 13, 2005 10:56 pm

Nice one Jason ^*^

I'm not a programmer myself but I'm sure these links will come in very handy to the members who are. Thank you for making the effort to put this together
Image

"The great majority of mankind are satisfied with appearances, as though they were realities, and are often more influenced by the things that seem than by those that are." - Niccolo Machiavelli
User avatar
Grav!ty
PROfessional Member
 
Posts: 15790
Joined: Tue Sep 14, 2004 5:22 am
Real Name: Graham

Postby jbullard on Tue Dec 13, 2005 10:58 pm

Thanks. And yes, I completely forgot about vbforums.
User avatar
jbullard
VP - Software
 
Posts: 3604
Joined: Sun Jun 06, 2004 10:17 pm
Location: Utah
Real Name: Jason Bullard

Postby jbullard on Tue Dec 13, 2005 11:20 pm

Here are a couple more which are very excellent in my book.

PHP Scripts, Codes, Tutorial, and much more
http://www.phpfreaks.com/

This is a linux forum but offers more than just that.
http://www.linuxforum.com/

Apache Tutorials
http://www.apachefreaks.com/


MySQL Tutorials, Scripts, Codes, and General Help
http://www.mysqlfreaks.com/


Ajax
http://www.ajaxfreaks.com/



These are all great sites to find just about anything you want. But remember that there are a lot of us here who can help you out as well.
User avatar
jbullard
VP - Software
 
Posts: 3604
Joined: Sun Jun 06, 2004 10:17 pm
Location: Utah
Real Name: Jason Bullard

Postby jbullard on Tue Dec 13, 2005 11:26 pm

They do an excellent job.

Here are some things that might be useful when web programming.

New Standards.

- In programming web pages try not to use tables. Use CSS instead. It is much more efficient and can do more than what a table could do. Does this mean use CSS for everything. No. It just means that tables are a thing of the past. For tabular data always use tables, unless you are an experienced programmer and know what you are doing. :)

- When trying to program sites, try to use cross browser support. IE is the most buggy system in the world, yet it is the most popular. However, don't forget about people using Mozilla, Firefox, Netscape, and AOL. For instance, the filter css tag does not work in all browsers. That is why we have the CSS Validator link up. Check your validation.

- Don't use large graphics. There is a link that Validates your website. Depending on your download speed of your homepage is whether you pass or not. Anything over 1 second is considered slow. There are sites with the same amount of graphics, using css that download in .2 seconds. This is fast. That is why we use CSS.

I think that wraps it up for now.

HTH,

Jason
User avatar
jbullard
VP - Software
 
Posts: 3604
Joined: Sun Jun 06, 2004 10:17 pm
Location: Utah
Real Name: Jason Bullard

Postby jbullard on Wed Dec 14, 2005 1:33 pm

CSS is the standard whether it be 1, 2, or 3. CSS3 has changed a lot over the course of the year. My understanding, and correct me if I am wrong, is just basically removing the requirement to insert <div></div> tags. Instead of <div class="footer"></div> you can now use <footer></footer>. I was waiting for them to actually go to this for a very long time.

When I program, I do not use tables at all. I use XHTML and CSS. These are defined by your DOCTYPE which every web page should have. Otherwise it is not in compliance with W3C standards.

The one thing that you will notice over the course of the next couple of years is programmers starting to use less and less HTML. Most switched over to <div></div> tags instead of tables. Now from my understanding, coders are starting to use CSS3.

I just refer to CSS in general. That's all. :)
User avatar
jbullard
VP - Software
 
Posts: 3604
Joined: Sun Jun 06, 2004 10:17 pm
Location: Utah
Real Name: Jason Bullard

Postby jbullard on Sat Dec 24, 2005 2:49 pm

Here is another site for the VB/C programmers out there. This is just an addin that you can purchase that pretty much lists all of the Win32 APIs.

http://www.infotomic.com/store/home/home.php

A little expensive in my book, but I have heard great things about them.

Jason
User avatar
jbullard
VP - Software
 
Posts: 3604
Joined: Sun Jun 06, 2004 10:17 pm
Location: Utah
Real Name: Jason Bullard

Postby userdude on Sun Jan 29, 2006 4:13 pm

Javascript:
http://www.quirksmode.org
http://www.javascriptkit.com
http://www.crockford.com
http://www.youngpup.net/code
http://www.crockford.comJSON -- JavaScript Object Notation is lighter-weight and easier to deal with than XML; it is the future of object abstraction across networks, being lighter-weight than SOAP.

General reference material:
http://www.w3schools.com -- Make sure and check out the reference areas, which are very well organized and maintained. Has information on every element in HTML and every CSS attribute.
http://www.alistapart.com

Just links I like (design and such):
http://www.shauninman.com
http://www.squidfingers.com

I find it hard to find websites that offer truly great information on PHP and MySQL; hard, that is, to find sites that are better than the online documention/manuals:
http://www.php.net/docs.php
dev.mysql.com
What can be more palpably absurd than the prospect held out of locomotives traveling twice as fast as stagecoaches?
- The Quarterly Review, England (March 1825)
userdude
PRO Level 3
PRO Level 3
 
Posts: 75
Joined: Sun Apr 24, 2005 2:16 am
Location: North Texas

Postby Telos on Thu Jul 06, 2006 10:15 pm

http://www.code-haven.com - Syntax guides for various languages (ie. C++, C#, PHP, Java.)
...I'm prepared to passionately argue the point until nothing makes sense anymore! - Red Mage
User avatar
Telos
PRO Level 5
PRO Level 5
 
Posts: 172
Joined: Wed Jul 13, 2005 12:04 am
Location: Tonawanda, NY

Next

Return to HTML, CSS, and Scripts

Who is online

Users browsing this forum: No registered users and 0 guests