I hereby claim:
- I am gugutz on github.
- I am gugutz (https://keybase.io/gugutz) on keybase.
- I have a public key ASDtzDrkxpOABAQFTGBcuSZ7Uu0OJdoVpKrnD7Jgn2m-RQo
To claim this, I am signing this object:
| ➜ ~ rofi -h | |
| rofi usage: | |
| rofi [-options ...] | |
| Command line only options: | |
| -no-config Do not load configuration, use default values. | |
| -v,-version Print the version number and exit. | |
| -dmenu Start in dmenu mode. | |
| -display [string] X server to contact. | |
| ${DISPLAY} |
| updated: 31/03/2019 with rails 5.2 | |
| add `gem 'devise'` to gemfile | |
| bundle install | |
| rails g devise:install | |
| Ensure you have defined default url options in your environments files. Open up config/environments/development.rb and add this line: | |
| ```config.action_mailer.default_url_options = { host: 'localhost', port: 3000 }``` |
I hereby claim:
To claim this, I am signing this object:
| function fizzBuzz() { | |
| var numero = 0; | |
| for (numero == 0; numero < 101; numero++) { | |
| if (numero % 5 == 0 && numero % 3 == 0) { | |
| console.log("FizzBuzz"); | |
| continue; | |
| } | |
| else if (numero % 3 == 0) { | |
| console.log("Fizz"); | |
| continue; |