Search Results

1
vote

Adding Matrices in C#?

In a language like C#, you've no real need to worry about this stuff. There are tried and tested class libraries that do that sort of thing for you, and importantly, they're optimised take advanta …
0
votes

C# RSS Reader

RSS itself is really simple. Just an XML description of a channel, and a list of items on that channel (possibly with files attached to each item). Keeping track of updates is a little tricky, and …
2
votes

How to start recognizing design patterns as you are programming?

Exercises. Practice writing (multiple) short programs that specifically use the different patterns. Then practice combining multiple patterns in one program. The more you familiarise yourself wi …
0
votes

find source code matched with machine address

Any decent IDE that includes a debugger will do this automatically. Otherwise, you typically need to build your project with debugging information (debug symbols) enabled (which isn't recommended …
1
vote

I need to image slider for C#

You should be able to implement one fairly easily using a scrollarea and/or scrollbars that wrap a canvas. Either just draw the images onto the canvas and let the user simply scroll it with the sc …
0
votes

How to Recruit Great Developers?

Aside from all the stuff people have mentioned above (an despite a few things mentioned above), one other thing is also very important: do NOT make your company sound like it takes itself ultra-ser …
1
vote

C++ or Python for C# programmer?

C# is a little closer to Java and C++ than it is to Python, so learn Python first out of the two. However, my advice would be: Stick with your current language and learn mo …
0
votes

What are the Alternatives to Google Analytics

The biggest, most obvious, most usual alternative is to simply do it yourself. Your webserver needs to log requests for security etc. anyway, so it's not a big deal to run something like webalizer …