Jul 31, 2017 - Why The 90s Were The Best

I Made Something cool!

Using a software called Reveal.js I made a cooler and less boring version of a typical powerpoint presentation. Everything was done using Codeanywhere because github can automatically build slides given the right html5 conversion from markdown text.

Audio and images were added by downloading images from the web and using audacity to record myself with music in the background.

I chose the 90s topic because I wanted my presentation to be bright and funny. Everyone has some good memories from the 90s so its a topic that a lot of people can reflect back on with a sense of nostalgia.

Here is a link to my presentation: My presentation

Enjoy!

Jul 23, 2017 - Using Mysql And Survey Data

Application of MySQL using Survey Questions

This project focused on data and databases. Databases organize data so that retrieval of this data is simple. MySQL is a program used to store information in databases. SQL stands for structured query language. MySQL can be used create new databases and store data in tables.

Assignment briefing

A 5 question survey was created using a bash script so that questions would be prompted to the user and stored in a csv file. Each response had its own unique key so that mySQL would run smoothly and not confuse the data entries. The unique key for my survey answers was the date and time a person completed the survey.

The survey questions were:

  1. How old are you?
  2. Favorite color?
  3. Favorite movie?
  4. Hometown?
  5. Favorite place to eat on franklin street?

The answers were dumped into a csv file to be stores. The next part of the assignment was to create another bash script where mySQL was used to create a database and a datatable to store all of the responses from my survey. Variables were also created to put the data into the newly created database and store it in a MySQL file.

Link to repository: See repository

Link to Mysql Document: See MySQL document

Jul 16, 2017 - Using Pandoc For Text Conversions

Text Conversion and Scripting

Quick Briefing

Using CodeAnywhere, I was able to take a portion of a poem and convert it into a document, PDF, HTML, and ODT formats. A simple script was written to follow commands for text conversions for the sample text. These conversions were pushed to a local repository.

Break Down

Pandoc and TexLive were installed into codeanywhere which are programs that convert text into different formats. Next, a basic BASH script was used to create and execute commands inside a file. A shebang was created to ensure that the correct file was used for the execution. Using Pandoc, a simple command was written for the text conversions. In the SSH, the script was tested and a simple output command told me what the document had been converted to.

What was Converted

This sample of text was taken from A Lady’s Delight, written by: Anonymous from Project Gutenburg

…No more shall Duchesses to Bath repair, Or fly to Tunbridge to procure an Heir; Spring-Gardens can supply their every Want, For here whate’er they ask the Swain wil grant, And future Lords (if they’ll confess the right) Shall owe their Being to this blessed Night; Hence future Wickedness shall take its Rise, (For Masquerade to this is paultry Vice) An Aera of new Crimes shall hence begin, And H—-gg—-r chief Devil be of Sin; No more shall Ugliness be his Disgrace, His Head mends all the Frailties of his Face; When Masques and Balls to their Conclusion drew, To this his last Resort the Hero flew; So by degrees the Errant Knights of old To Glory rose, and by Degrees grew bold; A while content the common Road they trod, ‘Till some great Act at last confess the God.

Links

Download DOCX

Download HTML

Download ODT

Download PDF