100 Reasons Why I Love You In Hindi

0 views
Skip to first unread message

Violette Taps

unread,
Aug 5, 2024, 9:40:47 AM8/5/24
to tiocontfunclen
Ialso believe, though, that camp is wonderful, and your girls love it, because we have these experiences everyday here. Far more than the activities we offer, these 8 help define Rockbrook, and taken together, they are what elicits the deeply felt joy, the profound sense of comfort and belonging, and the almost ineffable happiness we cherish about our camp days.

Thanks for this! I have read on a Kindle Fire for years and finally purchased the Paperwhite this morning. I went back and forth and got so many opinions and since I do read in the bath and want to read outside- I spent the extra $30.


I have been on the fence about getting a Kindle for years. However, I was getting tired of taking 3-5 books on vacation with me. So the Amazon Prime sale came and I caved and ordered the Paper White. I love Libby and figured out how to get books to the Kindle just prior to vacation a few weeks ago. I have to say, I love my Kindle! I read 3 books during vacation and all I had to do was carry my Kindle! So happy with my decision to purchase it.


Hi, do you think or know if a Kindle would be better for your eyes than reading on a Smartphone? I read a lot on my phone and have noticed my eyesight starting to weaken. Also, is it possible to get Hoopla books to read on a Kindle? Thanks!


Every week we post another reason to love Lake Oswego. It comes easily to us because we live here and we are Realtors here. So, not that we need it, but sometimes we are reminded of why we love calling this place home.


Kids were juggling in the middle of the crowd, grandmas were leading toddlers over to the band to bop and sway with the tunes, volunteers were passing out coffee to people waiting in line. The party in front of us was a dozen strong, mostly out-of-towners who trek to Lake Oswego every 4th to partake in the festivities and compete in two teams in a series of games in a waterfront backyard.


From there we trekked over to the Star Spangled Festival and Parade heading down A Avenue and just beamed with a sense of pride and satisfaction at the crowds lined up to cheer the marching bands, floats and decorated wagons while they jockeyed for candy and visited with neighbors.


This song has always reminded me of all the complicated feelings that come up in love, especially in new love. It details the compulsion of nitpicking every part of one's appearance, trying to look perfect in order to be liked. It details how torturous it can be to keep entertaining the idea of a stable, happy relationship when one is surrounded by uncertainty. Kicking oneself in the foot about things one said at first that might have given a bad impression of oneself. Backpedaling, backpedaling, backpedaling and feeling helpless to make things work.


The singer knows these aren't healthy feelings, nor do they necessarily correspond to anything true. The singer also realizes that their love is just a combination of psychological processes, same as their worries, but who wants to talk about that on an early date? All that can be said for sure is that these feelings are powerful, psychological, and they are real in their effects. --Alfalfascouting (talk) 13:33, 28 February 2017 (EST)


Given the song's psychological bent, the line "brain in a jar" is likely a reference to the "brain in a vat" thought experiment in philosophy of mind. Namely, if a brain in a vat were hooked up to a computer, which fed the brain all the same impulses that it would receive from the senses if it were in a human body, would it have any way of figuring out that it WAS in a vat and not in a human body? And if not, then how can we truly know that anything we "know" is true?The next line, "in a car in reverse", while it may not be a direct reference, certainly evokes another philosophical thought experiment, the "trolley problem".--104.195.198.82 18:20, 28 August 2019 (EDT)


A louse is not only a parasite, but the word also has a slang usage referring to a contemptible person, while a timid person is sometimes referred to as a mouse. The speaker wonders why the abused stays with the abuser, and of course it's for psychological reasons such as shame and low self esteem, both of which are also reflected in other lyrics.--Kaylum (talk) 08:57, 7 May 2020 (EDT)


In the handful of relationships in which I told my partner I loved her, at some point they would all ask the same question at least once - Why? Why do you love me? Explain what about me makes you love me. You're always put on the spot when it's asked, and if you fumble with the answer, as is usually the case, it makes for an awkward moment. In extreme cases, your professions of love might be cast in doubt. But in truth, love is experienced on a level that is difficult to articulate, nor is it always rational. And what I love about this song is, it serves as an almost perfect canned answer to those questions - not just the title but the whole song - because its lyrics can mean everything and nothing, its phrasing is quirky, its melodies are beautiful, and it just fills you with a kind of knowing warmth. It both very much answers the question and doesn't answer it at all at the same time, and that's exactly how it should be.


There is a pervasive view that people need to accept other people unequivocally for who they are. To expect you to act in a way contrary to your nature or to change who you are as a person is a completely unreasonable demand.


The argument that someone should just love you for who you are is foolish because who you are right now is different from who you used to be and who you will become in the future. You are constantly in flux.


For people who believe in objective morality like I do, this one is tough. It requires a willingness to simultaneously have strong convictions about your beliefs while maintaining the humility that you might be wrong and will probably understand certain things differently with time.


The full article is well worth a read, as he covers the benefits (as well as the pain points) of Rust for coders coming from other languages. But as eloquent and persuasive as Jake is, we wanted to hear from more users. So I reached out for comment in our Rust chatroom and on the Rust forums. Rust users are a passionate bunch, and I got some fascinating insights along with some friendly debates.


(The quotes below are edited for length, clarity, and to group them conceptually. Many of them come from this thread on the Rust user forums, so if you want to read them all in full and in context, feel free.)


daboross: Compile time guarantees: When I think of a "statically typed language", I think of Java, or C#, or something like TypeScript. They give compile-time assurances that your code has the correct types, and move a set of errors from runtime to compile time. Rust goes one magnitude further in this! Compile time checking extends to thread safety, to ownership semantics, to validation.


Enums mean that, at compile time, I can declare the set of variants my data can exist as, and when accessing that data I'm forced to consider all possibilities. Traits mean that when my code is templated/generic, I have exact capabilities I can require.


Peter Varo: Rust found a sweet spot: it is just as low-level as C or C++ with all the advantages of these (e.g. control, size, speed, etc.) At the same time, it is as high-level as Haskell with an amazing amount of functional heritage. It is still imperative, so quite accessible to most people, and it is just as flexible as Python. For example, concepts like "duck-typing" are happening at compile time (i.e. trait bounds), yet it does not have the dated, object-oriented programming model and all of its well known problems.


blonk: With Rust/cargo I can focus on the actual code rather than the build system. No need to spend whole days reading up on Yet Another Build System. Cross-compilation with Rust is so incredibly simple and painless that when you read up on how to do it, you can't help but think "Wait, I must be missing something."


Many current programming discussions revolve around whether to use a fast, low-level language that lets you handle memory management or a higher-level language with greater safety precautions. For fans of Rust, they like that it does both.


I see a common dissent where some proclaim that they are in fact perfect, and that they do write flawless code, and everything is peachy, and they can't understand why everyone else is so interested in Rust. But it's clear to this old goat that these are the people who haven't yet learned that the problem is not strictly themselves; it's everyone else. It's a problem of economy of scale.


Conventions will have faults and impractical amounts of time and energy will be spent trying to automate a bandaid that should not exist in the first place. The "aha!" moment is realizing that one can actually get much stronger guarantees by baking those same conventions directly into the language and compiler.


daboross: As a library author, the complex trait/generic system means I can craft intricate, yet easy to use interfaces. These interfaces cannot be used incorrectly, which means I don't have to perform runtime checks, and my users don't have to even think about problem cases, because they can't write them.


As a library consumer, the rich and extensive crates ecosystem enables me to write code in vast different domains without needing to dig into the specifics of every one. I don't need to know how a JSON parser or writer works to use serde - and my lack of knowledge won't ever be a source of bugs, because I get compile time errors rather than runtime ones.


Those that do a lot of programming in all kinds of languages and have the skill and talent, end up inventing and implementing their own new programming language to fix all the pains they have suffered in the past. As you know, new languages sprout like weeds as a result.


Heck, even Haskell, the most elite of elegant languages, showed its inevitable ugliness after about a year or so, when I had to start fiddling with language extensions and dialects in order to get a somewhat advanced library to compile.

3a8082e126
Reply all
Reply to author
Forward
0 new messages