Skip to content

Instantly share code, notes, and snippets.

View peterp's full-sized avatar

Peter Pistorius peterp

View GitHub Profile
Neuroplasticity
https://books.google.co.uk/books?id=TgArDQAAQBAJ&pg=PT132&lpg=PT132&dq=synapse+routes+deepen+over+time+hard+to+change+behavior&source=bl&ots=gBhsikybey&sig=rmSfgE8lEDxIdGe6za9FYOq_WZQ&hl=en&sa=X&ved=0ahUKEwjApMmJuanUAhUlKMAKHai0DXkQ6AEIIDAA#v=onepage&q=synapse%20routes%20deepen%20over%20time%20hard%20to%20change%20behavior&f=false
https://www.ncbi.nlm.nih.gov/books/NBK3915/
https://www.hindawi.com/journals/np/2014/541870/
https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4072971/
https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4819445/
https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3466476/
https://books.google.co.uk/books?id=o2Z1CQAAQBAJ&pg=PA275&lpg=PA275&dq=brain+synapse+rut+ach&source=bl&ots=KQfkkdU3aR&sig=oHnhK9tmtMY386HaI1Obbt4wXBg&hl=en&sa=X&ved=0ahUKEwiWmobKrczUAhVnKcAKHdj1C34Q6AEISjAE#v=onepage&q=brain%20synapse%20rut%20ach&f=false
https://web.archive.org/web/20080202012044/http://psyphz.psych.wisc.edu/web/News/Meditation_Alters_Brain_WSJ_11-04.htm
http://www.smpp.northwestern.edu/savedLiterat
@coleturner
coleturner / camel_case_argument_middleware.rb
Last active February 22, 2018 18:21
Parses camelCase arguments into snake_case for GraphQL Ruby
class CamelCaseMiddleware
def call(parent_type, parent_object, field_definition, field_args, query_context, next_middleware)
next_middleware.call([parent_type, parent_object, field_definition, transform_arguments(field_args), query_context])
end
def transform_arguments(field_args)
transformed_args = {}
types = {}
field_args.each_value do |arg_value|
@smn
smn / .slate
Created May 7, 2013 12:03
ShiftIt key-bindings for Slate
# Key bindings for Slate to match ShiftIt's defaults.
config defaultToCurrentScreen true
config nudgePercentOf screenSize
config resizePercentOf screenSize
# Push Bindings
bind right:ctrl;alt;cmd push right bar-resize:screenSizeX/2
bind left:ctrl;alt;cmd push left bar-resize:screenSizeX/2
bind up:ctrl;alt;cmd push up bar-resize:screenSizeY/2