Click here to Skip to main content
15,885,767 members

Steve Echols - Professional Profile



Summary

    Blog RSS
3,150
Authority
6,579
Debator
2
Editor
7
Enquirer
1,166
Organiser
3,561
Participant
0
Author
Multiple inheritance rules (especially if you have rich relatives)!

I'm currently working on my first article, and at the rate I'm going, it's already irrelevant.

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
GeneralThis got me again Pin
Steve Echols25-Jan-12 20:30
Steve Echols25-Jan-12 20:30 
If you're using prototype.js, and (god forbid) you are dynamically creating a table with new Element("table"), don't forget to also create a "tbody", or IE will not display your table no matter what you do, and you'll shove the nearest sharp object repeatedly through your temple.


DON'T DO:
var tbl = new Element("table");
var tr = new Element("tr");
tbl.appendChild(tr);
var td = new Element("td");
tr.appendChild(td);


DO:
var tbl = new Element("table");
var tbody = new Element("tbody");
tbl.appendChild(tbody);
var tr = new Element("tr");
tbody.appendChild(tr);
var td = new Element("td");
tr.appendChild(td);


- S
50 cups of coffee and you know it's on!
Code, follow, or get out of the way.

GeneralThis get's me everytime Pin
Steve Echols3-May-11 11:57
Steve Echols3-May-11 11:57 
GeneralNothing to blog here... Pin
Steve Echols26-Mar-06 20:41
Steve Echols26-Mar-06 20:41 
GeneralRe: Nothing to blog here... Pin
Paul Conrad25-Jun-07 16:44
professionalPaul Conrad25-Jun-07 16:44 
GeneralRe: Nothing to blog here... Pin
Steve Echols25-Jun-07 16:52
Steve Echols25-Jun-07 16:52 
GeneralRe: Nothing to blog here... Pin
Eytukan13-Jul-07 5:11
Eytukan13-Jul-07 5:11 
GeneralRe: Nothing to blog here... Pin
Steve Echols13-Jul-07 5:41
Steve Echols13-Jul-07 5:41 
GeneralRe: Nothing to blog here... Pin
Blumen2-Nov-08 18:12
Blumen2-Nov-08 18:12 
GeneralRe: Nothing to blog here... Pin
Steve Echols2-Nov-08 18:29
Steve Echols2-Nov-08 18:29 
GeneralRe: Nothing to blog here... Pin
Blumen2-Nov-08 20:44
Blumen2-Nov-08 20:44 
GeneralRe: Nothing to blog here... Pin
Rajesh R Subramanian14-Apr-09 20:57
professionalRajesh R Subramanian14-Apr-09 20:57 
GeneralRe: Nothing to blog here... Pin
Steve Echols14-Apr-09 21:07
Steve Echols14-Apr-09 21:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.