Click here to Skip to main content
15,881,852 members

jpmik - Professional Profile



Summary

    Blog RSS
27,583
Author
174
Authority
224
Debator
5
Editor
31
Enquirer
380
Organiser
801
Participant
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

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.


 
GeneralHex dump formatter Pin
jpmik26-Jan-15 11:56
jpmik26-Jan-15 11:56 
GeneralFast 64 bit integer Log2 method Pin
jpmik30-Nov-14 4:52
jpmik30-Nov-14 4:52 
GeneralHow to launch and wait for another powershell script using different credentials Pin
jpmik27-Aug-14 21:59
jpmik27-Aug-14 21:59 
GeneralRe: How to launch and wait for another powershell script using different credentials Pin
kharods15-Dec-14 1:32
kharods15-Dec-14 1:32 
GeneralRe: How to launch and wait for another powershell script using different credentials Pin
jpmik15-Dec-14 6:53
jpmik15-Dec-14 6:53 
GeneralRe: How to launch and wait for another powershell script using different credentials Pin
kharods15-Dec-14 19:56
kharods15-Dec-14 19:56 
GeneralRe: How to launch and wait for another powershell script using different credentials Pin
jpmik16-Dec-14 3:43
jpmik16-Dec-14 3:43 
GeneralLinq query to test if a collection is sorted Pin
jpmik3-Mar-14 21:56
jpmik3-Mar-14 21:56 
GeneralWeak Timer Pin
jpmik2-Jan-12 11:27
jpmik2-Jan-12 11:27 
GeneralReference Wrapper Pin
jpmik17-Dec-10 12:19
jpmik17-Dec-10 12:19 
GeneralTFTP server Pin
jpmik7-Apr-10 10:19
jpmik7-Apr-10 10:19 
Generalvalue clipping extension method Pin
jpmik20-May-09 9:59
jpmik20-May-09 9:59 
public static T Clip<T>(this T value, T minValue, T maxValue) where T : IComparable<T>
{
    T result;
    if (value.CompareTo(minValue) < 0)
        result = minValue;
    else if (value.CompareTo(maxValue) > 0)
        result = maxValue;
    else
        result = value;
    return result;
}

GeneralRandomize/Shuffle your lists Pin
jpmik25-Apr-09 23:50
jpmik25-Apr-09 23:50 
GeneralSerializable Color type Pin
jpmik19-Apr-09 8:18
jpmik19-Apr-09 8:18 
GeneralStandard variance / Standard deviation extension methods using IEnumerable.Aggregate Pin
jpmik24-Jan-09 6:48
jpmik24-Jan-09 6:48 
GeneralConvert WIC BitmapFrame to GDI+ Image extension method Pin
jpmik26-May-08 7:03
jpmik26-May-08 7:03 

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.