@dominikangerer
I'm Dominik Angerer, a Web-Developer at and Founder of Storyblok from Austria with an eye for the detail and performance as well.
Nothing here yet.
Nothing here yet.
No blogs yet.
**kwargs means k ey w ord arg ument s . Its actually not a python keyword, its just a convention, that people follow. That will get all the key-value parameters passed to the function. :) def func (*args, **kwargs) : print args, kwargs func( 1 , "Welcome" , name= "thefourtheye" , year= 2013 ) Will print (1, 'Welcome' ) { 'name' : 'thefourtheye' , 'year' : 2013}
Sharon Chaisky - Stephan de Vries actually references a good article. We at Storyblok following the BEM Methodology to reduce such long selectors and so every component can be reused everywhere :) without any strange behavior. In Short: .block { } .block__element { } .block--modifier { } Real Live example on our website would be the console: .console { } .console__comment { } .console__line { } .console--light {} .console--dark {}