Alan Swenson
Alan Swenson
in https://github.com/rust-embedded/book/blob/7349d173fa28a0bb834cf0264a05286620ef0923/src/start/hardware.md is says : ``` In examples/hello.rs, make sure the debug::exit() call is commented out or removed. It is used only for running in QEMU. ``` but later on...
This no longer works: ``` @password.setter def _set_password(self, plaintext): self._password = bcrypt.generate_password_hash(plaintext) ``` Should be: ``` @password.setter def password(self, plaintext): self._password = bcrypt.generate_password_hash(plaintext) ``` [https://docs.sqlalchemy.org/en/latest/orm/extensions/hybrid.html](https://docs.sqlalchemy.org/en/latest/orm/extensions/hybrid.html)
Since 8.10 is no longer available on AWS, this update brings the project up to Node10/12 as well lighthouse version 5.6. Also updates vulnerable npm packages. the main things that...
Here is a working PR to bring this project up to speed with current versions. Travis passes and I added the test for these versions as well. I will happily...
Is there a way to do simple template overrides? For instance I want to change the default `{% post_to_twitter entry.title post_url '' %}` in blog_page.html to `{% post_to_twitter entry.title post_url...
#### Original Library: https://github.com/joytocode/lighthouse-lambda #### Problem: Stops working after Node 8.10 (Can't even spin up Node8.10 on AWS anymore)and Lighthouse 3.1 #### My Solution: https://github.com/AlanSwenson/lighthouse-lambda - Fork that uses [chrome-aws-lambda](https://github.com/alixaxel/chrome-aws-lambda)...