I hereby claim:
- I am brubrant on github.
- I am brubrant (https://keybase.io/brubrant) on keybase.
- I have a public key whose fingerprint is FDC7 13B0 E085 CCA4 8240 8195 C036 EFD9 38E8 0BB3
To claim this, I am signing this object:
| #!/usr/bin/env python3 | |
| # Original Author: Andrew Shark | |
| # Homepage: https://gitlab.com/AndrewShark/obs-wayland-shortcuts | |
| # License: GPLv3 | |
| # Modified By: Christopher Snowhill | |
| # This script is made for convenience. It is invoked by a logid gesture for MX Master mouse. |
| import math | |
| import numpy | |
| import numpy.random as nrand | |
| """ | |
| Note - for some of the metrics the absolute value is returns. This is because if the risk (loss) is higher we want to | |
| discount the expected excess return from the portfolio by a higher amount. Therefore risk should be positive. | |
| """ |
| // http://compass-style.org/reference/compass/helpers/sprites/ | |
| @mixin get-sprite($map, $sprite, $repeat: no-repeat, $height: true, $width: true) { | |
| //http://compass-style.org/reference/compass/helpers/sprites/#sprite-file | |
| $sprite-image: sprite-file($map, $sprite); | |
| // http://compass-style.org/reference/compass/helpers/sprites/#sprite-url | |
| $sprite-map: sprite-url($map); | |
| // http://compass-style.org/reference/compass/helpers/sprites/#sprite-position |
| preferred_syntax = :sass | |
| http_path = '/' | |
| css_dir = 'assets/stylesheets' | |
| sass_dir = 'assets/sass' | |
| images_dir = 'assets/images' | |
| javascripts_dir = 'assets/javascripts' | |
| relative_assets = true | |
| line_comments = true | |
| # output_style = :compressed |
I hereby claim:
To claim this, I am signing this object:
| img:hover { | |
| -webkit-filter: grayscale(0%); | |
| -webkit-transition: .5s ease-in-out; | |
| -moz-filter: grayscale(0%); | |
| -moz-transition: .5s ease-in-out; | |
| -o-filter: grayscale(0%); | |
| -o-transition: .5s ease-in-out; | |
| filter: grayscale(0%); | |
| } |
| <?php | |
| /*------------------------------------*\ | |
| Jetpack infinite Scroll Stufff | |
| \*------------------------------------*/ | |
| function enable_infinite_scroll_for_blog() { | |
| // General Conditions | |
| add_theme_support( 'infinite-scroll', array( |
| function igualaAltura (itens) { | |
| var maiorAlura = 0; | |
| $(itens).each(function(index, el) { | |
| $(el).css('height', 'auto'); | |
| if ( $(el).height() > maiorAlura ) { | |
| maiorAlura = $(el).height(); |