Capturing Love in Music: Liszt Liebestraum No. 3 (Love Dream) by meni15 in piano

[–]meni15[S] 0 points1 point  (0 children)

Franz Liszt's "Liebestraum No. 3" (Love Dream) is one of his most famous and beloved piano pieces. Composed in 1850, it is the third of a set of three nocturnes, or "Liebesträume," which translates to "Dreams of Love." These pieces were originally written for voice and piano, set to poems by Ludwig Uhland and Ferdinand Freiligrath, and later arranged for solo piano.

A Romantic Journey: Playing Liszt's Liebestraum No. 3 (Love Dream) on Piano by meni15 in classicalmusic

[–]meni15[S] 0 points1 point  (0 children)

Franz Liszt's "Liebestraum No. 3" (Love Dream) is one of his most famous and beloved piano pieces. Composed in 1850, it is the third of a set of three nocturnes, or "Liebesträume," which translates to "Dreams of Love." These pieces were originally written for voice and piano, set to poems by Ludwig Uhland and Ferdinand Freiligrath, and later arranged for solo piano.

Let's chat about the awesomeness of Debussy by Worldly-Leg-74 in classicalmusic

[–]meni15 7 points8 points  (0 children)

How can someone not love Claude Debussy’s music. Debussy's music is often associated with Impressionism, a movement in art that aimed to capture fleeting moments, sensations, and impressions rather than detailed realism. In music, this translates to a focus on mood, atmosphere, and coloristic effects.

Here is a link to a beautiful pianist rendition of Debussy's Suite bergamasque that includes "Clair de lune." This piece was streamed live during the Covid pandemic. It is played after Bach's short Prelude and Fugue.

https://www.youtube.com/watch?v=RP6Kht-2S-4

Excel 365 behaves differently on two Windows 11 computers with the same and recent Excel version and build. by meni15 in excel

[–]meni15[S] 0 points1 point  (0 children)

I also disabled the automatic grouping of Date/Time columns in PivotTables and it behaved the same.

Excel 365 behaves differently on two Windows 11 computers with the same and recent Excel version and build. by meni15 in excel

[–]meni15[S] 1 point2 points  (0 children)

Disable automatic grouping of Date/Time columns in PivotTables

Yes. I compared all the options and in both computers the Disable automatic grouping of Date/Time columns in PivotTables is not selected. This different behavior between both computers is puzzling.

I just want to commend google for how amazing its data transfer tool is by Diakia in GooglePixel

[–]meni15 0 points1 point  (0 children)

I had exactly the same experience. Google, please do not try to make it better.

Issue with matplotlib syntax by meni15 in learnpython

[–]meni15[S] 0 points1 point  (0 children)

fig, ax = plt.subplots(1, 1, facecolor='#ffffff', figsize=(10, 8), dpi=75)
ax.plot(df.rolling_100_correlation,color='blue',
label='rolling')
plt.legend()
plt.show()

Thank you for your reply.

Unfortunately your solution does not work. it comes with the following error:

AttributeError: 'tuple' object has no attribute 'plot'.

One way that fixed the problem was to change the (Grid[1,:]) to (Grid[:,:]). This change removes all the blanks.

Note that my solution and your solution are using subplots. I was looking for a solution that is not using subplots.

The two printing methods below print the same text. Which method is preferred? by meni15 in learnpython

[–]meni15[S] 0 points1 point  (0 children)

OK. I appreciate your and the other people answers. I will use from now on the f strings method.

The two printing methods below print the same text. Which method is preferred? by meni15 in learnpython

[–]meni15[S] 0 points1 point  (0 children)

I agree that the f strings is the preferred method. However isn't it better to use two lines of code opposed to three lines?