Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
R

Ri Qen Sin

@Ri Qen Sin
About
Posts
450
Topics
20
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • doubles a == b or not ?
    R Ri Qen Sin

    I'm tempted to use the Decimal type whenever I can to make results more predictable.

    So the creationist says: Everything must have a designer. God designed everything. I say: Why is God the only exception? Why not make the "designs" (like man) exceptions and make God a creation of man?

    Clever Code csharp help question

  • Well, it's off to the unemployment line...
    R Ri Qen Sin

    I've got a job that doesn't suit me very well… but I don't complain because it's hard to get another. Good luck to you.

    So the creationist says: Everything must have a designer. God designed everything. I say: Why is God the only exception? Why not make the "designs" (like man) exceptions and make God a creation of man?

    The Lounge career

  • Hard Disk Configuration
    R Ri Qen Sin

    From a data security point of view, having 2 terabyte-sized drives in RAID-0 mode is a recipe for disaster. Get 2 of thoer VelociRaptors in mirrored mode. You get faster read speeds and better reliability. Believe it or not, I've tried a lot of different hard drives already, and failure is pretty common (random data loss for example).

    So the creationist says: Everything must have a designer. God designed everything. I say: Why is God the only exception? Why not make the "designs" (like man) exceptions and make God a creation of man?

    The Lounge com question workspace

  • Licensing, Obfuscation and Copy Protection Tools
    R Ri Qen Sin

    Resistance is futile. I didn't even try and I learned it. :(

    So the creationist says: Everything must have a designer. God designed everything. I say: Why is God the only exception? Why not make the "designs" (like man) exceptions and make God a creation of man?

    The Lounge c++ tools question

  • What is your survival Plan for Recession[modified]
    R Ri Qen Sin

    Add more money to my mutual fund account, and hope the economy gets back on its feet again. Imagine the return on my investment if all goes well! :-D

    So the creationist says: Everything must have a designer. God designed everything. I say: Why is God the only exception? Why not make the "designs" (like man) exceptions and make God a creation of man?

    The Lounge question com

  • Factorials (C#)
    R Ri Qen Sin

    Ah, nice. I played around with it, and it seems that n_C_r will work as long as n is less than 68.

    So the creationist says: Everything must have a designer. God designed everything. I say: Why is God the only exception? Why not make the "designs" (like man) exceptions and make God a creation of man?

    The Lounge question csharp html com

  • Factorials (C#)
    R Ri Qen Sin

    Using my calculator, it appears that the Decimal type can handle up to 27!, and the Decimal type happens to have 95-bits for the integer part. I suppose a BigInt type would be used beyond 27! if an exact result is needed.

    So the creationist says: Everything must have a designer. God designed everything. I say: Why is God the only exception? Why not make the "designs" (like man) exceptions and make God a creation of man?

    The Lounge question csharp html com

  • Factorials (C#)
    R Ri Qen Sin

    The largest number representable in .NET for UInt64, Decimal, and Double are about 1.84E19, 3.96E28, and 1.80E308 respectively. The factorial of 28 is already 3.05E29, which is bigger than what any number type (except the Double) can represent in .NET. The Double type has its own problems too. Beyond 4.50E15, integers can't be represented accurately anymore since a Double only has a maximum of 52 bits to represent an integer with. You might as well as craft a method to look up the answer in a pre-made dictionary or table of some sort. I don't know what your needs are or if I'm completely wrong, so feel free to correct me.

    So the creationist says: Everything must have a designer. God designed everything. I say: Why is God the only exception? Why not make the "designs" (like man) exceptions and make God a creation of man?

    The Lounge question csharp html com

  • this (another C# programmer rant)
    R Ri Qen Sin

    I simply use it because it helps me figure out what's a class member or not, although laziness is also a good justification. :)

    So the creationist says: Everything must have a designer. God designed everything. I say: Why is God the only exception? Why not make the "designs" (like man) exceptions and make God a creation of man?

    The Lounge csharp visual-studio com question

  • code aesthetics
    R Ri Qen Sin

    Do not go against Visual Studio's automatic formatting. That's one rule I always follow. :)

    So the creationist says: Everything must have a designer. God designed everything. I say: Why is God the only exception? Why not make the "designs" (like man) exceptions and make God a creation of man?

    The Lounge com question discussion

  • In case the prophets of doom are right
    R Ri Qen Sin

    This LHC experiment is like running unsafe code. Why couldn't they practice process isolation and bring this LHC somewhere physically disconnected from the Earth? That is assuming those worried people are actually right…

    So the creationist says: Everything must have a designer. God designed everything. I say: Why is God the only exception? Why not make the "designs" (like man) exceptions and make God a creation of man?

    The Lounge com

  • P2P networks
    R Ri Qen Sin

    I run an internal P2P network to distribute files.

    So the creationist says: Everything must have a designer. God designed everything. I say: Why is God the only exception? Why not make the "designs" (like man) exceptions and make God a creation of man?

    The Lounge question

  • 4 digits!
    R Ri Qen Sin

    Nice to see you — alive and well.

    So the creationist says: Everything must have a designer. God designed everything. I say: Why is God the only exception? Why not make the "designs" (like man) exceptions and make God a creation of man?

    The Lounge

  • Time for a reformat
    R Ri Qen Sin

    I create an image of my hard drive after I reformat and install all the essentials. My documents and user profile reside in a different partition. If something messes up, I can always restore the image and have all my files intact.

    So the creationist says: Everything must have a designer. God designed everything. I say: Why is God the only exception? Why not make the "designs" (like man) exceptions and make God a creation of man?

    The Lounge question

  • Padding an ID to six digits
    R Ri Qen Sin

    I believe it would be int.ToString(some_string, "000000");. Of course, I haven't programmed for a while, so I might be wrong.

    So the creationist says: Everything must have a designer. God designed everything. I say: Why is God the only exception? Why not make the "designs" (like man) exceptions and make God a creation of man?

    The Weird and The Wonderful ruby

  • Video File Reducer
    R Ri Qen Sin

    And that works with MPEG files?

    So the creationist says: Everything must have a designer. God designed everything. I say: Why is God the only exception? Why not make the "designs" (like man) exceptions and make God a creation of man?

    The Lounge com question

  • disable CTRL C
    R Ri Qen Sin

    Make the presentation format "non-standard"; make a Java applet fill up the browser window, and using Java to display the content.

    So the creationist says: Everything must have a designer. God designed everything. I say: Why is God the only exception? Why not make the "designs" (like man) exceptions and make God a creation of man?

    The Lounge question

  • A RAM Question
    R Ri Qen Sin

    I was thinking about cosmic rays.

    So the creationist says: Everything must have a designer. God designed everything. I say: Why is God the only exception? Why not make the "designs" (like man) exceptions and make God a creation of man?

    The Lounge question com sysadmin hardware tools

  • QOTD
    R Ri Qen Sin

    Ironically, it's only a mistake if you interrupt or find out! :laugh: :laugh: :laugh:

    So the creationist says: Everything must have a designer. God designed everything. I say: Why is God the only exception? Why not make the "designs" (like man) exceptions and make God a creation of man?

    The Lounge php visual-studio com

  • Why DataSet always returns null?
    R Ri Qen Sin

    A simple programming oversight. :laugh:

    So the creationist says: Everything must have a designer. God designed everything. I say: Why is God the only exception? Why not make the "designs" (like man) exceptions and make God a creation of man?

    The Weird and The Wonderful help question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups