I hereby claim:
- I am jjperezaguinaga on github.
- I am jjperezaguinaga (https://keybase.io/jjperezaguinaga) on keybase.
- I have a public key whose fingerprint is E1C9 616B 6DF8 0F0F 3EC8 D967 1E07 CFB8 9051 0DED
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
| * { background-color: rgba(255,0,0,.2); } | |
| * * { background-color: rgba(0,255,0,.2); } | |
| * * * { background-color: rgba(0,0,255,.2); } | |
| * * * * { background-color: rgba(255,0,255,.2); } | |
| * * * * * { background-color: rgba(0,255,255,.2); } | |
| * * * * * * { background-color: rgba(255,255,0,.2); } |
| var Browser = require('zombie'), | |
| url = require('url'), | |
| fs = require('fs'), | |
| $q = require('Q'), | |
| saveDir = __dirname + '/_snapshots'; | |
| var scriptTagRegex = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi; | |
| var stripScriptTags = function(html) { |
| //Add this at the bottom of your page right before </body> | |
| //Will let the page content load before loading js | |
| //Make sure you don't have critical js necessary for loading the page when using this because it will break it | |
| function downloadJSOnload() { | |
| var element = document.createElement('script'); | |
| element.setAttribute('src', 'a.js'); | |
| document.body.appendChild(element); | |
| } | |
| if (window.addEventListener) { | |
| window.addEventListener('load', downloadJSOnload, false); |
| <meta id="viewport" name="viewport" content="width=320, intial-scale=0.5, maximum-scale=.5, minimum-scale=.5, user-scalable=no"/> | |
| <script> | |
| (function(doc) { | |
| if (navigator.userAgent.match(/iPad/i)) { | |
| doc.getElementById("viewport").setAttribute("content", "initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"); | |
| } | |
| }(document)); | |
| </script> |
| /* Read article at http://typecast.com/blog/a-more-modern-scale-for-web-typography */ | |
| body { | |
| font-size: 100%; | |
| } | |
| body, caption, th, td, input, textarea, select, option, legend, fieldset, h1, h2, h3, h4, h5, h6 { | |
| font-size-adjust: 0.5; | |
| } | |
| #page { |
| $break-small: 480px; | |
| $break-large: 1024px; | |
| @mixin media-query-for($device) { | |
| @if $device == palm { | |
| @media only screen and (max-width: $break-small) { @content; } | |
| } | |
| @else if $device == lap { | |
| @media only screen and (min-width: $break-small + 1) and (max-width: $break-large - 1) { @content; } | |
| } |
| window.mobilecheck = function() { | |
| var check = false; | |
| (function(a){if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(a)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v |
| "use strict"; | |
| angular.module('usersResources', [ | |
| 'apiConstants', | |
| 'apiModule' | |
| ]) | |
| .service('usersResources.users', [ | |
| '$q', | |
| 'api', | |
| function users($q, api) { |