Listing posts

Displaying posts 151 - 155 of 328 in total
Torta alla ricotta e cioccolato
mouse 1115 · person cloud · link
Last update
2020-04-13
2020
04-13
« — »
Cover original

Ingredienti:

  • 250gr farina
  • 250gr ricotta
  • 180gr zucchero
  • 80gr cioccolato (fondente)
  • 80gr burro
  • 40ml latte
  • 16gr lievito per dolci
  • 3x uova
  • aroma a scelta: vaniglia, cannella, scorza arancia/limone (opzionale)

Procedimento:

  1. Portare a temperatura ambiente: ricotta, latte, uova

  2. Sgocciolare bene la ricotta

  3. Sciogliere il burro e lasciar intiepidire

  4. Separare le uova (tuorli in un recipiente grande)

  5. Montare gli albumi a neve

  6. Amalgamare zucchero e tuorli in un composto chiaro e spumoso, incorporare in successione: burro, ricotta, albumi, farina e lievito, latte, eventuali aromi.

  7. Incartare una tortiera, versare l'impasto, spargervi sopra il cioccolato tagliato grossolanamente, e bacchettarlo con un cucchiaio per farlo penetrare nell'impasto

  8. Infornare per circa 50 minuti nel forno ventilato preriscaldato a 180 gradi

Si conserva a temperatura ambiente per 3-4 giorni.


Fonte: giallozafferano.it


~~~ * ~~~

Cast media to ChromeCast
Last update
2020-04-06
2020
04-06
« — »

This post covers the simple usage of go-chromecast:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# install
go get -u github.com/vishen/go-chromecast

# list devices
go-chromecast -i eth0 ls

# cast a video
go-chromecast -i eth0 -n Chromecast load sample.mp4 &
go-chromecast -i eth0 -n Chromecast ui   # ncurses ui
go-chromecast -i eth0 -n Chromecast stop

# show a single image
go-chromecast -i eth0 -n Chromecast load sample.jpg &
go-chromecast -i eth0 -n Chromecast stop

# images slideshow
go-chromecast -i eth0 -n Chromecast slideshow *.jpg --duration=3 --repeat=false &
go-chromecast -i eth0 -n Chromecast ui   # ncurses ui
go-chromecast -i eth0 -n Chromecast stop

# play a single music file
go-chromecast -i eth0 -n Mini load sample.mp3 &
go-chromecast -i eth0 -n Mini stop

# play multiple music files
go-chromecast -i eth0 -n Mini playlist *.mp3 &
go-chromecast -i eth0 -n Mini ui   # ncurses ui
go-chromecast -i eth0 -n Mini stop

# start the playlist with UI and by selecting the first file to play
go-chromecast -i eth0 -n Mini playlist *.mp3 --with-ui --select

~~~ * ~~~

rsync | howto sync moved files
mouse 1544 · person cloud · link
Last update
2020-03-29
2020
03-29
«hard links»

Rsync recognize hard-links so if both hosts support them you can do this:

1
2
3
4
5
6
7
8
rsync -avHP --delete-after src dest # initial sync

cp -rlp src src-orig # make hard links of everything
... # organize src folder
rsync -avHP --delete-after --no-inc-recursive src src-orig dest

rm -rf src-orig
rsync -avHP --delete-after src dest # delete old hard links

Source: Detecting File Moves & Renames with Rsync


~~~ * ~~~

Torta al latte caldo
mouse 1645 · person cloud · link
Last update
2020-03-22
2020
03-22
«"hot milk sponge cake" -- goduriosamente soffice!»
Cover original

Ingredienti:

  • 200ml latte
  • 200gr farina
  • 180gr zucchero
  • 60gr burro
  • 6gr lievito per dolci
  • 4x uova
  • 2x cucchiaini di succo di limone
  • un pizzico di sale

Procedimento:

  1. Sbattere uova, zucchero e sale per 10 minuti.

  2. Aggiungere ma mano farina e lievito mescolando dal basso verso l'alto.

  3. Scaldare il latte col burro senza farlo bollire, poi versarlo in una ciotola mescolandolo a 2 cucchiai dell'impasto, infine unire i due composti aggiungendo anche il limone.

  4. Incartare una tortiera, versare l'impasto e infornare per circa 45 minuti nel forno ventilato preriscaldato a 180 gradi.


Fonte: GialloZafferano


~~~ * ~~~

rclone upload/download split/restore large file
mouse 2513 · person cloud · link
Last update
2020-03-21
2020
03-21
«upload/backup a big file to your online drive with auto split/concatenation»
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!/usr/bin/env ruby

require 'shellwords'

def print_usage_and_exit
  progr = File.basename __FILE__
  puts "USO: #{progr} <service_name> <ul|dl|rm|ls> <src_file|-> [<dst_file|->] [chunk_size_MB]"
  puts "  splits/concatenate and upload/download a file via rclone"
  puts "  eg: tar -cf - / | pigz | #{progr} gdrive ul - /backup/vps/root.tgz"
  puts "  eg: #{progr} gdrive dl /backup/vps/root.tgz - | tar -xzf - -C /"
  puts "  eg: #{progr} gdrive ul homes.tgz /backup/vps/homes.tgz"
  puts "  eg: #{progr} gdrive dl /backup/vps/homes.tgz homes.tgz"
  puts "  eg: #{progr} gdrive rm /backup/vps/homes.tgz"
  puts "  eg: #{progr} gdrive ls /backup/vps"
  exit 1
end

# temp files cleanup on exit
$temp_files = []
def remove_temp_files; $temp_files.each{|f| File.unlink(f) rescue nil }; end
Signal.trap('INT' ){ remove_temp_files; exit }
at_exit{ remove_temp_files }

# sanitize parameters
srv_name, action, src_file, dst_file, chunk_size = ARGV
srv_name   = srv_name.to_s.strip
src_file   = src_file.to_s.strip
dst_file   = dst_file.to_s.strip
chunk_size = 1024 * 1024 * (chunk_size.to_i > 0 ? chunk_size.to_i : 100) # default 100MB

case action
when 'rm'
  print_usage_and_exit if ARGV.size < 3

  puts "deleting files..."
  system %Q|rclone --include #{src_file.shellescape}.rc\\* delete #{srv_name}:|
when 'ls'
  print_usage_and_exit if ARGV.size < 3

  puts "listing files..."
  files = `rclone lsf #{srv_name}:#{src_file.shellescape}`.split("\n")
  puts files.map{|i| i =~ /\.rc[0-9]{4}/ ? "*#{i[0..-8]}" : " #{i}"}.sort.uniq
when 'ul'
  print_usage_and_exit if ARGV.size < 4

  puts "deleting any eventual old files..."
  system %Q|rclone --include #{dst_file.shellescape}.rc\\* delete #{srv_name}:|

  puts "split and upload of [#{src_file}]:"
  fd_src = src_file == '-' ? STDIN : File.open(src_file)
  chunk_idx = -1
  until fd_src.eof?
    remote_name = "#{dst_file}.rc#{"%04d" % (chunk_idx+=1)}"
    tmp_name    = `mktemp -u /tmp/rclone-bkup.XXXXXXXXXX`.strip
    $temp_files << tmp_name
    File.open(tmp_name, 'wb'){|f| f << fd_src.read(chunk_size) }
    ObjectSpace.garbage_collect
    puts "  #{tmp_name} => #{remote_name}"
    system %Q|rclone copyto  #{tmp_name.shellescape}  #{srv_name}:#{remote_name.shellescape}|
    File.unlink tmp_name
  end
  fd_src.close
when 'dl'
  print_usage_and_exit if ARGV.size < 4

  remote_names = `rclone --include #{src_file.shellescape}.rc\\* lsf #{srv_name}: -R --files-only`.split("\n").sort
  if remote_names.size == 0
    puts "no file found"
    exit 1
  end

  STDERR.puts "download and restore to [#{dst_file}]:"
  fd_dst = dst_file == '-' ? STDOUT : File.open(dst_file, 'wb')
  remote_names.each do |remote_name|
    tmp_name = `mktemp -u /tmp/rclone-bkup.XXXXXXXXXX`.strip
    $temp_files << tmp_name
    STDERR.puts "  #{remote_name} => #{tmp_name}"
    system %Q|rclone copyto  #{srv_name}:#{remote_name.shellescape}  #{tmp_name.shellescape}|
    File.open(tmp_name) do |fd_chunk| # apppendi il pezzo 10MB al colpo
      fd_dst << fd_chunk.read(1024 * 1024 * 10) until fd_chunk.eof?
    end
    ObjectSpace.garbage_collect
    File.unlink tmp_name
  end
  fd_dst.close
else
  puts "action [#{action}] unknown"

  print_usage_and_exit
end