Click here to Skip to main content
15,887,368 members

Eytukan - Professional Profile



Summary

    Blog RSS
5,865
Authority
19,345
Debator
2
Editor
126
Enquirer
1,047
Organiser
1,913
Participant
0
Author
Available only for Diamond members

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.


 
GeneralWelcome to CP...... Pin
Eytukan28-Mar-06 22:15
Eytukan28-Mar-06 22:15 
GeneralSig Track [modified]. Pin
Eytukan4-Nov-06 21:45
Eytukan4-Nov-06 21:45 
GeneralRe: Welcome to CP...... Pin
Programm3r18-Mar-07 22:08
Programm3r18-Mar-07 22:08 
GeneralRe: Welcome to CP...... Pin
Eytukan19-Mar-07 8:16
Eytukan19-Mar-07 8:16 
GeneralWelcome Pallini :) Pin
Eytukan3-Mar-09 23:07
Eytukan3-Mar-09 23:07 
GeneralRe: Welcome Pallini :) Pin
CPallini3-Mar-09 23:12
mveCPallini3-Mar-09 23:12 
General999* Pin
Eytukan8-Mar-06 21:08
Eytukan8-Mar-06 21:08 
GeneralMY MESSAGE BOOKMARKS Pin
Eytukan4-Jul-06 21:53
Eytukan4-Jul-06 21:53 


Some interesting progamming messages




The function should remove all duplicate values form a string containing comma separated values.

RemoveDuplicates("a,b,c,a") => "a,b,c"
RemoveDuplicates("a,b,c,a,c,b,c") => "a,b,c"
RemoveDuplicates("a,b,c") => "a,b,c"
RemoveDuplicates("cat,dog,dog") => "cat,dog"
^





While you are waiting for a build that crashes or may be not. Here is a simple programming problem (not question). The objective is to write the following function:


string GetIntersection(string csvString1, string csvString2) { }

csvString1 and csvString2 both contain comma separated list of unique values. The values can be in any order and they don't contain commas. The objective is to return a new CSV string which contains value from both the lists.

e.g.
csvString1: cat,rat,dog,lion
csvString2: lion,elephant,mouse,tiger,rat,dog

output: lion,rat,dog^



I found this announcement[^] of a readable regular expressions library via Ayende's blog[^].

Basically, it's a .NET library that lets you type regular expressions like this:

Regex socialSecurityNumberCheck = new Regex(Pattern.With.AtBeginning .Digit.Repeat.Exactly(3) .Literal("-").Repeat.Optional .Digit.Repeat.Exactly(2) .Literal("-").Repeat.Optional .Digit.Repeat.Exactly(4) .AtEnd);

Instead of

Regex socialSecurityNumberCheck = new Regex(@"^\d{3}-?\d{2}-?\d{4}$");
^




x = NullShortcut(Foo.Bar.GetBaz().Names.Child);
if any of Foo, Foo.Bar, ... is null, x becomes null (without messing around with exceptions)
I mean, really.
^



if (3 < a < 10) {...}
or...
if (a [> 3 && < 10]) {...}
cause this if (3 < a && a < 10) {...}
gets old, quick.
^





Given two strings with characters in any order, the objective is to find whether both the strings contain same set of characters.

In other words, If A is the set of characters from the first string and B is the set of charcters from the second string, the function should return true if A equals B and false otherwise.


bool SameSetOfCharacters(string str1, string str2) {}


e.g.

SameSetOfCharacters("BACD", "AB") == false
SameSetOfCharacters("ABDADBCC", "ABCD") == true
SameSetOfCharacters("A", "AAAAA") == true

As usual the point is to have fun, and not neccessarily to find the optimal/best solution^



GeneralCool & Funny Messages Pin
Eytukan4-Nov-06 22:06
Eytukan4-Nov-06 22:06 
GeneralVoting tips & tricks :-D Pin
Eytukan11-Feb-07 21:39
Eytukan11-Feb-07 21:39 
GeneralRe: Voting tips & tricks :-D Pin
toxcct14-Feb-07 6:06
toxcct14-Feb-07 6:06 
GeneralRe: Voting tips & tricks :-D Pin
Eytukan14-Feb-07 15:36
Eytukan14-Feb-07 15:36 
GeneralRe: Voting tips & tricks :-D Pin
ThatsAlok14-Mar-07 20:14
ThatsAlok14-Mar-07 20:14 
GeneralRe: Voting tips & tricks :-D Pin
Eytukan14-Mar-07 20:16
Eytukan14-Mar-07 20:16 
AnswerSurveys Pin
Eytukan14-Mar-07 16:51
Eytukan14-Mar-07 16:51 
GeneralMy Favorites....... Pin
Eytukan30-Dec-05 2:32
Eytukan30-Dec-05 2:32 
GeneralRe: Welcome 2006 :) Pin
ThatsAlok1-Jan-06 23:44
ThatsAlok1-Jan-06 23:44 
GeneralMessage Closed Pin
2-Jan-06 21:08
Eytukan2-Jan-06 21:08 
GeneralRe: Welcome 2006 :) Pin
ThatsAlok2-Jan-06 21:18
ThatsAlok2-Jan-06 21:18 
General[Message Deleted] Pin
Eytukan2-Jan-06 22:46
Eytukan2-Jan-06 22:46 
GeneralRe: Welcome 2006 :) Pin
ThatsAlok2-Jan-06 23:54
ThatsAlok2-Jan-06 23:54 
GeneralRe: Welcome 2006 :) Pin
Eytukan19-Jan-06 22:34
Eytukan19-Jan-06 22:34 
GeneralRe: Welcome 2006 :) Pin
toxcct19-Jan-06 22:50
toxcct19-Jan-06 22:50 
GeneralRe: Welcome 2006 :) Pin
Eytukan2-May-06 23:24
Eytukan2-May-06 23:24 
GeneralRe: Welcome 2006 :) Pin
toxcct2-May-06 23:27
toxcct2-May-06 23:27 

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.