Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
6answers
502 views

Critique my Scala code

I'm a Scala n00b (but am experienced with other languages) and am learning the language as I find time - very much enjoying it so far! Usually when learning a new language the first thing I do is ...
4
votes
11answers
818 views

Python Critique [closed]

I'm using Python now for about two months, and to be honest, it really made me love programming again. After programming in C, Java, and worst of all, C++, Python is incredibly fun. Thinking that I ...
3
votes
3answers
163 views

What pitfalls does this Perl code have?

I have written some code to print formatted arrays (first line = no of inputs, second line = max width of numbers). The star can be any sort of marker to differentiate some elements from the rest. $ ...
3
votes
1answer
106 views

Where would I find critiques for my source code?

Well the most obvious answer is here. Self taught programming has some down sides, one of which is the lack of code peer critique which can help one expand his/her programming scope. Since I'm working ...
2
votes
4answers
477 views

Critique my prime_factors() function

I just wrote this function to break a number into its prime factors. Is the algorithm I'm using a good one? How might I improve this function? So far it seems to be working quite well. from copy ...
2
votes
3answers
401 views

Please critique my class

I've taken a few school classes along time ago on and to be honest i never really understood the concept of classes. I recently "got back on the horse" and have been trying to find some real world ...
1
vote
2answers
118 views

Is Django bad for conveying business-logic?

I am almost 100% locked in to Django for the projects I have been planning. The final "myth" I'd like to "dispel" is that Django is "mediocre" at conveying business-logic. Direct quote by Peter ...
1
vote
0answers
215 views

Can you critique my solution for the “ring benchmark” exercise from J. Armstrong's book?

I am making my way through Joe Armstrong's book on programing Erlang. I came up with the following answer for the ring benchmark question. The code works but I am not sure if it is "Erlangic" (for ...
1
vote
2answers
179 views

Ruby Code Critique

I'm a Ruby newbie (started 4 days ago and hey it rhymes!) and decided to code a simple little tool for fun/learning. The following code was the result. It works fine, but I would really appreciate ...
1
vote
2answers
597 views

Critique my concurrent queue [closed]

This is a concurrent queue I wrote which I plan on using in a thread pool I'm writing. I'm wondering if there are any performance improvements I could make. atomic_counter is pasted below if you're ...
1
vote
5answers
227 views

Critiquing my first Python script

A little bit of background: I'm building an inverted index for a search engine. I was originally using PHP, but because of the amount of times I needed to write to disk, I wanted to make a threaded ...
0
votes
1answer
54 views

I need some critique about lib design

OK. I have this lib for my internal project (function() { var window = this, undefined; //guaranteed undefined var h3 = window.h3 = function (user) { return window.h3 = new ...
-1
votes
1answer
77 views

What are the best places on the web to present my application for critique and suggestions? [closed]

I pretty much suppose that if I issue a question here on StackOverflow, saying "hey, colleagues, go this link to my website, download my CoolProggie and write a line on what you think?" it is going to ...
-3
votes
2answers
110 views

New to OOP, please criticize my first Class [closed]

So I finally decided to make that jump, and wrote my first class for actual use. Please criticize, and be harsh:) Thanks. Purpose of the class will be secure file uploading. But for now it only ...