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
J

JesperMadsen123

@JesperMadsen123
About
Posts
5
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Why does most C/C++ developer prefers char *c instead of char* c?
    J JesperMadsen123

    When doing more than one variable declaration makes sense to put the * correctly, or you do not get what you expect. When writing: char* a,b,c; you get the equivalent of: char *a,b,c; and you would probably expect: char *a,*b,*c;

    The Lounge question c++

  • Sloppy Code - thoughts
    J JesperMadsen123

    Use a tool for codeformatting, make sure to run it before you commit your code, or make your editor format your code. Codeformatting "by hand" is waste and should be eliminated.

    The Lounge question discussion

  • how can i make parameter that take a period of months as a parameter in c# crystal reports
    J JesperMadsen123

    One options would be to allow setting a "from/start" date, and a number of months as a regular integer parameter, e.g. from a textfield or combo box. Then in your C# code create a date range as: public DateTime CalculateEndDateOfRange(DateTime startdate, uint months) { DateTime endtime = startdate.AddMonths(months); return endtime; } Check as similar question here... http://stackoverflow.com/questions/4454271/date-range-in-days-c[^]

    C# csharp visual-studio tutorial question

  • Threading problem
    J JesperMadsen123

    I am sure you can find a solution for adding more producers, if you are good at lock-free algorithms. This page suggest that it is not impossible. http://www.1024cores.net/home/lock-free-algorithms/queues

    Algorithms com debugging help question

  • 3 way byte merge
    J JesperMadsen123

    Some ideas of the top of my head.. Can you interleave the input data for the function _b,_g,_r so they might fit caches better? Maybe you can unroll some of the loop, iterate in 12 bytes at a time 4 * 3, and store as 3 uint* operations... The last of the column w % 4 (i think) must be performed by your current loop (between 0 and 3 operations).

    C# csharp c++ graphics json performance
  • Login

  • Don't have an account? Register

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