1. Day 68/100: Reading / Exercism

    Did a quick play around with Exercism and some reading.

    Here's my solution for RNA Transcription in Python:

    def to_rna(dna):
        dna_rna_trans = {'G': 'C', 'C': 'G', 'T': 'A', 'A': 'U'}
        rna_strand = []
        dna_list = list(dna)
        for dna_nucleotide in dna_list:
            if dna_nucleotide not in dna_rna_trans:
                return ''
            else:
                rna_strand.append(dna_rna_trans[dna_nucleotide])
    
        return …
    read more
  2. Day 68/100: Off my game / Reading

    Today I was pretty well off my game. Did a lot of administrative work for MUG and what-not, but didn't get to doing much programming. Hoping to rectify this tomorrow (before the MUG meeting. :) )

    Did a little reading here and there. Did a little reading of the Guile Manual. Still …

    read more

links

social