Posts by danielfr3 • 33 points
3 posts
- 
		2 votes1 answer485 viewsQ: Script captcha generator in PHP does not generate the imageI am trying to run the site script below, which generates captcha, but the image is never generated. Can anyone give me a light of what I might be doing? I’m running the script via Docker. Page:… 
- 
		0 votes2 answers3216 viewsA: Crud with PythonYour registration class could be like this: import random class Cadastro: def __init__(self): self.__nome = input('Digite nome do aluno: ') self.__senha = input('Digite a senha: ') self.__conta =… 
- 
		1 votes1 answer403 viewsA: Fatal error: unexpectedly found nil while unwrapping an Optional valueFrom what you can see, the result of the Sqliteobjc.gettext call may be empty, so it would be interesting for your function to return an optional string. I rewrote the code to handle the bug. I hope…