Skip to content

Instantly share code, notes, and snippets.

View ameseee's full-sized avatar

Amy Holt ameseee

  • Turing School of Software & Design
  • Denver, CO
View GitHub Profile

ADD/SAVE PHOTO TAPPED

//create a new item in CD, save to CD, pop back to VC
//get context 

if let context = (UIApplication.shared.delegate as? AppDelegate)?.persistentContainer.viewContext {
  let photoToBeSaved = Photo(entity: Photo.entity, insertInto: context)
  photoToBeSaved.imageCaption = textFieldData.text!
  
  //image is save as DATA not a UIImage, so we have to do a conversion here to change data types:
import UIKit

class PhotoDetailViewController: UIViewController {

    @IBOutlet weak var photoDetail: UIImageView!
    @IBOutlet weak var emojiLabel: UILabel!
    
    var photo : Photos?
 
```
import UIKit
class AddPhotoViewController: UIViewController, UIImagePickerControllerDelegate, UINavigationControllerDelegate {
let imagePicker = UIImagePickerController()
@IBOutlet weak var newImageView: UIImageView!
@IBOutlet weak var captionText: UITextField!
@IBOutlet weak var emojiIcon: UITextField!
import UIKit

class PhotoTableViewController: UITableViewController {

    var photos : [Photos] = []
    
    override func viewDidLoad() {
        super.viewDidLoad()
    }

KWK Level 3 June 16 Call

Instructor Prep

Before call: Continue working theough Aviatrix, whatever you can of ViewFinder!

Agenda

Ellen Mary: Career Prep(20 min)

  • Daily Stand Ups and Journaling
  • Demo

KWK Level 3 June 16 Call

Instructor Prep

Before call: Complete Aviatrix, review slides & complete labs for days 5 (marked with 🤗). Download Atom.

Agenda

Challenge: Paired Worktimes (15 min)

  • Variety of challenges, different levels of difficulty
  • Keys are available in the /sessions/keys/challenges folder

KWK Level 3 June 9 Call

Instructor Prep

Before call: Review slides for days 1-3, complete labs for days 1-3 (marked with ⭐️)

Agenda

Overview of Resources - 15 min.

  • GitHub Repo
  • Sessions/Calendar page
require "pry"
def divider(title)
dashes = "-" * title.chars.count
"\n#{title}\n#{dashes}\n\n"
end
puts divider("Debuggers")
favorite_things = ["Kardashians", "Jenners"]
# binding.pry

B4 Mock Interview

Each student will be asked a variety of technical questions during the Mock Interview in a one-on-one setting with an instructor who will be acting as the interviewer.

Topics may include the following:

  • Testing
  • Object Oriented Programming
  • Ruby and JavaScript Fundamentals
  • Debugging Techniques

Post-Grad Job Search Action Plan Template: Your first 30 Days

#2: Supporting Others in Your Cohort in Their Job Search

Fill out this part only if you have already secured a job prior to graduation.

As a member of the Turing community, your support in the job search makes a big difference for your peers as they pursue their first position. Complete the following action steps to

Action Step #1:

  • Francy
  • Mimi