Skip Navigation
Disney told L.A. residents to move to Florida for a planned campus. They did, it was canceled and now they're suing
  • My parents and brother just moved from Oregon to Florida... like wtf. At least they have something there for them, uncles who own houses and business there giving them a place to stay and a steady job there. My brother was unemployed and looking to move anyway, but Florida? I'm just hoping they treat it as a stepping stone to getting back on their feet and then move to like Georgia or somewhere else nearby

  • Thanks management
  • lmao I'm guessing someone who doesn't speak Spanish was told "we are out of ice, make a sign that says 'No ice, no hielo, thanks, management' and put it on the soda machine" and they just rolled with it phonetically

  • Mothers know that this is a wholesome combination.
  • Calpis isn't carbonated tho, at least none of the Calpico branded stuff I've had. Milkis is very similar and is carbonated, so it would probably be closer to this. Personally I like both Calpico and Milkis, they are definitely not my favorite but they are good to have every once in a while, owing especially to their unique taste.

  • I hope someday we'll find a way to pirated a car
  • I never said this was a bad value, but I think we all know that these prices will not remain. They will increase because people will pay it once they are locked in. And if someone buys a used car, they have to pay that subscription to get these features, ensuring the manufacturer gets a slice from used sales. I can understand the cost, but it sets a dangerous precedent. It should be one time fee that grants the VIN access to the severs permanently. What would be really nice is if we had legislation that requires companies with a certain amount of revenue to maintain services for older products so they can't just pull the plug later anyways.

  • I hope someday we'll find a way to pirated a car
  • I can understand some of these features requiring a $5/month subscription. Anything more than that is absolutely insane. With roadside assistance (depending on what that actually entails) I could see that sevice being bumped to $15-$20 a month,

  • Why is Google allowed to remove purchases from our Play Store accounts without telling us?
  • Whenever I see a checkbox or something that just says "Check here to confirm you accept our privacy policy" I think it's funny because all I am legally agreeing to are the words actually in front of me. Sure, I agree with the standalone words "our privacy policy". I'm not sure what that does for you, but i guess "our privacy policy" is an acceptable string of words.

  • My bank gives me the option to opt out of marketing communications. It takes three clicks to opt out of each category, and there are three pages like this!
  • No? It's literally not a thing on any android. I just pretty extensively looked for any evidence of this online and I can only see people misunderstanding the feature of removing permissions for unused apps. One of the permissions apps are granted is storage, and that permission can get revoked if that feature is turned on. This does not delete stored data (it does not remove data the app has already written) but removes the apps ability to read or write to storage further, and can cause any temporary storage like cache to get erased. This will cause your accounts to get signed out and could potentially lead to data loss, but not because the operating system is actively and purposefully erasing data.

  • My bank gives me the option to opt out of marketing communications. It takes three clicks to opt out of each category, and there are three pages like this!
  • I'm honestly not sure what they are talking about, I'm on Android 14 on my s23 and that isn't a feature, nor has it ever been on any android phone I've ever had or seen. There is an option to remove permissions for apps that have not been used, but not to delete all storage for an app after an amount of time.

  • Gender.js
  • Kind of. With hoisting, the compiler/interpreter will find variable declarations and execute them before executing the rest of the code. Hoisting leaves the variables as undefined until the code assigning the value to the variable is executed. Hoisting does not initialize the variables.

    For example:

    console.log(foo);
    var foo;
    //Expected output: console logs 'null'

    foo = 'bar';
    console.log(foo);
    var foo;
    //Expected output: console logs 'bar'

    console.log(foo === undefined);
    var foo;
    //Expected output: console logs 'true'

    This means you can essentially write your code with variable declarations at the end, but it will still be executed as though the declarations were at the beginning. Your initializations and value assignments will still be executed as normal.

    This is a feature that you should probably avoid because I honestly cannot think of any good use case for it that won't end up causing confusion, but it is important to understand that every variable within your scope will be declared at the beginning of execution regardless of where it is written within your code.

  • U.S. Govt and researchers seemingly discover new type of superconductivity in an exotic, crystal-like material — controllable variation breaks temperature records
  • Lmao you are the one who is actually tangibly misunderstanding the article. It clearly states that temperature RELATES to all forms of energy, which is true, but temperature is not directly affected by potential energy. Potential energy can, for example, raise the boiling point of a substance, but it does not actually change the temperature directly.

    Since you clearly need a refresher on the fundamentals of heat and temperature:

    https://www.houstonisd.org/cms/lib2/TX01001591/Centricity/Domain/5364/Thermal Energy.pdf

  • U.S. Govt and researchers seemingly discover new type of superconductivity in an exotic, crystal-like material — controllable variation breaks temperature records
  • Maybe you should go read the article and actually read my comment. The article literally agrees with everything I said within the first few paragraphs. Negative temperatures do not and cannot exist under the classical definition, but the overall state of a system can reach a configuration that behaves like a negative temperature would, yet this is achieved by raising the temperature above what would tend towards infinity. Once again, it can be useful to represent certain configurations of systems of matter as a negative temperature with added context, and that's why negative temperatures are a thing in science. It's also why there are things like the summation of all natural numbers (1+2+3+4+...) being equal to -1/12. If you actually add up the natural numbers you get infinity, but ignoring that can yield useful results.

    You are also absolutely wrong about temperature being dependent on all energy. Temperature is literally defined as the measurement of kinetic energy in a system. Are you actually suggesting that if I put an apple on an elevator, it's temperature is going to be increased when I send it up? Or that if I inject that apple with cold diesel fuel it will heat up? Those things would increase the energy of the apple, but not increase the kinetic energy and therefore the temperature does not rise.

  • U.S. Govt and researchers seemingly discover new type of superconductivity in an exotic, crystal-like material — controllable variation breaks temperature records
  • What makes you say that isn't what an absolute scale is? It definitely is what an absolute scale is. For example, distance is measured on an absolute scale. Negative ten meters would be equal to positive ten meters. In the classic definition of temperature measuring the total kinetic energy of matter, a negative temperature would be equivalent to a positive temperature, as it is measuring how much the particles are moving. Similar to velocity (also an absolute scale), if a particle is moving at a particular speed, X, then moving at that same speed backwards would be -X, but it is still the same speed.

    Negative temperatures are used to express something different from the classic definition of temperature, because the particles are not doing less than zero movement. Once a particle reaches absolute zero, it cannot move any less, but it can still have other properties that are directly tied to temperature change. Therefore, if purely expressing the classic definition of temperature, a negative temperature cannot exist, so any negative temperature would necessarily have to be equivalent to the same positive temperature. Of course, in any actual scientific conversation, the classic definition of temperature would be understood to be inadequate.

  • U.S. Govt and researchers seemingly discover new type of superconductivity in an exotic, crystal-like material — controllable variation breaks temperature records
  • Lmao I was kind of making a joke there, it's an absolute scale so a negative number can't actually exist, i.e. |-10| = 10

    Additionally, temperatures expressed as negative Kelvin aren't actually negative Kelvin in reality ("reality" meaning the actual physical existence in our material world) because, as you pointed out, the material would actually be more temperate. Negative Kelvin is useful to represent systems where adding energy decreases the entropy of the system, rather than the standard of increasing entropy, but to relate it to the actual heat or energy of the material gets murky.

  • How many of you actually use the headphone jack on your phone?
  • You may know the difference between a DAC and Amp, but you clearly don't understand what I'm trying to say. I'm saying that a DAC doesn't have its own power output. It literally takes a digital signal, and converts it to analog. In order for it to add any power to the signal, it needs to include an amplifier. Otherwise, the signal will always be a little bit weaker due to the power loss from traveling through the DAC. Most DAC units have at least a weak amplifier for this reason, but there are some units that are just a DAC. And the Amp part isn't going to be controlling the digital volume, i.e. changing the system volume on your device. It will operate on its own volume control, so regardless of how limited the output is from your phone, it will still be made louder as it amplifies the volume independently of the phone. A unit that is just a DAC doesn't have any way to amplify the signal it receives, so it will never be able to make it louder.

    You said explicitly that the android system will limit the output of any DAC, but that is wrong on multiple counts. The android system will not limit the output of a DAC because a DAC itself just 1:1 outputs an analog signal converted from a digital source so there is nothing to limit. The android system will also not limit the output from an Amplifier because it literally is not capable of that. That's like saying your water faucet can limit how hot your water can get when you boil it on the stove. An Amp increases the power of the signal after it has already left the phone.

  • How many of you actually use the headphone jack on your phone?
  • Well the problem is that a DAC doesn't have any power to it at all. What you are thinking of is an amplifier, which a lot of portable DAC units have in them, but not all of them do. For example, the DAC/AMP I have is the iFi iDSD Black Label, which has its own Amp that is controlled through an analog dial.

    If your unit doesn't have its own volume controls then it is likely just a DAC with no Amp, meaning you are limited to the power output of your source.

  • [Bug] Linked text in comments does not wrap, making comments unreadable

    In the comment pictured the first line is text with a hyperlink markup. The line does not wrap to fit the screen, so half of the text of that line is not visible unless I select the three dot menu, copy, and select text.

    I also noticed that I cannot click on the link at all, it only expands the options for the comment.

    6
    InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)CH
    CheezyWeezle @lemmy.world
    Posts 1
    Comments 95