Click here to Skip to main content
15,884,624 members

carbon_golem - Professional Profile



Summary

    Blog RSS
1,159
Authority
265
Debator
11
Enquirer
97
Organiser
353
Participant
0
Author
0
Editor
B.S.E. in Computer Engineering.
Currently doing hardware interfacing using C# over IO channels.

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.


 
GeneralKata for 12/12/2008 Member 4576884's Homework Pin
carbon_golem12-Dec-08 10:02
carbon_golem12-Dec-08 10:02 
GeneralRe: Kata for 12/12/2008 Member 4576884's Homework (Answer to #1) Pin
carbon_golem22-Dec-08 2:46
carbon_golem22-Dec-08 2:46 
GeneralNote to self.... Pin
carbon_golem30-Sep-08 8:25
carbon_golem30-Sep-08 8:25 
GeneralSmall code Pin
carbon_golem30-Sep-08 7:05
carbon_golem30-Sep-08 7:05 
GeneralLOLCODE freakin hilarious Pin
carbon_golem18-Jul-08 4:04
carbon_golem18-Jul-08 4:04 
GeneralKata for 7/15/2008 Type Caching Pin
carbon_golem15-Jul-08 10:29
carbon_golem15-Jul-08 10:29 
GeneralRe: Kata for 7/15/2008 Type Caching Pin
carbon_golem17-Jul-08 3:54
carbon_golem17-Jul-08 3:54 
GeneralKata for 5/29/2008 Command Synchronization Pin
carbon_golem29-May-08 2:36
carbon_golem29-May-08 2:36 
GeneralRe: Kata for 5/29/2008 Command Synchronization Pin
carbon_golem29-May-08 3:37
carbon_golem29-May-08 3:37 
GeneralKata for 5/13/2008 CSV Writer Pin
carbon_golem13-May-08 2:53
carbon_golem13-May-08 2:53 
GeneralRe: Kata for 5/13/2008 CSV Writer Pin
carbon_golem29-May-08 3:37
carbon_golem29-May-08 3:37 
GeneralCode Kata for 5/7/2008 Pin
carbon_golem7-May-08 5:50
carbon_golem7-May-08 5:50 
GeneralRe: Code Kata for 5/7/2008 Pin
carbon_golem8-May-08 5:49
carbon_golem8-May-08 5:49 
GeneralRe: Code Kata for 5/7/2008 [modified] Pin
carbon_golem13-May-08 2:12
carbon_golem13-May-08 2:12 
GeneralKata for 5/2/2008 Pin
carbon_golem2-May-08 4:15
carbon_golem2-May-08 4:15 
GeneralRe: Kata for 5/2/2008 Pin
carbon_golem2-May-08 18:20
carbon_golem2-May-08 18:20 
GeneralCode Katas Pin
carbon_golem1-May-08 4:35
carbon_golem1-May-08 4:35 
GeneralBoilerplate code... [modified] Pin
carbon_golem30-Apr-08 8:34
carbon_golem30-Apr-08 8:34 
I thought I'd start some boilerplate code for those posters who are having a little more trouble than just C#.

/*
Bloodthirsty License Agreement
------------------------------
This is where the bloodthirsty license agreement is supposed to go,
explaining that it is a copyrighted package licensed for use, and 
sternly warning you not to pirate copies of it and explaining, in 
detail, the gory consequences if you do.

If you are one of those few people who do go around pirating source 
code you probably aren't going to pay much attention to a license
agreement, bloodthirsty or not.  Just keep your doors locked and 
look out for the attack shark.

Honest Disclaimer
-----------------
I don't claim this source code is good for anything -- if you
think it is, great, but it's up to you to decide.  If this doesn't
work: tough.  If you lose a million because this source code messes up, 
it's you that's out the million, not me.  If you don't like this 
disclaimer: tough.  I reserve the right to do the absolute minimum 
provided by law, up to and including nothing.

*/

//Changelog:
//4/25/2008
// -Original post by SpacixOne
//4/30/2008 
// -Updated Exception handler from Greeeg's suggestion.
// -Changed to more appropriate namespace
//12/11/2008
// -Added Bloodthirsty license agreement stolen from the internet.
using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
using System.IO;

namespace NeedsCode
{
    class Program
    {
        static void Main(string[] args)
        {
            throw new NotImplementedException("The program code needs to be implemented.");
        }
    }
}


"Run for your life from any man who tells you that money is evil. That sentence is the leper's bell of an approaching looter." --Ayn Rand

modified on Thursday, December 11, 2008 11:33 AM

GeneralRe: Boilerplate code... Pin
carbon_golem11-Dec-08 5:41
carbon_golem11-Dec-08 5:41 

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.