Demon's Souls | Dark Souls 1 | Dark Souls 2 | Dark Souls 3 | Bloodborne | Sekiro | Elden Ring | |
---|---|---|---|---|---|---|---|
Healing | Consumables, spells | Estus, miracles, consumables (limited) | Estus, miracles, consumables | Estus, miracles, consumables (limited) | Consumables, ripostes (unlockable), spell (choir bell) | Estus (gourd), consumables, ripostes (unlockable) | Estus (vial), incantations, consumables, ripostes (unlockable) |
Improving | Spend humanity at bonfire to increase number of estus vials it provides, consumable increases strength | Consumables ncrease estus number/strength | Consumables increase estus number/strength | Equip increases consumable strength | Consumable increases estus number, leveling increases strength | Consumable increases estus number/strength | |
Humanity | Human form vs soul form | Human form vs hollow | Human form vs hollow (scaling) | Enkindled vs Unkind |
This file contains 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
### Patreon email sorting-and-forwarding to Feedbin | |
if | |
allof( | |
address :matches "From" "*patreon.com", | |
header :regex "Subject" "^(?:[^ ]{0,4}(?: Vote in)?) (.*)(?:(?:'s | posted| just shared:?)(?: [0-9]+ )?(?:new(?: patron-only)? (?:images|poll|video|release):)?) \"(.*)\".*$" | |
) | |
{ | |
deleteheader "From"; | |
addheader "From" "${1} <\"${1}\"@patreon.com>"; | |
deleteheader "Subject"; |
This file contains 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
import 'dart:io'; | |
const MAX_ATTEMPTS = 10000; | |
const MAX_JOBS = 20; | |
var total = 0; | |
var numRunning = 0; | |
main() { | |
for (var i = 0; i < MAX_JOBS; i++) spawnProc(); |
This file contains 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
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> | |
<!--[if lt IE 9]> | |
<link href="/stylesheets/pie.css" media="screen, projection" rel="stylesheet" type="text/css" /> | |
<![endif]--> |