Skip to content

Instantly share code, notes, and snippets.

@DerfOh
DerfOh / parsejson
Created December 14, 2016 19:41
simple example of using awk to parse a json output
echo "$status" | awk -F"[,:]" '{for(i=1;i<=NF;i++){if($i~/completed\042/){print $(i+1)} } }'
@DerfOh
DerfOh / Bank Accounts
Created January 19, 2014 17:14
A helpful programming assignment
+ CSC/CIS 276
+ Problem Solving and Programming II in Java
+ Assignment 1 due Jan 29, 2014 – 6%
+
+
+
+
+Objective of this Assignment:
+This is your first Java programming assignment. The purpose is to synthesize the introductory
+object-oriented programming concepts in Chapters 1 to 5 that include the C++ concepts learned