Posts by bitfhacker • 221 points
5 posts
-
1
votes5
answers322
viewsA: Python how to print output
This is simple! print (str(l[0]) + ' ' + str(l[1]) + ' ' + str(l[2])) Listing: for i in l: print (str(i) + ' ', end="");
-
3
votes7
answers18353
viewsA: Why is COBOL still the preferred language in the business world?
The cost to maintain mainframes is great, but the migration to a current language is higher? The cost to maintain mainframes is high, however, mainframe mainframes are known to have "Nine Nines"…
cobolanswered bitfhacker 221 -
0
votes2
answers2148
viewsA: API facial recognition
Uses opencv in python. It is easy to use (after understanding the concepts) and works quite well. Example here: https://realpython.com/blog/python/face-recognition-with-python/…
-
1
votes3
answers3076
viewsA: Refresh page when popup closes
In javascript there is good old function Reload: location.reload(); And has the advantage of working in the main browsers. :-)
-
7
votes4
answers2357
viewsA: Good practices for storing logs
Good logging practices follow two basic principles: A log should be efficient A log should be safe Efficiency of a log The log must contain verbose values, for example key=value (name="john doe"),…