#Motivations
*Financial Stability *Do work that sparks creativity and curiosity *Further develop the CRAFT of programing to find a deeper meaning
#Values
*Honesty:
..*Rigourous Self Assesment
#Motivations
*Financial Stability *Do work that sparks creativity and curiosity *Further develop the CRAFT of programing to find a deeper meaning
#Values
*Honesty:
..*Rigourous Self Assesment
I hereby claim:
To claim this, I am signing this object:
def name_anaylzer (first_name, last_name) | |
full_name = "#{first_name} #{last_name}" | |
reversed_full_name = full_name.reverse | |
name_length = first_name.length + last_name.length | |
if first_name.empty? && last_name.empty? | |
p "You need to enter your first and last name" | |
elsif first_name.empty? then | |
p "You need to enter your first name" | |
elsif last_name.empty? then |
function setVoiceOverFocus(element) { | |
var focusInterval = 10; // ms, time between function calls | |
var focusTotalRepetitions = 10; // number of repetitions | |
element.setAttribute('tabindex', '0'); | |
element.blur(); | |
var focusRepetitions = 0; | |
var interval = window.setInterval(function() { | |
element.focus(); | |
focusRepetitions++; | |
if (focusRepetitions >= focusTotalRepetitions) { |