I hereby claim:
- I am lulzaugusto on github.
- I am luizaugusto (https://keybase.io/luizaugusto) on keybase.
- I have a public key ASBF9AXRZ0Y9uhRQRSqtlkNDFpMdJpYjcTMfXPbn6ER0Jwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| const movies = [] | |
| $('#movies-list li').each(function () { | |
| console.log('scrapping this:', this) | |
| const $ratingEl = $(this).find('.star-rating') | |
| const rating = $ratingEl.length > 0 ? $ratingEl.data('originalTitle').split(' ')[1] : '' | |
| const title = $(this).find('a.cover img').attr('alt').split('(')[1].split(')')[0] | |
| movies.push([title, rating]) | |
| }) |
| 'use strict'; | |
| const WALTER_PRICE = 0.53; | |
| const TARE_PRICE = 0.08; | |
| export default function WalterCalculator(money) { | |
| const ret = { totalWalters: 0, leftoverMoney: 0 }; | |
| console.log('End'); | |
| return new Promise(function(resolve) { |
| { "keys": ["super+v"], "command": "paste_and_indent" } |
| .tago-infobox-arrow { | |
| position: absolute; | |
| width: 32px; | |
| height: 32px; | |
| left: 50%; | |
| margin-left: -16px; | |
| bottom: -32px; | |
| overflow: hidden; | |
| &:before { |
| function fadeOut(el){ | |
| el.style.opacity = 1; | |
| (function fade() { | |
| el.style.opacity -= 0.1; | |
| if (el.style.opacity < 0) { | |
| el.style.display = "none"; | |
| el.classList.add('tago-playerbox-hide'); | |
| } else { | |
| requestAnimationFrame(fade); |
| function myFnc() { | |
| if (true) { | |
| let a = 'oi'; | |
| console.log(a + ' gdg'); // oi gdg | |
| } | |
| console.log(a); // a is not defined | |
| } | |
| // myFnc(); |
| // | |
| // NSManagedObject+IsNew.m | |
| // eduexpos | |
| // | |
| // Created by Luiz Augusto on 8/29/14. | |
| // Copyright (c) | |
| // | |
| #import "NSManagedObject+IsNew.h" |
| /*===================================================== | |
| * | |
| * jQuery Sitef Paginator | |
| * Inform Sistemas LTDA. | |
| * | |
| ======================================================*/ | |
| ;(function ($, window, document, undefined) { | |
| $.widget("sitef.paginator", { |
| function render(tmpl_name, tmpl_data) { | |
| if ( !render.tmpl_cache ) { | |
| render.tmpl_cache = {}; | |
| } | |
| if ( ! render.tmpl_cache[tmpl_name] ) { | |
| var tmpl_dir = '/templates'; | |
| var tmpl_url = tmpl_dir + '/' + tmpl_name + '.html'; | |
| var tmpl_string; |