Vanuan

427
Reputation
92 views

Registered User

Name Vanuan
Member for 7 months
Seen Nov 21 at 19:45
Website
Location Odessa, Ukraine
Age 20
BS in CS. I'm a second year Master's Degree student.

Currently working on the project which involves programming for an 8-bit Atmel AVR microcontroller using an assembly language.

My English is far from perfect... sorry for my mistakes. I appreciate any corrections.
Nov
12
awarded  Nice Answer
Nov
3
awarded  Nice Question
Oct
12
revised C++ const keyword - use liberally?
added 158 characters in body
Oct
12
answered C++ const keyword - use liberally?
Sep
29
answered Listings in Latex with UTF-8 (or at least german umlauts)
Sep
29
comment Listings in Latex with UTF-8 (or at least german umlauts)
I think, 'extendedchars=\true' is equal to 'extendedchars=false'.
Sep
29
comment Listings in Latex with UTF-8 (or at least german umlauts)
Similar problem with cyrillic. Using one byte encoding solves the problem.
Jul
30
comment Broken Mono C# code using System.Windows.Forms
"-pkg:dotnet" also works
Jul
24
revised What is the single most influential book every programmer should read?
added 49 characters in body
Jul
14
comment What is the single most influential book every programmer should read?
Ok. We can downvote it now.
Jul
4
answered How to find available COM ports?
Jun
20
comment Programming slim C++ programs (like uTorrent) for Windows
AFAIK uTorrent is packed with compressor, so its physycal size is small. But at runtime it is decompressed and use much more memory.Small executable size is achieved by avoiding the use of many libraries, notably the C++ standard library and stream facilities, and creating substitutes written specifically for the program. (see article at Wikipedia)
Jun
19
comment Why is it considered a bad practice to omit curly braces?
Use Python and forget about this :)
Jun
17
comment What is the single most influential book every programmer should read?
Someone should link images to the top answers and delete this.
Jun
14
asked Are software engineering and software development the same?
May
31
comment working with very large integers in c#
I've realized that it is similar to creating new integer type. You need to implement basic operations such as multyplication. It could be waste of space to store 1 decimal digit into byte. But you can use a bit array (the BitArray class for example). There is some basic code daniweb.com/code/snippet233.html Hope it helps.