Posts by Octávio Filipe Gonçalves • 594 points
6 posts
-
0
votes1
answer638
viewsA: Save item in Combobox
Make sure this code is sufficient for what you want. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using…
-
0
votes2
answers785
viewsA: E-mail UTF-8 via ASP with CDONT
To send emails with the correct UTF-8 encoding, use: bjCDOMailer.TextBodyPart.Charset = "utf-8" For the encoding to work properly: objCDOMailer.BodyPart.Charset = "utf-8"…
-
1
votes1
answer278
viewsQ: Is it possible to implement a "Recycle Bin" method in SAMBA?
It is possible to implement a "Recycle Bin" method in SAMBA? That is, when a user deletes a file in a SAMBA share, it is possible to send it to "Recycle Bin", instead of permanently deleting it? If…
-
9
votes2
answers1032
viewsA: Attacks of data interception
In the area of cryptography and computer security, the concept of MITM (Man in the Middle), allows that in a communication between two subjects (Subject A and Subject B), there is secretly a third…
-
6
votes1
answer451
viewsA: What is SPF and DKIM and why do we need to configure them?
Sender Policy Framework or SPF validates the Vs. domain the SMTP server response, from which the email originates. This methodology to ensure that the email was actually sent by the server where the…
-
20
votes13
answers20263
viewsA: What makes a language to be considered low/high level?
A low-level language is one that does not require an interpreter to convert machine language code (e.g. C / Assembly) A High Level language is all the language, not compiled that requires an…