Found a adafruit circuit playground in my drawer. What can I do with it? #adafruit #programming #hardware #noop
#Adafruit #programming #hardware #noop
RT @zwindler_rflx@twitter.com
#LesArchivesDuBlog : #Tuning (non, non, pas d'une ποΈ π€£) de lβIO #Scheduler sous #RHEL 4, 5, 6 ou 7 : #CFQ, #NOOP, #Deadline https://blog.zwindler.fr/2016/01/23/tuning-de-lio-scheduler-rhel-4-5-6-7-cfq-noop-deadline/
π¦π: https://twitter.com/zwindler_rflx/status/1258343814252691457
#deadline #noop #CFQ #rhel #scheduler #tuning #LesArchivesDuBlog
@grainloom huh, in ruby a void function just returns nil:
def nnn
nil
end
# => :nnn
def voidvoid
#noop
end
# => :voidvoid
nnn # => nil
voidvoid # => nil
nnn == voidvoid # => true