Skip to content

Instantly share code, notes, and snippets.

View jjlumagbas's full-sized avatar

JJ Lumagbas jjlumagbas

View GitHub Profile

Full interpreter

Complete the full interpreter programming assignment.

Be sure to include your code and tests from previous submissions, but feel free to make any improvements to your code.

Remember: Your tests will be graded as well. Make sure to include comprehensive tests for multiple cases.

Submission

Target audience

"Brochure"

  • prospective students: contact info, general idea of coverage sa degree, admission requirements/procedure

CMSC 124 Programming Languages Final Project

Outline:

Description of languages

Inter-departmental technopreneurship program

Todos

  • [JJ] Work on updating proposal

Reply to JJ on when you can send updated syllabus based on sked below

  • Doc tiff
  • Ms Ai

Tools for academic writing


Philosophy for choosing tools

  • Appropriate tools for different "working modes"
  • All-in-one vs single-purpose (+workflow)
  • Simple to learn vs learning curve + accrued benefits

Section 1

Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.

  • item 1
  • item 2
  • item 3
  • item 4
@jjlumagbas
jjlumagbas / organize-photos.py
Created June 26, 2017 11:07 — forked from cliss/organize-photos.py
Photo management script. This script will copy photos from "~/Pictures/iPhone Incoming" into a tree the script creates, with folders representing month and years, and photo names timestamped. Completely based on the work of the amazing Dr. Drang; see here: http://www.leancrew.com/all-this/2013/10/photo-management-via-the-finder/ You can see more…
#!/usr/bin/python
import sys
import os, shutil
import subprocess
import os.path
from datetime import datetime
######################## Functions #########################