This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var script = document.createElement('script'); | |
| script.src = "https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"; | |
| document.getElementsByTagName('head')[0].appendChild(script); | |
| // search contact | |
| function searchContact(searchValue, interval_add) | |
| { | |
| var interval = interval_add; | |
| var count = 1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var hosts = 'https://d1j5o6e2vipffp.cloudfront.net'; | |
| var iframeHosts = 'https://app.mixmax.com'; | |
| chrome.webRequest.onHeadersReceived.addListener(function(details) { | |
| for (var i = 0; i < details.responseHeaders.length; i++) { | |
| var isCSPHeader = /content-security-policy/i.test(details.responseHeaders[i].name); | |
| if (isCSPHeader) { | |
| var csp = details.responseHeaders[i].value; | |
| csp = csp.replace('script-src', 'script-src ' + hosts); | |
| csp = csp.replace('style-src', 'style-src ' + hosts); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Lista de grupos devs no Whatsapp | |
| HTML DEV: https://chat.whatsapp.com/9gQI8IURE9UAL8oxL7sF3v | |
| PHP DEV: https://chat.whatsapp.com/CmTibFkDRgs5UyUydfXX1Z | |
| JAVA DEV: https://chat.whatsapp.com/IQ0n64JpftqGMJ2RIlJwrq | |
| JAVASCRIPT DEV: https://chat.whatsapp.com/E2di9x9DrHt1yfn35CCsXn |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Install dependencies | |
| # | |
| # * checkinstall: package the .deb | |
| # * libpcre3, libpcre3-dev: required for HTTP rewrite module | |
| # * zlib1g zlib1g-dbg zlib1g-dev: required for HTTP gzip module | |
| apt-get install checkinstall libpcre3 libpcre3-dev zlib1g zlib1g-dbg zlib1g-dev && \ | |
| mkdir -p ~/sources/ && \ | |
| # Compile against OpenSSL to enable NPN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $lstLink = ""; | |
| $texto_html = '<html> | |
| <head></head> | |
| <body> | |
| <a href="www.google.com">Link 1</a> | |
| <a href="www.globo.com">Link 2</a> | |
| <a href="www.facebook.com">Link 3</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| jQuery.noConflict(); | |
| jQuery(function(){ | |
| jQuery('a[data-toggle="tab"]').on('shown.bs.tab', function(e){ | |
| jQuery(e.relatedTarget).show(); | |
| }); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <table class="table table-ellipsis"> | |
| <thead> | |
| <tr> | |
| <th>#</th> | |
| <th>First Name</th> | |
| <th>Last Name</th> | |
| <th>Username</th> | |
| </tr> | |
| </thead> | |
| <tbody> |
NewerOlder