- słody:
- 2kg pszenicznego
- 1kg pszenicznego karmelowego
- 1kg monachijskiego
- chmiele:
- marynka 15g
- wysładzanie:
- 42*C - 30'
- 64*C - 30'
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
| String.prototype.customHash = function(x) { | |
| x = x || 10; | |
| var sum = 0; | |
| for (var i = 0, l=this.length; i<l; i++) { | |
| sum += (this.charCodeAt(i) * i); | |
| } | |
| return (sum%x) + 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
| var people = [ | |
| "budzor", | |
| "wojteck", | |
| "aga", | |
| "wasiak", | |
| "luiza", | |
| "luki", | |
| "oktan one", | |
| "paula", | |
| "dżaga" |
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
| Array.prototype.slice.call( | |
| document.querySelectorAll('.interlanguage-link') | |
| ).forEach( | |
| function(node){ | |
| console.log(node.children[0].title); | |
| } | |
| ); |
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
| // run this script here: http://cng.seas.rochester.edu/CNG/docs/x11color.html | |
| var result = []; | |
| Array.prototype.slice.call( | |
| document.querySelectorAll('tr td:nth-child(2n):not([bgcolor=black]):not([valign=top])') | |
| ).forEach(function(color){ | |
| result.push(color.innerHTML); | |
| }); |
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
| Array.prototype.slice.call( | |
| document.querySelectorAll('.ProfileCard.js-actionable-user') | |
| ).forEach(function(card){ | |
| var img = card.querySelector('img'); | |
| if (img.src.indexOf('default') === -1) { | |
| card.querySelector('.js-follow-btn').click(); | |
| } | |
| }); |
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
| var series = document.querySelectorAll('#series .cover'); | |
| var x = 6; | |
| var y = 3; | |
| var sizeX = 1200; | |
| var sizeY = 800; | |
| var topPos = 0; | |
| var leftPos = 0; | |
| var totalCovers = x*y; |
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
| // var input = '))'; | |
| var input = '(())))(('; | |
| var opening = '('; | |
| var closing = ')'; | |
| var closingToEnd = function(array, pointer) { | |
| var newArr = array.slice(pointer); | |
| return newArr.filter(function(el) { | |
| return el === closing; | |
| }).length; |
OlderNewer