3 Systems that can all be enabled via same Process?
Song Hooks and Impulse Buys? Don’t Underestimate the Power
Imagine 3 Snatch Blocks trying to lift the same box
Shared Data Not always Simple to Get Right
Quality Gains of the Less Useful Variety can be Turned Up
https://www.dictionary.com/browse/profound
adjective, pro·found·er, pro·found·est.
penetrating or entering deeply into subjects of thought or knowledge; having deep insight or understanding:a profound thinker.
originating in or penetrating to the depths of one’s being: profound grief.
being or going far beneath what is superficial, external, or obvious:profound insight.
of deep meaning; of great and broadly inclusive significance:a profound book.
noun Literary.
something that is profound.
the deep sea; ocean.
Characters have the ability to save lives in real life, not make their words count?
“9 times out of 10 you want to avoid small talk in your dialog” –
Writing with Jenna Moreci
Close the distance?
func addTwoNumbers() -> Int {
let a = 1
let b = 2
let c = a + b
return c
}
let sum = addTwoNumbers()
print(sum)
——–
func addTwoNumbers(arg1 a:Int,arg2 b:Int) -> Int {
let c = a + b
return c
}
let sum = addTwoNumbers(arg1: 1,arg2: 2)
print(sum)
func addTwoNumbers(_ a:Int,_ b:Int) -> Int {
let c = a + b
return c
}
let sum = addTwoNumbers(1,2)
print(sum)
class Employee {
var name = “”
var salary = 0
var role = “”
}
var c:Employeee = Employee()
v.name = “Rockstar”
class Rockstar:Employee {
var biggerSalary=0
var fans=1
}
class Rockstar:Employee {
var biggerSalary=0
var fans=1
func playCGAF() {
print("1 5 6 4")
}
}
var jason:Rockstar = Rockstar()
jason.playCGAF()
Delegation to Different Threads?
I will accept the Risk of Saying Research Ethics is Important
Hard to hate someone that promotes Research Ethics and Draws Flowers