79528085

Date: 2025-03-22 20:39:55
Score: 6.5 🚩
Natty:
Report link

I'm having the same issue too. Perhaps this github discussion can help:

https://github.com/playgameservices/play-games-plugin-for-unity/issues/3154

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Low reputation (1):
Posted by: Levant Alejandro

79528066

Date: 2025-03-22 20:21:51
Score: 4
Natty: 5
Report link

If I may relate to this question: what does minimal-fix-latest even do? Is it still useless to use it?

I al

Kind regards

Matjaž

Reasons:
  • Blacklisted phrase (1): regards
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: M J

79528059

Date: 2025-03-22 20:18:50
Score: 5
Natty:
Report link

Hey so sorry to barge in, but I am currently trying to do the exact same thing as you, unity iap, with telegram stars. Kind like durger king.

Would you please give a few pointers

Reasons:
  • RegEx Blacklisted phrase (2.5): please give
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: V.K.S.

79528054

Date: 2025-03-22 20:13:49
Score: 0.5
Natty:
Report link

ExifTool can output in Json format with the -j argument:

[string]$imageProperties = exiftool -j test.jpg

Then convert the Json string to an object:

$ImagePropertiesJson = ConvertFrom-Json $imageProperties

Then you can easily access any property of the jpeg file:

$ImagePropertiesJson.ImageHeight

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

79528053

Date: 2025-03-22 20:13:49
Score: 0.5
Natty:
Report link

After some insight from Jimi in the comments of the post. I have come to a solution using WndProc.

Below was my solution to resolve this issue but as a side note, as mentioned by Jimi

this requires strict testing, and, in the end, also might require (depending on the use-case) re-implementing some of the safety features (that handle some edge cases) that are left out when the override is in place

private const int WM_LBUTTONDOWN = 0x0201; // Left mouse button down

protected override void WndProc(ref Message m)
{
    //Checks if the Left mouse button down is being sent as the message
    if (m.Msg == WM_LBUTTONDOWN)
    {
        //Gathers click location for HitTest
        int x = (int)(m.LParam.ToInt64() & 0xFFFF);
        int y = (int)((m.LParam.ToInt64() >> 16) & 0xFFFF);
        Point clickPoint = new Point(x, y);

        TreeViewHitTestInfo hitTestInfo = HitTest(clickPoint);
        if (hitTestInfo.Node != null)
        {
            //For my case, I am using a Image as a checkbox icon, this section handles the selection of this.
            if (hitTestInfo.Location == TreeViewHitTestLocations.Image)
            {
                int currentState = GetEffectiveState(hitTestInfo.Node);

                // Toggle check state
                SetNodeChecked(hitTestInfo.Node, currentState != 1);
                UpdateStateIndices(hitTestInfo.Node);

                // Suppress selection
                m.Msg = 0; // Block the message
                return;
            } //This section is used for handling the click of the label, or just right of the label (preventing highlight)
            else if (hitTestInfo.Location == TreeViewHitTestLocations.Label || 
                hitTestInfo.Location == TreeViewHitTestLocations.RightOfLabel)
            {
                return; // Do nothing, preventing selection highlight
            }
        }
    }

    base.WndProc(ref m);
}

I did my best to provide context of what is happening on each line. Thanks again Jimi 😁

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

79528044

Date: 2025-03-22 20:06:47
Score: 1
Natty:
Report link

You most likely don't need anymore, but I needed one for Go 1.20, so I went looking and found one from 2016 on the way. If anyone needs, come [here](https://web.archive.org/web/20210701000000*/https://pkg.go.dev/golang.org/x/mobile?tab=versions) and run go install golang.org/x/mobile/cmd/gomobile@[the version you want]. Example: go install golang.org/x/mobile/cmd/[email protected] for the one I mentioned from 2016.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Edw590

79528039

Date: 2025-03-22 20:02:46
Score: 0.5
Natty:
Report link

This worked for me. Angular 17 build is generating index.csr.html inside browser folder so in nginx.conf you should change to:

index index.csr.html

Reasons:
  • Whitelisted phrase (-1): This worked for me
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ivangojko400

79528031

Date: 2025-03-22 19:57:45
Score: 4.5
Natty: 4
Report link

DateTime.Parse(DateTime.Now.ToString()); //Quick'n'Dirty

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Stefan

79528018

Date: 2025-03-22 19:46:43
Score: 1.5
Natty:
Report link

It seems to me you are not resetting self.dialog_tree in the first code snippet, so from where ever you call the uppermost self.input, if not self.dialogtree will never be true again after the first time.

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

79528014

Date: 2025-03-22 19:41:41
Score: 1
Natty:
Report link

With CDN, instead of

import { someVariableName } from 'ag-grid-community',

just use

agGrid.someVariableName

wherever desired.

For example:

const gridOptions = {
  columnDefs: columnDefs,
  rowData: rowData,
  theme: agGrid.themeBalham.withPart(agGrid.colorSchemeDark),
};
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: kando

79528013

Date: 2025-03-22 19:40:41
Score: 6.5
Natty: 7.5
Report link

I also received the same warning. How did you handle it in the end? Could you please share the processing code with me? Thank you very much.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (2.5): Could you please share
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: lin jinyong

79528012

Date: 2025-03-22 19:40:41
Score: 2
Natty:
Report link

try using this jquery code i made

var image = document.documentElement.appendChild(document.create("img")) image.src = "Your image link here"

change the "Your Image link here" to your link in a string

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

79528009

Date: 2025-03-22 19:38:40
Score: 1.5
Natty:
Report link

NOTE: This is just a work around

Well, I faced the same issue, it turns out that it's some issue with the node version which is causing this issue. Try upgrading to the latest version of node, and everything will work as smooth as butter.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Aditya Pandey

79528007

Date: 2025-03-22 19:36:40
Score: 1
Natty:
Report link

Just by looking I think you are missing the boot in the GRUB config file, it should be something like

menuentry "kernel" {
    multiboot /kernel.bin
    boot
}

(also double check that the kernel is actually in /kernel.bin)

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

79528001

Date: 2025-03-22 19:34:39
Score: 0.5
Natty:
Report link

I had the same problem and I couldn't find the solution, so I tried another way to solve this problem:

  1. When you change the tab, delete all previous tab buttons (create them again when you click on your tab)

  2. Put a condition inside all of your OnClick functions that if this button is not visible, do nothing.

  3. Rewrite your ON_EVENT:

    #define ON_EVENT(event,control,handler) if(id==(event+CHARTEVENT_CUSTOM) && sparam==control.Name()) {handler(); return(true);}

Reasons:
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Low reputation (1):
Posted by: Salar Hamidi

79527995

Date: 2025-03-22 19:31:39
Score: 0.5
Natty:
Report link

I want to write a custom markdig extension to change the path of the images. ... I'm curious how to do it via an extension.

There are three places where you can insert code that executes during the Markdig process of converting a Markdown string into an HTML string:

  1. During the process of parsing characters in the markdown text.

  2. After the whole Markdown text has been parsed into an AST node tree (represented by the MarkdownDocument object), but before rendering into HTML. (You may see this referred to as post-processing.)

  3. During the process of converting AST nodes into HTML.

The code in the original post along with @Jinjinov's answer is #2: post-processing. document.Descendants<LinkInline>() returns an IEnumerable of AST nodes of type LinkInline.

The CodeProject article referenced in the original post is inserting code into 1. Character processing and 3. Rendering nodes as HTML. As @Jinjinov points out, for what you're attempting to do ("change the path of images"), his answer for creating an extension is best solution. It's quick and simple.

If/When your need goes beyond changing paths to include things like adding/modifying HTML attributes of the <img> HTML, then adding an extension that executes during the rendering process (#3 above) is the solution.

The MediaLinks extension in the Markdig GitHub project provides a great and simple starting point. The extension executes during the rendering process and adds HTML attributes, among other things.

The following class adapts methods in the MediaLinkExtension.cs class file to process image nodes. It does two things:

  1. It modifies the URL.
  2. If the URL is an absolute path -- that is, starts with http: -- then the target and rel attributes are added. The use case scenario for this allows for a CSS style rule that renders an external link icon after absolute URL paths versus relative URLs that point to the Web app's storage service.
a[target=_blank] {
    display: grid;
    grid-auto-flow: column;
    justify-content: start;
    gap: .5rem;
}
    /* New tab icon */
    a[target=_blank]::after {
        content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M 19 6.41 L 8.7 16.71 a 1 1 0 1 1 -1.4 -1.42 L 17.58 5 H 14 a 1 1 0 0 1 0 -2 h 6 a 1 1 0 0 1 1 1 v 6 a 1 1 0 0 1 -2 0 V 6.41 Z M 17 14 a 1 1 0 0 1 2 0 v 5 a 2 2 0 0 1 -2 2 H 5 a 2 2 0 0 1 -2 -2 V 7 c 0 -1.1 0.9 -2 2 -2 h 5 a 1 1 0 0 1 0 2 H 5 v 12 h 12 v -5 Z" /></svg>');
        display: grid;
        width: 1rem;
    }

Image extension class

using Markdig;
using Markdig.Helpers;
using Markdig.Renderers;
using Markdig.Renderers.Html;
using Markdig.Renderers.Html.Inlines;
using Markdig.Syntax.Inlines;

namespace markdown.Image
{
    public class ImageOptions
    {
        public string? BlobPath { get; set; }
        public bool? OpenExternalLinksInNewTab { get; set; } = false;
    }

    public static class ImagePipelineBuilder
    {
        public static MarkdownPipelineBuilder UseImageBuilder(
            this MarkdownPipelineBuilder pipeline,
            ImageOptions? imageOptions = null)
        {
            OrderedList<IMarkdownExtension> extensions = pipeline.Extensions;

            if (!extensions.Contains<ImageExtension>())
            {
                extensions.Add(new ImageExtension(imageOptions));
            }

            return pipeline;
        }
    }

    public class ImageExtension(ImageOptions? options) : IMarkdownExtension
    {
        public void Setup(MarkdownPipelineBuilder pipeline)
        {
            // Not needed
        }

        // 'Setup()' method adapted from:
        // github.com/xoofx/markdig/blob/master/src/Markdig/Extensions/MediaLinks/MediaLinkExtension.cs
        public void Setup(MarkdownPipeline pipeline, IMarkdownRenderer renderer)
        {
            if (renderer is HtmlRenderer htmlRenderer)
            {
                LinkInlineRenderer? inlineRenderer = htmlRenderer.ObjectRenderers.FindExact<LinkInlineRenderer>();

                if (inlineRenderer != null)
                {
                    inlineRenderer.TryWriters.Remove(TryLinkInlineRenderer);
                    inlineRenderer.TryWriters.Add(TryLinkInlineRenderer);
                }
            }
        }

        // `TryLinkInlineRenderer()` method adapted from the method with the
        // same name in the C# class file for the Markdig media link extension:
        // github.com/xoofx/markdig/blob/master/src/Markdig/Extensions/MediaLinks/MediaLinkExtension.cs
        private bool TryLinkInlineRenderer(HtmlRenderer renderer, LinkInline linkInline)
        {
            // If the link is `null`, then return
            if (linkInline.Url is null) { return false; }

            // If the link is an absolute path and the option of opening
            // absolute paths in a new window is set to `true`, then append
            // the `target` and `rel` attributes.
            bool openInNewWindow = options?.OpenExternalLinksInNewTab ?? false;
            if (linkInline.Url.StartsWith("http") && openInNewWindow)
            {
                HtmlAttributes attributes = linkInline.TryGetAttributes() ?? new HtmlAttributes();
                attributes.AddPropertyIfNotExist("target", "_blank");
                // https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel
                attributes.AddPropertyIfNotExist("rel", "external nofollow");
                linkInline.SetAttributes(attributes);
                return false;
            }

            // If the link is for an image, then append the blob path
            // to the `Url` property. Example:
            // ![Alt text](hero.jpg "Title")
            // ![Alt text](https://127.0.0.1:10000/devstoreaccount1/images/hero.jpg "Title")
            if (linkInline.IsImage)
            {
                // If the blob path is empty or null, then return
                if (string.IsNullOrWhiteSpace(options?.BlobPath)) { return false; }

                // Assign the modified link to the 'Url' property
                linkInline.Url = HtmlHelper.Unescape($"{options?.BlobPath}/{linkInline.Url}");
            }

            return false;
        }
    }
}
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Jinjinov's
  • User mentioned (0): @Jinjinov
Posted by: Dave B

79527992

Date: 2025-03-22 19:29:38
Score: 1.5
Natty:
Report link

For me use the appearance: none; should do the trick but you have to accept the "ugly" form features

select {
  appearance: none;
  width: 100%;
  height: 100%;
}

Based on developer.mozilla.org

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

79527983

Date: 2025-03-22 19:25:37
Score: 1.5
Natty:
Report link

The issue is missing RLS policy for select, the delete operation could only delete the rows visible through select. see the docs

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

79527971

Date: 2025-03-22 19:15:36
Score: 0.5
Natty:
Report link

Using the upcoming Temporal API (or a polyfill):

const legacyDate = new Date()
const timeZoneId = 'Asia/Tokyo'
const zonedDateTime = legacyDate.toTemporalInstant().toZonedDateTimeISO(timeZoneId)
const rfc9557 = zonedDateTime.toString()
// "2025-03-23T04:02:09.087+09:00[Asia/Tokyo]"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alexandre Dieulot

79527969

Date: 2025-03-22 19:14:35
Score: 2
Natty:
Report link

docker ps

Full container IDs
docker ps --no-trunc

Latest documentation here

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

79527957

Date: 2025-03-22 19:04:33
Score: 2.5
Natty:
Report link

I had a similar error because of a mismatch between my PostgreSQL driver and my EF dependencies. Everything has to match.

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

79527956

Date: 2025-03-22 19:04:33
Score: 1.5
Natty:
Report link

Your ChromeDriver is outdated and incompatible with Chrome 134. Update ChromeDriver to match your browser version.

Fix:

  1. Download the latest ChromeDriver: https://sites.google.com/chromium.org/driver/

  2. Replace the old ChromeDriver in your project.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Adel Alaa

79527955

Date: 2025-03-22 19:03:33
Score: 0.5
Natty:
Report link

EventBridge rules won’t fire when a Lambda times out on an async invocation because async Lambda invocations don’t emit detailed failure events like TimeoutError to EventBridge.

Instead of trying to detect the timeout externally, wrap your Lambda call in a Step Function.

  1. Start Execution of the state machine

  2. The first state is "Invoke Executor"

    • It calls the LambdaExecutor function

    • It has timeout of 850/870 seconds. This timeout is a safe buffer as 900 secs might not cleanly fail.

  3. If LambdaExecutor completes successfully the workflow ends successfully

  4. If LambdaExecutor fails or times out

    • The execution transitions to "Fallback Lambda"

    • This function handles error cases like cleanup, alerting or retry logic.

  5. Once Fallback Lambda finishes the workflow ends (with a failure or handled outcome)

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

79527946

Date: 2025-03-22 19:00:32
Score: 5
Natty: 6.5
Report link

Had the same question. Came across this documentation - https://docs.aws.amazon.com/AmazonS3/latest/API/s3_example_s3_Scenario_UploadStream_section.html

Reasons:
  • Blacklisted phrase (1): this document
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: agentwarn

79527942

Date: 2025-03-22 18:57:31
Score: 1.5
Natty:
Report link

Use editOptionUsing method. you have defined an editOptionForm, but there's no corresponding editOptionUsing method to handle updating both the Contact and the User

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Arif Hassan

79527936

Date: 2025-03-22 18:52:30
Score: 3
Natty:
Report link

You can not find these options that is because as of now phi-4-multimodel-instruct does not support tool calling. See Details See Picture

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

79527931

Date: 2025-03-22 18:49:29
Score: 1
Natty:
Report link

Keep-Alive, and thus Session is your friend as mentioned by Mark.

Though, check the server HTTP response headers, if it is sending back Connection: close it may ignore the client keep-alive regardless. In which case, catching the exception and retrying may be the best approach.

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

79527922

Date: 2025-03-22 18:41:27
Score: 4.5
Natty:
Report link

After discussing this in the comments, I realized that Rider’s debugger naturally steps into external code if you keep stepping past the end of your method. The way to avoid this is to just continue execution (F5). Thanks to @derHugo for the insight!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @derHugo
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: alterego

79527913

Date: 2025-03-22 18:33:25
Score: 4
Natty:
Report link

its happening to me too and its running but i cannot access the camera

Reasons:
  • Blacklisted phrase (0.5): i cannot
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kal Xander

79527907

Date: 2025-03-22 18:31:24
Score: 7.5 🚩
Natty: 5.5
Report link

In my case, I use auto-py-to-exe to convert the py to exe. On my PC, it runs in 3 seconds, but on my girlfriend's PC, it takes more than 20. I have the exe shared over the network. Now, I put the .exe, the database, and the icons on a Raspberry Pi, also shared over the network, and the execution times are also high (more than 20 seconds). I asked chatgpt what could be done to improve the times, and this is what happened to me.

# In the auto-py-to-exe interface:

- [X] Console Window: "Based on TCL"

- [X] Additional Files: Only those strictly necessary

- [X] Advanced > --exclude-module:

"matplotlib, numpy, pandas, scipy, sqlalchemy, PyQt5"

- [X] Compression: Use UPX (download from https://upx.github.io/)

Some me. Could you please tell me if I need to change anything else or try something else? Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): what could be
  • RegEx Blacklisted phrase (2.5): Could you please tell me
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Tute

79527880

Date: 2025-03-22 18:07:19
Score: 4
Natty:
Report link

I have the same problem or 3 hours figuring how fix it .. the solution was about web_accessible_resources and also after editing we must reload the extension from the extension page.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
Posted by: Mostafa

79527870

Date: 2025-03-22 17:59:16
Score: 6.5 🚩
Natty:
Report link

did you fix the error. I ran into the same error messages you had and i don't know what i can do anymore.

Reasons:
  • RegEx Blacklisted phrase (3): did you fix the
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you fix the
  • Low reputation (1):
Posted by: Henrik

79527854

Date: 2025-03-22 17:49:14
Score: 1
Natty:
Report link

Function to guess the MIME-type of the string data (from php-gears lib):

public static function guessMime(string $string): ?string
{
    return (new finfo(FILEINFO_MIME_TYPE))->buffer($string) ?? null;
}

Eventually, the MIME-type of base64 encoded string:

guessMime(base64_decode($data));

or PPT/DOCX file:

mime_content_type("/foo/bar.docx");
Reasons:
  • Contains signature (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Cosmologist

79527852

Date: 2025-03-22 17:49:14
Score: 0.5
Natty:
Report link

The new way with Next.js 15+ would be to use the router in "next/navigation" when calling from the client side ('use client') like this:

For the import:

import { useRouter } from 'next/navigation';

In your React component:

  const router = useRouter();
  router.replace(...);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Flo

79527848

Date: 2025-03-22 17:46:14
Score: 0.5
Natty:
Report link

It's possible that you've got data mixed between SSTables. Do you have read repairs enabled or potentially mix your writes by issuing updates? If so, you may have timestamp overlaps in your SSTables which will cause Cassandra to block dropping expired tables. You can check if this is the case with sstableexpiredblockers.

https://cassandra.apache.org/doc/stable/cassandra/tools/sstable/sstableexpiredblockers.html

You can also directly check for overlap between your SSTables by comparing the min and max timestamps. Check this post from The Last Pickle that uses sstablemetadata.

https://thelastpickle.com/blog/2016/12/08/TWCS-part1.html

As mentioned by Andrew, you can have Cassandra ignore the overlap by setting unsafe_aggressive_sstable_expiration which will delete old tables once they expire. I've found this very helpful for managing TWCS tables, but it can cause deleted data to reappear, so make sure you fully understand it before enabling.

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

79527842

Date: 2025-03-22 17:44:13
Score: 3
Natty:
Report link

try add to

from sklearn.cluster import AgglomerativeClustering

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Michele Costa

79527838

Date: 2025-03-22 17:41:12
Score: 1.5
Natty:
Report link

Here's an updated version of your resume with improved formatting and content. You can adjust it as necessary to fit your latest experiences or achievements:

---

**SAMUEL TIGABU**

**CONTACT**

Bole, Addis Ababa, Ethiopia

+251912420115

[email protected]

---

**OBJECTIVE**

To work in an environment that encourages professional growth, allowing me to utilize my skills and knowledge effectively.

---

**EXPERIENCE**

**Commercial Bank of Ethiopia**

*Administration and Logistics Officer*

*2016 - Present*

- Managed procurement of goods and transportation services, ensuring efficient tracking and secure operations.

- Supervised logistics functions and coordinated operational activities.

- Oversaw functional areas within logistics, enhancing productivity and efficiency.

- Held various positions such as Associate Procurement Officer, Branch Control Officer, Customer Service Representative, Branch Banking Officer, and Banking Operation Officer since 2016.

---

**EDUCATION**

**Jimma University**

*Masters in Business Administration*

*2019 - 2021*

GPA: 3.16

**Rift Valley University**

*B.A. in Business Management*

*2011 - 2013*

GPA: 2.96

**Mettu Teachers College**

*Diploma in Mathematics and Physical Science*

*2005 - 2008*

GPA: 2.86

---

**SKILLS**

- Procurement Management

- Logistics and Documentation Management

- Contract Management

- Teamwork and Collaboration

- Customer Service & Problem-Solving

- Time Management & Attention to Detail

- Excellent Communication & Critical Thinking

- Decision Making

---

**INTERESTS**

- Reading spiritual books (Bible, Psychology)

- Actively participating in social activities

---

**REFERENCES**

**Daniel Koran**

Director, Commercial Bank of Ethiopia

[email protected]

+2519111517970

---

Feel free to customize any sections or add any new experiences or achievements!

Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: SAMUEL TIGABU

79527832

Date: 2025-03-22 17:38:12
Score: 2.5
Natty:
Report link

caniuse Safari and iOS does not support webp format

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

79527824

Date: 2025-03-22 17:34:11
Score: 1
Natty:
Report link

I have the still same issue until do this: I fixed by removing builds manually instead of Visual Studio, then I rebuild.

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Eski Ejder

79527823

Date: 2025-03-22 17:34:11
Score: 2
Natty:
Report link

Sat, 22 Mar 2025 16:54:48 GMT

ZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IS_IS`ZSaZSbZScISdSSeMSRandroid.widget.FrameLayoutSI��bSR(id/status_bar_launch_animation_containerSFSRSIS I8S IS IlS I8S IlSISZSZSI����SMSR'android.widget.FrameLayout$LayoutParamsSI_+SI����SI����SfISgIShISiISjI�SkI�SSISISISISIS IS!IS"IS#IS$I�S%I�S&IS'IS(I8S)IlS*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FDS4FBXS5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IS_IS`ZSaZSbZScISdSSlZSmISnISoISpISSqMSRandroid.widget.FrameLayoutSI�SRid/status_bar_containerSFSRSIS I8S IS IlS I8S IlSISZSZSI����SMSR'android.widget.FrameLayout$LayoutParamsSI��!SI����SI����SfISgIShISiISjI�SkI�SSISISISISIS IS!IS"IS#IS$I�S%I�S&IS'IS(IA8S)IlS*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FDS4FBXS5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IS_IS`ZSaZSbZScISdSSeMSR9com.android.systemui.statusbar.phone.HwPhoneStatusBarViewSI��SR id/status_barSF?�SRSIS I8S IS IlS I8S IlSISZSZSI����SMSR'android.widget.FrameLayout$LayoutParamsSI��SI����SIlSfISgIShISiISjI�SkI�SSISISISISIS IS!IS"IS#IS$I�S%I�S&IS'IS(IA8S)IlS*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FDS4FBXS5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IS_IS`ZSaZSbZScISdSSeMSRandroid.widget.ImageViewSI�J]SRid/notification_lights_outSFSRSIS IS IS IS IS ISISZSZSI����SMSR'android.widget.FrameLayout$LayoutParamsSI�/�SIBSI����SfISgIShISiISjI�SkI�SSISISI SISIS IS!IS"I S#IS$I S%I�S&IS'IS(IS)IS*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FS4FS5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^ISI����SSqMSR2com.android.systemui.statusbar.HwStatusbarContentsSI��$SRid/status_bar_contentsSFSRSIS I8S IS IlS I8S IlSISZSZSI����SMSR'android.widget.FrameLayout$LayoutParamsSI 2�SI����SI����SfISgIShISiISjI�SkI�SSISISIHSIHSIS IS!IHS"IHS#IS$I�S%I�S&IS'IS(IA8S)IlS*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FDS4FBXS5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IS_IS`ZSaZSbZScISdSSeMSR3com.android.systemui.statusbar.HeadsUpStatusBarViewSI �SRid/heads_up_status_bar_viewSFSRSIS IS IS IS IS ISISZSZSI����SMSR(android.widget.LinearLayout$LayoutParamsSI?��SI����SI����SfISgIShISiISjI�SkI�SrFSsI����SSISISIZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IS_IS`ZSaZSbZScISdSSeMSRandroid.widget.SpaceSI[hSRid/icon_placeholderSFSRSIS IS IS IS IS ISISZSZSI����SMSR(android.widget.LinearLayout$LayoutParamsSI��*SI3SI3SfISgIShISiISjI�SkI�SrFSsISSISISISISIS IS!IS"IS#IS$I�S%I�S&IS'IS(IS)IS*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FS4FS5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^ISSqMSRandroid.widget.TextViewSIU*�SRid/textSFSRSIS IS IS IS IS ISISZSZSI����SMSR(android.widget.LinearLayout$LayoutParamsSI�p�SI����SI����SfISgIShISiISjI�SkI�SrF?�SsISSISISISISIS IS!IS"IS#IS$IS%I�S&IS'IS(IS)IS*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FS4FS5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IStRMARQUEESuFA�SvFA%UUSwISxI����SyI����SzI����S{I�3SS|ZS}I����S~ISIS�I�3S�IS�IS�ZSSqMSR6com.hihonor.uikit.phone.hwimageview.widget.HwImageViewSI�:dSRid/colorring_startSFSRSIS IS IS IS IS ISISZSZSI����SMSR(android.widget.LinearLayout$LayoutParamsSI���SI����SI����SfISgIShISiISjI�SkI�SrFSsISSISISISISIS IS!IS"IS#IS$I�S%IS&IS'IS(IS)IS*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FS4FS5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^ISI����SS�MSR:com.android.systemui.operatorname.HwOperatorNameParentViewSI��SRid/operator_name_containerSF?�SRSIHS I�S I+S IPS I^S I%SISZSZSI����SMSR(android.widget.LinearLayout$LayoutParamsSIH��SI����SI����SfISgIShISiISjI�SkI�SrFSsISSISISISISIS IS!IS"IS#IS$I�S%I�S&IS'IS(I^S)I%S*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FB<�S4FA�S5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IS_IS`ZSaZSbZScISdSSeMSRandroid.widget.LinearLayoutSI=��SR)id/msim_status_bar_operators_card_vsim_idSFSRSIS IS IS I1S IS I1SISZSZSI����SMSR(android.widget.LinearLayout$LayoutParamsSI��SI����SI����SfISgIShISiISjI�SkI�SrFSsI����SSISISISISIS IS!IS"IS#IS$I�S%I�S&IS'IS(IS)I1S*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FS4FA�S5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IS_IS`ZSaZSbZScISdSSeMSR4com.android.systemui.tint.HwHorizontalScrollTextViewSI���SRid/operator_nameSFSRSIS IS IS I1S IS I1SISZSZSI����SMSR(android.widget.LinearLayout$LayoutParamsSI Xn�SI����SI����SfISgIShISiISjI�SkI�SrFSsI����SSISISISISIS IS!IS"IS#IS$IS%I�S&IS'IS(IS)I1S*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FS4FA�S5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI���sS�RforcedSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IStRSuFA�SvFASwISxI����SyI����SzI����S{ISS|ZS}I����S~ISIS�I�S�IS�IS�ZSSqMSRandroid.widget.LinearLayoutSI>�SR(id/msim_status_bar_operators_card_one_idSFSRSIS I^S IS I%S I^S I%SISZSZSI����SMSR(android.widget.LinearLayout$LayoutParamsSId�SI����SI����SfISgIShISiISjI�SkI�SrFSsI����SSISISISISIS IS!IS"IS#IS$I�S%I�S&IS'IS(I^S)I%S*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FB<�S4FA�S5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IS_IS`ZSaZSbZScISdSSeMSR4com.android.systemui.tint.HwHorizontalScrollTextViewSI0Z�SRid/operator_nameSFSRSIS I^S IS I%S I^S I%SISZSZSISMSR(android.widget.LinearLayout$LayoutParamsSI P�SI����SI����SfISgIShISiISjI�SkI�SrFSsI����SSISISISISIS IS!IS"IS#IS$IS%I�S&IS'IS(I^S)I%S*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FB<�S4FA�S5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI���sS�RforcedSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IStRSuFA�SvFASwISxI����SyI����SzI����S{ISS|ZS}I����S~ISIS�I�S�I^S�I^S�ZSS�MSRandroid.widget.LinearLayoutSI z;=SR(id/msim_status_bar_operators_card_two_idSFSRSIS IS I?S I?S IS ISISZSZSI����SMSR(android.widget.LinearLayout$LayoutParamsSIE�2SI����SI����SfISgIShISiISjI�SkI�SrFSsI����SSISISISISIS IS!IS"IS#IS$I�S%I�S&IS'IS(IS)IS*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FS4FS5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IS_IS`ZSaZSbZScISdSSeMSR4com.android.systemui.tint.HwHorizontalScrollTextViewSI��SRid/operator_nameSFSRSIS IS IS IS IS ISISZSZSI����SMSR(android.widget.LinearLayout$LayoutParamsSITN9SI����SI����SfISgIShISiISjI�SkI�SrFSsI����SSISISISISIS IS!IS"IS#IS$IS%I�S&IS'IS(IS)IS*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FS4FS5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI���sS�RforcedSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IStRSuFA�SvFASwISxI����SyI����SzI����S{ISS|ZS}I����S~ISIS�I�S�IS�IS�ZSS�MSRandroid.widget.LinearLayoutSI -�)SRNO_IDSFSRSIS I^S I%S I%S I^S ISISZSZSI����SMSR(android.widget.LinearLayout$LayoutParamsSI �u�SI����SI����SfISgIShISiISjI�SkI�SrFSsI����SSISISISISIS IS!IS"IS#IS$I�S%I�S&IS'IS(I^S)IS*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FB<�S4FS5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IS_IS`ZSaZSbZScISdSSeMSR4com.android.systemui.tint.HwHorizontalScrollTextViewSI"��SRid/operator_nameSFSRSIS IS IS IS IS ISISZSZSI����SMSR(android.widget.LinearLayout$LayoutParamsSI �B�SI����SI����SfISgIShISiISjI�SkI�SrFSsI����SSISISISISIS IS!IS"IS#IS$IS%I�S&IS'IS(IS)IS*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FS4FS5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI���sS�RforcedSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IStRSuFBSvFA@SwISxI����SyI����SzI����S{ISS|ZS}I����S~ISIS�I�S�IS�IS�ZSS|ZS}I����S~ISIS�I�S�I%S�I%S�ZSS�MSR*com.android.systemui.time.HwStatusBarClockSI|(�SRid/clockSF?�SRSI�S IS IS I]S I^S I?SISZSZSI,SMSR(android.widget.LinearLayout$LayoutParamsSI|eSI����SI����SfISgIShISiISjI�SkI�SrFSsI����SSISISISISIS IS!IS"IS#IS$IS%IS&IS'IS(I^S)I?S*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FB<�S4FA�S5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI���sS�RforcedSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IStRENDSuFBSvFA5UUSwISxI����SyI����SzI����S{I�SS�MSR5com.android.systemui.statusbar.HwSystemIconParentViewSI d�GSRid/system_icon_unstableSF?�SRSIS I�S IS I]S I�S I?SISZSZSI����SMSR(android.widget.LinearLayout$LayoutParamsSI�A�SISI����SfISgIShISiISjI�SkI�SrF?�SsI����SSISISISISIS IS!IS"IS#IS$I�S%I�S&IS'IS(I@�S)I@?S*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FB�S4FA�S5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IS_IS`ZSaZSbZScISdSSeMSR0com.android.systemui.statusbar.HwSystemIconsMoreSIk�OSRid/statusIcons_moreSF?�SRSIS IS IS I?S IS I?SISZSZSI����SMSR(android.widget.LinearLayout$LayoutParamsSI �m�SI����SI����SfISgIShISiISjI�SkI�SrFSsI����SSISISISISIS IS!IS"IS#IS$I�S%I�S&IS'IS(IS)I@?S*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FS4FA�S5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IS_IS`ZSaZSbZScISdSS|ZS}I����S~ISIS�I�S�IS�IS�ZSSqMSR1com.android.systemui.statusbar.HnNetWorkIconsMoreSI ���SRid/network_area_moreSF?�SRSIS IS IS I?S IS I?SISZSZSI����SMSR(android.widget.LinearLayout$LayoutParamsSI �0SI����SI����SfISgIShISiISjI�SkI�SrFSsI����SSISISISISIS IS!IS"IS#IS$I�S%I�S&IS'IS(IS)I@?S*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FS4FA�S5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IS_IS`ZSaZSbZScISdSS|ZS}I����S~ISIS�I�S�IS�IS�ZSS�MSREcom.android.systemui.statusbar.notification.StatusBarNotificationViewSIE��SRid/notification_icon_areaSFSRSIS I�S IS I?S I�S I?SISZSZSI����SMSR(android.widget.LinearLayout$LayoutParamsSI ���SI����SI����SfISgIShISiISjI�SkI�SrFSsI����SSISISISISIS IS!IS"IS#IS$I�S%I�S&IS'IS(I@�S)I?S*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FB�S4FA�S5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IS_IS`ZSaZSbZScISdSSeMSR/com.android.keyguard.AlphaOptimizedLinearLayoutSI�]aSRid/notification_icon_area_innerSF?�SRSIS I�S IS I?S I�S I?SISZSZSI����SMSR'android.widget.FrameLayout$LayoutParamsSI��eSI����SI����SfISgIShISiISjI�SkI�SSISISISISIS IS!IS"IS#IS$I�S%I�S&IS'IS(I@�S)I?S*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FB�S4FA�S5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IS_IS`ZSaZSbZScISdSSeMSRDcom.android.systemui.statusbar.phone.HwNotificationIconNumParentViewSI�2�SRid/hw_notification_number_areaSFSRSIS IS IS IS IS ISISZSZSI����SMSR(android.widget.LinearLayout$LayoutParamsSIhSI����SI����SfISgIShISiISjI�SkI�SrFSsISSISISISISIS IS!IS"IS#IS$I�S%I�S&IS'IS(IS)IS*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FS4FS5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IS_IS`ZSaZSbZScISdSSeMSR6com.hihonor.uikit.phone.hwimageview.widget.HwImageViewSI,N�SRid/hw_notification_number_bgSFSRSIS IS IS IS IS ISISZSZSI����SMSR'android.widget.FrameLayout$LayoutParamsSI �\�SI����SI����SfISgIShISiISjI�SkI�SSISISISISIS IS!IS"IS#IS$I�S%I�S&IS'IS(IS)IS*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FS4FS5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^ISI����SSqMSRandroid.widget.LinearLayoutSI\��SRNO_IDSFSRSIS IS IS IS IS ISISZSZSI����SMSR'android.widget.FrameLayout$LayoutParamsSI �T`SI����SI����SfISgIShISiISjI�SkI�SSISISISISIS IS!IS"IS#IS$I�S%I�S&IS'IS(IS)IS*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FS4FS5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IS_IS`ZSaZSbZScISdSSeMSR4com.hihonor.uikit.phone.hwtextview.widget.HwTextViewSIHq�SRid/hw_notification_numberSFSRSIS IS IS IS IS ISISZSZSI����SMSR(android.widget.LinearLayout$LayoutParamsSI>O�SI����SI����SfISgIShISiISjI�SkI�SrFSsI����SSISISISISIS IS!IS"IS#IS$I�S%I�S&IS'IS(IS)IS*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FS4FS5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI[o��S�RforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IStRSuFA�SvFASwISxI����SyI����SzI����S{I�3SSqMSR4com.hihonor.uikit.phone.hwtextview.widget.HwTextViewSI �(�SRid/hw_notification_moreSFSRSIS IS IS IS IS ISISZSZSI����SMSR(android.widget.LinearLayout$LayoutParamsSIOxSI����SI����SfISgIShISiISjI�SkI�SrFSsI����SSISISISISIS IS!IS"IS#IS$I�S%I�S&IS'IS(IS)IS*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FS4FS5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI[o��S�RforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IStRSuFA�SvFASwISxI����SyI����SzI����S{I�3SS|ZS}I����S~ISIS�IS�IS�IS�ZSSlZSmISnISoISpISSqMSR@com.android.systemui.statusbar.phone.HwNotificationIconContainerSIq��SRid/notificationIconsSFSRSIS IS IS I?S IS I?SISZSZSI����SMSR(android.widget.LinearLayout$LayoutParamsSI �w�SI����SI����SfISgIShISiISjI�SkI�SrFSsI����SSISISISISIS IS!IS"IS#IS$I�S%I�S&IS'IS(I@S)I?S*FS+FS,FS-FS.FS/FS0FS1F?�S2F?�S3FS4FA�S5RS6ZS7F?�S8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^IS_IS`ZSaZSbZScISdSSS�MSR0com.android.systemui.statusbar.StatusBarIconViewSI _F�SR id/moreIconSFSRSI�S I�S IS I?S I-S I?SISZSZSI����SMSR(android.widget.LinearLayout$LayoutParamsSI ��SI-SI����SfISgIShISiISjI�SkI�SrFSsI����SSISISISISIS IS!IS"IS#IS$I�S%I�S&IS'IS(I-S)I?S*FS+FS,FS-FS.FS/FS0FS1F?L��S2F?L��S3FA�S4FA�S5RS6ZS7FS8F?�S9ZS:IS;ISZS?ZS@ZSAI�SBI�SCZSDZSEISFZSGZSHZSIZSJZSKZSLZSMZSNISOZSPZSQZSRZSSZSTMSR#android.content.res.Resources$ThemeSI6�=bSURforcedSVRforcedSWRforcedSXRforcedSSYISZIS[IS\IS]I����S^ISI����SS|ZS}I��ï

Reasons:
  • Blacklisted phrase (1): ¿
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Erika Rios

79527819

Date: 2025-03-22 17:31:10
Score: 0.5
Natty:
Report link

I've identified the root cause: the ITfMessagePump interface is blocked. Previously, my message loop implementation was referenced from the Windows-classic-samples/winui/tsfpad codebase. Through extensive debugging, I've confirmed this issue stems from an implementation flaw in the TSF ITfMessagePump component.

Currently, my message loop:

bool done = false;
while (!done)
{
    BOOL fResult = 0;
    if (pMessagePump->PeekMessageW(&msg, nullptr, 0, 0, PM_REMOVE, &fResult) != S_OK)
    {
        done = true;
    }

    if (fResult != FALSE)
    {
        continue;
    }

    if (::GetMessageW(&msg, nullptr, 0, 0) <= 0)
    {
        break;
    }
    if (IsImeWantMessage(msg, pKeystrokeMgr)) // use ITfKeystrokeMgr test message is consumed by IME
    {
        continue;
    }

    TranslateMessage(&msg);
    DispatchMessage(&msg);
    if (msg.message == WM_QUIT)
    {
        done = true;
    }
    if (done)
    {
        break;
    }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: jamie

79527818

Date: 2025-03-22 17:27:09
Score: 2
Natty:
Report link

doing it that way would expose ur backend. if u doing something like this anyways.

const echo = new Echo({ broadcaster: 'pusher', key: 'your-pusher-key', cluster: 'your-cluster', encrypted: true });

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

79527811

Date: 2025-03-22 17:23:08
Score: 3.5
Natty:
Report link

try to check the error logs from your Wordpress or in your Cpanel.

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

79527804

Date: 2025-03-22 17:18:07
Score: 1.5
Natty:
Report link

The less nerve-racking while still efficient, all-screen-dimensions-covering solution for font-sizes is to use calc() to set about 1/3 to 1/2 the size in px and 1/2 to 2/3 in vw so that the px value is met for a screen width of 1920px. Like this : "font-size:calc(16px + 1.7333vw)... This works for any REALISTIC window sizes as explained :

Let's say you take all 4 corners of your screen or points near them, and you stretch a window starting at or near the upper-left corner up to each of these 4 points :

STRETCHED UP TO SOMEWHERE AT UPPER LEFT (but further down and to the right of the window's upper-left offset) : This is very tight, but corresponds in ratio to a landscape oriented phone : its width being considerably smaller than a desktop's display, your font-size will take about 55% of the size it would have on a full 1920x1080 HD Display, with phone's height being roughly 1/3 to 1/2 that of a desktop (talking about view-port here, not screen). That's slightly bigger fonts in % of the screen's height but should still meet your needs provided you design surrounding elements adequately and thoughtfully. (you may always downsize the px part of the size and upscale the vw portion)

STRETCHED UP TO SOMEWHERE AT LOWER LEFT (but a bit to right of the window's left offset) : This is portrait-oriented phone display. The small width will considerably shrink your font-size for it.

STRETCHED UP TO LOWER RIGHT : This is desktop and tablet display if you resize it with the same ratio but smaller. These devices having quite some height, you don't have to worry about the measurement being based on view-port's width rather than its height.

STRETCHED UP TO UPPER RIGHT : There is no way anyone will ever resize a window like this, (3x as wide as high kinda thing) unless things get really quirky for some reason (probably less than 1 in 10million visitors will come in such a deviant state -> Know the guy that surfs the web sporting 1800 x 450? Lucky you!) The font-size would likely take too much height due to minimal view-port height and the measurement having its width for basis, and not a fancy-ass mixture of vh and vw, css media dimension ranges, using the clamp function or even worse, impossible-algebra-based calc functions mixing the 4 most-basic arithmetic operations like I've once genuinely found labeled as a 'resource' : LMAO... Basically we got our rightful reason for only using vw here : the only case where it's ineffective is non-existent in pure matter of practice.

See the "Creative11" at the home page of https://handsearseyes.fun/ (this is merely 50% px 50% vw, and fit my needs for a page with plenty of space on it...

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

79527802

Date: 2025-03-22 17:18:07
Score: 1.5
Natty:
Report link

@Shadman Adman - This is what I've understood from your comment but clearly it's wrong (it now crashes my app). The issue seems to be with previewView. I'm just not understanding how it's passed to the composable. To save time you could just edit this answer to point out what I'm doing wrong.

class MainActivity : ComponentActivity() {

    private lateinit var controller: LifecycleCameraController

    var previewView = null // is this correct?

    setContent {
      CameraApp1Theme {

        // ignore all this - just putting it here as the variables are referenced
        val resolutionSelector = ResolutionSelector.Builder()
              .setResolutionStrategy(HIGHEST_AVAILABLE_STRATEGY)
               .setAspectRatioStrategy(AspectRatioStrategy.RATIO_4_3_FALLBACK_AUTO_STRATEGY)
              .build()

        controller = remember {
           LifecycleCameraController(applicationContext).apply {
              setEnabledUseCases(CameraController.IMAGE_CAPTURE)
              setImageCaptureMode(CAPTURE_MODE_MAXIMIZE_QUALITY)
                            setImageCaptureResolutionSelector(resolutionSelector)
           }
         }
         // ignore all this - just putting it here as the variables are referenced


         CameraPreview(
            controller = controller,
            previewView = PreviewView, // should I be passing PreviewView or previewView?
            handleTouch = handleTouch,
            modifier = Modifier
               .align(Alignment.Center)
               .size(pwidth.dp, pheight.dp)
          )
       }
     }
}
@Composable
fun CameraPreview(
    controller: LifecycleCameraController,
    previewView: PreviewView, // are these both correct?
    handleTouch: View.OnTouchListener, // are these both correct?
    modifier: Modifier = Modifier
) {
    val lifecycleOwner = LocalLifecycleOwner.current
    val screenSize = Size(9, 12)
    val resolutionSelector = ResolutionSelector.Builder()
        .setResolutionStrategy(ResolutionStrategy(screenSize, FALLBACK_RULE_CLOSEST_LOWER_THEN_HIGHER))
        .setAspectRatioStrategy(RATIO_4_3_FALLBACK_AUTO_STRATEGY)
        .build()

    AndroidView(
        factory = {
            PreviewView(it).apply {
                this.controller = controller
                controller.bindToLifecycle(lifecycleOwner)
                controller.previewResolutionSelector = resolutionSelector
            }
        },
        modifier = modifier
    )

    previewView.setOnTouchListener(handleTouch) // here?
}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Shadman
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: garrettlynchirl

79527800

Date: 2025-03-22 17:17:07
Score: 7 🚩
Natty:
Report link

Can you provide your code when handle FetchDashboard() event and your DashboardState? When you provide the state and logic, we can better understand why your BlocBuilder is not rebuilding. There might be an issue with how the state is emitted or how equality is handled in your DashboardState. Please share your implementation so we can assist you more effectively.

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you provide your code
  • RegEx Blacklisted phrase (2.5): Please share your
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Bình Nguyễn Bá

79527791

Date: 2025-03-22 17:10:05
Score: 1.5
Natty:
Report link

I finally figured out the approach.

  1. So first you have to make a SUBDOMAIN for your website and add it to Firebase hosting. It will show you the steps to add it to your domain DNS records. You can have it like auth.domain.com
    You don't need to host your site there. Mine was being hosted on some other platform too. It's just to host the auth screen I guess.

  2. Then you have to go to google cloud console -> google auth platform -> client ID

    enter image description here

  3. Then in the authorised JavaScript origins enter your domain and subdomain

  4. In the Authorised redirect URIs enter auth.domain.com/__/auth/handler with HTTPS
    Here auth is the subdomain that I chose, you can choose any.

  5. Then in your website in the env variable for FIREBASE_AUTH_DOMAIN enter auth.domain.com

  6. Add your website info in Branding section. Thats what will appear on the login screen.

Idk why all this is not mentioned in the docs anywhere. Maybe its mentioned but very hard to find. Hopefully it helps someone. Note: I am using sign in with popup. Not sure if it works the same way with redirect.

Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Sam

79527790

Date: 2025-03-22 17:09:05
Score: 2.5
Natty:
Report link

I faced the same issue where everything was working smoothly at first. However, once I allowed usernames, the problem started occurring.

Cause of the Issue: When allowing usernames in Clerk, the sign-up process expects a username to be provided. If it's missing, Clerk marks the user creation as incomplete, resulting in the following error:

{ "status": "missing_requirements", "missingFields": ["username"] }

if you are not using it turn it offenter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • No code block (0.5):
  • Low reputation (1):
Posted by: JAM

79527782

Date: 2025-03-22 17:04:04
Score: 1.5
Natty:
Report link

The easiest way is the following

  1. Format your data as table ( Table name as MY_TEXT)

  2. Insert a pivot table and select country as row and region as column

  3. Right click the table ( from the field list - "Pivottable fields") and add measure.

  4. Create a new DAX formula CONCATENATEX(MY_TEXT,MY_TEXT[MyText])

  5. Add the above measure in the value.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: CA Thirunarayanan Srinivasan

79527779

Date: 2025-03-22 17:01:03
Score: 1
Natty:
Report link

I just added version information manually into pom file and fixed.

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-thymeleaf</artifactId>
        <version>3.4.4</version>
    </dependency>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hide

79527766

Date: 2025-03-22 16:54:02
Score: 3
Natty:
Report link

Arby’s roast beef menu includes Classic Roast Beef, Beef ‘n Cheddar, French Dip & Swiss, and Smokehouse Brisket. Check arbys.com for details

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

79527762

Date: 2025-03-22 16:51:01
Score: 3.5
Natty:
Report link

you can try

import 'package:retrofit/retrofit.dart' instead of import 'package:retrofit/http.dart';

ref: https://github.com/trevorwang/retrofit.dart/issues/722#issuecomment-2511423771

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Duc Canh Bui

79527759

Date: 2025-03-22 16:47:00
Score: 4.5
Natty:
Report link

Somebody?? HELP! I really need this help.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Junior Silva

79527737

Date: 2025-03-22 16:33:57
Score: 2.5
Natty:
Report link

Maybe https://curlconverter.com/ can help you.

I see you're new here (me too!), and I humbly suggest you to Google stuff before posting a question here :)

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: can-ishk

79527723

Date: 2025-03-22 16:19:55
Score: 2
Natty:
Report link

You can use the tyckr platform and API (www.tyckr.io) to send push messages via http request to Android smartwatches or phones. It’s very simple.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Martin

79527722

Date: 2025-03-22 16:17:55
Score: 1.5
Natty:
Report link

This is probably because you are not connected to the Cloud Functions emulator.

You should be able to use the blocking function by running the following code (I did):

import { getApp } from "firebase/app";
import { getFunctions, connectFunctionsEmulator } from "firebase/functions";

const functions = getFunctions(getApp());
connectFunctionsEmulator(functions, "127.0.0.1", 5001);

cf) https://firebase.google.com/docs/emulator-suite/connect_functions#instrument_your_app_to_talk_to_the_emulators

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: あいうえお

79527719

Date: 2025-03-22 16:15:54
Score: 3
Natty:
Report link

Could you fix the issue, I guess in a table you can’t same column name twice, you have to add a increment number each no name column.

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

79527714

Date: 2025-03-22 16:13:54
Score: 1
Natty:
Report link

I had a similar error when installing the old version of nodejs 0.12.2. I need this version to work with the old version of WebOS 3.4 installed on my TV Before that, I already had nodejs versions 23.10.0 and 16.20.2 installed I downloaded the node-v0.12.2 Win-x64.msi installer from here https://nodejs.org/en/blog/release/v0.12.2 and installed it in the default folder (let's say it was the C:\nvm4w\nodejs_0.12.2 folder. It doesn't matter now) After installation, the following files were in the folder: Installed Nodejs 0.12.2 files I checked, the nodejs version 0.12.2 was not listed anywhere. I searched and found that versions 23.10.0 and 16.20.2 are present in the folders of the same name C:\Users\KS\AppData\Local\nvm. By analogy, I created a folder v0.12.2 and dropped the contents obtained during the installation of node-v0.12.2 Win-x64.msi into it The result was as follows: Folder with all installed versions of Nodejs When unsuccessfully attempting to install Nodejs 0.12.2 with the command nvm install 0.12.2 the file npm-v2.7.4.zip was downloaded to the folder C:\Users\KS\AppData\Local\Temp\nvm-install-3885601035\temp But for some reason the installer was looking for this file in the folder C:\Users\KS\AppData\Local\Temp\nvm-npm-2168612958. There was such a folder, but it was empty Error "Cannot find the npm file" I took the file npm-v2.7.4.zip, unpacked it into a separate folder and ran the command nvm use 0.12.2 (this is mandatory!) In the folder C:\nvm4w\nodejs (the appearance of which changes depending on the version of nodejs used) I created the node_modules folder, in it I created the npm folder, and in it (that is, in the folder C:\nvm4w\nodejs\node_modules\npm) I put all the contents of the npm-v2.7.4.zip archive Now, when using Nodejs version 0.12.2, everything is the same as when using Nodejs version 16.20.2 and 23.10.0 Installed Nodejs versions Accordingly, the command is executed For Nodejs 0.12.2 npm 2.74 is used

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

79527710

Date: 2025-03-22 16:10:53
Score: 2.5
Natty:
Report link

Just discovered this amazing website for book lovers—zelluloza.ru! It's a treasure trove for anyone who enjoys reading. Highly recommend checking it out if you're looking for your next great read!

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

79527709

Date: 2025-03-22 16:10:53
Score: 0.5
Natty:
Report link

When you are using flex-wrap: wrap you are telling the container that it can wrap its elements for as long at it wants regardless of the container height. The container can not hold more than 2 of the blocks you have created so it will always overflow since it can't decide on if it wraps or shrinks.

You can allow the child to shrink and grow by using flex-grow or flex-shrink on the child.

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When you are
  • Low reputation (0.5):
Posted by: Kasper

79527699

Date: 2025-03-22 16:05:52
Score: 1
Natty:
Report link

Your current implementation has a few issues:

Syntax Error in map: The function inside .map() is not correctly structured. You need to use {} for a block and return the result explicitly.

Incorrectly Accessing certImage: The certImage property is already part of each object, so you don’t need to wrap it inside {} like const image = {objectArray.certImage};. Instead, just use const image = objectArray.certImage;.

Handling await in .map(): Since you're using await inside .map(), you should use Promise.all() to handle asynchronous operations properly.

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

79527695

Date: 2025-03-22 16:04:51
Score: 1
Natty:
Report link

StackOverflow deletes duplicate answers even on a different question, so go there for my answer to this question.

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Cees Timmerman

79527694

Date: 2025-03-22 16:03:51
Score: 1
Natty:
Report link

A big thanks to @ Marc Gravell for his example. I was using a ConcurrentQueue<T> for cross-thread access between my library and Forms project.

Before seeing Marc's example, I was using a Timer to 'dequeue the queue' on the GUI thread. So following the example, I made a CustomConcurrentQueue<T> for thread safety. The CustomConcurrentQueue<T> also triggers an event when a new message is added to the Queue. The example below uses the event to add text to a textbox.

/// <summary>
/// Courtesy of Marc Gravell https://stackoverflow.com/questions/531438/c-triggering-an-event-when-an-object-is-added-to-a-queue
/// Allows event handling to notify if an object of type T has been enqueued or dequeued
/// </summary>
/// <typeparam name="T"></typeparam>
public class CustomConcurrentQueue<T>
{
    private readonly ConcurrentQueue<T> queue = new ConcurrentQueue<T>();

    public event EventHandler Changed;

    public event EventHandler Enqueued;

    protected virtual void OnChanged()
    {
        if (Changed != null) Changed(this, EventArgs.Empty);
    }

    protected virtual void OnEnqueued()
    {
        if (Enqueued != null) Enqueued(this, EventArgs.Empty);
    }

    public virtual void Enqueue(T item)
    {
        queue.Enqueue(item);
        OnChanged();
        OnEnqueued();
    }
    public int Count { get { return queue.Count; } }

    public virtual bool TryDequeue(out T item)
    {
        if (queue.TryDequeue(out item))
        {
            OnChanged();
            return true;
        }

        return false;
    }
}

With an example of how I used it in a Form:


public CustomConcurrentQueue<string> MyMessages { get; set; }

MyMessages = new CustomConcurrentQueue<string>();

MyMessages.Enqueued += new new System.EventHandler(this.OnNewMessages);

//MyMessages.Enqueue("Hello World!");

private void OnNewMessages(object sender, EventArgs e)
{
    if (MyMessages == null) return;

    while (MyMessages.Count > 0)
    {
        var str = "";

        if (MyMessages.TryDequeue(out str))
        {
            //Example: Append 'Hello World!' to the textbox on GUI thread...
            Invoke((Action)(() =>
            {
                //this.textBox1.AppendText(Environment.NewLine + $"{str}");
            }));
        }
    }
}

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Seven7

79527685

Date: 2025-03-22 15:56:50
Score: 1.5
Natty:
Report link

Can you try to change the next version to 15.1.7? I also had internal server errors (not only related to dynamic routes) and downgrading next to 15.1.7 solved the issue

Reasons:
  • Whitelisted phrase (-2): Can you try
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Jakub Cezary Kolando

79527684

Date: 2025-03-22 15:56:50
Score: 0.5
Natty:
Report link

Sadly Microsoft made this unfortunate decision to overwrite cell's ReadOnly property when DataGridView.ReadOnly property is set.

As a workaround you may try to change DataGridView.EditMode property to EditProgrammatically, effectively restricting editing data by user through the UI.

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

79527679

Date: 2025-03-22 15:47:48
Score: 1.5
Natty:
Report link

You can achieve the hover zoom effect in Flutter by using the hover_zoom_image package. This package allows you to easily add a zoom effect when hovering over an image, which can be useful for creating interactive UI elements.

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

79527672

Date: 2025-03-22 15:43:47
Score: 4
Natty:
Report link

I made a cheet sheet Gist for this:

https://gist.github.com/bbartling/8301632b73fd5e0b63e97f686d751350

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: bbartling

79527667

Date: 2025-03-22 15:40:46
Score: 4
Natty:
Report link

I made a cheet sheet Gist for this:

https://gist.github.com/bbartling/8301632b73fd5e0b63e97f686d751350

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: bbartling

79527665

Date: 2025-03-22 15:39:45
Score: 3
Natty:
Report link

Likely not relevant anymore, but in the swagger_client package I downloaded it's named get_activity_by_id rather than getActivityById

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

79527659

Date: 2025-03-22 15:34:44
Score: 2.5
Natty:
Report link

Guys I've finally get it to work... I'm using firebase as I said and probably one of the latest versions that is compatible also with unity 2021.x but not with the gradle that unity 2021.x installs... so download gradle 8.12 and go to 'preferences->external tools' uncheck gradle installed with unity and select the unzipped folder of the new gradle version and it works!

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

79527656

Date: 2025-03-22 15:34:44
Score: 2.5
Natty:
Report link

Looks like some of your browser extensions are messing around. Try in incognito. Most likely it will be because of extensions like Grammerly.

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

79527653

Date: 2025-03-22 15:31:43
Score: 8.5 🚩
Natty: 4
Report link

Nuestra empresa es: www.argoscorp.es

Estamos mirando de enviar una trama de datos por NFC desde un iPhone y Android a una placa PN532. Adjuntamos la trama a enviar.

Sabemos que el UID del NFC de un móvil cambia cada vez por seguridad. A nosotros no nos importa el UID. Necesitamos transmitir esa trama de info.

Hemos leído este artículo:

https://github.com/kormax/apple-enhanced-contactless-polling

Alguien nos podría ayudar?

Gracias

enter image description hereenter image description here

Reasons:
  • Blacklisted phrase (2): ayuda
  • Blacklisted phrase (1): enter image description here
  • Blacklisted phrase (2): Gracias
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Sergio Alcántara

79527638

Date: 2025-03-22 15:13:40
Score: 8 🚩
Natty:
Report link

It’s impossible to understand an error without code, can you show the code please?

Reasons:
  • RegEx Blacklisted phrase (2.5): can you show the code
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30024164

79527634

Date: 2025-03-22 15:09:39
Score: 1.5
Natty:
Report link

If your markdown supports html, you can also try

<p style="margin-left: 30px"> ... </p>
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dimitris

79527633

Date: 2025-03-22 15:08:39
Score: 1
Natty:
Report link

Found the answer:

curl "https://api.github.com/users/<username>/repos?per_page=100" | jq '.[] | select(.has_pages==true) | .name'
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hari Kiran Vusirikala

79527631

Date: 2025-03-22 15:07:38
Score: 1
Natty:
Report link

Well, I'm sorry. I found out the problem. My app was working with uvicorn main:app --reload. I don't know what was the problem, but after starting the app again it worked, even thought, uvicorn watches for files changes.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Daniel Hakobyan

79527629

Date: 2025-03-22 15:06:38
Score: 4.5
Natty:
Report link

Hey it looks like you're facing issues with your bot not recognizing valid addresses and possibly generating incorrect ones. Could you clarify which network you're working with and how you're generating these addresses? Also are you handling memo phrases correctly? Some wallets require specific formatting for memos so that could be causing issues too. A bit more detail on your implementation might help find the root cause.

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you clarify
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Zainab Ansari

79527624

Date: 2025-03-22 15:02:37
Score: 1
Natty:
Report link

I was having the same version (see my comments against the original problem), however, I have just updated to flutter 3.29.2 on the stable version and the crashing problem has gone away for me.

There were a few minor changes I had to make to my app configuration (such as adding .cxx/ to my android/.gitignore), however, this was incidental to the crash being resolved.

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

79527607

Date: 2025-03-22 14:46:34
Score: 2
Natty:
Report link

There is a snippet in the LSR that addresses this:

https://lsr.di.unimi.it/LSR/Item?id=308

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: ksnortum

79527603

Date: 2025-03-22 14:43:33
Score: 1.5
Natty:
Report link

Yet another choice is to use the lcov tool itself to merge reports.

lcov -o mergedReport.info -a firstSegement.info -a secondSegment.info ...

There are a lot of options to munge and display the data in various ways. See the man pages.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Henry Cox

79527597

Date: 2025-03-22 14:38:32
Score: 1.5
Natty:
Report link

IF PowerBIIntegration.Refresh() is not working, follow any two approaches below

  1. create a power automate that will refresh the report by auto trigger.

  2. If the PowerBIIntegration.Refresh() is not working then use timer like options and it will trigger the auto refresh.

    I was facing the same issue I created a power automated flow to fix this issue.

    https://community.fabric.microsoft.com/t5/Service/PowerBIIntegration-Refresh-PowerApp-workaround/m-p/3192799

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

79527582

Date: 2025-03-22 14:25:29
Score: 1.5
Natty:
Report link

MinGW doesn't support freopen_s.

But why don't you use freopen. I think freopen is better.

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

79527579

Date: 2025-03-22 14:21:28
Score: 1
Natty:
Report link

You have to add brackets. Currently you're comparing 0 != a.

Fix:

a = 5
b = -5

if (b > 0) != (a > 0):
  print("Hi")
else:
  print("Bye")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: allesmoegliche

79527575

Date: 2025-03-22 14:18:28
Score: 1
Natty:
Report link

The reason is the cl is default build tool for BOOST, but you maybe not install it.

so I use

bootstrap.bat gcc

because I install gcc in Windows. Then b2.exe will be generated.

go to

./b2.exe 

seccessed.

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

79527573

Date: 2025-03-22 14:18:28
Score: 3
Natty:
Report link

Dim a() As String = {"Test1", "Test2", "Test3"}

ListBox1.Items.AddRange(a)

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ismail Mendoun

79527571

Date: 2025-03-22 14:15:27
Score: 1.5
Natty:
Report link

The script must be executable. You can run chmod +x script.js, then commit and push it to git.

Now try creating the project from template it should work.

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

79527566

Date: 2025-03-22 14:13:27
Score: 0.5
Natty:
Report link

you can define the default value of that parameter to be null, so that then you can check if that parameter is == null, so with your example it would be

  class Program
        {
            static void Main(string[] args)
            {
               var c= cc(5);
            }
            public static int cc(int a, int? b = null)
            {
              int c=0;
            if(b is not null)
            {
              c = a * b;
            }
            else
            {
              c =a*a;    
              return c;
            }
        }
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Folvin

79527564

Date: 2025-03-22 14:12:27
Score: 2.5
Natty:
Report link

Lodash types require specific version or typescript.

Choose @types version according to your typescript version.

https://www.npmjs.com/package/@types/lodash?activeTab=versions

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @types
  • High reputation (-1):
Posted by: Joosep Parts

79527560

Date: 2025-03-22 14:09:26
Score: 3.5
Natty:
Report link

try to use !Important Flag Or Change The Class names

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

79527550

Date: 2025-03-22 13:57:24
Score: 2.5
Natty:
Report link

There is an error in the JSON. Lists must be enclosed in square brackets [].

Assuming the JSON is correct and you have a Map<...> object, are you sure you need or want to use MapStruct?

MapStruct is typically used for converting between DTO classes (often even identical ones).

Libraries that make HTTP calls and receive a JSON response can usually convert it automatically into a specific class.

If you have to handle the response manually, you can map it to a class without using a Map by leveraging a library like Jackson.

So, let me ask: what is your situation? What method are you using for the HTTP call? Are you the one converting the server response from JSON to Java classes? Are you required to use MapStruct due to some specific requirement?

Keep in mind that Jackson can convert from Map<...> to a specific class as well.

Reasons:
  • Blacklisted phrase (1): what is your
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Pumahawk

79527547

Date: 2025-03-22 13:55:23
Score: 1.5
Natty:
Report link

The only way I've found, so far, is to modify the css class requiredField by adding a style element in base.html immediately below the cdn link to Bootstrap, as in :

<style>
  .requiredField {
    font-weight:bold;
    text-decoration:underline;
  }
</style>

If anyone knows any better way I'd be grateul if they could shar their knowledge.

Reasons:
  • Blacklisted phrase (1): anyone knows
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Doug Conran

79527538

Date: 2025-03-22 13:48:21
Score: 5
Natty:
Report link

Is this form atually submitted anywhere? To add variable with key 'time-slot' to $_POST global array the form has to be sent in any way, maybe we are missing some informations about how it works?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is this for
  • Low reputation (1):
Posted by: nequ2k

79527528

Date: 2025-03-22 13:41:20
Score: 1.5
Natty:
Report link

Another elegant solution to this problem -

select m.firstname, m.surname,
round(sum(b.slots)/2,-1) as hours,
rank() over(order by round(sum(b.slots)/2,-1) desc) rank
from cd.members m join cd.bookings b
using (memid)
group by memid
order by rank, 2, 1
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30023500

79527523

Date: 2025-03-22 13:39:20
Score: 3
Natty:
Report link

To whoever face this issue in the future, in our case it was caused by a plugin called 'vite-vercel-plugin' which configs how Vite projects integrate with Vercel's Serverless functions and one of the things it does is to manually generate an '.vercel/outputs' folder, which was causing the conflict with the one generated automatically by Vercel, in addition of that, we've noticed that this plugin started updating their dependencies about 2/3 weeks ago, which is around the time we started facing these issues, although it might be just coincidence, we've solved our issue by removing this plugin from our project.

Reasons:
  • Blacklisted phrase (1): this plugin
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Diego Filastro

79527522

Date: 2025-03-22 13:38:19
Score: 5
Natty:
Report link

use Comments_remover,a flutter package i made

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Wahab Benouar

79527515

Date: 2025-03-22 13:33:18
Score: 3
Natty:
Report link

To make Navmesh agents avoid obstacles, there's a component called NavmeshObstacle that you add to the gameobject you want to avoid.

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

79527505

Date: 2025-03-22 13:23:15
Score: 1
Natty:
Report link

This bit of text should give you a good hint as to why this error is popping up:

 You may restore the old behavior of pip by passing
    the '--break-system-packages' flag to pip, or by adding
    'break-system-packages = true' to your pip.conf file. The latter
    will permanently disable this error.
    

Installing python packages and raw digging them on your system used to break python based system dependencies quite a lot back in the day.

https://jairoandres.com/python-dependencies-break-your-system-if-you-want/

Just use a venv:

https://docs.python.org/3/library/venv.html

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

79527503

Date: 2025-03-22 13:22:15
Score: 2.5
Natty:
Report link

Ultimately, I couldn't find any option to start Impala without AVX. I decided to migrate the VM to VMware and did the following:

This way, Impala works correctly

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

79527499

Date: 2025-03-22 13:19:14
Score: 4
Natty:
Report link

How about a IaC generator.

Document

https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/generate-IaC.html

re:post

https://repost.aws/articles/ARZy0AK1RZSLSL7wKU8SmO9g/a-first-look-at-aws-cloudformation-iac-generator

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Starts with a question (0.5): How
  • Low reputation (0.5):
Posted by: izayoi

79527498

Date: 2025-03-22 13:19:14
Score: 0.5
Natty:
Report link

On Error Resume Next

This will skip over any line that causes an error. While this will do what you want, it can cause all sorts of seaming weird situations like when a condition in an IF causes an exception, it will fall into your true part

On Error GoTo 0

This will restore "normal" error behaviour

https://learn.microsoft.com/en-us/office/vba/language/reference/user-interface-help/on-error-statement

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