-
4 rotoli di pasta sfoglia rotondi
-
Zucchero a velo per spolverare le sfoglie
-
Zucchero a velo per la copertura
-
Bignè da farcire
-
6 tuorli d'uovo
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
| package main | |
| import ( | |
| "errors" | |
| "fmt" | |
| "log" | |
| "net" | |
| "net/rpc" | |
| "net/rpc/jsonrpc" | |
| ) |
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
| require 'benchmark/ips' | |
| puts "Ruby #{RUBY_VERSION} at #{Time.now}" | |
| puts | |
| firstname = 'soundarapandian' | |
| middlename = 'rathinasamy' | |
| lastname = 22 | |
| Benchmark.ips do |x| |
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
| ls * | cat -n | while read i f; do mv "$f" `printf "%04d.${f#*.}" "$i"`; done | |
| ls * | cat -n | while read i f; do mv "$f" `printf "$(basename $f .${f#*.})_%04d.${f#*.}" "$i"`; done | |
| https://stackoverflow.com/a/45569550/302005 |
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
| #!/bin/bash | |
| set -e | |
| current_dir=$PWD | |
| die() { cd $current_dir; echo $* >&2; exit 1; } | |
| if [ $# != 1 ]; then | |
| die "Usage: $0 REPO_PATH" |
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
| const deep_search = (obj, id) => { | |
| if (obj) { | |
| if (obj.constructor === Object) { | |
| if (obj.id === id) { | |
| return obj | |
| } else { | |
| const keys = Object.keys(obj) | |
| for(let i = 0; i < keys.length; i++) { | |
| let r = deep_search(obj[keys[i]], id) | |
| if (r) return r |
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
| require 'net/http' | |
| require 'json' | |
| require 'tty-progressbar' | |
| SPECID_MAP = { | |
| 250 => 'Death Knight Blood', | |
| 251 => 'Death Knight Frost', | |
| 252 => 'Death Knight Unholy', | |
| 577 => 'Demon Hunter Havoc', |
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
| iptables -A INPUT -p tcp --match multiport --dports 3000:6000 -s 127.0.0.1 -j ACCEPT | |
| iptables -A INPUT -p tcp --match multiport --dports 3000:6000 -j DROP | |
| # to remove this rules | |
| iptables -D INPUT -p tcp --match multiport --dports 3000:6000 -s 127.0.0.1 -j ACCEPT | |
| iptables -D INPUT -p tcp --match multiport --dports 3000:6000 -j DROP | |
| # Use iptables-persist to make this rules persistant |