- 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
// 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; |
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
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
// 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('.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
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
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
Jestem prawie pewien, że sąsiadka właśnie wezwała na mnie bagiety. | |
Mieszkam sam w zabitej dechami dziurze niedaleko granicy Podlaskiego i Warmińsko-Mazurskiego. Mam jedną sąsiadkę. JEDNĄ. I tak się składa, że jest absolutnie pie**olnięta. Powiedziałbym, że żyje sama, ale tak nie jest. Ma dosłownie hordę 20-30 dzikich kotów, które rezydują sobie na naszych posesjach. | |
Tak właściwie to nie przeszkadza mi to aż tak bardzo. Daję sobie radę z tymi obrzydliwymi kotami. Jedynym moim zarzutem jest to, że śpią i szczają po moim samochodzie bo nie mam garażu, ale że mieszkamy na dość wiejskim terenie to mam to gdzieś(choć muszę powiedzieć, że uwielbiam patrzeć jak bielik zabija i zjada jej koty). | |
Problem w tym, że ta suka upiera się przy dokarmianiu gęsi. I to nie są 2-3 gęsi. To całe pie**olone stado. Karmi je tak, że całkowicie dały sobie spokój z migracją. Po prostu żyją sobie na NASZYCH posesjach. Gęsi to ohydne zwierzęta. Srają dosłownie wszędzie. Ale nie to jest najgorsze... | |
Gęsi i dzikie koty oczywiście ze sob |
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
// title: OpenJSCAD.org Logo | |
// author: Rene K. Mueller | |
// license: Creative Commons CC BY | |
// URL: http://openjscad.org/#examples/logo.jscad | |
// revision: 0.003 | |
// tags: Logo,Intersection,Sphere,Cube | |
function main() { | |
var l = vector_text(0,0,"JELONKI"); |
NewerOlder