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
[ 2672.341469] usb 1-1: USB disconnect, device number 2 | |
[ 2672.357536] sd 2:0:0:0: [sdb] tag#0 FAILED Result: hostbyte=DID_NO_CONNECT driverbyte=DRIVER_OK | |
[ 2672.357539] sd 2:0:0:0: [sdb] tag#0 CDB: Write(10) 2a 00 06 62 1b c0 00 00 f0 00 | |
[ 2672.357541] print_req_error: I/O error, dev sdb, sector 107092928 | |
[ 2672.357581] EXT4-fs warning (device sdb1): ext4_end_bio:322: I/O error 10 writing to inode 3932539 (offset 50331648 size 4194304 starting block 13387008) | |
[ 2672.357583] Buffer I/O error on device sdb1, logical block 13386496 | |
[ 2672.357587] Buffer I/O error on device sdb1, logical block 13386497 | |
[ 2672.357588] Buffer I/O error on device sdb1, logical block 13386498 | |
[ 2672.357589] Buffer I/O error on device sdb1, logical block 13386499 | |
[ 2672.357591] Buffer I/O error on device sdb1, logical block 13386500 |
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
// Using JSDOM 3.1.2 on node.js | |
var jsdom = require("jsdom").jsdom; | |
var generatorMarkup = '<html><head><title>Hola</title></head><body>Body</body></html>'; | |
var doc = jsdom(generatorMarkup, { | |
loaded: function() { | |
console.log('Loaded'); | |
}, | |
done: function(errors, window) { |
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
$(document).ready(function() { | |
$('.load-more').click(function() { | |
$('img.x-lazy').each(function() { | |
var $img = $(this); | |
$img.attr('src', $img.attr('data-original')); | |
}); | |
}); | |
}); |
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
Overall a fantastic product that keeps getting better with each update. Great job! | |
Some feature requests: | |
* Ability to export/backup on a schedule. It makes me very nervous that all my passwords live in LastPass, and if I get locked out tomorrow, there's a chance that I can get locked out. I realize that I can log in to my account when offline, but that's not the same. Let's say you guys freeze my account accidentally or something - I've lost access, and have nowhere to turn to. | |
However, if you linked to my Google Drive/Dropbox and uploaded a Truecrypt file of my passwords (just as an exmaple), I would feel much better about this! That way even if I'm locked out, I can access my files. | |
I used to use KeePass synced with Gdrive earlier, and this is the biggest feature I miss :( | |
* Generated passwords aren't merged after clicking 'save new sites' - there's an extra entry for the generated password |
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
'use strict'; | |
var chalk = require('chalk'); | |
var table = require('text-table'); | |
module.exports = { | |
reporter: function (result, config, options) { | |
var total = result.length; | |
var ret = ''; | |
var headers = []; | |
var prevfile; |
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
jQuery(document).bind('ajaxComplete', function(e, xhr, settings) { | |
// Check to see if this AJAX call is the one you want | |
if($("#whatever").length) { | |
// Do something | |
} | |
// Or just check the URL to see if it's the AJAX call to the page we want: | |
if(settings.url.match(/my-url/)) { | |
// Do something | |
} |