Loading...
DotNetKicks.com
.NET links, community driven
login
register
submit a story
upcoming stories
about
blog
Why not
join our community?
, there are
12 users online
home
users
yesthatmcgurk
comments
DotNetKick.com is an
open-source project
. Please
report any bugs
and let us know
your great suggestions
.
Currently running svn revision
620
(rss)
Kick Spy!
,
Kick Zeitgeist
and
Kick Widgets
yesthatmcgurk
yesthatmcgurk
Profile
Kicked
Submitted
Comments
Tags
Friends
Kicked By Friends
Submitted By Friends
Comments:
A Cryptography Primer, Part Four (final)
Previously in the series:
http://www.dotnetkicks.com/security/A_NET_Cryptography_Primer_part_1
http://www.dotnetkicks.com/tipsandtricks/A_NET_Cryptography_Primer_part_2
http://www.dotnetkicks.com/security/A_NET_Cryptography_Primer_part_3
posted by
yesthatmcgurk
6 months, 24 days ago
Expression Studio 2 Ships!
I don't see it in my MSDN downloads yet.
posted by
yesthatmcgurk
7 months ago
How To Become a Development Team Leader
Step one: Don't let on to your employers that your nickname is "Tokes", "Spliff-man" or "Super Ganga Smoking Dude"
posted by
yesthatmcgurk
7 months ago
Web Application Foundation - Part 2 - Preparing a client machine with
"The first part of this article series dealt with setting up the Continuous Integration server with CruiseControl.NET and related tools. This article will deal with the tools, components, and configurations you need to set up on your development workstation in order to take full advantage of the CI environment. Along with a few other items for consideration."
Is that so hard?
posted by
yesthatmcgurk
7 months, 1 day ago
Web Application Foundation - Part 2 - Preparing a client machine with
Web Application Foundation - Part 2 - Preparing a client machine with
Web Application Foundation - Part 2 - Preparing a client machine with
Web Application Foundation - Part 2 - Preparing a client machine with
Web Application Foundation - Part 2 - Preparing a client machine with
Web Application Foundation - Part 2 - Preparing a client machine with
Web Application Foundation - Part 2 - Preparing a client machine with
...
WITH WHAT?????????
posted by
yesthatmcgurk
7 months, 1 day ago
Have you tried Community-Credit.com?
That guy in CC's banner image creeps me the fug out. He won't stop STARING at me. Also, it looks like he's in some weird yoga position with his legs crossed behind his back.
posted by
yesthatmcgurk
7 months, 2 days ago
Interesting Finds: 2008.04.30 - gOODiDEA.NET
ScottGu does it much better. This story doesn't have a funky beat and is hard to dance to. I give it a 1 out of 5.
posted by
yesthatmcgurk
7 months, 2 days ago
Stretching Type Inference
Is it just me, or is that avatar slightly disturbing? Looks like a police sketch artist's rendering of an eye witness' description of the Green River killer or something.
posted by
yesthatmcgurk
7 months, 8 days ago
Why Does This Program Keep Crashing?
perfect code to slip into someone's source when they're AFK
posted by
yesthatmcgurk
7 months, 9 days ago
Style the scrollbar
Brilliant.
posted by
yesthatmcgurk
7 months, 9 days ago
Customizing Visual Studio 2008 and other IDEs (Colors, Fonts, Snippet
Without further adieu?
posted by
yesthatmcgurk
7 months, 11 days ago
Basic WPF: Stylize standard tabs into Aqua Gel
Nice and detailed.
posted by
yesthatmcgurk
7 months, 14 days ago
The easiest string to/from byte array I've found
1) Blogger blog without anonymous comments.
2) WTF
while (strInput.Length > i + 1)
{
long lngDecimal = Convert.ToInt32(strInput.Substring(i, 2), 16);
bytes[x] = Convert.ToByte(lngDecimal);
i = i + 2;
++x;
}
Lets check this out... Using a while to move through the string rather than a for() loop with a step of 2 is weird, but not too weird. What is weird is that he converts the substring to an int32, then casts it implicitly to a long, then converts that to a byte. Why not just:
byte[] result = new byte[data.Length / 2];
for (int i = 0; i < result.Length; i++)
{
result[i] = byte.Parse(
data.Substring(i * 2, 2),
NumberStyles.HexNumber);
}
3) The Bytes_To_String method (nice CamelCasing there, btw) isn't much better:
for (int x = 0; x <= bytes_Input.GetUpperBound(0); x++)
{
int number = int.Parse(bytes_Input[x].ToString());
strTemp += number.ToString("X").PadLeft(2, '0');
}
GetUpperBound? Wow, that's a new one on me. And he first casts the byte to a string, then converts this string to an int, then casts the int back to a string. Dude, that's crazy. BitConverter.ToString(data).Replace("-", ""); FTW.
posted by
yesthatmcgurk
7 months, 14 days ago
What it would take for me to switch to a Macintosh
Seems like a half assed way to spend 3000 bucks on a poorly performing laptop that gets thrown out with yesterday's paper.
posted by
yesthatmcgurk
7 months, 15 days ago
A base class for custom WPF binding markup extensions
Nice. I likes.
posted by
yesthatmcgurk
7 months, 15 days ago
The insanely scalable ReaderWriterGate lock
Aaah, Jeffrey Richter. I fell in love with him when I read his great romance novel, CLR Via C#. I read a chapter out of that book every night before I go to bed.
posted by
yesthatmcgurk
7 months, 15 days ago
« Previous
1
2
3
4
5
6
7
8
9
...
28
29
Next »
Sponsored Link:
www.carlist.ie
Search:
Ads via The Lounge
DotNetKicks is an open source project from
Incremental Systems