Posts by manuwell • 16 points
5 posts
-
0
votes1
answer24
views -
-3
votes1
answer18
viewsA: Clear bash history on Kali Linux
Kali linux uses ZSH as the terminal. Try to see if there are any of these files to clean or edit them: $HOME/.zsh_history $HOME/.zhistory
-
-2
votes2
answers142
viewsA: BUILD FAILED (Ubuntu 20.04 using ruby-build 20210420) - Ruby year install error using asdf
you will need to install some packages to compile ruby: sudo apt install build-essential libxml2 libssl-dev these are the main ones I know…
-
-3
votes1
answer20
viewsA: Loop Redirect Error in Rails application
Devise is an authentication for use on browser pages, authenticated via cookie and having a persistent session on the server. For the API’s the ideal is that you. use another form of authentication…
-
-1
votes1
answer19
viewsA: Select receive custom value in Rails
It should automatically pick up the same model you’re using. You’re using Enum for that status column? Maybe that’s it.To solve the problem you can add the config selected <%= form.select…