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
| ##Ganglio theme | |
| # A couple of definition | |
| OPEN_SQUARE="%{$reset_color%}%{$fg[cyan]%}[%{$reset_color%}" | |
| CLOSE_SQUARE="%{$reset_color%}%{$fg[cyan]%}]%{$reset_color%}" | |
| TL_ANGLE="%{$reset_color%}%{$fg[cyan]%}┌%{$reset_color%}" | |
| BL_ANGLE="%{$reset_color%}%{$fg[cyan]%}└%{$reset_color%}" | |
| V_BAR="%{$reset_color%}%{$fg[cyan]%}│%{$reset_color%}" | |
| VR_BAR="%{$reset_color%}%{$fg[cyan]%}├%{$reset_color%}" | |
| AT_SIGN="%{$reset_color%}%{$fg[cyan]%}@%{$reset_color%}" |
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 $(expr, con) { | |
| return [].slice.call((con || document).querySelectorAll(expr)); | |
| } |
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 casper = require('casper').create({ | |
| verbose : true, | |
| logLevel : 'info' | |
| }); | |
| var images = []; | |
| var fs=require("fs") | |
| /** | |
| * Configuration here | |
| */ |
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
| .logo { | |
| border: 10px solid orange; | |
| width: 100px; | |
| height: 100px; | |
| border-radius: 40px; | |
| position: relative; | |
| box-sizing: border-box; | |
| color: black; | |
| } | |
| .logo:before { |
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
| @mixin ruler($width:50px,$height:10px) { | |
| background: { | |
| color: black; | |
| clip: content-box; | |
| } | |
| border: { | |
| width: $height 1px; | |
| style: solid; | |
| color: transparent black; | |
| }; |
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
| hr { | |
| height: 10px; | |
| @include background-image | |
| (linear-gradient(left, black 1%, transparent 1%), | |
| linear-gradient(left, black 2%, transparent 2%), | |
| linear-gradient(left, black 10%, transparent 10%), | |
| linear-gradient(left, black 20%, transparent 20%), | |
| linear-gradient(top, transparent 5px, black 5px, transparent 6px)); | |
| border: none; | |
| background-position: 0px 50%, 0px 50%, 0px 50%, 0px 50%, 0px 0; |
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
| # Require any additional compass plugins here. | |
| # Set this to the root of your project when deployed: | |
| http_path = "/" | |
| css_dir = "/" | |
| fonts_dir = "/" | |
| sass_dir = "/" | |
| images_dir = "/" | |
| javascripts_dir = "/" |
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
| @mixin tassels($color:#ffffff,$size:20px) { | |
| position: relative; | |
| &:before { | |
| content: ''; | |
| position: absolute; | |
| bottom: 0; | |
| left: 0; | |
| right: 0; | |
| height: $size; | |
| background-size: $size $size*2; |
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 mobile_redirect() { | |
| var path = window.location.pathname; | |
| if (path != null) { | |
| window.location = 'http://host' + path | |
| } else { | |
| window.location = 'http://host/' | |
| } | |
| } | |
| function setCookie(c_name, value, expiredays) { | |
| var exdate = new Date(); |
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 | |
| $email="robertotorella"; | |
| for ($i=3; $i<100; /*8192;*/ $i++) { | |
| $bin=strrev(str_pad(decbin($i), 13,'0',STR_PAD_LEFT)); | |
| $apply_address=addDot($email,$bin); | |
| $st=time(); | |
| echo "Applying $apply_address ($i)\n"; | |
| $res = apply($apply_address)?"Successfully":"Not successfully"; |