Posts by Thiago Oliveira • 138 points
6 posts
-
-2
votes1
answer51
viewsQ: Delete hostname from a computer name via REGEX
NAMESERVER.DOMINIO.COM.BR From this format above I want to remove the NAMESERVER. via regex Staying only DOMINIO.COM.BR What would be the regular expression (REGEX) that varies this?…
regexasked Thiago Oliveira 138 -
1
votes0
answers123
viewsQ: What is the best way or method to study banks in the QTL?
I need to develop a script that Sincronize an apache database with another Elastic search. However, I do not know the operating mechanism of the two, which are banks in the SQL. What is the fastest…
-
1
votes1
answer344
viewsQ: How to put a footer as a footer without using css or javascript?
I am learning HTML5 and I have this doubt, it is possible to leave the tag footer in the footer of the pages without using CSS or javascript?
html5asked Thiago Oliveira 138 -
1
votes1
answer372
viewsQ: How to avoid an XSS vulnerability in an HTML FORM?
How to avoid XSS vulnerabilities in a form by using the tag <form> </form>, in HTML? Is there any good practice in building HTML code to avoid it?
-
4
votes2
answers623
viewsA: Script to find and replace words in multiple files
find ./* -name *.* | xargs sed -i 's_/export_/media/pendrive_g' Why not do it this way? will get all the files that have some kind of extension. Another way is to use || for it to look for a valid…
-
2
votes1
answer142
viewsA: Doesn’t Crontab kill the lawsuits after they’re done?
Cron is just a task scheduler, that is crontab, its configuration utlitario, does not kill processes only execute them at the time they were scheduled. In order for your processes to be finished…