Julia Child's Reine de Saba Cake (2024)

Jump to Recipe·Print Recipe

Julia Child's Reine de Saba Cake (1)

When it comes to the Queen of the kitchen, there is no doubt that Julia Child is that woman! She made her mark cooking and baking French cuisine and taught so many others to be bold, playful; to roll up their sleeves and to try new things. I can’t think of a better (celebrity) female role model than her!In celebration of what would have been Julia’s 107 birthday today, August 15th, I’m making herchocolate almond cake (Reine de Saba Cake) that was said to be one of the first French cakes that she ever ate. The Reine de Saba cake is dark and rich, sophisticated and it’s no wonder Julia fell in love with the French cuisine if this was indeed her first taste.

The cake itself is quite simple to make but there are simple keys to making it how the French do, or Julia herself. Separating the eggs and whipping your whites to stiff peaks – gently folding the whites into the batter to incorporate the lightness is just a simple technique that makes a big difference. Your quality of ingredients will be noticed, so use the best of the best when it comes to your chocolate, butter and rum!

Julia Child's Reine de Saba Cake (2)

I love how fearless she was and frankly a little silly! Her food, her vision and her words have been treasured throughout time and when I read her quotes I nod, I smile and laugh! Thank you Julia for inspiring confidence in women, for being you! Happy Birthday!

My Favourite Quotes from Julia Child:

  • If you’re afraid of butter, use cream.
  • A party without cake is just a meeting.
  • I think careful cooking is love, don’t you? The loveliest thing you can cook for someone who’s close to you is about as nice a valentine as you can give.
  • The only time to eat diet food is while you’re waiting for the steak to cook.
  • The only real stumbling block is fear of failure. In cooking you’ve got to have a what-the-hell attitude.
  • The secret of a happy marriage is finding the right person. You know they’re right if you love to be with them all the time.
  • You don’t have to cook fancy or complicated masterpieces – just good food from fresh ingredients.
  • Find something you’re passionate about and keep tremendously interested in it.
  • In France, cooking is a serious art form and a national sport.
  • I enjoy cooking with wine. Sometimes I even put it in the food.
  • Always remember: If you’re alone in the kitchen and you drop the lamb, you can always just pick it up. Who’s going to know?

Bon Fete Julia!

Julia Child's Reine de Saba Cake (3)

Ingredients

  • Bittersweet chocolate
  • Unsalted butter
  • Dark rum (or brewed coffee)
  • Salt
  • Granulated sugar
  • Almond extract
  • Almond meal or almond flour
  • Eggs
  • Cake flour
  • Sliced almonds, optional
Julia Child's Reine de Saba Cake (4)

Print

Julia Child’s Reine de Saba Cake

5 Stars 4 Stars 3 Stars 2 Stars 1 Star

5 from 2 reviews

Rich and utterly delicious, this classic cake by Julia Child will be a chocolate lover’s dream!

  • Author: Julia Child
  • Prep Time: 20 mins
  • Cook Time: 25 mins
  • Total Time: 45 mins
  • Yield: 1 Cake 1x
  • Category: Cake
  • Cuisine: French

Ingredients

Units Scale

For cake

  • 4 ounces bittersweet chocolate, chopped
  • 8 Tablespoons unsalted butter, at room temperature
  • 2 Tablespoons dark rum (or brewed coffee)
  • 1/2 teaspoon plus a pinch salt, separated
  • 2/3 cup plus 1 tablespoon granulated sugar, separated
  • 1/4 teaspoon almond extract
  • 1/3 cup almond meal or almond flour
  • 3 eggs, separate the yolks from the whites, at room temperature
  • 1/2 cup cake flour, sifted
  • Optional: 1/4 cup sliced almonds for garnish

For Frosting

  • 2 Tablespoons bittersweet chocolate, chopped
  • 1/4 teaspoon salt
  • 2 Tablespoons dark rum (or brewed coffee)
  • 6 Tablespoons unsalted butter, at room temperature

00:00

`; document.getElementById('bft-timers').appendChild(timerContainer); timerContainer.offsetHeight; timerContainer.style.opacity = '1'; timerContainer.style.transform = 'translateY(0)'; let countdown; let remainingTime = 0; let totalTime = 0; let audio; let isPaused = false; const display = timerContainer.querySelector('.bft-timer-display'); const status = timerContainer.querySelector('.bft-timer-status'); const progress = timerContainer.querySelector('.progress'); const startPauseBtn = timerContainer.querySelector('.bft-start'); const resetBtn = timerContainer.querySelector('.bft-reset'); const minutesInput = timerContainer.querySelector('.bft-timer-minutes'); const nameInput = timerContainer.querySelector('.bft-timer-name'); const closeBtn = timerContainer.querySelector('.bft-close-timer'); const inputSection = timerContainer.querySelector('.bft-input-section'); const timerInfo = timerContainer.querySelector('.bft-timer-info'); startPauseBtn.addEventListener('click', toggleTimer); resetBtn.addEventListener('click', resetTimer); closeBtn.addEventListener('click', function(event) { event.stopPropagation(); removeTimer(); }); nameInput.addEventListener('keypress', function(e) { if (e.key === 'Enter') { e.preventDefault(); minutesInput.focus(); } }); minutesInput.addEventListener('keypress', function(e) { if (e.key === 'Enter') { e.preventDefault(); startTimer(); } }); function toggleTimer() { if (isPaused || remainingTime === 0) { startTimer(); } else { pauseTimer(); } } function startTimer() { if (remainingTime === 0) { const minutes = parseInt(minutesInput.value); if (isNaN(minutes) || minutes <= 0) { alert('Please enter a valid number of minutes.'); return; } totalTime = minutes * 60; remainingTime = totalTime; showTimerInfo(); if (!isCookModeOn) { toggleCookMode(true); isCookModeOn = true; } } clearInterval(countdown); countdown = setInterval(updateDisplay, 1000); isPaused = false; status.textContent = ''; display.style.color = ''; startPauseBtn.textContent = 'Pause'; } function pauseTimer() { clearInterval(countdown); isPaused = true; status.textContent = 'Paused'; status.style.color = '#a9aa8c'; display.style.color = '#a9aa8c'; startPauseBtn.textContent = 'Start'; } function resetTimer() { clearInterval(countdown); remainingTime = 0; isPaused = false; updateDisplay(); if (audio) { audio.pause(); audio.currentTime = 0; } resetBtn.classList.remove('alarm-active'); showInputFields(); status.textContent = ''; status.style.color = ''; display.style.color = ''; startPauseBtn.textContent = 'Start'; startPauseBtn.removeEventListener('click', resetTimer); startPauseBtn.addEventListener('click', toggleTimer); } function removeTimer() { clearInterval(countdown); if (audio) { audio.pause(); audio.currentTime = 0; } timerContainer.style.opacity = '0'; timerContainer.style.transform = 'translateY(20px)'; setTimeout(() => { timerContainer.remove(); }, 300); } function updateDisplay() { if (remainingTime <= 0) { clearInterval(countdown); const timerName = nameInput.value || 'Timer'; const minutes = minutesInput.value; const minuteText = minutes === '1' ? 'minute' : 'minutes'; timerInfo.textContent = `${timerName} is done! (${minutes} ${minuteText})`; display.textContent = '00:00'; playAlarm(); startPauseBtn.textContent = 'New Timer'; startPauseBtn.removeEventListener('click', toggleTimer); startPauseBtn.addEventListener('click', resetTimer); return; } const minutes = Math.floor(remainingTime / 60); const seconds = remainingTime % 60; display.textContent = `${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}`; const percentage = (remainingTime / totalTime) * 100; const circumference = 2 * Math.PI * 70; progress.style.strokeDasharray = circumference; progress.style.strokeDashoffset = circumference * ((100 - percentage) / 100); if (!isPaused) { remainingTime--; } } function playAlarm() { audio = new Audio('https://ew278rgfoew.exactdn.com/wp-content/uploads/2024/07/bedside-clock-alarm-95792.mp3'); audio.play().catch(e => console.error("Error playing audio:", e)); resetBtn.classList.add('alarm-active'); } function showTimerInfo() { inputSection.style.display = 'none'; const minutes = parseInt(minutesInput.value); const minuteText = minutes === 1 ? 'minute' : 'minutes'; timerInfo.textContent = `${nameInput.value || 'Timer'} - ${minutes} ${minuteText}`; timerInfo.style.display = 'block'; } function showInputFields() { inputSection.style.display = 'block'; timerInfo.style.display = 'none'; display.style.fontSize = '1.5em'; display.textContent = '00:00'; status.textContent = ''; } function toggleCookMode(on) { const cookModeSwitch = document.querySelector('.tasty-recipes-cook-mode__switch-slider'); if (cookModeSwitch && on && !cookModeSwitch.classList.contains('tasty-recipes-cook-mode__switch--on')) { cookModeSwitch.click(); } } } document.getElementById('bft-add-timer').addEventListener('click', createTimer); createTimer(); // Create an initial timer });

Instructions

  1. Preheat the oven to 350°. Butter and flour a 8″ cake pan (or butter and line the pan with parchment paper).
  2. Melt the chocolate and the rum together in a heat-safe bowl over a pot of barely simmering water. Set aside.
  3. In a large bowl, beat the butter and 2/3 cup of the sugar until pale yellow and fluffy, add 1/2 teaspoon of salt and combine. Add the egg yolks one at a time and beat until well blended. Add almond extract.
  4. In another large bowl, with clean beaters, beat the egg whites and a pinch of salt until soft peaks form. Sprinkle one tablespoon sugar and beat until stiff peaks are formed.
  5. With a rubber spatula, blend the melted chocolate into the butter and sugar mixture, stir in the almond meal.
  6. Stir in one quarter of the beaten egg whites to lighten the batter. Delicately fold in a third of the remaining whites and when partially blended, sift one third of the flour and continue folding. Repeat this process until you’ve added all the flour and folded in all of the whites.
  7. Transfer the batter to the prepared pan and smooth the top. Bake for 20-25 minutes or until the edges of the pan are set and the center is still moist.
  8. Let cake cool in the pan on a rack for 10 minutes. Then flip the cake out onto a cake dish. Let cool completely before frosting.
  9. Make the frosting. Melt the chocolate and the rum together in a heat-safe bowl over a pot of barely simmering water. Remove from heat and beat in the butter with a whisk, one tablespoon at a time. If your icing is too runny set the bowl of chocolate into an ice bath and beat until the mixture has cooled to a spreading consistency.
  10. Frost the cake. Decorate with sliced almonds if you wish.

Nutrition

  • Serving Size: 1 serving of 12
  • Calories: 296
  • Sugar: 17.5g
  • Sodium: 171mg
  • Fat: 20.4g
  • Saturated Fat: 11.5g
  • Unsaturated Fat: 0
  • Trans Fat: 0
  • Carbohydrates: 23.2g
  • Fiber: 1.1g
  • Protein: 4g
  • Cholesterol: 79mg

FAQ’s

What is a Reine de Saba cake?

A Reine de Saba cake is a French, rich, sophisticated, chocolate cake made with ground almonds, rum, meringue and of course chocolate. It’s topped with a chocolate ganache and can be decorated with almond slices. It’s said to be one of the first French cakes that Julia Child ever ate and fell in love with!

Is almond meal and almond flour the same thing?

Almond meal and almond flour are both made with almonds. The difference between the two is almond meal is made by grinding raw almonds with their skins on whereas almond flour is made by grinding blanched almonds without their skins. This results in a finer texture and lighter in colour than almond meal.

Can I subsitute almond flour for almond meal?

Depending on the recipe almond flour can be substituted for almond meal especially if the recipe only requires a little of the ingredient. The difference between the two is the weight, colour and texture. Almond meal is coarser, darker, and heavier than almond flour. This could have an impact on recipes looking for a denser weight as almond flour is light and fluffy.

What is almond meal?

Almond meal is ground raw almonds that have their skins on. It’s a little coarse in texture and can have extra weight, similar to the texture and weight of corn meal.

You may also like:

Julia Child's Reine de Saba Cake (2024)

FAQs

What was Julia Child's favorite cake? ›

The Queen of Sheba Chocolate Cake (” Reine de Saba” in French) has been made famous in North America by cooking instructor Julia Child. It is said to have been the first French cake she ate when she arrived in France.

What is the queen of sheba cake? ›

Named after the Queen of Sheba, this chocolate and almond cake is said to be one of the first French cakes that Julia Child ever ate. If this is indeed true, then it's no wonder she fell in love with French cuisine.

What is the most loved cake in the world? ›

Top 10 Best Cakes
  • Chocolate Cake. You've guessed it right! ...
  • Red Velvet Cake. The second best cake is a melt-in-mouth red velvet cake. ...
  • Vanilla Cake. If we had to vote upon the safest and most liked flavor by all, it would be vanilla cake! ...
  • Cheese Cake. ...
  • Black Forest Cake. ...
  • Lemon Cake. ...
  • Pineapple Upside-Down Cake. ...
  • Funfetti Cake.

Top Articles
Fire Cider Recipe: How to Make Fire Cider for Immune Health
31 Veganuary Recipes You Need To Make If You’re Trying A Plant Based Diet! - TrimmedandToned
La connexion à Mon Compte
Crossed Eyes (Strabismus): Symptoms, Causes, and Diagnosis
Localfedex.com
BULLETIN OF ANIMAL HEALTH AND PRODUCTION IN AFRICA
Sunday World Northern Ireland
The Many Faces of the Craigslist Killer
Pollen Count Central Islip
Goldsboro Daily News Obituaries
Five Day National Weather Forecast
Otterbrook Goldens
Missed Connections Dayton Ohio
Leader Times Obituaries Liberal Ks
25Cc To Tbsp
Foxy Brown 2025
Ups Print Store Near Me
Www.paystubportal.com/7-11 Login
Boxer Puppies For Sale In Amish Country Ohio
Select Truck Greensboro
Criterion Dryer Review
Watertown Ford Quick Lane
Account Now Login In
Sams Gas Price Sanford Fl
Pronóstico del tiempo de 10 días para San Josecito, Provincia de San José, Costa Rica - The Weather Channel | weather.com
Gopher Carts Pensacola Beach
Southtown 101 Menu
The Rise of "t33n leaks": Understanding the Impact and Implications - The Digital Weekly
Napa Autocare Locator
Moonrise Time Tonight Near Me
Craigslist Central Il
Palmadise Rv Lot
Acadis Portal Missouri
Gets Less Antsy Crossword Clue
3400 Grams In Pounds
Wal-Mart 2516 Directory
Zasilacz Dell G3 15 3579
Man Stuff Idaho
Sdn Fertitta 2024
Smite Builds Season 9
Payrollservers.us Webclock
Thotsbook Com
Blue Beetle Showtimes Near Regal Evergreen Parkway & Rpx
Darkglass Electronics The Exponent 500 Test
Matt Brickman Wikipedia
Caphras Calculator
Caesars Rewards Loyalty Program Review [Previously Total Rewards]
Aznchikz
The Latest Books, Reports, Videos, and Audiobooks - O'Reilly Media
Image Mate Orange County
Jigidi Jigsaw Puzzles Free
Spongebob Meme Pic
Latest Posts
Article information

Author: Terence Hammes MD

Last Updated:

Views: 5955

Rating: 4.9 / 5 (49 voted)

Reviews: 88% of readers found this page helpful

Author information

Name: Terence Hammes MD

Birthday: 1992-04-11

Address: Suite 408 9446 Mercy Mews, West Roxie, CT 04904

Phone: +50312511349175

Job: Product Consulting Liaison

Hobby: Jogging, Motor sports, Nordic skating, Jigsaw puzzles, Bird watching, Nordic skating, Sculpting

Introduction: My name is Terence Hammes MD, I am a inexpensive, energetic, jolly, faithful, cheerful, proud, rich person who loves writing and wants to share my knowledge and understanding with you.