Top new questions this week:
|
This is not related to a Minecraft clone.
I am currently writing a turn-based strategy game like Final Fantasy Tactics. The game is played on floating voxel-style islands, which are generated from …
|
This is the code for my first CS1 project, I hope to be posting my code here to track my progress of learning the language of C++. I shouldn't be too shabby, since I know C considerably well and have …
|
As Stack Snippets are live on Code Review now, I wanted to do something quick in it as part of rolfl's challenge on meta. And when you make things quick, they probably get dirty. And when things get …
|
I've been working on my own programming language, as a hobby for the past couple of months now, called Reedoo. It is implemented in pure C++ 11 and uses only the libraries that come with C++; no …
|
I started a project with Objective-C and rewrote it with Swift. The project contains two UITableViewControllers: MasterViewController and DetailViewController. MasterViewController is linked to …
|
I want to implement a method which, given some camelcased or underscored String, will return a list of separate words that make up this String.
Examples:
ISomeCamelCasedString -> {I, Some, Camel, …
|
This is the second project for my CS1 class, this time I'm actually getting it reviewed before I submit it ;)
The Harris-Benedict equation estimates the number of calories your
body needs to …
|
Greatest hits from previous weeks:
|
I have the following .click() functions:
$('.tab').click(function(){
$('.tab').removeClass('activeTab');
$(this).addClass('activeTab');
});
$('.edit').click(function(){
$(this).hide();
…
|
This is my attempt at Conway's Game of Life. It works, and it's the most complicated program I've made to date. I'm sure it's pretty poorly done. Any ideas on how I can improve on it?
#include …
|
Can you answer these?
|
A project I'm working on requires something akin to run length encoding on a vector in matlab. The data is in the form of a numeric vector, and the output is in the form of two vectors, elems and lens …
|
Preface
I am currently writing this pack template to pack all the values (raw / fundamental + arrays of such, especially c-strings) as a helper for my rqueue - record queue currently used for debug …
|
I have an input[type=range] element which is customized using CSS to look more modern.
I'm unhappy with my CSS because of the need to use position:relative on the wrapping element and …
|