iGARrett EWW Member
Posts : 282 Points : 5477 Reputation : 0 Join date : 2010-09-29 Location : treys bedroom
| Subject: iGARrett's Tech Team App. Thu Oct 14, 2010 3:05 pm | |
| It has been 3-4 days since my last app. I can tell you now last time I expected to get in because I just thought I should've, that's why I made such a bad app. So yeah I think this time I'm ready and have made a much better app. I have also been active, a lot more active than some of the admins here. 1. Why do you want to be a part of the tech team?
So i can help people with theyre tech problems and so that i can pass on my tech knowledge.
2. What experience do you have working with technology?
I worked with tech for 5-6 years. I am currently still taking classes. I have been taking classes over html codes, jsp, C++, and asp codes.
3. How old are you?
I am 15 years old.
4. Explain the job and entails of the Tech Team.
They help people out that have tech problems. They also moderate the tech section and answer questions to people that need help.
5. What area of Tech do you cover?(Coding, Anti Viral, ect.)
I cover mostly coding (html, jsp, asp). I have been doing HTML for the longest but still havent reached the very top. The other codes im no ammature at but still need to be tought some stuff.
6. Do you know any type of coding? Show examples of scripts YOU made. (Learning it is fine just show you have basic knowledge.)
I havent made any scripts but i know lots of them. HTML: - Spoiler:
- Code:
-
<div id="sidemenu"> <table bgcolor="#000000"> <tr> <td> <a href="/advancedhtml.htm">Advanced HTML</a><br> <a href="/tables.htm">Tables</a><br> <a href="/frame.htm">Frames</a><br> <a href="/password.htm">Passwords</a><br> </td> </tr> </table> </div>------- Just an advanced table with black background color nothing more.
<FORM> <INPUT TYPE="BUTTON" VALUE="Home Page" ONCLICK="window.location.href='/'"> <INPUT TYPE="BUTTON" VALUE="HTML Books" ONCLICK="window.location.href='/htmlbooks.htm'"> <INPUT TYPE="BUTTON" VALUE="JavaScript" ONCLICK="window.location.href='/javascript.htm'"> </FORM> -----This code is for different buttns to go to different pages.
<marquee behavior="alternate" scrollamount="50" scrolldelay="8">This text will go alternate from left to right</marquee>----Pretty much summed it up in the code.
<marquee><img src="pic.gif" alt="up" align="middle" width="21" height="19">iGarrett</marquee>---- A regular marque code but with img attahed to it. <FORM> <INPUT TYPE="button" VALUE="Back" onClick="history.go(-1)"> </FORM>--------Its the back button, goes to the previous page u were on IF that page was apart of the web page u were viewing.
JSP: - Spoiler:
- Code:
-
<FORM METHOD=POST ACTION=j_security_check> ---simple login page.
<%@page language="java" session="true" errorPage="error.jsp" %> -----Used to handle un expected errors in a page.
ASP: - Spoiler:
- Code:
-
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="How-to-get-IP-Address-of-Visitor.aspx.vb" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server"> <title>IP To Country Example</title> <style type = "text/css"> .text { font-family:Arial; font-size:11pt; } </style> </head> <body> <form id="form1" runat="server"> <div> <table> <tr> <td style="width: 173px"><asp:Label ID="Label1" runat="server" Text="Country : " CssClass = "text" Width="87px" /></td> <td style="width: 188px"><asp:Label ID="lblCity" runat="server" CssClass = "text" Width="186px" /></td> </tr> <tr> <td style="width: 173px"><asp:Label ID="Label2" runat="server" Text="Region : " CssClass = "text" Width="87px" /></td> <td style="width: 188px"><asp:Label ID="lblRegion" runat="server" CssClass = "text" Width="186px" /></td> </tr> <tr> <td style="width: 173px"><asp:Label ID="Label3" runat="server" Text="Country : " CssClass = "text" Width="87px" /></td> <td style="width: 188px"><asp:Label ID="lblCountry" runat="server" CssClass = "text" Width="186px" /></td> </tr> <tr> <td style="width: 173px"><asp:Label ID="Label4" runat="server" Text="CountryCode : " CssClass = "text" Width="87px" /></td> <td style="width: 188px"><asp:Label ID="lblCountryCode" runat="server" CssClass = "text" Width="186px" /></td> </tr> </table> </div> </form> </body > </html>----I over did that code but thats how u get the ip adress of some1 that visits ur site.
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="How-to-use-HTMLInputFile.aspx.vb" Inherits="How_to_use_HTMLInputFile" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>How to use HTMLInputFile</title> </head> <body> <form id="form1" runat="server"> <div> Select File : <input id="File1" style="width: 288px" type="file" runat="server" /> <br /> <br /> Filename collected : <input id="txtSaveAs" style="width: 264px" type="text" runat="server" /><br /> <br /> <input id="btnSubmit" type="button" value="Upload" runat="server" onserverclick="btnSubmit_ServerClick" /><br /> <br /> <asp:Label ID ="lblShow" runat="server" Width="576px" /> </div> </form> </body> </html>-------Code on uploading things from you cpu to the internet.
C++: - Spoiler:
- Code:
-
{ public: Data(int val = 0) { mVal = val; } int getVal() const { return mVal; } void setVal(int val) {mVal = val; } protected: int mVal; }; int main(int argc, char** argv) { map<int, Data> dataMap; pair<map<int, Data>::iterator, bool> ret; ret = dataMap.insert(make_pair(1, Data(4))); if (ret.second) { cout << "Insert succeeded!\n"; } else { cout << "Insert failed!\n"; } ret = dataMap.insert(make_pair(1, Data(6))); if (ret.second) { cout << "Insert succeeded!\n"; } else { cout << "Insert failed!\n"; } return (0); } --------Insert a map right there. Thats all i know is map codes basicly, learning more soon.
7. What is the greatest aspect of Tech that you think you cover better than everyone here? Please explain.
Probably coding, uve seen what i can do above. I admit there are people better than me here. But im up there though.
8. What have you done on EWW to help other people with Tech problems?
No one has really complained about theyre tech problems. But if some one ever does i will make sure i will be the first to give a good/accurate answer. I always try to do as much as i can in that field.
9. Give examples of a technical problem you would be able to solve. (At least 3.)
I can solve web page inormalitys. I can also fix small devices such as an ipod, i have fixed numerous ones at my school. I can also fix some computer things such as crashes, device exploits exc.
10. Do you understand that breaking any rules will mean you are removed from your group and possible banned?
Yes i do understand.
Thanks for reading my app. Hope you are pleased this time. | |
|
KiLLErMaN99 Tech Co-Leader
Posts : 685 Points : 6166 Reputation : -11 Join date : 2010-07-03 Location : Here
| Subject: Re: iGARrett's Tech Team App. Thu Oct 14, 2010 7:44 pm | |
| I'm going to give you one chance to prove that you aren't ripping. I found all 4 of those scripts when I googled them. Don't argue where, just prove to me that you didn't rip them or else you'll be banned from applying for the tech team. | |
|
iGARrett EWW Member
Posts : 282 Points : 5477 Reputation : 0 Join date : 2010-09-29 Location : treys bedroom
| Subject: Re: iGARrett's Tech Team App. Fri Oct 15, 2010 6:41 am | |
| Ok well to answer ur question i got them from my teacher and some of the books she told me to buy and study. She tells me how to use them and to not to go far off with the script as in try to make my own yet. These are the books, HTML 4 for the World Wide Web - Fourth Edition, Effective C++: 50 Specific Ways to Improve Your Programs and Design (1st Addition), the JSP book Professional JSP (1st Addition) and (2nd addition(kinda studying), and last but not least the ASP book ASP.NET something, cant remember the whole title lol. But yeah there you go. :] And you should know i dont rip from ive showed you in the chat. O.o | |
|
KiLLErMaN99 Tech Co-Leader
Posts : 685 Points : 6166 Reputation : -11 Join date : 2010-07-03 Location : Here
| Subject: Re: iGARrett's Tech Team App. Fri Oct 15, 2010 7:02 am | |
| If you can't make scripts yourself how are you going to help someone else. You told me in the chatbox that it was like 2+2. Well 2+2 is commen knowledge. So if you are doing stuff that is commen knowledge then how are you going to be of any help? I also don't like the attitude I was getting in the chat
Denied for now | |
|
TehDarkKnife
| Subject: Re: iGARrett's Tech Team App. Fri Oct 15, 2010 8:39 am | |
| - iGARrett wrote:
2. What experience do you have working with technology?
I worked with tech for 5-6 years. I am currently still taking classes. I have been taking classes over html codes, jsp, C++, and asp codes.
We'll not risk another liar. /Denied | |
|
Sponsored content
| Subject: Re: iGARrett's Tech Team App. | |
| |
|