- http://stackoverflow.com/questions/15359271/low-memory-consumption-with-mongodb
- http://www.kchodorow.com/blog/2012/05/10/thursday-5-diagnosing-high-readahead/
- http://serverfault.com/questions/408100/mongodb-and-datasets-that-dont-fit-in-ram-no-matter-how-hard-you-shove
- http://markmail.org/message/utuxcatjdgxwe72z
- http://docs.mongodb.org/manual/administration/production-notes/#readahead
- http://linux.die.net/man/8/blockdev
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
/** Quick and dirty solution to start downloading books from humble bundle downloads page if you are lazy to click | |
** buttons yourself | |
** Created At: 2017-10-26 | |
** Instructions: Open "Developer Tools" in browser and run this code | |
** below for automatic books download to start | |
** NOTE: If you want to download PDF or MOBI just replace EPUB string in the code below and run it. | |
**/ | |
$(".download.small .flexbtn .a").each(function(idx, e) { | |
if ($(e).text().indexOf("EPUB") > -1) { |
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
// ==UserScript== | |
// @name FaceIT match ranks | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Shows elo and level of player in match screen. | |
// @author Viaceslavas 'fire_bot' Duk | |
// @match https://beta.faceit.com/en/csgo/room* | |
// @grant none | |
// ==/UserScript== | |
/* jshint -W097 */ |