Langsung ke konten utama

Ragi - Yeast

Mengenal Ragi/Yeast

Menurut Louis Pasteur:
It was Louis Pasteur In 1859 who first discovered how yeast works:
  • Yeast feeds on the starches in flour, producing carbon dioxide
  • The carbon dioxide expands the gluten proteins in the flour
  • The gluten proteins cause the dough (of which flour is a main ingredient) to expand and rise
He unveiled these mysteries by proving that the yeast cell can live with or without oxygen. Pasteur understood very early on that yeast was indispensable for forming bread's aromas and flavours.

Cara berternak ragi

So, untuk mengembangbiakkan ragi sangat mudah:
*.Campurkan tepung terigu dengan air dengan takaran sama seperti membuat adonan tapi bertexture seperti tajin
*.Setelah menjadi seperti adonan langkah selanjutnya tinggal didiamkan agar ragi memakannya ^_^

Adonan tersebut akan mengembang jika takarannya tepat yaitu bertexture tajin.
Jika sudah mengembang artinya ragi telah memakannya.

Adonan tadi juga dapat dijadikan sebagai roti dengan cara:
*.Panggang adonan pada panggangan yg terbuat dari tanah liat (agar tdk melekat) dengan fungsi yg sama seperti sebuah oven
*.Tunggu hingga adonan menjadi roti

Juga dapat dibuat sebagai bir:
Beer is made from four basic ingredients: Barley, water, hops and yeast. The basic idea is to extract the sugars from grains (usually barley) so that the yeast can turn it into alcohol and CO2, creating beer. The brewing process starts with grains, usually barley (although sometimes wheat, rye or other such things.)

Dengan bahan2nya:
Barley (sejenis gandum)
Air
Hops (sejenis tanaman)
Ragi

Sumber:
http://www.breadworld.com/education/history-of-yeast/
http://www.exploreyeast.com/article/history-yeast
http://blog.beeriety.com/2009/07/06/how-beer-is-made/

Komentar

Postingan populer dari blog ini

How to export Godot game to Android from Linux

1.Go to Editor -> Manage export template -> Download and install ->Close. 2.Download command-tools cli for linux at https://developer.android.com/studio/ # command-tools .  Scroll down until you see the Command line tools  section. Then add `export ANDROID_HOME="/path/to/android-sdk"`  to your  `.bashrc`  or  `.zshrc` (for other shell, try to edit it accordingly), and unzip the file to: `/path/to/android-sdk/` Example: `$HOME/Android/android-sdk` 3.Download Openjdk latest version. Set JAVA _HOME  to your `.bashrc` : `export JAVA_ HOME=$(which java|rev|cut -d'/' -f3-|rev)` Install required tools&packages from sdkmanager: `$ANDROID _HOME/cmdline-tools/bin/sdkmanager --sdk_ root=$ANDROID_HOME "platform-tools" "build-tools;34.0.0" "platforms;android-34" "cmdline-tools;latest"` "cmake;3.10.2.4988404" "ndk;23.2.8568313" You can also choose which version you want to download, just playing around wi...

Running proot program over termux xorg

  # Running xorg and xvfb on Termux pkg add tur-repo apt update -y && apt upgrade -y pkg install x11-repo # Mempermudah nantinya apt install fish starship pulseaudio tmux -y chsh -s fish exit # Kembali ke termux dan ini hasilnya: # Beri akses ke internal storage termux-setup-storage # Install xorg-server apt install xorg-server xorg-server-xvfb -y # Sampai sini harusnya akan ada error muncul jika mencoba menjalankannya: # Fix error dengan cara install mesa zink apt install mesa-zink/tur-packages # Install xwayland untuk termux-x11 apt install libwayland-protocols libepoxy xwayland # Download termux-x11 .zip dari github lalu extract file zip-nya dan install file termux-x11.apk dan .deb-nya (dengan cara dpkg -i file.deb) # Kenapa install dari github? Karna termux-x11-nightly dari repo termux bermasalah # Setelah semua selesai, tinggal install program yg membutuhkan X server, misalkan xterm (30MB) atau openbox (700MB) apt install xterm -y # Jalankan X11 DISPLAY=:0 termux-x11 #...

What is Declaration, Expression, and Statement

Declaration simply means initialization without value. for example: let x; Expression is the operation being used to some primitive data types and will return a value result, like: Numerical expression (10+30)  String expression ("Hello" + "World!") Boolean expression (a > b) Conditional expression (age > 18 ? "allow":"exit") while Statement is just a fancy word to combine both, like: let x = "Hello" + "World!" // this whole line is called statement