8,126 reputation
1525
bio website software-architect.net
location Germany
age 40
visits member for 9 months
seen 24 mins ago
stats profile views 312
  • Started software development in 1987 on a C128 using Basic, 6510 Assembler, Turbo Pascal 3.0
    • Moved to the PC in 1989, doing software development in C, x86 Assembler, still some Basic (don't ask...)
    • Later discovered object oriented programming, starting with C++ and later Java
    • Switched from MS-DOS and MS-Windows to Linux in 1994
    • Did some Microcontroller related projects based on the 8051, and later based on Microchip's PIC family
    • Currently working as Software Architect at Oracle

A code repository with SSCCEs from some of my SO postings is available at https://github.com/afester/StackOverflow.


23m
revised Java-Buffered Reader, How do you read a line using br.readLine(System.in) and convert it to char?
Formatted code
39m
revised Gaining control on the name of the temp file created in Java
added 111 characters in body
47m
answered Gaining control on the name of the temp file created in Java
21h
comment How to fix weird ordering in setProperty or put for Properties class
@sp00m This can be useful for debugging - imagine a large unsorted properties list (like the one returned from System.getProperties()) where you are looking for file.encoding...
1d
reviewed Approve suggested edit on static data member count
May
17
revised why i receive Undefined reference error in QtCreator?
added 5 characters in body
May
17
comment C programming bitfield in structure
@KerrekSB §6.2.6.2 of the C11 spec at least mentions three possible alternatives (sign/magnitude, one's complement, two's complement) - not sure if this is a closed list, though
May
17
revised C programming bitfield in structure
added 201 characters in body
May
17
revised C programming bitfield in structure
added 301 characters in body
May
17
answered C programming bitfield in structure
May
17
comment ERROR 1022 (23000): Can't write; duplicate key in table 'hotel'
It seems indeed an issue of the table creation - see stackoverflow.com/questions/15014592/…;, however as @tombom said the conflict must be with some other table in your schema which you did not show here
May
17
comment How much space in memory reserver for new Object();
Probably even more related: stackoverflow.com/questions/10386696/… - the question is about references, but the answer also mentions object sizes
May
17
comment How much space in memory reserver for new Object();
possible duplicate of What is the size of the object in java
May
17
revised How to use QPen with QpainterPath?
added 45 characters in body
May
17
comment How to use QPen with QpainterPath?
You should add such compiler error messages to your question
May
17
answered How to use QPen with QpainterPath?
May
16
comment Bring the dockable widgets to its default position in Qt
Good point, actually - I have not tested this yet ...
May
16
revised Bring the dockable widgets to its default position in Qt
added 14 characters in body
May
16
answered Bring the dockable widgets to its default position in Qt
May
16
comment Repaint not working at all
You should shrink down the code to the minimum required code which reproduces the issue. Read the link provided by Andrew to learn more about SSCCE. On a side note, you should consider using a version control system such as git which allows you to track code modifications. You could then easily go back to the version which still worked, and see the source code differences to the version which does not work anymore.