The learning tag has no wiki summary.
2
votes
0answers
24 views
A z-shell function to quickly cd into projects
I think we all now that problem. We work with multiple projects: private projects, company projects, probably even projects for multiple companies.
From day-one, I've always searched for better ways ...
4
votes
2answers
128 views
Speed optimisation and general tips for base64 encoding/decoding functions in C
So far, the below code appears to work well. It operates pretty fast, but I was wondering if it's possible to make it faster. I'm also looking for general tips on what I might be doing wrong and what ...
2
votes
1answer
82 views
Working with sqlit and moving functions to class (new programmer)
Hello to anyone that wants to give suggestions, and thank you in advance. Here is the code I am using. Very specifically I am using code review for just that (critical opinions from better ...
3
votes
1answer
98 views
Largest sequence found in all strings
**Note: I might put this on Code Golf too, but first I'd like to get this code reviewed.
So there's this programming contest my school will be holding soon, which is about solving problems in the ...
4
votes
2answers
240 views
Check_sudoku in Python
I have just started to learn programming with Python. I have been going through several online classes for the last month or two. Please bear with me if my questions are noobish.
One of the classes I ...
2
votes
1answer
218 views
LPTHW Exercise 48 (please tear this to pieces)
I'm trying to get some feedback on my code for the lexicon exercise (#48) in Learn Python the Hard Way. I truly believe that intense critique is the best way to learn. i have only recently started ...
3
votes
1answer
83 views
Need feedback on my first Common Lisp vector math code
I'm studying Common Lisp on my own. Coming from C++ Common Lisp feels kind of strange sometimes. I'd like to get some feedback on what I understood so far.
For learning purposes I wrote this simple ...
9
votes
2answers
278 views
my first haskell thingy
I'm relatively experienced with C# and have spent the past 6 months doing a SOA migration from a monolithic app, and as concurrency and scalability are things being aimed for so much I have become ...
2
votes
3answers
610 views
Temperature Conversion Program
I'm having trouble accessing variables throughout multiple functions. For example, I need to use userinput throughout many other functions, but do not have access to it with my current code. I am ...
2
votes
1answer
263 views
Any brief pointers?
The code follows the requested format of the output exactly for my assignment. But, for my own personal reference, is there a better way that I could have done anything? Any tips? Maybe some simple ...
5
votes
1answer
320 views
Enumerate k-combinations in Clojure (P26 from 99 problems)
I've been playing with Clojure for the last few evenings, going through the well known 99 problems (I'm using a set adapted for Scala).
Problem 26 calls for a function that, given a set S and a no. ...
6
votes
3answers
1k views
Character creator for a role-playing game
Goal: Write a character creator program for a role-playing game. The player should be given a pool of 30 points to spend on four attributes: strength, health, wisdom, and dexterity. The player should ...
2
votes
2answers
386 views
How to make this code faster?
I'm learning Python. I found this problem from Google Code Jam. And solved it by writing code shown below. It works correctly, but how can I make it faster?
import sys
def ...
0
votes
1answer
3k views
Printing a string 1 character at a time in assembly, using MASM [closed]
I'm learning x86 assembly in school and have to make a program that prints a string one character at a time. Unfortunately, I can't figure out how to move the location of the next letter I need to ...
18
votes
15answers
441 views
Essential reading / learning resources for the code reviewer? [closed]
The title says it all really.
What materials have you read (or in another way learned from) that make you a better reviewer?
1 item per answer please - let the good ones get the votes ;-)