Showing posts with label lack of sleep. Show all posts
Showing posts with label lack of sleep. Show all posts

Thursday, March 31, 2011

Well, Really, I Am

Talk about a tough semester!  I have several group projects to finish up, as well as a research paper.  I would like to post some homework, but many of my written assignments are critiques of 1) data management plans from federal agencies, or 2) digital libraries.  I am not sure how wise it would be, for a student to post such critiques.  Is it strange, that I care so much about offending people I will (probably) never meet?  Perhaps I should just blot the names out and have people figure it out themselves.

In any case, I do not think I'll be posting my standard homework pieces from this semester.  I will, however, provide some Python programming:

#---------------------------------------------------------------------------------
#5.6:  Write a program that reads in a file and then prints out the number of lines, words, and characters in a file.
#---------------------------------------------------------------------------------
def fileCounts(fileName):
        fileObj = open(fileName)

#makes a list of all of the lines in a file
        lineList = fileObj.readlines() 

#gets amount of items in lineList 
        lineCount = len(lineList) 

#setting counters      
        wordCount = 0                   
        charCount = 0
        for theLine in lineList:

#increase wordCount by the result of len(theline.split())
                wordCount = wordCount + len(theLine.split()) 

#increase charCount by the result of len(theLine)  
                charCount = charCount + len(theLine)           
        print ("There are", lineCount, "lines", wordCount, "words and", charCount, "characters in this document")


Who would have known that I would get into Python programming?  This is one of my later homework assignments- the first few chapters were hard, but only for me.  The rest of the Python programming world would laugh at the hours I spent staring at my computer screen, not knowing what to do.  At least I know that I am learning something.

Wednesday, February 17, 2010

It's February?

((looks over shoulder))

Wait, it's February?  That's crazy....I feel like I'll have 1-2 posts like this every semester until blogging finally becomes second nature to me.  Anyone can recommend blogging classes, preferably free ones? ; )

Week 5 Analytic Essay

This assignment was for my Digital Preservation class.  I was supposed to summarize and analyze the four required readings for the week, as well as lead class discussions with questions.
Please read the rules about posted assignments before reading onward.

The readings for the fifth week primarily deal with two ways to preserve digital files, via migration or emulation.  Both have their strengths and weaknesses, but in choosing one over the other librarians, museum curators, and archivists cast a vote in the great debate in digital preservation — what exactly does it mean to preserve a digital document?  Is it enough to preserve the content, and not the appearance, of a digital document?  Should it function in the same exact way as it did when it was created, or can it be updated to contemporary standards?  The readings try to answer these questions with research and surveys.

Wednesday, December 9, 2009

(looks back again)

Wait, what?  It's already December?  New Year's resolution- work on blogging  >.<

For those of you in GSLIS, you can check out my group project's website on Oral History.  It's not fancy, but I coded it all by hand so it better work (shakes fist at computer)


Tuesday, July 21, 2009

I am done

My head hurts. I need sleep.

I'll blog about CocoMero tomorrow.

It Might Be Dangerous To Post This


On the "social forum" of the class Moodle, I identified myself as a Hufflepuff, saying that I like to work hard and stay loyal to my friends and my beliefs.

On the other hand, I procrastinate. I can face it, I usually fail to motivate myself to proactively write papers . It took so much effort to get my Mill essay before this program started! For those of you reading and are in a position to evaluate my work- do not worry, I am slowly working on my tracking paper. It's not like I left everything for tomorrow (I did not, for once). I just need that slight pressure tomorrow will bring to get it done, and maybe a good night's sleep.

GOOD NIGHT!