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
| SSLProtocol +TLSv1.2 +TLSv1.1 +TLSv1 | |
| SSLCompression off | |
| SSLHonorCipherOrder on | |
| SSLCipherSuite ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-RC4-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-SHA256:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES128-SHA256:DHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:RC4-SHA:AES256-GCM-SHA384:AES256-SHA256:CAMELLIA256-SHA:ECDHE-RSA-AES128-SHA:AES128-GCM-SHA256:AES128-SHA256:AES128-SHA:CAMELLIA128-SHA |
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
| @media screen and (-webkit-min-device-pixel-ratio:0) { | |
| @font-face { | |
| font-family: 'open_sansregular'; | |
| src: url('../fonts/opensans-regular-webfont.svg#open_sansregular') format('svg'); | |
| } | |
| } |
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
| smtpd_banner = $myhostname ESMTP $mail_name (ServerName) | |
| biff = no | |
| fuck | |
| append_dot_mydomain = no | |
| readme_directory = no | |
| relayhost = email-smtp.us-east-1.amazonaws.com:25 | |
| smtp_sasl_auth_enable = yes | |
| smtp_sasl_security_options = noanonymous |
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
| $.getScript( "http://cdnjs.cloudflare.com/ajax/libs/fotorama/4.6.4/fotorama.js", function( data, textStatus, jqxhr ) { | |
| console.log( data ); // Data returned | |
| console.log( textStatus ); // Success | |
| console.log( jqxhr.status ); // 200 | |
| console.log( "Load was performed." ); | |
| }); |
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 handelize = (function() { | |
| var from = "ÃÀÁÄÂÈÉËÊÌÍÏÎÒÓÖÔÙÚÜÛãàáäâèéëêìíïîòóöôùúüûÑñÇç'{}´-+¿?.,;:[]*¨¡!=()&%$#/\"_", | |
| //to = "AAAAAEEEEIIIIOOOOUUUUaaaaaeeeeiiiioooouuuunncc ", | |
| to = " ", | |
| mapping = {}; | |
| for(var i = 0, j = from.length; i < j; i++ ) | |
| //mapping[ from.charAt( i ) ] = to.charAt( i ); | |
| mapping[ from.charAt( i ) ] = to; | |
| return function( str ) { | |
| var ret = []; |
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
| <style type="text/css"> | |
| button > * { | |
| pointer-events: none; | |
| } | |
| </style> | |
| {{ 'booster.js' | asset_url | script_tag }} | |
| <script type="text/javascript"> | |
| //Isolate script scope |
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
| function webhook(hook, url, title, thumb, fields) { | |
| fetch( | |
| hook, | |
| { | |
| method: 'post', | |
| headers: { | |
| 'Content-Type': 'application/json', | |
| }, | |
| body: JSON.stringify({ | |
| // the username to be displayed |
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
| from lxml import html | |
| import csv | |
| import os | |
| import requests | |
| from exceptions import ValueError | |
| from time import sleep | |
| from random import randint | |
| def parse(url): | |
| headers = { |