Steve Jobs on Design

One More Thing

Steve Jobs on Design

<p>Design is the fundamental soul of a man made creation.  Steve Jobs</p>

Dec 15, 20181 min read

Apple Development

Swift Intermediate – FinalExam1.1

https://github.com/KennethJacksonTech/FinalExam1.1 0 forks. 0 stars. 0 open issues. Recent commits: Initial Commit, Kenneth Jackson Initial Commit, Kenneth Jackson

Dec 12, 20181 min read

Apple Development

Intermediate Swift – BMI

BMI Calculator Exercise https://github.com/KennethJacksonTech/BMI 0 forks. 0 stars. 0 open issues. Recent commits: BMI Calculator Exercise, Kenneth Jackson Initial Commit, Kenneth Jackson

Nov 20, 20181 min read

Apple Development

Intermediate Swift – Chapter 2.3 Structures

import UIKit import Foundation //Structures struct Person { var name: String func sayHello() { print("Hello, there! My name is \(name)") } } let firstPerson = Person(name: "Kenneth") print(firstPerson.name) firstPerson.sayHello() let person = Person(name: "Zane") print(person.name) person.sayHello()

Nov 5, 20181 min read

Apple Development

Intermediate Swift – Chapter 2.2 Functions

import UIKit func displayPi() { print("3.1415926535") } displayPi() //Parameters func triple(value: Int) { let result = value * 3 print("If you multiply \(value) by 3, you''ll get \(result).") } triple(value: 10) func multiply(firstNumber: Int, secondNumber: Int) { let result = firstNumber * secondN

Nov 4, 20181 min read

Apple Development

Intermediate Swift – Chapter 2.1 Strings

import UIKit let joke = """ Q: Why did the chicken cross the road? A: To get to the other side! """ print(joke) let greeting = "It is traditional in programming to print \"Hello World\"." print(greeting) var myString = "" if myString.isEmpty { print("The string is empty.") } myString let string1 = "

Nov 4, 20182 min read

Apple Development

Intermediate Swift – Light Project

<p>App Development with Swift – Chapter 1 – Guided Project – Light. From the Apple Everyone Can Code series available in the Books app on Mac for free. https://github.com/KennethJacksonTech/Light 0 forks. 0 stars. 0 open issues. Recent commits: Initial Commit, Kenneth Jackson</p>

Oct 31, 20181 min read