79325382

Date: 2025-01-03 02:43:04
Score: 1.5
Natty:
Report link

I found the issue. I was importing p_logical_operation into another parser whose lexer didn't have the 'NOT' token defined. So, the error was slightly misleading, but the error was on my part.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Bituvo

79325377

Date: 2025-01-03 02:40:04
Score: 1.5
Natty:
Report link

To be honest, the methods above didn't work for me. My UAE didn't take effect, but in the "Templates" option in the sidebar, there is a "Theme Builder" feature that allows direct editing of the footer and other elements. So, I just worked with this feature. If you encounter the same issue as me, you can try this approach.

Reasons:
  • Whitelisted phrase (-1): try this
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: liheming

79325369

Date: 2025-01-03 02:35:03
Score: 0.5
Natty:
Report link

I am not able to understand how placing the next pointer on top will help here.

This is an ancient C equivalent of C++ inherited class. Typecasting is needed in order to use common linked list functions with different node types. The first member of a struct is guaranteed to have offset 0 within a struct. Example old code using classic Microsoft naming conventions.

#include <stdio.h>

typedef struct BASENODE_{
  struct BASENODE_* next;
}BASENODE;

typedef struct INTNODE_{
  struct INTNODE_* next;
  int data;
}INTNODE;

BASENODE* NextNode(BASENODE* pNode)
{
    if(pNode == NULL)
        return pNode;
    return pNode->next;
}

int main(int argc, char**argv)
{
INTNODE aIntNode[8];
INTNODE* pNode;
int i;
    for(i = 0; i < 8; i++){
        aIntNode[i].next = &aIntNode[i+1];
        aIntNode[i].data = i;
    }
    aIntNode[7].next = NULL;
    pNode = aIntNode+0;
    while(pNode != NULL){
        printf("%d\n", pNode->data);
        pNode = (INTNODE *) NextNode((BASENODE*) pNode);
    }
    return(0);
}
Reasons:
  • Blacklisted phrase (1): I am not able to
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: tstdmy

79325362

Date: 2025-01-03 02:29:02
Score: 3.5
Natty:
Report link

Since I don't have enough reputation to add comments, I leave my comment here. I think you are right. For more details, you can see slides from Lecture 2 and Lecture 11, in the course named "TinyML". The link is here. The peak memory of models using depth-wise convolution is larger than that of other normal models.

Reasons:
  • RegEx Blacklisted phrase (1.5): I don't have enough reputation
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ai zhongguo

79325360

Date: 2025-01-03 02:27:01
Score: 1
Natty:
Report link

On settings.json, set the following to have this :

screenshot

{
    "workbench.colorCustomizations": {
        "[One Dark Pro]": {   // your theme name
            "editorHoverWidget.foreground":"#ffff00",  
            "textLink.foreground": "#00ffff",  
            "editorHoverWidget.statusBarBackground":"#008800"   // as a bonus
        }
    }
}
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: vimchun

79325355

Date: 2025-01-03 02:23:00
Score: 3.5
Natty:
Report link

update, i remade it and went fine only thing i see different is the colors i chose the secon time. so idk tbh ty but its good now

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Matt H

79325349

Date: 2025-01-03 02:15:59
Score: 2.5
Natty:
Report link

I encountered the same error. Try add gem 'tzinfo' in the gem file.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Qiancheng Li

79325343

Date: 2025-01-03 02:09:58
Score: 2
Natty:
Report link

According to what mentioned by @Botje, using a std::unique_ptr to GstPad as a private member is actually wrong design here. The issue is that while the sink_pad in the callback is released at the end of the function, the parameter new_pad is not. That's indicates that not all the GstPad* own the object it points to. Thus using std::unique_ptr in this context is inappropriate.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Botje
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: iEcho-42

79325339

Date: 2025-01-03 02:07:57
Score: 3
Natty:
Report link

As others said, there is no official libucx-dev on ubuntu 20.04. But one can follow the steps in openucx.readthedocs.io/en/master/running.html to build it from src and install.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Lionnel104

79325328

Date: 2025-01-03 01:58:55
Score: 4.5
Natty:
Report link

setopt($curl, CURLOPT_USERPWD, "

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Esquilona Edrian

79325326

Date: 2025-01-03 01:57:55
Score: 0.5
Natty:
Report link

I ended up adding something like the following to index.html for conditional tagging based on hostname. Replace the gTagDev and gTagProd (aka Measurement ID from google analytics data stream) and YOUR_DEV_URL (dev.ourdomain.com) if needed.

<script>
  // DEV vs PROD data stream
  // inspired by https://medium.com/@danielfilipkowskiblogs/adding-google-analytics-to-angular-v15-1766c4bdaed5
  const gtagDev = 'G-123456789'
  const gtagProd = 'G-987654321'
  const gtagID = /YOUR_DEV_URL|localhost/.test(window.location.hostname) ? gtagDev : gtagProd

  // from https://stackoverflow.com/questions/13121948/dynamically-add-script-tag-with-src-that-may-include-document-write
  var googleTagManager = document.createElement('script');
  googleTagManager.setAttribute('src', `https://www.googletagmanager.com/gtag/js?id=${gtagID}`);
  document.head.appendChild(googleTagManager);

  window.dataLayer = window.dataLayer || [];
  function gtag(){ dataLayer.push(arguments) }
  gtag('js', new Date());
  gtag('config', gtagID);
</script>
Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: corg

79325323

Date: 2025-01-03 01:55:54
Score: 2
Natty:
Report link

We had a user with a similar issue. Turned out they were in a country that restricted access to Google services. They switched their VPN provider and everything started working again.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jwags

79325320

Date: 2025-01-03 01:54:54
Score: 2
Natty:
Report link

We had a user with a similar issue. Turned out they were in a country that restricted access to Google services. They switched their VPN provider and everything started working again.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jwags

79325319

Date: 2025-01-03 01:54:54
Score: 2
Natty:
Report link

We had a user with a similar issue. Turned out they were in a country that restricted access to Google services. They switched their VPN provider and everything started working again.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jwags

79325315

Date: 2025-01-03 01:52:53
Score: 1
Natty:
Report link

make sure that the update_timer function has the code as well. define time_str as self.time_str, so it can be used in this function too.

def update_timer(self):
    self.player_one_timer_label.config(text=self.time_str)
    self.player_one_timer_label.after(1000, self.update_timer)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: TheDoubleMix

79325314

Date: 2025-01-03 01:51:53
Score: 1
Natty:
Report link

I had never heard of aspect-ratio in modern CSS when I posted the article, but now I am using A Howarth’s solution (see the first comment replying to the question posted), that of specifying the aspect-ratio in the CSS, instead of specifying the height explicitly. I am hoping that this is the perfect solution, but testing has not yet been completed. Many thanks to A Howarth for this post, which I am hoping is indeed the answer, and an ideal one too, seeing as I really wanted to avoid placing width and height attributes in the (X)HTML because I’m trying hard to keep all presentation information hidden and confined to the CSS.

The plan gives the correct visual results, but I have (i) not checked what happens if the width is constrained to be less than the specified one, and (ii) I have not checked for layout shift. There is a max-width constraint in the CSS, which could cause a reduction in the width, in which case I hope now that the aspect ratio will always remain correct even when the current width is reduced.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Cecil Ward

79325309

Date: 2025-01-03 01:47:52
Score: 1.5
Natty:
Report link

I found I had to do:

import { default as libphonenumber } from "google-libphonenumber";

const phoneUtil = libphonenumber.PhoneNumberUtil.getInstance();
const number = phoneUtil.parse(input, countryCode);
const numberE164 = phoneUtil.format(number, libphonenumber.PhoneNumberFormat.E164);

as answered here: https://github.com/ruimarinho/google-libphonenumber/issues/17#issuecomment-121340131

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Matthew Michaud

79325301

Date: 2025-01-03 01:36:50
Score: 1.5
Natty:
Report link

I needed to add x-data="" and x-on attribute for laravel 11

<button 
    type="button"
    x-data=""
    x-on:click="$dispatch('open-modal', 'register')">Register now!
</button>

<x-modal name="register">
    <!-- registration form... -->
</x-modal>
Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alejo

79325265

Date: 2025-01-03 00:56:42
Score: 5
Natty:
Report link

My question was answered by bjorn3 on the rust forum: https://users.rust-lang.org/t/how-to-force-inlining-or-avoid-calls-to-the-plt/123173

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 5-Pebbles

79325259

Date: 2025-01-03 00:54:41
Score: 4
Natty:
Report link

How about when I have a div for the menu bar on a page, and within that div I want first div to be left-justified and the second one to be right justified (anti-centered). My left div has a row of option switches for navigating the site and the right div will have the login and other options options...(blank space in between the two divs).

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: Chuck

79325256

Date: 2025-01-03 00:48:39
Score: 3
Natty:
Report link

I noticed Meher gave you some good tips but if you’re still uncertain, I’d love to set up some time to chat perhaps next week if that works for you.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Susan - Aerospike SA

79325250

Date: 2025-01-03 00:41:38
Score: 0.5
Natty:
Report link

My VS2022 was crashing repeatedly while debugging as well. Updating Microsoft Edge of all things fixed it. When I updated VS2022, it stopped working. Apparently the new version has a dependency on a newer version of the web viewer that comes with MS Edge. Apparently when an exception is thrown, it was triggering MS Edge to update itself. It'd fail and VS would crash. After manually updating edge, it started working again.

things that helped get there were...

  1. running VS with its logger enabled by starting devenv with a /log "c:\temp\log.xml" as arguments. The errors here did point in the right direction, but they were blaming things other than edge.
  2. Event logs showed a webview error and I connected the dots here that edge was involved...
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: A person

79325248

Date: 2025-01-03 00:38:37
Score: 2.5
Natty:
Report link

As mentioned, you should use managed identity or if that is not the option, use certificate (stored in secure place like cert store).

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jack

79325227

Date: 2025-01-03 00:20:33
Score: 1
Natty:
Report link

Key Vault resource is designed to be per application/service like noted here: https://learn.microsoft.com/en-us/azure/key-vault/general/best-practices#use-separate-key-vaults

In terms of your scenario, it depends if your webservice are atomic (separate database, deployed separately) or not. You can think about AKV as deployment unit, so issue with deployment, app/service would not impact other app/services.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Jack

79325224

Date: 2025-01-03 00:15:33
Score: 2
Natty:
Report link

To print a string that's 6 characters long at address 0x555555556004, you can do:

(gdb) p *(char[6]*)(0x555555556004)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Filler text (0.5): 55555555
  • Low reputation (1):
Posted by: buffetboy

79325193

Date: 2025-01-02 23:38:26
Score: 2
Natty:
Report link

In my case after reinstalling Docker some programs(podman or oh-my-zsh?) set the environment variable DOCKER_HOST to /run/user/<uid>/podman/podman.sock , you have to change it to none as export DOCKER_HOST="", or just reboot your machine

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: himike

79325192

Date: 2025-01-02 23:33:25
Score: 1.5
Natty:
Report link

This can mean that the image core is missing some features.

$JAVA_HOME/lib/criu check --all

might provide you with more information.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Yury Mikhailenko

79325183

Date: 2025-01-02 23:23:23
Score: 1
Natty:
Report link

As expected this was an error in my application, specifically the META-INF/context.xml. I believe the url was incorrect in the Resource definition, and was thus being ignored. I also had a "id" element, which is not required.

My haste to consult StackOverflow was mainly because my payara wasn't showing any logging in my container, but this was a separate unrelated issue.

In summary, I was able to resolve with something akin to:

<Resource type="javax.sql.DataSource" 
    driverClassName="com.mysql.cj.jdbc.Driver"
    url="jdbc:mysql://172.0.0.1:3306/mydb"     
    username="user" 
    password="pass" 
    maxActive="20" 
    maxIdle="10" 
    maxWait="10000"/>
Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Hemmels

79325179

Date: 2025-01-02 23:21:23
Score: 1.5
Natty:
Report link

You should also post the relevant parts of the view.

I will however try to give a solution based on the informations provided.

wire:navigate causes the update of the body of the document without reloading the page, so any references set by external libraries are lost.

Adding an event listener on the wire:navigate event to re-initialize the daterangepicker should resolve the problem:

document.addEventListener('livewire:navigated', () => {

    $('input[name="dtmDispatchDateRange"]').daterangepicker({
        locale:{
            format: 'MM/DD/YYYY'
        }
    });

    .....
});

If this doesn't work, please show the view code to help us better understand your situation

Reasons:
  • RegEx Blacklisted phrase (2.5): please show
  • RegEx Blacklisted phrase (1): help us
  • Long answer (-0.5):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: TUPKAP

79325168

Date: 2025-01-02 23:14:21
Score: 8
Natty: 8.5
Report link

Can you please elaborate how you solved this issue

How did you set TextureView?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you please elaborate how you
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Can you please
  • Low reputation (1):
Posted by: Slava

79325167

Date: 2025-01-02 23:13:20
Score: 2.5
Natty:
Report link

I ran into a similar situation. To disable the inspection:

File > Settings > Editor > Inspections > PHP > General

Uncheck "Unresolved include"

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: brianS

79325164

Date: 2025-01-02 23:13:20
Score: 1.5
Natty:
Report link

Well my question to you is, where is this application living? Is not the DATABASE_URL an environment variable? If so, then in a Kubenetes cluster, you could have different deployments that populate that variable according to where the application is living. So when you app lives in DEV, CERT, or PROD, whatever your config is set up, there, your value will be tied back to DATABASE_URL because of the injection that happens via Kubenetes into the container.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: humbleSquid

79325155

Date: 2025-01-02 23:08:19
Score: 2.5
Natty:
Report link

Try that :

forfiles /m *.zip /c "cmd /c "C:\tool\7-Zip\7z.exe" e @path -o@fname"
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: RedSkull

79325152

Date: 2025-01-02 23:06:18
Score: 1.5
Natty:
Report link

For anyone else running into this issue, firstly check the version of Husky that was installed. All documentation pointed to v9, yet when installing Husky it installed v8.

You need to install using husky@latest as per changelog (https://github.com/typicode/husky/releases/tag/v9.0.1) which somehow (almost a year later) hasn't found it's way into the online documentation yet...

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Cactusman07

79325151

Date: 2025-01-02 23:05:18
Score: 2
Natty:
Report link

I tried all of the changes above. Nothing worked. I suspected the chunks were getting flagged to be flushed, but the flush process was not running. I suspected this because when restarting Loki, chunks would get flushed.

Therefore, I added this to the configuration yaml in the ingester section:

flush_check_period: 10s

After making this change, I ran 3 data sets through our system and chunks were flushed as expected.

Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Corey

79325147

Date: 2025-01-02 23:02:17
Score: 2
Natty:
Report link

This happened to me as I scaled my EC2 instance down from a t3.medium to a t3.small. I increased CPU capacity for my app and this seemed to solve the problem. Make sure your CPU and Memory for any given container are sufficient.

Also, RIP to thewildwear.com.. it had promise, it really did.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: thecodeiackiller

79325142

Date: 2025-01-02 23:00:16
Score: 7.5 🚩
Natty: 6
Report link

I have same question how do I get it it to show up on something I can read and acess

Reasons:
  • Blacklisted phrase (1): how do I
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have same question
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ddd

79325138

Date: 2025-01-02 22:55:15
Score: 2.5
Natty:
Report link

Got a message from my server provider. There was a faulty disk. Replacing it should fix this issue.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: Mika

79325132

Date: 2025-01-02 22:50:13
Score: 0.5
Natty:
Report link

First of all, your activity also shouldn't interact with UseCase. Any business logic should pass through the ViewModel.

For now, let's find a solution to your question:

You can pass an activity as a param of your fun. In this case you won't keep reference anywhere.

Another way is to pass lambda as a param of fun and just invoke this lambda in the ViewModel, Usecase whatever. In this case, your activity reference will be only in activity class. Sometimes it looks not very elegant but at least you keep your UI and domain layers clear. And this is the only one approach for KMP projects.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Eugene Troyanskii

79325131

Date: 2025-01-02 22:50:13
Score: 1.5
Natty:
Report link

So the problem is that cfgrib doesn't have the definitions for all of the parameters in the NARR data. This notebook shows how to create some custom definition files at runtime to read in this data.

Reasons:
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: DopplerShift

79325123

Date: 2025-01-02 22:45:12
Score: 3
Natty:
Report link
float* dataPtr = reinterpret_cast<float*>(mat.data);
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: SULIXAY VILAIPHONE

79325122

Date: 2025-01-02 22:45:12
Score: 0.5
Natty:
Report link

a) Is there a way to set breakpoints and debug rules? I haven't found anything online about it.

Didn't find a debugger solution but could add console logs. Need to turn caching is off or delete existing cache so any saved edits would be reloaded when running lint again.

b) Is the parser configured correctly? The docs say to use a string parser: 'vue-eslint-parser', but it errors. Other sources say to use an import parser: vueEslintParser.

The docs are using a string but it wasn't working and had to use an import to get it to work.

import vueEslintParser from 'vue-eslint-parser'

export default [{
  languageOptions: {
    parser: vueEslintParser,

c) How to get access to parserServices? I saw this used a few ways but it ends up undefined here.

The code snippet in the docs didn't work for some reason. Looking at existing rules and defineTemplateBodyVisitor is wrapped by a util of the same name. Digging into it, found context.getSourceCode() which worked.

return context.getSourceCode().parserServices.defineTemplateBodyVisitor({ ... })
Reasons:
  • Blacklisted phrase (1): Is there a way
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
Posted by: 1192805

79325119

Date: 2025-01-02 22:44:12
Score: 2.5
Natty:
Report link

Beautiful discussion. I particularly like rationality and sanguinity of the paragraph that starts "just like every vendor they support X% of the Standard and Y% different..."

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: RichMeister

79325116

Date: 2025-01-02 22:41:11
Score: 1.5
Natty:
Report link

It could be that you have Anonymous login disabled, check this answer:

https://stackoverflow.com/a/58752675/6337545

The browser debug log will show something like ADMIN_ONLY. This is with React Native.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Vincent Gerris

79325111

Date: 2025-01-02 22:37:10
Score: 1
Natty:
Report link

According to the Hotjar Virtual Assistant (at https://help.hotjar.com/hc/en-us/requests/new):

"A number of our cookies cannot use HTTPOnly flags. This is because they're used to persist information between sessions/pages, so they need to be accessible to Hotjar's client-side code. HTTPOnly makes the cookie values inaccessible to client-side code.

From a security point of view, the risk this produces is that other scripts active within the session can read and modify those cookies.

As these cookies are Hotjar-specific and do not contain PII, there is a very small attack surface in this case - the risk extends to Hotjar's local operability."

Though the aforementioned response does not addresses Hotjar cookies by name on a cookie-by-cookie basis.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Edward Salwin

79325100

Date: 2025-01-02 22:33:09
Score: 1.5
Natty:
Report link

{"translations":{"QORqGxRm4i1":"Mehr dazu","JAk1j9VsDjn":"Titelbild bearbeiten","FLNsdt0YIWJ":"Titelbild hinzuf\u00fcgen","-hpfOs-4bRt":"({alternate name})","YERfoj3uB2E":"In Erinnerung an","WuHjn4CWmB7":"\u0040{username}","TNI35rZUadw":"Profilbild","uIvHyM5bnkI":"Profilbild-Handlungen","eeXOPzhreUQ":"Profilbild aktualisieren","n2H_VN10V-4":"Gedenkbeitr\u00e4ge","KDTJXNcOyIk":"Beitr\u00e4ge","sAtVCjFTmD2":"Abonnenten-Hub","erWYiBa1sao":"Abschnitte verwalten","F6vha0Kr7ts":"Empfehlungen ansehen","LlHcIvsh5It":"{restoredPercentage}\u00a0\u0025 der Chats wurden geladen\u00a0\u2026","EPxp6BXcf-B":"Alle Chats wurden geladen.","BcL_Hf5UaRM":"Datenbank wird aktuell migriert","UJ0S4v9Hktq":"Migration abgeschlossen","rY0dxFqgz-w":"Neue Nachricht","OUbuC9yLTGc":"{senderName} hat {groupName} eine Nachricht geschickt","xWtep4OGpvD":"{name} hat eine Nachricht an deine Gruppe gesendet","uh-zU0Y_fAB":"{name} hat dir eine Nachricht geschickt","GqqnGnZcXBj":"Optionen","lMGuJRoIOm8":"Neue Nachricht","xEJdAn7fswx":"Du hast deine Nachricht nach oben geholt","V_CNNTmY2Ph":"Du hast {name}s Nachricht nach oben geholt","e4ANPYcuBv3":"Du hast eine Nachricht nach oben geholt","Za_lnuBTLtf":"{sender_name} hat deine Nachricht nach oben geholt","jAChXL58Au":"{name} hat seine/ihre Nachricht nach oben geholt","DhJx8omw4RX":"{sender_name} hat {reply_source_sender_name}s Nachricht nach oben geholt","nH0a2aTUw0L":"{user_name} hat eine Nachricht nach oben geholt","fyDhKh6gGJz":"Es wird auf diese Nachricht gewartet. Dies kann einige Zeit dauern.","4OgzNQUOXys":"Nachricht nicht verf\u00fcgbar","jc4jswoQ0uZ":"Du hast eine Nachricht gesendet, die von diesem Browser nicht unterst\u00fctzt wird.","rJAaVw-bGTJ":"Du hast eine Nachricht erhalten, die von diesem Browser nicht unterst\u00fctzt wird.","htQbbFl0eHA":"You sent a live location. Use the Messenger mobile app to see it.","uqLzpXLWV1L":"Du hast einen fixierten Standort gesendet. Sieh sie dir in der mobilen Messenger-App an.","tp68nC9k2Iv":"You received a live location. Use the Messenger mobile app to see it.","arQtWP-wajD":"Du hast einen fixierten Standort erhalten. Sieh sie dir in der mobilen Messenger-App an.","yYAB5ipDjSn":"Du hast eine Umfrage gesendet. Sieh sie dir in der mobilen Messenger-App an.","9_u_h4197t1":"Du hast eine Umfrage erhalten. Sieh sie dir in der mobilen Messenger-App an.","Lucxb4lp5Bj":"Du hast eine Kontaktkarte gesendet. Sieh sie dir in der mobilen Messenger-App an.","l8E1YgNTl-P":"Du hast eine Kontaktkarte erhalten. Sieh sie dir in der mobilen Messenger-App an.","eI2fGAdx8aY":"Du hast eine Story-Erw\u00e4hnung gesendet. Sieh sie dir in der mobilen Messenger-App an.","cgqiUXxl6Ro":"Du hast eine Story-Erw\u00e4hnung erhalten. Sieh sie dir in der mobilen Messenger-App an.","PZpIyNYvIJk":"Du hast eine Beitrags-Erw\u00e4hnung gesendet. Sieh sie dir in der mobilen Messenger-App an.","ZZH6zoWCM7w":"Du hast eine Beitrags-Erw\u00e4hnung erhalten. Sieh sie dir in der mobilen Messenger-App an.","6rTG-69neIL":"Du hast jemanden in deiner Notiz erw\u00e4hnt. Sieh sie dir in der mobilen Messenger-App an.","rrd4aExCZRq":"Jemand hat dich in seiner/ihrer Notiz erw\u00e4hnt. Sieh sie dir in der mobilen Messenger-App an.","WRZ6XvWCtwS":"To see this memory, open the Messenger app on your phone.","rKW2TUo65Qw":"Du hast eine Nachricht von Meta\u00a0AI erhalten. Sieh sie dir in der mobilen Messenger-App an.","wGbdzlw9c2x":"Du hast eine nach oben geholte Nachricht gesendet. Sieh sie dir in der mobilen Messenger-App an.","ERQ-V0YrzM":"Du hast eine nach oben geholte Nachricht erhalten. Sieh sie dir in der mobilen Messenger-App an.","QW1C8s0lKTa":"Du hast einen Sticker erhalten. Verwende die mobile Messenger-App, um ihn dir anzusehen.","G-xm1MPFQ2m":"Du hast einen Sticker gesendet. Verwende die mobile Messenger-App, um ihn dir zu anzusehen.","kUWcn8afzj2":"Die Nachricht wurde gesendet, bevor das Ger\u00e4t zu dieser Unterhaltung hinzugef\u00fcgt wurde. Sie kann nicht zugestellt werden.","Q-6u14LxgkX":"Nachricht konnte nicht zugestellt werden","f0lEvrX0NwD":"Story unavailable","KCDXWiSStNg":"Dieses Foto kann nur einmal angesehen werden. Nutze die mobile App, um es dir anzusehen.","QmDiAWEBf9c":"Dieses Video kann nur einmal angesehen werden. Nutze die mobile App, um es dir anzusehen.","28E9UX9VhHs":"Du hast diese Gruppe erstellt","vc0hFTqTXzB":"{actor} hat diese Gruppe erstellt","nIQsgwg4jav":"Diese Gruppe wurde erstellt.","ioocxZa3RHl":"Du hast die Gruppe {custom group name} genannt.","BkA5SKyiWz8":"{custom group name} wurde als Gruppenname festgelegt.","3pkJPr0kqiB":"{actor} hat die Gruppe \u201e{custom group name}\u201c genannt.","7HvCssg8rpe":"Du hast ein neues Ger\u00e4t zu dieser Unterhaltung hinzugef\u00fcgt.","HcuOxk4Ti9n":"{actor} hat ein neues Ger\u00e4t zu dieser Unterhaltung hinzugef\u00fcgt.","z8kxY36E7hc":"Du hast ein Ger\u00e4t aus dieser Unterhaltung entfernt.","CWI7wNEpg6X":"{actor} hat ein Ger\u00e4t aus der Unterhaltung entfernt.","dMTvVUpHIHh":"Dein Schl\u00fcssel hat sich ge\u00e4ndert.","B5b_7hBmzMu":"{user_name}s Schl\u00fcssel hat sich ge\u00e4ndert.","IquH8JP7g3o":"Du hast {user_name} zur Gruppe hinzugef\u00fcgt. Er/Sie kann nur Nachrichten sehen, die nach seinem/ihrem Gruppenbeitritt gesendet wurden.","6LexHwivW4N":"Du hast {user_name_1} und {user_name_2} zur Gruppe hinzugef\u00fcgt. Sie k\u00f6nnen nur Nachrichten sehen, die gesendet wurden, nachdem sie hinzugef\u00fcgt wurden.","xpYfCqAeoRq":"Du hast {user_name} und {number of participants} weitere Personen zur Gruppe hinzugef\u00fcgt. Sie k\u00f6nnen nur Nachrichten sehen, die gesendet wurden, nachdem sie hinzugef\u00fcgt wurden.","6Z1J4va4_8C":"{actor} hat dich zur Gruppe hinzugef\u00fcgt. Du kannst nur Nachrichten sehen, die gesendet wurden, nachdem du hinzugef\u00fcgt wurdest.","Usbik5t1nBt":"{actor} hat dich und {user_name} zur Gruppe hinzugef\u00fcgt. Ihr k\u00f6nnt nur Nachrichten sehen, die gesendet wurden, nachdem ihr hinzugef\u00fcgt wurdet.","P_OgxVnWQoE":"{actor} hat dich und {number of participants} weitere Personen zur Gruppe hinzugef\u00fcgt. Ihr k\u00f6nnt nur Nachrichten sehen, die gesendet wurden, nachdem ihr hinzugef\u00fcgt wurdet.","bobEEsoK5wj":"{actor} hat {user_name} zur Gruppe hinzugef\u00fcgt. Er/Sie kann nur Nachrichten sehen, die gesendet wurden, nachdem er/sie hinzugef\u00fcgt wurde.","XQQ_fX0JL2u":"{actor} hat {user_name_1} und {user_name_2} zur Gruppe hinzugef\u00fcgt. Sie k\u00f6nnen nur Nachrichten sehen, die gesendet wurden, nachdem sie hinzugef\u00fcgt wurden.","gdN-cHBGTgb":"{actor} hat {user_name_1} und {number of participants} weitere Personen zur Gruppe hinzugef\u00fcgt. Sie k\u00f6nnen nur Nachrichten sehen, die gesendet wurden, nachdem sie hinzugef\u00fcgt wurden.","T1eI6-R4Ys3":"Du hast {user_name} aus der Gruppe entfernt.","_J2BJijyg1Y":"{user_name_1} hat dich aus der Gruppe entfernt.","GQYeJHPPFBL":"{user_name_1} hat {user_name_2} aus der Gruppe entfernt.","7gBXJGJs1RC":"{name} hat die Gruppe verlassen.","twBESU9lMQ5":"Du hast die Gruppe verlassen.","P-TnfmXUkkU":"{user_name} ist jetzt ein Admin.","TyOeMbh9c3n":"{user_name} ist kein Admin mehr.","g2Y-AkokbQi":"Du bist jetzt Admin.","QbDk7QLMtd0":"Du bist kein Admin mehr.","vcVM9mG_n59":"{actor} hat dich als Gruppenadmin hinzugef\u00fcgt.","0ly_0rO21jd":"{actor} hat dich als Gruppenadmin entfernt.","aRkzLhFK0tk":"{actor} hat {target} als Gruppenadmin hinzugef\u00fcgt.","wIEAcacoGC2":"{actor} hat {target} als Gruppenadmin entfernt.","BVroDb3uWvG":"Du hast {target} als Gruppenadmin entfernt.","XW8QFefwwka":"Du hast {target} als Gruppenadmin hinzugef\u00fcgt.","-JHaYRzvfpN":"{actor} hat sich selbst als Gruppenadmin entfernt.","h_Dfa2FiN92":"Du hast dich selbst als Gruppenadmin entfernt.","3iBxxmwApDO":"Du","4-ojL4cFyDj":"Du hast ein Foto gesendet.","_R0NFo7psqZ":"Du hast ein Video gesendet.","NHZzbHt5fju":"Du hast eine Sprachnachricht gesendet.","GgLzAe6GAAY":"Du hast ein GIF gesendet.","WYnHcQZeijb":"Du hast einen Sticker gesendet.","SkQ-qpSqtIH":"Du hast einen Anhang gesendet.","Z9w9ch9TmJt":"You sent a post","-kgYEsPaCeZ":"You sent a reel","BxMycMKsI8g":"Du hast eine Story gesendet.","AdIYNNW8_BB":"Du hast eine Veranstaltung gesendet.","HZfnisG5R39":"You sent a story highlight","Mv-TBSZDdsn":"You mentioned \u0040{user} in your story.","XUTKHUpfCZy":"Hat dich in seiner/ihrer Story erw\u00e4hnt","NkOpuZkYe13":"Du hast diesen Nutzer in deiner Story erw\u00e4hnt","LFSYTOj65rJ":"{user} hat dich in seiner/ihrer Story erw\u00e4hnt","u9NG1-EYfRE":"{user} hat ein Foto gesendet.","GZrAjs4uDve":"{user} hat ein Video gesendet.","B_Zg5gCb8wv":"{user} hat eine Sprachnachricht gesendet.","-LJU6ON9QlF":"{user} hat ein GIF gesendet.","j_PEgQByu4Z":"{user} hat einen Sticker gesendet.","kF-N_lTEwQJ":"Sent a post","T_Dsx3yPqqa":"Sent a reel","1gzdEGkoXLS":"{user} hat einen Anhang gesendet.","V7iXBY7GwFs":"Du hast einen Standort gesendet.","b1af6uIHMmw":"{user} hat einen Standort gesendet.","ssliyU4f4NG":"{user} hat eine Story gesendet.","_YfY9t5KQWL":"{user} hat eine Veranstaltung gesendet.","8KU-2G3ySrJ":"Sent a story highlight","7Iefg1P6g_q":"Nachricht nicht verf\u00fcgbar","m7k67dqAe-2":"Ihr k\u00f6nnt euch jetzt Nachrichten senden, euch gegenseitig anrufen und Informationen wie den Aktiv-Status oder den Gelesen-Status eurer Nachrichten sehen.","aRupJlbtkO6":"Ihr k\u00f6nnt euch jetzt schreiben und gegenseitig anrufen.","NRCMN2f5KgC":"Dieses Konto kann deine Nachricht nicht erhalten, da der Nutzer neue Nachrichtenanfragen nur von bestimmten Personen akzeptiert.","yoeh6xz8ysN":{"":"Selbstl\u00f6schende Nachrichten wurden aktiviert. Nachrichten verschwinden zuk\u00fcnftig {number}\u00a0Sekunden nach dem Senden.","_1":"Selbstl\u00f6schende Nachrichten wurden aktiviert. Nachrichten verschwinden zuk\u00fcnftig 1\u00a0Sekunde nach dem Senden."},"IR8E-wTaoC7":{"":"Selbstl\u00f6schende Nachrichten wurden aktiviert. Nachrichten verschwinden zuk\u00fcnftig {number}\u00a0Minuten nach dem Senden.","_1":"Selbstl\u00f6schende Nachrichten wurden aktiviert. Nachrichten verschwinden zuk\u00fcnftig 1\u00a0Minute nach dem Senden."},"FtQHajIZT7O":{"":"Selbstl\u00f6schende Nachrichten wurden aktiviert. Nachrichten verschwinden zuk\u00fcnftig {number}\u00a0Stunden nach dem Senden.","_1":"Selbstl\u00f6schende Nachrichten wurden aktiviert. Nachrichten verschwinden zuk\u00fcnftig 1\u00a0Stunde nach dem Senden."},"X1cC2Zoa_3e":{"":"Selbstl\u00f6schende Nachrichten wurden aktiviert. Nachrichten verschwinden zuk\u00fcnftig {number}\u00a0Tage nach dem Senden.","_1":"Selbstl\u00f6schende Nachrichten wurden aktiviert. Nachrichten verschwinden zuk\u00fcnftig 1\u00a0Tag nach dem Senden."},"q1Dv0IsA2nN":{"":"Du hast selbstl\u00f6schende Nachrichten aktiviert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach {number}\u00a0Sekunden.","_1":"Du hast selbstl\u00f6schende Nachrichten aktiviert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach 1\u00a0Sekunde."},"p0MNCtvKqaA":{"":"Du hast selbstl\u00f6schende Nachrichten aktiviert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach {number}\u00a0Minuten.","_1":"Du hast selbstl\u00f6schende Nachrichten aktiviert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach 1\u00a0Minute."},"kwfHljZ5QBG":{"":"Du hast selbstl\u00f6schende Nachrichten aktiviert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach {number}\u00a0Stunden.","_1":"Du hast selbstl\u00f6schende Nachrichten aktiviert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach 1\u00a0Stunde."},"LHoPMyBE8HS":{"":"Du hast selbstl\u00f6schende Nachrichten aktiviert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach {number}\u00a0Tagen.","_1":"Du hast selbstl\u00f6schende Nachrichten aktiviert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach 1\u00a0Tag."},"rFeQsz2D0mv":{"":"{user} hat selbstl\u00f6schende Nachrichten aktiviert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach {number}\u00a0Sekunden.","_1":"{user} hat selbstl\u00f6schende Nachrichten aktiviert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach 1\u00a0Sekunde."},"vASZV8VZvhw":{"":"{user} hat selbstl\u00f6schende Nachrichten aktiviert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach {number}\u00a0Minuten.","_1":"{user} hat selbstl\u00f6schende Nachrichten aktiviert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach 1\u00a0Minute."},"Xyk76kpov4j":{"":"{user} hat selbstl\u00f6schende Nachrichten aktiviert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach {number}\u00a0Stunden.","_1":"{user} hat selbstl\u00f6schende Nachrichten aktiviert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach 1\u00a0Stunde."},"qtvuopqU1MA":{"":"{user} hat selbstl\u00f6schende Nachrichten aktiviert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach {number}\u00a0Tagen.","_1":"{user} hat selbstl\u00f6schende Nachrichten aktiviert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach 1\u00a0Tag."},"tOdgin1piov":{"":"Die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten wurde ge\u00e4ndert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach {number}\u00a0Sekunden.","_1":"Die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten wurde ge\u00e4ndert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach 1\u00a0Sekunde."},"tU7ZycHCBtt":{"":"Die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten wurde ge\u00e4ndert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach {number}\u00a0Minuten.","_1":"Die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten wurde ge\u00e4ndert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach 1\u00a0Minute."},"SXTBhBt2NNW":{"":"Die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten wurde ge\u00e4ndert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach {number}\u00a0Stunden.","_1":"Die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten wurde ge\u00e4ndert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach 1\u00a0Stunde."},"oSyzRtJUP0d":{"":"Die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten wurde ge\u00e4ndert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach {number}\u00a0Tagen.","_1":"Die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten wurde ge\u00e4ndert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach 1\u00a0Tag."},"J_nCpYMiV9y":"Messenger hat diesen Chat noch sicherer gemacht. Neue Nachrichten und Anrufe sind jetzt durch Ende-zu-Ende-Verschl\u00fcsselung gesch\u00fctzt.","cFpYB9yRAJx":"Messenger hat die Sicherheitseinstellungen erh\u00f6ht. Nachrichten in deinem anderen Chat wurden archiviert.","2BRCng4CCeO":"Instagram upgraded the security of this chat. Messages and calls will be secured with end-to-end encryption.","EP_oerZBdU2":"Fr\u00fchere Nachrichten findest du m\u00f6glicherweise in deinem anderen Chat.","djtpytkb6Sh":"Wir haben ein nicht erkanntes Ger\u00e4t in deinem Konto festgestellt. Zum Schutz des Chats empfehlen wir dir, deine Schl\u00fcssel mit deinen Kontakten zu vergleichen.","hcupvvFLxCq":{"":"Du hast die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten ge\u00e4ndert. Gesendete Nachrichten verschwinden jetzt nach {number}\u00a0Sekunden.","_1":"Du hast die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten ge\u00e4ndert. Gesendete Nachrichten verschwinden jetzt nach 1\u00a0Sekunde."},"fBAvJP2p_1B":{"":"Du hast die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten ge\u00e4ndert. Gesendete Nachrichten verschwinden jetzt nach {number}\u00a0Minuten.","_1":"Du hast die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten ge\u00e4ndert. Gesendete Nachrichten verschwinden jetzt nach 1\u00a0Minute."},"4ozbPFF4k4a":{"":"Du hast die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten ge\u00e4ndert. Gesendete Nachrichten verschwinden jetzt nach {number}\u00a0Stunden.","_1":"Du hast die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten ge\u00e4ndert. Gesendete Nachrichten verschwinden jetzt nach 1\u00a0Stunde."},"WyaiaRRbnKj":{"":"Du hast die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten ge\u00e4ndert. Gesendete Nachrichten verschwinden jetzt nach {number}\u00a0Tagen.","_1":"Du hast die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten ge\u00e4ndert. Gesendete Nachrichten verschwinden jetzt nach 1\u00a0Tag."},"iNw3Tti4Hyx":{"":"{user} hat die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten ge\u00e4ndert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach {number}\u00a0Sekunden.","_1":"{user} hat die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten ge\u00e4ndert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach 1\u00a0Sekunde."},"fCn7GcPwiSh":{"":"{user} hat die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten ge\u00e4ndert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach {number}\u00a0Minuten.","_1":"{user} hat die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten ge\u00e4ndert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach 1\u00a0Minute."},"g-ahVqaxxG1":{"":"{user} hat die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten ge\u00e4ndert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach {number}\u00a0Stunden.","_1":"{user} hat die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten ge\u00e4ndert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach 1\u00a0Stunde."},"WlJQEt8_oGK":{"":"{user} hat die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten ge\u00e4ndert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach {number}\u00a0Tagen.","1":"{user} hat die Einstellung f\u00fcr selbstl\u00f6schende Nachrichten ge\u00e4ndert. Gesendete Nachrichten verschwinden zuk\u00fcnftig nach 1\u00a0Tag."},"Loj0OkThL6V":"Selbstl\u00f6schende Nachrichten wurden deaktiviert.","tR4q6c00--C":"Du hast selbstl\u00f6schende Nachrichten deaktiviert.","M2dZfT7rhFT":"{user} hat selbstl\u00f6schende Nachrichten deaktiviert.","iGMaDEsRW87":"Selbstl\u00f6schende Nachrichten wurden deaktiviert. Wenn du sie wieder aktivierst, werden Nachrichten 24\u00a0Stunden, nachdem sie gesendet wurden, gel\u00f6scht.","HpovaTJp70W":"Du hast eine Nachricht zur\u00fcckgerufen","zbO84srNMHF":"{first name} hat eine Nachricht zur\u00fcckgerufen","31MoZ8hsHC1":"{name} hat mit {emoji} auf deine Nachricht reagiert","5oboVZPgKpA":"Hat mit {emoji} auf deine Nachricht reagiert","j47-K7rZuN":"Jemand hat einen Screenshot gemacht.","NNSrUYXKqRz":"Jemand hat ein Screenrecording gemacht.","7NL8DHtxILK":"Du hast einen Screenshot gemacht.","vrGwrec4csR":"Du hast ein Screenrecording gemacht.","GAoFX2GSYx-":"{user} hat einen Screenshot gemacht.","f2dqrRKp1Rl":"{user} hat ein Screenrecording gemacht.","84N8vT7fmIh":"Nachrichten und Anrufe sind durch Ende-zu-Ende-Verschl\u00fcsselung gesichert.","k7nqRDWCEqt":"Jemand hat dich zur Gruppe hinzugef\u00fcgt. Du kannst nur Nachrichten sehen, die nach deinem Gruppenbeitritt gesendet wurden.","vzYvZZNuBUQ":"Jemand hat dich und {user_name} zur Gruppe hinzugef\u00fcgt. Ihr k\u00f6nnt nur Nachrichten sehen, die nach eurem Gruppenbeitritt gesendet wurden.","kEvDhH7xulF":"Jemand hat dich und {number of participants} weitere Personen zur Gruppe hinzugef\u00fcgt. Ihr k\u00f6nnt nur Nachrichten sehen, die nach eurem Gruppenbeitritt gesendet wurden.","xyM-QHTai_C":"Jemand hat {user_name} zur Gruppe hinzugef\u00fcgt. Er/Sie kann nur Nachrichten sehen, die nach seinem/ihrem Gruppenbeitritt gesendet wurden.","5P3Id9aMhA-":"Jemand hat {user_name_1} und {user_name_2} zur Gruppe hinzugef\u00fcgt. Sie k\u00f6nnen nur Nachrichten sehen, die nach ihrem Gruppenbeitritt gesendet wurden.","8qUm4dkQH-w":"Jemand hat {user_name_1} und {number of participants} weitere Personen zur Gruppe hinzugef\u00fcgt. Sie k\u00f6nnen nur Nachrichten sehen, die nach ihrem Gruppenbeitritt gesendet wurden.","3CQShXTU-3b":"Du hast einen Anruf von {user} verpasst.","ZdLYEgeUYUi":"Du hast einen Anruf von einem Kontakt verpasst.","hSqnAb21UU0":"{user} hat deinen Anruf verpasst.","FhbzN0qv73L":"Ein Kontakt hat deinen Anruf verpasst.","YM-2KpKGx7o":"Du hast einen Videoanruf mit {user} verpasst.","rUeoGw7ywMT":"Du hast einen Videochat von einem Kontakt verpasst.","PRszNN6obpG":"{user} hat deinen Videoanruf verpasst.","IdxQnq18Kxe":"Ein Kontakt hat deinen Videochat verpasst.","qpT_2Hq8aLK":"Du hast {user} angerufen.","1D3Mug6ESYE":"Du hast einen Kontakt angerufen.","Q2D56NwN4Z2":"{user} hat dich angerufen.","-LOVer9reHI":"Ein Kontakt hat dich angerufen.","N6tiOur0IeU":"Der Videochat ist beendet.","281zrADSR3K":"Du hast einen Anruf gestartet.","BRFQbCVtB3g":"{user} hat einen Anruf gestartet.","Y_6qv9Uzxa8":"Ein Kontakt hat einen Anruf gestartet.","-bjuy5QVW7S":"Du hast einen Videochat gestartet.","G7PmoxqH97J":"{user} hat einen Videochat gestartet.","6N0ah9mUAzA":"Ein Kontakt hat einen Videochat gestartet.","EEsmX-LHlK":"Du hast {emoji} als Quick Reaction festgelegt.","6MdK4yng1UK":"{participant_name} hat als Quick Reaction {emoji} ausgew\u00e4hlt.","GyMG8O-C9S5":"Du hast {participant_name} den Spitznamen {nickname} gegeben.","WKommDcgo9P":"Du hast das Design zu {theme_name} {theme_emoji} ge\u00e4ndert.","t4yd3Wxrq8W":"Du hast das Design zu {theme_name} ge\u00e4ndert.","yuNBxRHgSDK":"Du hast das Gruppenfoto ge\u00e4ndert.","Zr0kCIYub20":"Du hast eine Nachricht fixiert.","VWcKR_3CcNp":"Du hast die Fixierung f\u00fcr eine Nachricht aufgehoben.","endRDxlBVzL":"Du schreibst {participant_name} gerade zum ersten Mal. Solltest du dich zu irgendeinem Zeitpunkt unwohl f\u00fchlen, gibt es","yI8AwJDDXA8":"{participant_name_1} hat {participant_name_2} den Spitznamen {nickname} gegeben.","Nu4trdH0AZV":"{participant_name_1} hat den Spitznamen von {participant_name_2} entfernt.","pUsACsMNiGM":"{participant_name} hat das Design zu {theme_name} {theme_emoji} ge\u00e4ndert.","5cPy2yotEtg":"{participant_name} hat das Design zu {theme_name} ge\u00e4ndert.","Dxwz5K9j7Bk":"{participant_name} hat das Gruppenfoto ge\u00e4ndert.","40grJO79VQ":"{participant_name} hat eine Nachricht fixiert.","mXVL0NDisiY":"{participant_name} hat die Fixierung f\u00fcr eine Nachricht aufgehoben.","6qQ7QWA5Qmg":"{participant_name} hat dir den Spitznamen {nickname} gegeben.","oAeegILBLai":"Du hast dir den Spitznamen {nickname} gegeben.","NEVYqiJ_yny":"Du hast deinen Spitznamen entfernet.","QyW1FG-2acm":"Du hast den Spitznamen von {participant_name} entfernt.","-bMyTbFv0nI":"{participant_name} hat sich den Spitznamen {nickname} gegeben.","Yhh1rYSenJQ":"{participant_name} hat seinen/ihren eigenen Spitznamen entfernt.","cwzLDs_ko4T":"{participant_name} hat deinen Spitznamen entfernt.","x0YG4R4fIWJ":"Du hast festgelegt, dass jetzt nur noch Admins Personen hinzuf\u00fcgen k\u00f6nnen.","OS47S8NROIK":"Du hast festgelegt, dass jetzt alle Mitglieder Personen hinzuf\u00fcgen k\u00f6nnen.","qoR_RAXP6cF":"{participant_name} hat festgelegt, dass jetzt nur noch Admins Personen hinzuf\u00fcgen k\u00f6nnen.","QFNAQIQatHV":"{participant_name} hat festgelegt, dass jetzt alle Mitglieder Personen hinzuf\u00fcgen k\u00f6nnen.","BGd7wYLVNyr":"Ein Chat-Admin hat festgelegt, dass jetzt alle Mitglieder Personen hinzuf\u00fcgen k\u00f6nnen.","ogqmOECI7p3":"Ein Chat-Admin hat festgelegt, dass jetzt nur noch Admins Personen hinzuf\u00fcgen k\u00f6nnen.","iw7A0LnsmaW":"\u00c4ndern","e7VrrtGFXYH":"Alle ansehen","jODYJ2eW1Pa":"Mehr\u00a0dazu","1qKfcXoTcu1":"Ma\u00dfnahmen, die du ergreifen kannst.","xAOSvpC7vLN":"Zu einem anderen Chat gehen","P5k2go6lj2P":"Nachrichten anzeigen","rZMtLmsbvnM":"{blocked contact's name} hat eine Nachricht gesendet.","2XTxAX3qgrF":"Entferne das letzte Zeichen deiner Eingabe.","CqK0EeqSMhz":"N\u00e4chster Vorschlag","iUKjo5X2a54":"Vorheriger Vorschlag","wwSVh79-oc2":"Vorschl\u00e4ge schlie\u00dfen","mihpnKYilqe":"Vorschlag ausw\u00e4hlen","Z6s23TRj9Pk":"Gib etwas ein","1sCLmeZcned":"Fokus auf vorige Zelle setzen","01-Oxa-x2ap":"Fokus auf n\u00e4chste Zelle setzen","H5N-2GNjT0N":"Keine k\u00fcrzlich durchgef\u00fchrten Suchanfragen","uQTwTbCP0iW":"{Inviter Name} hat dich eingeladen, der Gruppe beizutreten","BpxPpP9rp8f":"M\u00f6chtest du das Chat-Fenster wirklich schlie\u00dfen?","CqytfJoYvSJ":"OK","56tk0437PKy":"Du hast deine Nachricht nicht gesendet.","h_m7dC6Kxvx":"Chat schlie\u00dfen","SxkfHU6fYt9":"Wird geladen\u00a0\u2026","CsGZwNmXaIO":"Ein Bild angeh\u00e4ngt","i_Icu0jTUQc":"Ein Bild angeh\u00e4ngt mit dem Titel {title of image}","rzmjU77gEOx":"Eine Audio-Datei angeh\u00e4ngt","17xDOMabwon":"Eine Datei angeh\u00e4ngt","FWMIh-m_eI7":"Eine Datei angeh\u00e4ngt mit dem Namen {name of file}","_wsnXxs9YQH":{"":"{number}\u00a0Bilder angeh\u00e4ngt","_1":"Ein Bild angeh\u00e4ngt"},"0TMOPValyqo":"Ein Sticker angeh\u00e4ngt","19lTPiBl0z4":"Ein Sticker angeh\u00e4ngt mit dem Titel {title of sticker}","PpAv-1cm1Lu":"Ein nicht unterst\u00fctzter Anhang angeh\u00e4ngt","0rNBSLJGEDI":"Ein Video angeh\u00e4ngt","sBZdmUKngae":"Ein Rich Content-Anhang angeh\u00e4ngt","MhlSSR-HAo-":"Hat ein GIF gesendet.","sneme5ilsA3":"Hat eine Sprachnachricht gesendet.","rJoRAJ9mF9b":"Hat eine Datei gesendet.","Ibrf8gnq3av":{"":"Hat {number} Fotos gesendet.","_1":"Hat ein Foto gesendet."},"Vb2pqIGTqSg":"Hat einen Sticker gesendet.","8Hc2peCfGcd":"Hat einen Anhang gesendet.","ec67IIVPulv":"Hat ein Video gesendet."},"virtual_modules":["ProfileCometLockedProfilePopoverTrigger.react$fbt_virtual","ProfileCometCoverPhoto.react$fbt_virtual","ProfileCometCoverPhotoEditButton.react$fbt_virtual","ProfileCometInfo.react$fbt_virtual","ProfileCometProfilePicture.react$fbt_virtual","ProfileCometProfilePictureEditButton.react$fbt_virtual","ProfileCometTabs.react$fbt_virtual","RecommendationsUnitTriggerButton.react$fbt_virtual","MAWLoadingStateSpinner.react$fbt_virtual","MAWMigrationStateSpinner.react$fbt_virtual","MWNotificationRenderer.react$fbt_virtual","MWV2ChatOptionsHead.react$fbt_virtual","MWV2ComposeHead.react$fbt_virtual","getMAWLocalizedBumpMsgReplySnippet$fbt_virtual","getMAWLocalizedFallbackMsgSnippet$fbt_virtual","MAWAdminMsg$fbt_virtual","MAWAdminMsgCTA$fbt_virtual","MWGroupBlockingProtectionUtils$fbt_virtual","CometTypeaheadInputStrategyEventListener.react$fbt_virtual","CometSearchTypeaheadBaseViewRecentEmptyState.react$fbt_virtual","MAWUpdateLSThreadCapabilities$fbt_virtual","MWChatConfirmTabCloseDialog.react$fbt_virtual","MWV2HeaderCloseButton.react$fbt_virtual","MWV2ChatTabLoadingWithGlimmers.react$fbt_virtual","getMWPAttachmentMessageAnnouncement$fbt_virtual"]}

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: hans

79325099

Date: 2025-01-02 22:33:09
Score: 2.5
Natty:
Report link

You can create a kubeconfig file and put it as a secret in Github action, then configure your Github action to let kubectl use that kubeconfig file.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: hxquangnhat

79325085

Date: 2025-01-02 22:23:07
Score: 2.5
Natty:
Report link

check out hasura.io for a tool that does exactly this. This quickstart should take 2 mins to validate whether this will work for you.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: sandip

79325080

Date: 2025-01-02 22:21:06
Score: 2
Natty:
Report link

Just ran into this issue and the problem we were having was that we didn't connect the branch to the Gen 1 Backend. You can do this by going to the branch settings in the app and in the actions there should be an option for it. It will pop up a window for you to select an environment. We also selected the checkbox for the Full CI/CD deployment, not sure if this is required or not.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: John Harris

79325070

Date: 2025-01-02 22:15:04
Score: 5
Natty:
Report link

Kindly help to provide the below

  1. Multiple area copy and paste in Outlook email as single image. 2.In single query two or three different emails with different area copy and paste as image. 3.query for single send option with above .
Reasons:
  • Blacklisted phrase (3): Kindly help
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Narendra Reddy

79325063

Date: 2025-01-02 22:10:03
Score: 3
Natty:
Report link

Somewhat counter-intuitively, you have to double-click anywhere within the timeline. This should deselect/unselect it so that the limited selection is cleared.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Kevin Worth

79325057

Date: 2025-01-02 22:03:01
Score: 2
Natty:
Report link

in the path link that you gave in the html check that you have a dot before the slash: "./ThyFoulder/ThyLogo.jpg"

and make sure you keep calm and dont stop looking for answers the important is not giving up goodluck to anyone here :)

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Emy Emy

79325053

Date: 2025-01-02 22:01:01
Score: 1.5
Natty:
Report link

I am also encountering this problem, wondering if it's a Github API bug. Have you tried pagination options? Though I suspect they will yield the same result.

EDIT: after testing pagition, it is still returning an empty set.

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Arthur Le Maitre

79325052

Date: 2025-01-02 22:00:01
Score: 0.5
Natty:
Report link

I am not sure when this was introduced but I am using FPDF 1.7.2 and I can set the pdf_version property of the PDF object.

from fpdf import FPDF
mypdf = FPDF()
mypdf.pdf_version = '1.7'

I verified in Acrobat that the document properties reflect PDF version 1.7 appropriately.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Khoward

79325049

Date: 2025-01-02 21:59:00
Score: 5
Natty: 5
Report link

Please correct me if I am wrong, but the options for 'Minimum Tab Width' and 'Maximum tab width' are based on pixels not characters, correct?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: BernsJ

79325047

Date: 2025-01-02 21:58:59
Score: 4
Natty:
Report link

This appears to have been resolved with updating to .NET 8.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: powerval

79325046

Date: 2025-01-02 21:58:59
Score: 1
Natty:
Report link

For python 3.8 and cefpython3 66.1 on Windows 10 pro

I defined on win32gui_struct the following method (can also be directly defined outside it will work. Note however that you could have an import error as win32gui.py is not existing but thanks to win32gui.pyd it will work at runtime)

def set_icon(title,icon_path):
    w_hnd = win32gui.FindWindow(None, title)
    icon_flags = win32gui.LR_LOADFROMFILE | win32gui.LR_DEFAULTSIZE
    hicon = win32gui.LoadImage(None, icon_path, win32con.IMAGE_ICON, 0, 0, icon_flags)
    win32gui.SendMessage(w_hnd, win32con.WM_SETICON, win32con.ICON_SMALL, hicon)

#This method can be used with:
win32gui_struct.set_icon("title of the window","C:\\Users\\toto_is_happy\\IdeaProjects\\CefPythonTrial\\Win32GUI\\lib\\cefpython3\\examples\\resources\\chromium.ico")
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: diblud13

79325042

Date: 2025-01-02 21:57:58
Score: 7.5 🚩
Natty:
Report link

Same issue, followed the instructions of: https://github.com/react-native-maps/react-native-maps/blob/master/docs/installation.md

The instructions here: https://docs.expo.dev/versions/latest/sdk/map-view/ weren't working as well, please help.

Reasons:
  • RegEx Blacklisted phrase (3): please help
  • RegEx Blacklisted phrase (1): Same issue
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kilian

79325041

Date: 2025-01-02 21:56:56
Score: 13 🚩
Natty: 6
Report link

Any update on this topic? Did you manage to solve it? I'm having the same problem and I want to create a blog with repeaters so that I can have more freedom when styling the posts.

Reasons:
  • Blacklisted phrase (1): I'm having the same problem
  • Blacklisted phrase (1): update on this
  • RegEx Blacklisted phrase (3): Did you manage to solve it
  • RegEx Blacklisted phrase (1.5): solve it?
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mario Muñoz Gil

79325039

Date: 2025-01-02 21:53:55
Score: 0.5
Natty:
Report link

In C++20 there is std::countr_zero that can be used instead of the builtin.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: dened

79325037

Date: 2025-01-02 21:53:55
Score: 1.5
Natty:
Report link

I was running into similar issue so I created this instruction set:

https://medium.com/@joaco182/setting-up-stencil-4-with-storybook-8-32dfe58b7406

This will allow for hot reloading when components are updated in the storybook interface.

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Joaquin Senosiain

79325027

Date: 2025-01-02 21:48:54
Score: 4
Natty:
Report link

Removing the bins argument from the hexbin generator seems to fix the plot scale. I don't understand why, maybe because some data was outside of the bin limits?

    hexbin = ax.hexbin(x=player_sorted.LOC_X, y=player_sorted.LOC_Y, C=player_sorted['Relative Percentage'], gridsize=50,
               mincnt=2, edgecolors='white', cmap='RdBu_r', vmin=-0.1, vmax=0.1)

enter image description here

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: mylesmoose

79325017

Date: 2025-01-02 21:40:52
Score: 3
Natty:
Report link

Turning off security VPNs like Cisco Secure Client also solves problem.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Pokemon

79325003

Date: 2025-01-02 21:32:50
Score: 2.5
Natty:
Report link

For those stating it is not working with the latest version of iTerm, you can add a custom key mapping that sends "0x1b 0x08" when you hit option + delete. The action should be set to "Send Hex Code", once this is selected, it will open a text box for you to enter the hex code in.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Muhammad Huzaifa

79324990

Date: 2025-01-02 21:22:48
Score: 5
Natty: 5.5
Report link

Correct me if I am wrong, but the 'tab widths' are based on pixels not characters, correct?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: BernsJ

79324982

Date: 2025-01-02 21:18:47
Score: 0.5
Natty:
Report link

Docker Compose can't directly use bootBuildImage. Instead:

  1. Build the image:

    gradle bootBuildImage --imageName=myorg/myapp
    
  2. Reference it in docker-compose.yml:

    services:
      backend:
        image: myorg/myapp
    
  3. Automate with:

    gradle bootBuildImage && docker-compose up
    

This separates image building from Compose.

Why this approach?

bootBuildImage is a build tool, while docker-compose expects an existing image or a Dockerfile for context. By building the image first, Compose can easily use it.

Additional Notes For more details on bootBuildImage, refer to the Spring Boot Docker Guide.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Sai Kalyankar

79324981

Date: 2025-01-02 21:18:47
Score: 0.5
Natty:
Report link

We can use APIs or libraries in PHP for smart image cropping.

Use an API for Smart Cropping

We can use a pre-built API like Filestack.

You can learn about using API for Smart Image Cropping for Social Media in this article I wrote recently.

Smart Image Cropping for Social Media: Enhance Your Visual Content

I have also added a PHP code snippet for uploading an image and Smart Cropping with an API below:

PHP Code Snippet for Smart Cropping with Filestack API

<?php
// Replace with your Filestack API key
$apiKey = 'YOUR_API_KEY';

// File to upload
$filePath = 'path/to/your/image.jpg';

// Filestack upload URL
$uploadUrl = "https://upload.filestackapi.com/api/store/S3?key={$apiKey}";

// Use cURL to upload the file
$ch = curl_init($uploadUrl);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, [
    'fileUpload' => new CURLFile($filePath),
]);

$response = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);

if ($httpCode === 200) {
    $responseData = json_decode($response, true);
    $fileHandle = $responseData['handle'];

    // Filestack smart cropping URL
    $smartCropUrl = "https://cdn.filestackcontent.com/smart_crop=width:400,height:400,mode:face/{$fileHandle}";

    echo "Uploaded successfully. Access your smart-cropped image here:\n";
    echo $smartCropUrl;
} else {
    echo "File upload failed. HTTP Code: $httpCode\n";
    echo "Response: $response\n";
}
?>

Steps Explained:

Upload the Image:

Get the File Handle:

Generate Smart Cropping URL:

Access Cropped Image:

Using API is convenience and we can ensure the accuracy and scalability.

Reasons:
  • Blacklisted phrase (1): this article
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shamal Jayawardhana

79324975

Date: 2025-01-02 21:15:46
Score: 1
Natty:
Report link

SWEET!!! My problem is solved, thanks to David Browne - Microsoft. It doesn't show up in the answer he initially proposed, but his next comment solved it for me. Quite simply, it was a matter of turning the EF change tracker off.

context.Sales.Include(x => x.Buyer).Include(s => s.Seller).AsNoTracking().ToList();

Obviously this wouldn't solve the problem if there were to be any kind of editing done on the result, but in my scenario that's not an issue.

Thanks a lot, David!!!

(P.S. David, you should get credit for this answer, so if you want to post a different answer/explanation, I'll give it the credit it's due. :)

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Bradley Plett

79324968

Date: 2025-01-02 21:09:45
Score: 0.5
Natty:
Report link

With HAPI you can add custom search parameters. HAPI's documentation on this can be found here. While it is unfortunate that procedure and diagnosis are not part of the default search params for a claim, it was easy enough to add what I needed.

As an example, I was able to add a path from item's productOrService codes. Here is an example of the Search Parameter resource I created.

{
  "resourceType": "SearchParameter",
  "url": "http://example.org/fhir/SearchParameter/claim-item-productOrService",
  "version": "1.0",
  "name": "ClaimItemProductOrService",
  "status": "active",
  "description": "Search Claims by productOrService field in Claim items.",
  "code": "product-or-service",
  "base": ["Claim"],
  "type": "token",
  "expression": "Claim.item.productOrService",
  "xpath": "f:Claim/f:item/f:productOrService",
  "xpathUsage": "normal"
}

With that, you can now perform searches like https://base_fhir_server_url/Claim?product-or-service=CPT|99454 for example.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: TheCaffinatedDeveloper

79324965

Date: 2025-01-02 21:08:45
Score: 2.5
Natty:
Report link

Small explanation to answer given by @DRD - this is the worst solution possible.

Never use vh and vw for font-size property:

This is how @DRD's fiddle example works when changing browser window height. The font-size is getting smaller and bigger with resizing.

Example jsfiddle

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @DRD
  • User mentioned (0): @DRD's
  • Low reputation (0.5):
Posted by: konieckropka

79324958

Date: 2025-01-02 21:06:44
Score: 1
Natty:
Report link

This question is as relevant in 2025 as it was in 2009.

  1. The first question you should ask is this: what are my constraints?
  2. The second question is: given these constraints, what performance characteristics do I need?
  3. The third question is: do I need additional optimization beyond the simplest implementation to meet these performance characteristics?

Premature optimization is the root of all evil mainly refers to skipping one or more of these steps, and proceeding to optimize anyway.

Optimizations should be done early in a project's lifecycle mainly refers to optimizing early based upon known constraints and performance characteristics.

Both philosophies can lead one to making the wrong decisions early on, which creates additional work down the road. Following either in isolation may lead you to make either more type 1 errors or type 2 errors than you need to: https://en.wikipedia.org/wiki/Type_I_and_type_II_errors

Ask those 3 questions early to help make the right decisions. Sometimes, you just don't know what you need early on and need to assess as the project moves forward, in which case it may be worthwhile to create a simple prototype/proof-of-concept. That gives you a chance to assess bottlenecks, then re-write a fuller implementation with those bottlenecks in mind. Done well, this just means you're spending the time you need to on these questions.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: David

79324956

Date: 2025-01-02 21:05:39
Score: 7 🚩
Natty:
Report link

I'm trying to use geom_area() in a different way, e.g. AUC. I refer to the example in https://www.sthda.com/english/wiki/ggplot2-area-plot-quick-start-guide-r-software-and-data-visualization

dat <- with(density(df$weight), data.frame(x, y))
ggplot(data = dat, mapping = aes(x = x, y = y)) +
 geom_line()+
    geom_area(mapping = aes(x = ifelse(x>65 & x< 70 , x, 0)), fill = "red") +
    xlim(30, 80)

Can someone help me understand why the result is different when we remove xlim(30, 80) ?

The different in the two images are below:enter image description here

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (3): Can someone help me
  • Probably link only (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: avery

79324955

Date: 2025-01-02 21:05:38
Score: 11.5 🚩
Natty:
Report link

I'm also getting the same issue. You found any solution?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm also getting the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Abdullah Raza

79324948

Date: 2025-01-02 20:59:36
Score: 3.5
Natty:
Report link

I would advise you to add a button from standard shortcodes and edit it to suit your needs. If you have a problem with submitting the form, then look at the browser console and check for JavaScript errors. Correct the errors and the form will work. Please check this image

Reasons:
  • Blacklisted phrase (1): Please check this
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Oleg Kicha

79324944

Date: 2025-01-02 20:57:36
Score: 1
Natty:
Report link

You do not have to set any environment variables, only install the dev package:

sudo apt update
sudo apt install -y pkg-config libssl-dev
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: FliegendeWurst

79324941

Date: 2025-01-02 20:56:36
Score: 0.5
Natty:
Report link

Found out this assert package ;

npm install assert

Include and use like this ;

import assert from "assert";

assert(route?.params?.array !== undefined, "Your error message here");

Note: Also works with Expo Go

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Eternal Dreamer

79324935

Date: 2025-01-02 20:52:35
Score: 2
Natty:
Report link

I opened up My Norton and it said my network was restricted because it seems like I am on a public network. I changed it to private network since I am at home and it worked!

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: David Ramsaran

79324933

Date: 2025-01-02 20:51:34
Score: 5
Natty: 4
Report link

I am using python 3.8 and cx_Oracle 8.3.0. I am using executemany with batcherrors=True but it is not working at all.

executemany is just raising an exception for the error occurred at first place and after catching excepting I am trying to do getbatcherrors() but it is giving me empty list.

Please provide you suggestions.

Reasons:
  • Blacklisted phrase (1): I am trying to
  • RegEx Blacklisted phrase (2.5): Please provide you
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rohit Mewar

79324932

Date: 2025-01-02 20:51:34
Score: 2.5
Natty:
Report link

just change:

const functions = require('firebase-functions');

to:

const functions = require('firebase-functions/v1');

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: RNGsus

79324916

Date: 2025-01-02 20:47:32
Score: 0.5
Natty:
Report link

The problem is that the new File() Groovy/Java code is running on the Jenkins server and looking on the filesystem there, but the file you want to look at is on the machine that the Jenkins agent is running on. All the Groovy/Java code runs on the server and whenever you call a Jenkins pipeline step the server tells the agent to perform it locally and return the result. So to find the size of a file you'll need to use the findFiles() pipeline step and look at the result of that (see https://www.jenkins.io/doc/pipeline/steps/pipeline-utility-steps/#findfiles-find-files-in-the-workspace).

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: markshep

79324910

Date: 2025-01-02 20:44:32
Score: 3.5
Natty:
Report link

I can open a hyperlink from the hover with few keystrokes thanks to this answer.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: vimchun

79324901

Date: 2025-01-02 20:41:30
Score: 1.5
Natty:
Report link

You need to add 2 css rules to achieve your goal.

1 - flex-wrap: wrap; to dropdown for enabling wrapping

2 - flex: 1 0 1px; to mat-chip-listbox for making chips one under the other while all toggle stay in right

In conclusion

.dropdown {
    padding-top: 5px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.dropdown mat-chip-listbox { flex: 1 0 1px; }

enter image description here

enter image description here

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mücahit Çoban

79324898

Date: 2025-01-02 20:40:30
Score: 1
Natty:
Report link

Phew. Just got done doing a ton of research on this. It seems that for session_start events, GA4 populates the int_val of the engaged_session event parameter. But for all other events, it populates the string_val. Here is another site that seems to mention the same issue: https://www.optimizesmart.com/dont-let-ga4-bigquery-data-types-ruin-your-analysis/

Even though I would have thought that an "engaged session" would be one where ANY of the events in that session has an engaged_session=1 (int or string value) parameter, when I do that, I massively overestimate the engagement rate.

So it appears the GA4 UI is either only using the session_start event to consider engaged sessions, or using the "any event with engaged_session.intval = 1" rule... which would result in the same outcome.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Daniel Kiepfer

79324895

Date: 2025-01-02 20:38:29
Score: 1.5
Natty:
Report link
float get_float(const char *prompt);

that's for 'get_float' declarement(I honestly don't know why i made this).

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Annon

79324891

Date: 2025-01-02 20:35:28
Score: 2.5
Natty:
Report link

In my case, the bundle ID is associated with a deleted app. The ID is still available in Certificates, Identifiers & Profile. As a workaround, I use a new bundle ID in Xcode, e.g., newid<2>.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: litbe

79324869

Date: 2025-01-02 20:21:25
Score: 1.5
Natty:
Report link

<button type="button" aria-controls="mep_0" title="Play" aria-label="Play"></button>

<script>
  document.getElementsByTagName("button")[0].click();
</script>

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Exposed Scam

79324868

Date: 2025-01-02 20:21:25
Score: 1.5
Natty:
Report link

I would use React for my frontend that does API calls to a FastAPI backend. I wouldn't use FLASK because it doesn't support asynchronous API calls. This FastAPI would be connected to the Tensorflow model of the client within the federated learning network.

You could use docker containers for the different clients and server.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: ThibaultFeraux

79324865

Date: 2025-01-02 20:18:24
Score: 1
Natty:
Report link

This is an issue with not having readline and xz installed. Documentation here gives you the suggested build libraries. Once you have installed the libraries you can reinstall your preferred version of python (e.g. pyenv install 3.12.8) and you should have working arrow keys and all the other fun stuff from readline.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Joseph Ruskiewicz

79324858

Date: 2025-01-02 20:15:23
Score: 0.5
Natty:
Report link

Here is the vercel.json that fixed my issues. Mainly pointing vercel builds to server.ts, not server.js.

{
  "version": 2,
  "builds": [
    {
      "src": "src/server.ts",
      "use": "@vercel/node"
    }
  ],
  "routes": [
    {
      "src": "/(.*)",
      "dest": "src/server.ts"
    },
    {
      "src": "/(.*)",
      "dest": "dist/server.js"
    }
  ]
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Keegan

79324848

Date: 2025-01-02 20:11:22
Score: 1
Natty:
Report link

In 2025, Visual studio code when the popup occurs. There should be a gear/setting icon in the upper right. Clicking that will give two options.

Clicking "Turn Off Info ..." seemed to do the trick for me

Reasons:
  • Low length (0.5):
  • No code block (0.5):
Posted by: Gauthier

79324836

Date: 2025-01-02 20:06:21
Score: 2.5
Natty:
Report link

You can try something like:

^(?:[^\r\n,]*[^\r\n\s,]\s*,)+[^\r\n,]+$
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: aaa

79324821

Date: 2025-01-02 19:57:18
Score: 2
Natty:
Report link

I have found the following regex that seems to work for what I need:

<p>(?:(?!<\/p>).)*\n(?:(.|\n)*?)<\/p>
Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: WolfieeifloW

79324807

Date: 2025-01-02 19:49:17
Score: 1.5
Natty:
Report link

Doing a File > Packages > Reset Package Caches works for me.

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Pouria Almassi

79324796

Date: 2025-01-02 19:45:16
Score: 3
Natty:
Report link

Ensure your theme’s header is enabled in the customizer and that Elementor’s display conditions or templates haven’t overridden it.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: WordPress Expert

79324787

Date: 2025-01-02 19:40:14
Score: 2.5
Natty:
Report link

It works perfectly, so that a Bluetooth application has the microphone. But the Bluetooth headset button is another story.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: José García

79324784

Date: 2025-01-02 19:39:14
Score: 1.5
Natty:
Report link

Disabling Auto complete did not work for me. However, I did find a solution.

#include "slick.sh"

_command format_html() name_info(','VSARG2_MACRO|VSARG2_MARK|VSARG2_REQUIRES_MDI_EDITORCTL) { _macro('R',1);

bool done;
begin

top();up();
done = FALSE;
while ( !done ) {
  begin_line_text_toggle();
  last_event(name2event('<'));html_lt();
  keyin("p");
  last_event(name2event('>'));html_gt();
  last_event(name2event(' '));html_space();
  end_line();
  last_event(name2event(' '));html_space();
  last_event(name2event('<'));html_lt();
  keyin('/');
  keyin("p");
  last_event(name2event('>'));html_gt();
  done = cursor_down();

} }

Evidently top_of_Buffer, and down() has other uses. Also, changed begin_line() to begin_line_text_toggle(). Thanks for the input.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): did not work
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Wayland

79324782

Date: 2025-01-02 19:38:14
Score: 3
Natty:
Report link

So the answer is that the workflow is correct, but after it is triggered and executed, and before any other commit is pushed to the repo, the user has to manually pull from the remote branch (or do push -f which is not advisable). There is no other way to do it. Is this correct?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: point618

79324781

Date: 2025-01-02 19:38:14
Score: 1.5
Natty:
Report link

You can override your Dockerfile CMD as:

CMD bash -c "catalina.sh run |& tee -a logs/catalina.out"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Torprendido

79324773

Date: 2025-01-02 19:34:12
Score: 2.5
Natty:
Report link

flutter upgrade after this vscode will ask you updating ,just click yes

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Kevin

79324756

Date: 2025-01-02 19:28:11
Score: 2.5
Natty:
Report link

ok i hope it worked and everything was alright

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: messi