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
V

VadimAlk

@VadimAlk
About
Posts
3
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Wow.. SCRUM is **horrible**...
    V VadimAlk

    I think SCRUM works very good in some arrears. But not for writing of a "cool" product incorporating all features you can think about. SCRUM works very well for strictly regulated products or products with strict hardware limitations (medical system, defence contracts, embedded software and so on). I’m sure, you don’t want to read tons of tongue-tied regulations every time you have a bright idea, to make sure you new “cool” feature will be legal; won’t be life-threatening for patients in some weird cases; or its memory and processing time consumption is within specified boundaries. You want you PM to assign some BAs to do this job and report before the next sprint. Therefore, I think SCRUM is a great methodology in certain cases, but should not be used everywhere.

    The Lounge help question business collaboration discussion

  • Programming For Fun: The Dark Side
    V VadimAlk

    Hmmm, learning something useless for my job? Aikido, Piano and Japanise language...

    The Lounge adobe com help question career

  • Coding Challenge Of The Day
    V VadimAlk

    private Dictionary R2A_dictionary = new Dictionary()
    {
    {'I', 1},
    {'V', 5},
    {'X', 10},
    {'L', 50},
    {'C', 100},
    {'D', 500},
    {'M', 1000},
    };

    private int ConvertRomanToArabic(string roman)
    {
    int result = 0;
    int previous = Int32.MaxValue, current = 0;
    for (int i = 0; i < roman.Length; i++)
    {
    current = R2A_dictionary[roman[i]];
    result += current;
    if (current > previous)
    result -= previous << 1;
    previous = current;
    }
    return result;
    }

    The Lounge c++ architecture
  • Login

  • Don't have an account? Register

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