Posts by DolbyCpp • 118 points
3 posts
-
2
votes1
answer217
viewsA: Problem uploading with php
if (!move_uploaded_file( $_FILES['arquivo']['tmp_name'], sprintf('Documentos/%s.%s', sha1_file($_FILES['arquivo']['tmp_name']), $ext) Note that in this code snippet you upload the file tmp_name,…
-
5
votes2
answers6698
viewsA: How to turn a "Unity Project" into an . EXE?
The extent .exe is recognized only by Windows versions. Other operating systems work with other extensions(Android with .apk, and so on). You need to compile your project for each platform where you…
-
2
votes1
answer128
viewsA: What is the best way to follow the software flow?
You can use the framework Junit. Which aims to facilitate the creation of code for test automation with presentation of results. With it, it can be checked if each method of a class works in the…