active questions tagged criticism - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T14:06:21Zhttp://stackoverflow.com/feeds/tag/criticismhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/184118/what-programming-book-would-you-not-recommend-to-developers33What Programming Book would you NOT recommend to Developers?EnderMB2008-10-08T18:21:31Z2009-12-17T23:01:56Z
<p>Like a lot of people on Stack Overflow I love to read books about programming, almost as much as I love to read the lists that people add onto their websites, Blog's and this very website. </p>
<p>However, for every gem there are a thousand turds, and to one developer a gem could just be a shiny turd to another.</p>
<p>Whilst there are hundreds of book questions on this website asking users to recommend books that they have loved I have decided (after looking for a similar question and not finding it) to create a list of books that users have detested. After all, if we're going to fork out money for these books it'd be a good idea to get both positive and negative aspects out there.</p>
<p><strong>Please refer to a specific book, and with it add an image of either the latest version or the version you have read. Also, if you have the time please comment on the answers to provide your experiences with the books.</strong></p>
http://stackoverflow.com/questions/1044590/most-professional-way-to-tell-a-developer-they-are-no-good16most professional way to tell a developer they are no goodBigBlondeViking2009-06-25T15:30:33Z2009-12-03T15:54:15Z
<p>What is the most professional way to break it to a developer that they're not very good?</p>
<p>I haven't been a developer for as long as some of the others out there. </p>
<p>But I have already had to deal with some really crazy people.</p>
<p>What is the best way(s) to stay professional and critique a developer who really is horrible at his/her job, keeping in mind that it's a small world and you might HAVE to work with them again.</p>
<p>EDIT:
Should have added where I am coming from :</p>
<ul>
<li>I am an upper level developer but have no power to hire or fire. Just venting frustration with my boss and other devs.</li>
<li>Management moves slower that molasses and has been know to hire with out letting devs interview candidates.</li>
<li>And yes, a few have been crazy enough for me to be worried about my well being should they decide to snap..</li>
</ul>
http://stackoverflow.com/questions/1023663/can-you-criticize-this-code1Can you criticize this code?austin2009-06-21T11:01:15Z2009-06-21T14:38:05Z
<p>I was wondering if anyone would be so kind as to look at this code I've written for practice. Besides a little php, c if my first language and I'm trying to teach myself. so pretty much, what am I doing wrong, where can I optimize, anything.</p>
<p>What this code does is (in terminal) draw a bunch of random 1's and 0's, but I added an effect kinda like a lattice. the bulk of this I got help on here.</p>
<pre><code>#include <stdio.h>
#include <stdlib.h>
#include <sys/ioctl.h>
int main (int argc, char *argv[]){ //check for whitch effect to print
switch(*argv[1]){
case '1': lattus();break;
case '2': normal();break;
default: printf("1 = lattus effect | 2 = static effect\n");break;
}
}
char *randstring (char *buffer, int length){ //genertate a random number
int i = length;
while(--i >= 0) {
buffer[i] = (rand() % 2) ? '1' : '0';
}
buffer[length] = 0;
return buffer;
}
int normal(){ // normal drawing of 1's and 0's
struct winsize w;
ioctl(0, TIOCGWINSZ, &w);
int width = w.ws_col;
int height = w.ws_row; //get terminal width and height
char buffer[width*height + 1]; //create a buffer big enough to hold one draw to the screen
int i = 25;
while(i-- >= 0) {
printf("%s\n", randstring(buffer, width*height)); //draw to screen
usleep(90000);
}
system("clear"); //clear screen
}
int lattus (void){
struct winsize w;
ioctl(0, TIOCGWINSZ, &w);
int width = w.ws_col; //get the terminal width
char buffer1[width + 1]; //create 3 buffers for each segment
char buffer2[width + 1]; //each big enough to hold the width of the terminal
char buffer3[width + 1];
int first = 1; //how many before the space
int second = width - 8; //how many in the middle of the space
int third = 1; //how many at the end of the space
int i = 1000; //draw 1000 lines
int on = 0; //switch for growing and shrinking
while(i-- >= 0){
usleep(9000);
if(first == 1 && third == 1 && second == width - 8 | second == width - 9){ //is it at min?
if(second % 2 == 0){ //is it an even number (had problems with buffer if it was odd)
second = second - 2;
}else{
second = second - 3;
}
first ++;
third ++;
on = 0; //keep growing
}else if(first == (width - 8) / 2 && third == (width - 8) / 2 && second == 2){ //untill it gets to max
if(second % 2 == 0){
second = second + 2;
}else{
second = second + 1;
}
third --;
first --;
on = 1; //start shrinking
}else if(on == 0){ //else if suppost to grow, grow
second = second - 2;
third ++;
first ++;
}else if(on == 1){ //else if suppost to shrink shrink
second = second + 2;
third --;
first --;
}else{
break;
}
printf("%s %s %s\n", randstring(buffer1, first), randstring(buffer2, second), randstring(buffer3, third)); //print it out
}
system("clear"); //clear screen
}
</code></pre>
http://stackoverflow.com/questions/922001/what-does-it-mean-for-an-application-to-be-bloated4What does it mean for an application to be bloated?Kekoa2009-05-28T16:56:19Z2009-05-28T17:58:47Z
<p>I myself have accused applications of being bloated, but is this really the problem with an application? Years ago I accused Microsoft of producing "bloated code" without myself actually seeing such code. Juvenile, I know.</p>
<p>Now I feel that calling something "bloated" without specific constructive criticism is reduced to childish name calling. It's like saying, "You're application is stupid", yet providing no insight into how it can be made not-stupid.</p>
<p>Even on Stack Overflow I occasionally see criticism like, "this application is so bloated, and I hate it" blah, blah...</p>
<p>Is the label of "bloated" valid, constructive, or helpful in the least bit? I think that "bloat" is really an imaginary issue, especially if one is applying the criticism to the application and not the source code.</p>
<p>I understand that the code itself can be bloated, and written in a way that can be verbose, and even perform more slowly. But can an application be characterized as bloated? Whatever happened to saying that the application is slow, or has too many features, or is confusing... Specific criticisms seem to be more helpful and useful in a discussion.</p>
<p>What does it mean to be bloated, or why do people insist on using this vague adjective to describe an application?</p>
http://stackoverflow.com/questions/306460/how-do-you-take-criticism19How Do You Take Criticism?Ben Aston2008-11-20T19:02:42Z2009-03-14T14:56:12Z
<p>I find taking criticism pretty painful. Does anyone have a good strategy for dealing with this?</p>
<p>Edit: I can see this is going to be voted down, but I'm not going to delete it as an exercise in "taking criticism" ;)</p>
http://stackoverflow.com/questions/453493/software-critique-open-source-software4Software Critique: Open Source Software_ande_turner_2009-01-17T15:58:18Z2009-01-17T16:13:34Z
<p>Where can I find critical analysis of OpenSource projects?</p>
<p>ie: in-depth analysis of methods within the source, a comparison of projects with others, and performance metrics ...</p>
<p>I'd like to read something about existing projects that would give me an overview of its design, implementation, strengths and weaknesses, so I can choose something to get involved in. Hopefully, there would be more than one analyst per critique.</p>
http://stackoverflow.com/questions/385762/an-analog-of-c-fqa-for-c1An analog of C++ FQA for C#Alexander Prokofyev2008-12-22T08:05:25Z2008-12-22T09:10:14Z
<p>I have found <a href="http://yosefk.com/c++fqa/" rel="nofollow">C++ FQA Lite</a> very edificatory and would like to read more criticism. Could you recommend me something similar but concerning C#, please?</p>
<p>Thanks.</p>