Posts by brhvitor6 • 290 points
6 posts
-
0
votes2
answers60
viewsA: Rescue BD Data Only Filled
You can modify the query to SELECT * FROM tabela WHERE `nome` != NULL
-
12
votes3
answers2053
viewsA: Why do 64-bit versions of programs have better performance, stability and security?
Security With a 64-bit system it is possible to use ASLR that roughly protects against stack overflow (or buffer overflow) attacks. Thus preventing Cracker from jumping from an exploid to a direct…
-
2
votes1
answer315
viewsA: Algorithm for temperature control
Turning off and on you will get beyond a variation of 1ºc, you will also get a physical wear of the relee (I imagine you are using it), depending on the microcontroller and the level of programming…
-
1
votes1
answer125
viewsA: Iframes and Fancybox
Put this on your . htaccess to release external search to any site: <FilesMatch "\.(*)$"> <IfModule mod_headers.c> Header set Access-Control-Allow-Origin "*" </IfModule>…
-
2
votes7
answers18353
viewsA: Why is COBOL still the preferred language in the business world?
COBOL, today, is one of the safest and fastest languages in the business world. I’m not saying that C or JAVA are "fragile", but COBOL, because it doesn’t have as much documentation and material…
-
2
votes4
answers2351
viewsA: Merge word docx documents from a template and replace words
I would use the Office API provided by Microsoft itself, and then: wordApp = New Microsoft.Office.Interop.Word.Application; oDoc = New Microsoft.Office.Interop.Word.Document; oDoc =…