Jump to content

Kcarson

Members
  • Posts

    207
  • Joined

  • Last visited

Posts posted by Kcarson

  1. Or, be grounded and live happily with what ever (little or great) you have.  I, personally, love the middle class - and I will likely remain here - no pressure from being at the bottom trying to sratch my way out, and not pressure from the top to make big money and big mistakes (I've been in both places).

    Agreed, middle class is nice....Now to answer the original question, I have read many articles concerning this and one of the most interesting was an article discussing how a lot of companies are starting to get away from outsourcing for the following reasons:1. Time of support (those in India and other countries are not always available during the companies operating hours)2. Communication barrier between cultures and languages3. Not looked well upon by many in the US nowSo the solution to this for some companies is to not outsource but to move the projects to states like Alabama, Mississippi, Kansas, and so on, where the tech industry has not driven up prices, and the cost-of-living is lower, therefore employees salaries would be lower as well. For them, it is a win-win and some are working with local universities in those areas to get professors doing research in those areas and training the students accordingly. (For reference, this information comes from SDTimes, can't remember the issue, but it was within the last 2 months)
  2. First off, the site looks great, the background, logos and such are very well done.Now for the feedback, I would have to agree with Skemcin concerning the font colors, its just a little hard to read. Second, the on-mouse over works great, but when you move from the main logo (Scaped) to the menu just below it, the mouse over never changes, so you don't know for sure when you are pointed at the different link. I would suggest just putting an additional line break between the logo and the horizontal menu.Third, your bullets are starting on the brown border, I would suggest moving it over just a bit to get all the body text on the black background.But once again, the site looks good.....and the clan site is awesome and well used, you have all done a great job of getting others to join.

  3. i mate for the query that works i need to use it in asp so i can view it in table, i know how do this but it keeps coming up with the error belowORA-00933: SQL command not properly ended i have put the whole query on one line but i cant work out the problem

    I think Oracle might require a semi-colon at the end of their statements....just a guess though.
  4. Well, for starters in database 2, the topic_id should be your foreign key, not primary key, since there will hopefully :) be multiple postings for each topic_id in database 2.Also, these should be tables, not databases. I would also suggest creating a third table for user information. It would contain: userid (primary key), name, date created, number of posts, and any additional info you would like to keep. Then in table 1, topic_starter would be a foreign key for user_id, and in table 2, reply_by would be a foreign key as well. That way you could keep more information on each user, and your tables would also not have to contain the username (string) for each post, but rather a user_id (int) which is smaller.Why in table 2 do you have a reply_no, if it is for sorting purposes, then you can always just sort based on the date_time.As far as the PHP side of things, I am not the person to ask about that, but the table setup seems like it could work as is, but continue to think on what else you might want to add to it in the future, and how that woudl fit in with your structure right now (such as user info).By the way, I actually think your initial design is done quite well, it is simple yet will still join the tables in an appropriate manner. I offer all the suggestions above only to try and help and also because you asked :) Hope all of this helps.

  5. This looks like its a homework assignment for a class, as such, you should do all of this on your own. If however you have specific questions (after attempting to find the answer on your own), then please post those with the research you have already done on them. FYI-You should never make a post with 19 questions (some with multiple parts) and expect a valid answer to all of them. It is just not feasible for anyone to have the time and energy to try and read all of them and answer each of them.Out of curiosity, what kind of class is this for by the way, I see questions that remind me of my classes in OS, Computer System Architecture, and Computer Networks.

  6. so , here is an example about " submit " of w3chttp://www.w3schools.com/html/tryit.asp?fi...tml_form_submitand it source :I want to ask the source code of ...tryit_view.asp?filename=tryhtml_form_submitwhat 's in it that anything I write in the left page is appeared in the right page ???Thanks !

    Well, the sourcecode of that page would look something like this:
    <body>Welcome<%response.write(request.querystring("fname"))response.write(" " & request.querystring("lname"))%></body>

    See the ASP tutorial on w3schools, specifically this page:http://www.w3schools.com/asp/asp_inputforms.aspAs far as how the changes you make on the left hand side effect the right hand side, well that is the purpose of the try-it pages, so that you can play with the code and see the result.

  7. You can title an image. You can title anything except the head tag, doctype, base, ummm... title, style, script, and meta tag. :)The alt tag on the other hand, can only be used on images as far as I see. I might be forgetting things the alt fits in...It is actually reccomended you title images, for accesibility purposes.

    From reading the w3c standards, the alt attribute can be applied to images, forms, or applets and is required for said tags (see http://www.w3.org/TR/REC-html40/struct/obj....html#adef-alt)The title attribute would be used in this case as a tooltip on mouseover. And as Shinta mentioned it can be used for most any tag (see http://www.w3.org/TR/REC-html40/struct/global.html#h-7.4.3)Now for a good rundown of the best practices for title vs. alt, check out this article.http://www.netmechanic.com/news/vol6/html_no1.htm
  8. well I understood  :) don't mind if I ask you silly questions ,  I am new to computer but the most important thing is I don't hate it  :) so I want to ask : I see Yahoomail have many many client and one of them was given 2GB for exchange emails , so it 's really a very big memory for total , I want to know how Yahoo has it and stores it , a very big CPU ???thanks !!!

    Well, generally speaking, most places out there that offer free services (such as e-mail, web hosting, etc) will offer the service free to the customer, but will charge companies to advertise on those sites. This is not a hard rule, but merely a generality. And in the case of how Yahoo works, well they don't just have one computer that stores all the information, they actually have clusters of computers called server farms, Google has clusters of 1,000 computers that have the ability to store over 300 TeraBytes of information (thats 300,000,000 Megabytes). See http://wiki.media-culture.org.au/index.php...le-How_It_Works for where the information was obtained. So the answer to your question, is not a big CPU but rather a lot of CPUs and many, many large hard drives (hard drives actually contain the stored information, CPUs just process the data).Hope that answers your question somewhat.
  9. i cant see any mutiple html, head and body tags. doing an html check on the page produces nothing.

    Are you using any scripts that might be generating the code with the extra HTML, Body tags? That might explain why you don't see it when you scan the HTML on your computer. There could be some Javascript/PHP that is generating it.Just an FYI, here is the code with the duplicate tags It comes just after the meta tags, and just before your javascripts:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><title>Untitled Document</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head><body></body></html>

    By the way, I was able to view the site fine and I am using Firefox 1.5. So it works in the latest version of Firefox....:)

  10. You can do this with tables (although not suggested) or with CSS div's. Here is an example, or if you want more information/explanation, check out this:http://www.w3schools.com/css/css_classification.asp specifically the example Creating a Homepage without Tables

    <html><head><style type="text/css">div.container{width:100%;margin:0px;border:1px solid gray;line-height:150%;}div.header{padding:0.5em;color:white;background-color:gray;clear:left;}h1.header{padding:0;margin:0;}div.left{float:left;width:160px;margin:0;padding:1em;}div.content{margin-left:190px;border-left:1px solid gray;padding:1em;}</style></head><body><div class="container"><div class="header"><h1 class="header">W3Schools.com</h1></div><div class="left"><p>MENU will be placed here between this div</p></div><div class="content"><h2>Text goes here!</h2><p>Enter content of site here!!!!</p></div></div></body></html>

  11. Actually, I'm not so sure w3schools make money off of those ads on the forum. I think those ads are implemented by invisionzone, and that invisionzone make money off of them. Ads are generated by google, and as it is on w3schools, they have spesific ads. The ads on the top of this page are just generated randomly, so when you sign up to make a forum, you can choose categories from which you want ads to display...

    Interesting....I learn something new everyday. Thanks :)
  12. Doing that would be easy, but tedious. You should use an SQL database with PHP, let the students submit the activities, and it will automatically be put in to the page.

    Also by putting it in a database, you could include a field such as date of event, and set your page to ignore all events where the date has been passed, making the maintenance of your page easier as well.
  13. Yeah, I think it's important that people don't just stop going to w3schools.com just because this forum exists. This forum is an addition, to add something to an already great tutorial site. W3Schools.com are dependant on visitors and site hits for the advertisers to want to pay to advertise there. If we want to keep this site up there, and free for all, the only way we can assure that is by using it. :)

    I completely agree, but they don't just make the advertising money off of the tutorial sites, they also make advertising money in the forums as well...I am currently seeing an ImHosted ad at the top of my screen :), so by writing this post, I am helping w3schools keep the site up and running :(
  14. well i think you or somebody asked me this question allready but, im using the javascript so that i can call that same bottom link to multiple pages, without having to change multiple pages when the links change, (if there is another way let me know) and how is the <h5> supposed to be in that caode i posted?

    Couldn't you use SSI (Server Side Includes)? A server side include can be done in ASP or PHP and really just allows you to write the HTML file for the menu only. Then in your page you would place a SSI where you want the menu code to be and it includes it there for you :) Now whenever you need to make a change to a part of the menu, you just change it in the menu file and it will automatically be updated wherever you use the SSI.
  15. Hi, im sure you could PM kaijim about this or ask one of us moderators to conatct him. But moderators aren't allowed to make official decisions about this sortof thing so you are better off talking to kaijim.alzable :)

    But that is what this forum/topic "Suggestions" is for, to post suggestions that Kaijim can read about and that moderators can bring to his attention. :)

    Hi,

    one is sufficient although specific companies may want experience in their system, while others will accept experience in any major system and get you to catch up to other systems

    Very true, I just didn't want to discourage him by making him think that he had to learn all of them before he could be a DBA, if that is what he really wants to go after.

    Hi,

    I would have to agree with aspnetguy and Skemcin. I would also add, one of the quickest ways to gain their trust is by either getting certified, taking many classes in college, or actually doing the work for a company (although under a different title usually). For instance, at the company I work for, one of the developers worked with the DBA a lot over the past year or two on a new Data Model project and now he has plenty of experience and knowledge to get a job as a DBA if he chooses.Now don't think you must learn all about Oracle, MySQL, SQL Server, etc. in order to be a DBA, you just need to be an expert in one of them. At that point, most employers will know that you can quickly get up to speed on the other databases if needed.Best of luck at it though, :).

  16. The site looks great. I would agree with Skemcin that the header is a little large and could be reduced in size some. I also notice that at the bottom of the page is a blank area (I am using FireFox 1.5), not sure if its a browser issue, but its just above your validation buttons. Also, the background for your headers on each page (such as Services, The Work, etc.) appears to be the lighter cream color but the background for the rest of the area is white.But like I said earlier, it all looks great, but since you asked for opinions and thoughts, that is what I was able to come up with :)

  17. I am trying to create a view in SQL but when I execute it I get the following message ORA-00904: "INTEREST": invalid identifier ...select Property_Number, vAddress_Line1, Type, Price, Appt_Date, sName, interest, vSurname                                                                      *ERROR at line 2: ORA-00904: "INTEREST": invalid identifier

    By the way, try this:
    SELECT *FROM InterestForm

    When you are trying to execute the view, you are not calling it properly. A view is essentially a new table as far as you are concerned (for querying purposes). The columns are: Property, Address, Type, Price, aDate, SalesPerson, InterestLevel, Vendorand the view is named InterestFormIn your query to execute the view, you did not list a FROM and you listed columns that are not in your view (at least not with those labels).I am not sure why it picked INTEREST to makr as invalid identifier, but oh well. Let me know if the above works and if you have any questions about it.

×
×
  • Create New...