Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

38
votes
18answers
4k views

What's the fuss about Haskell?

I know a few programmers who keep talking about Haskell when they are among themselves, and here on SO everyone seems to love that language. Being good at Haskell seems somewhat like the hallmark of a ...
36
votes
12answers
30k views

using Java to get a file's md5 checksum?

I am looking to use java to get the md5 checksum of a file. I was really surprised but I haven't been able to find anything that shows how (and the best way) to get the md5 checksum of a file. Any ...
11
votes
13answers
792 views

Is returning early from a function more elegant than an if statement?

Myself and a colleague have a dispute about which of the following is more elegant. I won't say who's who, so it is impartial. Which is more elegant? public function set ...
7
votes
5answers
412 views

How to write an elegant collision handling mechanism?

I'm in a bit of a pickle: say I'm making a simple, 2D, Zelda-like game. When two Objects collide, each should have a resulting action. However, when the main character collides with something, his ...
6
votes
1answer
331 views

Solutions to organize Guice binding configurations

It's apparently a bad idea to put all bindings in one module, so what do you think is the more elegant way? I think Bob's idea could be good start for this discussion: It's hard to come up with ...
4
votes
3answers
229 views

Python: Counting the items in a generator consumed by other code

I'm creating a generator that gets consumed by another function, but I'd still like to know how many items were generated: lines = (line.rstrip('\n') for line in sys.stdin) process(lines) ...
4
votes
3answers
1k views

Elegant implementation of circular singly-linked list in C?

Going through classic data structures and have stopped on linked lists.Just implemented a circular singly-linked list, but I'm under overwhelming impression that this list could be expressed in a more ...
4
votes
7answers
480 views

List comprehension for running total

I want to get a running total from a list of numbers. For demo purposes, I start with a sequential list of numbers using range a = range(20) runningTotal = [] for n in range(len(a)): new = ...
4
votes
1answer
649 views

What is the most elegant way of bubble-sorting in F#?

What is the most elegant way of bubble-sorting in F#? UPDATE As pointed out in one of the answers, bubble sorting isn't efficient in a functional language to begin with. A humourously-cynical ...
3
votes
3answers
146 views

Best way to generate a random string following a specific pattern

I'm wanting to generate many six character strings all following this pattern: [consonant][vowel][consonant][consonant][vowel][consonant] e.g. haplop github qursog I've looked at ...
3
votes
5answers
423 views

Shear a numpy array

I'd like to 'shear' a numpy array. I'm not sure I'm using the term 'shear' correctly; by shear, I mean something like: Shift the first column by 0 places Shift the second column by 1 place Shift the ...
3
votes
4answers
2k views

Boost's “cstdint” Usage

Boost's C99 stdint implementation is awfully handy. One thing bugs me, though. They dump all of their typedefs into the boost namespace. This leaves me with three choices when using this facility: ...
2
votes
2answers
35 views

What would be the best way to order a json object by an index found within each of it's properties?

I have an array of objects like so obj = [ { id: 3, data: foo }, { id: 7, data: bar } ] but I need to get it to obj = { 3: { id: 3, ...
2
votes
1answer
60 views

grep based on blacklist — without procedural code?

It's a well-known task, simple to describe: Given a text file foo.txt, and a blacklist file of exclusion strings, one per line, produce foo_filtered.txt that has only the lines of foo.txt that do not ...
2
votes
3answers
64 views

Dumb “Foreach” Loop question

So I'm generating a javascript array of objects in php with a for loop. My code looks somewhat like this: <script type="text/javascript"> var items = [ <?php foreach($items as $item): ...
2
votes
3answers
58 views

How to come up with good site designs?

Is there any decent guide for coming up with nice site designs? It usually takes me days to come up with anything decent and then I keep tweaking it randomly until it looks good. Seems a like a ...
2
votes
3answers
78 views

Elegantly Parsing Rigid Data in Perl

I'm working with a large dataset that basically boils down to something like this: my $input = q( <foo>111</foo> <foo>222</foo> <foo>333</foo> ...
2
votes
3answers
366 views

Elegant Ruby one liners

One of the reasons I like writing in Ruby so much is because it is very capable of achieving a lot via one liners. I like: @sentence = @sentence.split(' ').map!{|x| x = x[0..0].upcase << ...
2
votes
4answers
664 views

Munging non-printable characters to dots using string.translate()

So I've done this before and it's a surprising ugly bit of code for such a seemingly simple task. The goal is to translate any non-printable character into a . (dot). For my purposes "printable" ...
2
votes
2answers
204 views

simplest way to do recursive t-sql for multiple selects

I am developing a Bill Of Materials cost calculator program and I am struggling to fathom a simple solution to some recursive selects I want. I am using SQL Server 2005 for this part of the ...
2
votes
2answers
246 views

What is the most elegant way of shell sorting (comb / diminishing increment sorting) in C#?

Is there a better way to shell sort using C#? // array of integers to hold values private int[] a = new int[100]; // number of elements in array private int count; // Shell Sort Algorithm public ...
2
votes
7answers
2k views

What's the most elegant way to bubble-sort in C#?

Can this be cleaned up? using System; class AscendingBubbleSort { public static void Main() { int i = 0,j = 0,t = 0; int []c=new int[20]; for(i=0;i<20;i++) ...
2
votes
4answers
648 views

How to elegantly compute the anagram signature of a word in ruby?

Arising out of this question, I'm looking for an elegant (ruby) way to compute the word signature suggested in this answer. The idea suggested is to sort the letters in the word, and also run length ...
1
vote
4answers
170 views

c language strchr segmentation fault character replace

I need to replace every occurence of '&' to ',' in a C string. I did this and it works Code 1: char *val, *querydup; . . . val=strchr(querydup,'&'); while(val != NULL) { *val=','; ...
1
vote
2answers
88 views

How could I make this procedure more elegant?

I have a servo I'm controlling that is moving an object closer and closer to a sensor, trying to trigger it. I want the distance to start at 15.5. However, in each iteration, I want it to decrease ...
1
vote
4answers
112 views

Is there a more elegant way to write this code?

<?php if (!empty($box1) && !empty($box2)) { echo ' | content here'; } ?> <?php if (!empty($box1) && empty($box2)) { echo 'content here'; } ?> Basically, I want to get ...
1
vote
1answer
82 views

reducing JavaScript lib file size coding techniques

I'm working on a JavaScript lib which has forked from an earlier internal project. Over time its increased in file size and I'm now keen to reduce it. I'm just wondering if any one has run into any ...
1
vote
1answer
259 views

Pass a value between views

I have a list of items of the same type (let's say guests) and i display them in a listview. By clicking on the line I would be able to edit the single element. All the elements have the same editing ...
1
vote
2answers
134 views

Ruby elegant way to deal card array to player objects

I'm having trouble finding a nice elegant ruby way to do this. I have a deck array with 52 Card objects, and I want to iterate over it and loop through an array of Player objects, dealing one card at ...
1
vote
1answer
162 views

doctrine regenerating models from yml only the base models?

I am wondering if there is a way to handle this more elegantly. After generating the "main" models and base models from yml files the first time I have to add at the very leased an include for the ...
1
vote
1answer
430 views

Python - temporarily modify the current process's environment

I use the following code to temporarily modify environment variables. @contextmanager def _setenv(**mapping): """``with`` context to temporarily modify the environment variables""" ...
1
vote
1answer
63 views

accessing third-party ruby library module in code? is this the right way on windows?

I needed a little script to read data out of windows-style .ini files. Searching my windows machine I found inifile.rb in this path: C:\ruby\lib\ruby\site_ruby\1.8\vr\contrib\ it seems unnatural ...
1
vote
14answers
850 views

When is the right time and the wrong time to do the quick and dirty solution?

When is it the right time and when is it the wrong time to take the quick and dirty approach versus the proper elegant solution? This started from the comments on my question: ...
0
votes
0answers
107 views

Wordpress Elegant themes error

Initially i was getting this error message above all my wordpress elegant themes Couldn't connect to database server. Couldn't find database magical_rules. An unexpected problem has occured with ...
0
votes
1answer
559 views

Elegant Asp.Net MVC 3 custom membership wrapper class with extended (custom) methods and properties

I am attempting to write a custom membership class. It seems to work ok inhering the Membership class and providing functions for all the included required items (validate user, create user, delete ...
0
votes
1answer
302 views

Get the first element of a list idiomatically in Groovy

Let the code speak first def bars = foo.listBars() def firstBar = bars ? bars.first() : null def firstBarBetter = foo.listBars()?.getAt(0) Is there a more elegant or idiomatic way to get the first ...
0
votes
3answers
207 views

Check all numbers are equal

What is the best way to check that all numbers in the array (or list) are equal? I think the solution as a loop that seek for the first unequal element ist maybe efficient, but not so elegant or ...
0
votes
6answers
216 views

Please recommend a smart, elegant way to write these repetitive 'if' statements in php

I just know i'm doing this in really bad way: $url = wp_get_referer(); $path_parts = pathinfo($url); $mycat = $path_parts['filename']; if ( $mycat ...
0
votes
7answers
413 views

Is there a more elegant solution than an if-statement with no else clause?

In the following code, if Control (the element that trigers Toggle's first OL) is not Visible it should be set Visible and all other Controls (Controls[i]) so be Hidden. .js function ...
0
votes
4answers
204 views

Elegant coding, how to deal with hidden/invisible HTML code?

I am developing an ask-and-answer website. There is a "Choose as best answer" button besides each answer, this button should be visible to the asker but should be invisible to other viewers. Other ...
0
votes
4answers
256 views

Tiny serializer

I have a family of classes that contain only variables of the following types: std::string, int, double. I should be able to serialize/deserialize objects of these classes to/from C string (null ...
0
votes
3answers
693 views

Find longest repeating strings?

I have some HTML/CSS/JavaScript with painfully long class, id, variable and function names and other, combined strings that get used over and over. I could probably rename or restructure a few of them ...
0
votes
6answers
5k views

Java anonymous class that implements ActionListener?

I was recently doing a programming assignment that required us to implement in code a program specified by a UML diagram. At one point, the diagram specified that I had to create an anonymous JButton ...
0
votes
3answers
204 views

WinForms - Baffled - How to Handle Certain Controls Dynamically - Properly

I have a System.Windows.Form class (my main class). There is a RootMenu object. This is my own custom object. I'm trying to loop through the RootMenu object and on each pass add a ToolStripMenuItem to ...
0
votes
3answers
3k views

Generic Authentication Call to Active Directory in C#

I would like to have a clean C# class that authenticates from Active Directory. It should be pretty simple, it just has to ask for credentials and check if it matches what AD is expecting. I am ...
0
votes
3answers
563 views

Math factors game - who can write the most elegant solution?

Here's a fun exercise. http://www.hughchou.org/hugh/grid_game.cgi?CLEAR Who can write the most elegant yet performant code to win this game? My solution is in C/C++. #include<vector> ...