79513447

Date: 2025-03-17 00:46:51
Score: 9.5
Natty: 7
Report link

Unfortunately I do not have an answer but I believe that I am running into the same issue.

Have you found a solution to this yet? If so, please post / share.

Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I do not have an answer
  • RegEx Blacklisted phrase (2.5): please post
  • RegEx Blacklisted phrase (2.5): Have you found a solution to this yet
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Robert Strom

79513227

Date: 2025-03-16 20:51:03
Score: 15.5 🚩
Natty: 5.5
Report link

I'm facing the same issue. Were you able to solve it? If so, could you share the steps you took?

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (2.5): could you share
  • RegEx Blacklisted phrase (1.5): solve it?
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gerdek bozan

79513024

Date: 2025-03-16 18:26:32
Score: 9.5 🚩
Natty: 5.5
Report link

Hi i know its been a while but did you find a solution to this in the end? I'm facing a similar issue with iOS, Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (3): did you find a solution to this
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing a similar issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Day

79512967

Date: 2025-03-16 17:39:20
Score: 6 🚩
Natty: 6
Report link

Are you found this solution? i have face this same problem?

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

79512942

Date: 2025-03-16 17:24:16
Score: 4
Natty:
Report link

You can find working example code and a live demo here: https://aibuildersguide.com/docs/gemini/gemini-search-grounding

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

79512857

Date: 2025-03-16 16:28:04
Score: 4.5
Natty:
Report link

I was able to make it work thanks to the advices of Lundin and JimmyB in the comments.

NOTE: This code works on my phisical Esp32(DEVKIT 1) since I got it. I have not tested it on the emulator.

What I was missing:

What I discovered:

I post here a working code in case someone gets stuck like me.

#include <stdio.h>
#include <unistd.h>
#include <inttypes.h>

#define GPIO_OUT_W1TS_REG (*(volatile uint32_t*)0x3FF44008)
#define GPIO_OUT_W1TC_REG (*(volatile uint32_t*)0x3FF4400C)
#define GPIO_ENABLE_W1TS_REG (*(volatile uint32_t*)0x3FF44024)
#define GPIO_ENABLE_W1TC_REG (*(volatile uint32_t*)0x3FF44028)
#define GPIO_FUNC0_OUT_SEL_CFG_REG 0x3FF44530
#define LEDC_CONF_REG (*(volatile uint32_t*)0x3FF59190)
#define LEDC_HSCH0_CONF0_REG (*(volatile uint32_t*)0x3FF59000)
#define LEDC_HSCH0_CONF1_REG (*(volatile uint32_t*)0x3FF5900C)
#define LEDC_HSCH0_DUTY_REG (*(volatile uint32_t*)0x3FF59008)
#define LEDC_HSCH0_DUTY_R_REG (*(volatile uint32_t*)0x3FF59010) 
#define LEDC_HSCH0_HPOINT_REG (*(volatile uint32_t*)0x3FF59004)
#define LEDC_HSTIMER0_CONF_REG (*(volatile uint32_t*)0x3FF59140)
#define IO_MUX_GPIO26_REG (*(volatile uint32_t*)0x3FF49028)
#define DPORT_PERIP_CLK_EN_REG (*(volatile uint32_t*)0x3FF000C0)
#define DPORT_PERIP_RST_EN_REG (*(volatile uint32_t*)0x3FF000C4)
#define LEDC_HSTIMER0_VALUE_REG (*(volatile uint32_t*)0x3FF59144)
#define resolution (uint)8

void app_main(void)
{
    printf("test\n");

    DPORT_PERIP_CLK_EN_REG |= (1<<11);// enable clock for ledc

    LEDC_HSTIMER0_CONF_REG &= ~(0xf);
    LEDC_HSTIMER0_CONF_REG |= resolution; //resolution = 8 bit
    uint divider = 80000000 / (5000 * 256);
    LEDC_HSTIMER0_CONF_REG |= (divider<<13);


    LEDC_HSCH0_CONF0_REG &= ~(0b00); //timer 0
    LEDC_HSCH0_CONF0_REG |= (1<<2); //enale output channel

    LEDC_HSCH0_HPOINT_REG = 1; // value to set high
    LEDC_HSCH0_DUTY_REG &= ~(0xffffff);
    LEDC_HSCH0_DUTY_REG |= (20<<4); // low duty cycle
    uint low = 1; // flag to control next duty value

    // gpio setting
    volatile uint32_t* gpio26_cfg = (volatile uint32_t*)GPIO_FUNC0_OUT_SEL_CFG_REG + 26;
    // peripheral 71 -> hschan0
    *gpio26_cfg = 71;
    GPIO_ENABLE_W1TS_REG |= (1<<26);
    // function 2
    IO_MUX_GPIO26_REG &= ~(0b111 << 12);
    IO_MUX_GPIO26_REG |= (2<<12);

    LEDC_HSCH0_CONF1_REG |= (1<<31); // start channel duty cycle
    LEDC_HSTIMER0_CONF_REG &= ~(1<<24); //reset timer
    uint counter = 0;
    while (1) {
        if (counter == 2){
            if (low == 0) {
                LEDC_HSCH0_DUTY_REG &= ~(0xffffff);
                LEDC_HSCH0_DUTY_REG |= (30<<4);
                low = 1;
                LEDC_HSCH0_CONF1_REG |= (1<<31); // start channel duty cycle
            } else {
                LEDC_HSCH0_DUTY_REG &= ~(0xffffff);
                LEDC_HSCH0_DUTY_REG |= (128<<4);
                low = 0;
                LEDC_HSCH0_CONF1_REG |= (1<<31); // start channel duty cycle
            }
            counter = 0;
        }
        printf("timer value: %" PRIu32 "\n", LEDC_HSTIMER0_VALUE_REG);
        printf("duty value: %" PRIu32 "\n", LEDC_HSCH0_DUTY_R_REG);
        printf("counter: %d\n", counter);
        sleep(1);
        counter++;
    }
}

Since I am a newbie in C please feel free to correct me as Lundin did, I will appreciate it.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (3): thanks to the advices
  • RegEx Blacklisted phrase (1): I am a newbie in C please
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Michele Del Grosso

79512850

Date: 2025-03-16 16:26:03
Score: 4.5
Natty:
Report link

I’ve also been trying to fetch Google reviews using the new Places API with an unrestricted API key and a properly set billing account, but I’m still getting REQUEST_DENIED. I’ve confirmed that my API key works for other requests (like address components) but fails for reviews. It seems like accessing reviews might require the Enterprise SKU, but I haven’t found a way to enable it. Has anyone managed to solve this?

Reasons:
  • RegEx Blacklisted phrase (1.5): solve this?
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: TimmyBoy

79512840

Date: 2025-03-16 16:19:02
Score: 4
Natty:
Report link

i have been coding by myself for a year and i wanted to make a similar game but it doesn't work with me either. My code is close to identical to yours,

import turtle

# create Screen
wn = turtle.Screen()
wn.bgcolor("light green")

# Create player
player = turtle.Turtle()
player.color("blue")
player.shape("triangle")
player.penup()
speed = 1

#create the inputs
def left():
    player.left(30)

def right():
    player.right(30)

#Key input actions
turtle.listen()
turtle.onkeypress(left, "Right")
turtle.onkeypress(right, "Left")

while True:
    player.forward(speed)

i've tried everything and it just doesn't work. I think that it does not work because the program is not listening (although i fired the function listen()) because i have put this line in my program:

def print_test():
    print("works")

with this in the keyinputactions

turtle.onkeypress(print_test, "Space")

and it gave me nothing as an output. I think you might have the same problem. I however do not know how to fix this because of my lack in expertise.

I hope this helped, although i do not think that you are still working on this problem after 2 years.

Reasons:
  • Blacklisted phrase (1): ve tried everything
  • Whitelisted phrase (-1): hope this help
  • RegEx Blacklisted phrase (2): do not know how to fix
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): have the same problem
  • Low reputation (1):
Posted by: liam patruno

79512839

Date: 2025-03-16 16:16:59
Score: 6 🚩
Natty: 5.5
Report link

do you consider using shader graph?

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

79512756

Date: 2025-03-16 15:12:46
Score: 4
Natty:
Report link

How about using requirements.txt ?

requirements.txt

djlint==1.36.4

Then run

$ pip install -r requirements.txt
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: user75661

79512711

Date: 2025-03-16 14:39:39
Score: 5.5
Natty: 5.5
Report link

Thank You for this answer @Bowman Zhu . This was pretty simple but saved me :)

Reasons:
  • Blacklisted phrase (0.5): Thank You
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @Bowman
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sibansh Pal

79512661

Date: 2025-03-16 14:06:30
Score: 10 🚩
Natty: 6.5
Report link

I am also experiencing similar thing. All the hs-consumer-api endpoints are returning 403 status. I guess now the endpoints need hmac authentication.

@Neel, were you able to find a solution for this?

Reasons:
  • RegEx Blacklisted phrase (1): were you able to find a solution
  • RegEx Blacklisted phrase (3): were you able
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Neel
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Tejas Kolhe

79512580

Date: 2025-03-16 13:06:18
Score: 5
Natty: 5
Report link

Muito obrigado, salvou meu laboratório!!!

Reasons:
  • RegEx Blacklisted phrase (1): obrigado
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Edu_BR

79512512

Date: 2025-03-16 11:50:04
Score: 4
Natty: 5
Report link

Thanks Cyril Gandon <3 for providing the perfect answer to it.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Midhat

79512469

Date: 2025-03-16 11:05:55
Score: 5
Natty:
Report link

I changed @workingdogsupportUkraine code. The only thing is that it is not showing keyboard just by tapping on the search button. It is showing cancel button after I changed the code.

struct SearchbarView: View {
    @Binding var text: String
    @State private var showSearch: Bool = false
    
    var onSubmit: () -> Void
    
    var body: some View {
        VStack {
            HStack {
                Spacer()
                if showSearch {
                    SearchBar(text: $text, showSearch: $showSearch, onSubmit: onSubmit)
                        .frame(width: 350, height: 40)
                } else {
                    Image(systemName: "magnifyingglass")
                        .onTapGesture {
                            showSearch = true
                        }
                }
            }
        }
    }
}

struct SearchBar: UIViewRepresentable {
    @Binding var text: String
    @Binding var showSearch: Bool

    var onSubmit: (() -> Void)
    
    func makeUIView(context: Context) -> UISearchBar {
        let searchBar = UISearchBar()
        searchBar.isEnabled = true
        searchBar.searchBarStyle = .minimal
        searchBar.autocapitalizationType = .none
        searchBar.placeholder = "Search"
        searchBar.delegate = context.coordinator
        searchBar.setShowsCancelButton(true, animated: true)
        
        return searchBar
    }
    
    func updateUIView(_ uiView: UISearchBar, context: Context) {
        uiView.text = text
    }
    
    func makeCoordinator() -> Coordinator {
        Coordinator(self)
    }
    
    class Coordinator: NSObject, UISearchBarDelegate {
        let parent: SearchBar
        
        init(_ parent: SearchBar) {
            self.parent = parent
        }
        
        func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) {
            searchBar.showsCancelButton = true
            parent.text = searchText
        }
        
        func searchBarSearchButtonClicked(_ searchBar: UISearchBar) {
            searchBar.resignFirstResponder()
            searchBar.showsCancelButton = true
            searchBar.endEditing(true)
            parent.onSubmit()
        }
        
        func searchBarCancelButtonClicked(_ searchBar: UISearchBar) {
            parent.text = ""
            searchBar.resignFirstResponder()
            searchBar.showsCancelButton = false
            searchBar.endEditing(true)
            parent.showSearch = false
        }
        
        func searchBarShouldBeginEditing(_ searchBar: UISearchBar) -> Bool {
            searchBar.showsCancelButton = true
            return true
        }
    }
}

Please help me with keyboard focus and cancel should be highlighted after I tapped the search button. Now by tapping on cancel it also dismisses the search.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Please help me
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @workingdogsupportUkraine
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: kjfhke

79512428

Date: 2025-03-16 10:39:49
Score: 4
Natty: 4
Report link

I have encountered similar situations and tried to explain the solution here.

https://mcuslu.medium.com/aws-dynamodb-json-data-import-some-tips-and-tricks-fb00d9f5b735

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Mucahid Uslu

79512424

Date: 2025-03-16 10:37:48
Score: 4.5
Natty:
Report link

Same here, accesing ESIOS
curl works, but for some reason requests 2.32.3 fails with 403 code.

Any workaround?

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

79512346

Date: 2025-03-16 09:30:36
Score: 4
Natty:
Report link

Thanks a lot. Yes, using the . solved the problem. Many thanks again for taking the time.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ricky Babosa

79512323

Date: 2025-03-16 09:03:29
Score: 7 🚩
Natty:
Report link

I manage to fix this problem. The the new problem what i have its, this extension cannot update the quantity from stock. How to fix this?

Reasons:
  • RegEx Blacklisted phrase (1.5): How to fix this?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jzz TV

79512294

Date: 2025-03-16 08:39:25
Score: 5.5
Natty: 6
Report link

can btcrecover help in recovery passphrase of pi wallet

if so, please help with directive

note> I have the wallet receive addresss and the passphrase with two or three word spells wrongly.

Reasons:
  • RegEx Blacklisted phrase (3): please help
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): can
  • Low reputation (1):
Posted by: okposo brain

79512265

Date: 2025-03-16 08:08:19
Score: 5
Natty: 4.5
Report link

Here is a new one in a development.

https://github.com/Oldes/Rebol-Postgres

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Oldes

79512244

Date: 2025-03-16 07:41:13
Score: 8 🚩
Natty: 4.5
Report link

Hey I need a permit to create Microsoft computer training program at by using the signature of the company I'll give my details yeah this is my name is valla Venkat Sai Rahul you please give the next this name on this can you please send certification

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2.5): please give
  • RegEx Blacklisted phrase (2.5): can you please send
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rahul Bolla

79512223

Date: 2025-03-16 07:13:08
Score: 5
Natty: 4
Report link

did you create a project because of the

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: bill gate

79512222

Date: 2025-03-16 07:12:08
Score: 4
Natty: 6.5
Report link

Thank you for answering your question. I was losing my mind. Trying to figure out why my config wasn't pulling all the data I needed

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sentry2703

79512195

Date: 2025-03-16 06:33:00
Score: 5
Natty: 4.5
Report link

Do you want time like this website
http://freecine.store/

I used timer of 5 seconds so i can help you to apply same strategy. But my website is in wordpress CMS can you tell me your built in technology.

Reasons:
  • RegEx Blacklisted phrase (2.5): can you tell me your
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Salamat shah

79512118

Date: 2025-03-16 04:35:40
Score: 5.5
Natty: 5.5
Report link

Fitsumking7 strong textttyyhhhjjhhhhghbhhjjjjjjjjiiiiiiiiiiiijjjj

Blockquote

Reasons:
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Filler text (0.5): jjjjjjjj
  • Filler text (0): iiiiiiiiiiii
  • Low reputation (1):
Posted by: Fitsumking7

79512111

Date: 2025-03-16 04:20:37
Score: 4.5
Natty:
Report link

Ask ChatGPT, this is a simple answer.

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Adam

79512065

Date: 2025-03-16 03:06:24
Score: 6.5
Natty: 7.5
Report link

Definitely check this article -> https://blog.nashtechglobal.com/how-to-deploy-express-js-to-vercel/

Reasons:
  • Blacklisted phrase (1): this article
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Cris

79512061

Date: 2025-03-16 03:02:23
Score: 5.5
Natty: 7
Report link

This documentation maybe will help a bit: https://docs.unity3d.com/6000.0/Documentation/ScriptReference/Light-colorTemperature.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 (1):
Posted by: Creative Carve Cite Climb

79511971

Date: 2025-03-16 00:46:00
Score: 5
Natty:
Report link

What is the current directory? Very likely the path in which the executable resides.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What is the
  • Low reputation (1):
Posted by: Nobody

79511922

Date: 2025-03-15 23:28:45
Score: 7 🚩
Natty: 4
Report link

Any answer? I have the same issue.

BR

Paco

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Francisco

79511822

Date: 2025-03-15 21:36:22
Score: 6 🚩
Natty:
Report link

I am not strong in Excel. I have never used script or record. I have a site map with typed numbers in the cells but I want them to have colons because they are MAC address's. I have tried alot of these ideas but it cuts out numbers/letters. If i make a whole copy of just one large set I have got it to work ish. I copy it and erase my old cell info to paste in the new stuff but both disappear when I do it? Any ideas for a learner of this?

Reasons:
  • Blacklisted phrase (1): Any ideas
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ross Lesher

79511811

Date: 2025-03-15 21:30:18
Score: 8.5 🚩
Natty:
Report link

Raka Putra how did you fix the error

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

79511754

Date: 2025-03-15 20:51:07
Score: 7 🚩
Natty: 5.5
Report link

I'm not giving an answer, but rather trying to get this to work for me. I put in the Service, Cluster, and DesiredCount, but nothing happens that I can see. I don't know where to go to see any kind of log to tell me whether or not it ran and/or what the error might be.

Any help would be appreciated.

Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (3): Any help would be appreciated
  • No code block (0.5):
  • Low reputation (1):
Posted by: David

79511743

Date: 2025-03-15 20:42:03
Score: 7.5 🚩
Natty: 4.5
Report link

Anyone found a workaround in this except using list for recursive property?

Reasons:
  • Blacklisted phrase (2): Anyone found
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: st.nasos

79511707

Date: 2025-03-15 20:11:57
Score: 5.5
Natty:
Report link

https://www.checkout-ds24.com/redir/599344/Cashif0123/

kindly convert it into iframe

[email protected]

whtsapp +923350217783

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: kashif

79511630

Date: 2025-03-15 19:05:43
Score: 5.5
Natty:
Report link

олоecwwecwecwecwewec weccewcwecwecwecwec

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 entropy (1):
  • Low reputation (1):
Posted by: Иван

79511590

Date: 2025-03-15 18:28:34
Score: 7 🚩
Natty: 6
Report link

in python 3.9.2 same error, why?

Reasons:
  • Blacklisted phrase (0.5): why?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gerfried

79511547

Date: 2025-03-15 17:53:24
Score: 7.5 🚩
Natty: 5
Report link

Me pasaba lo mismo y probe todo. Al final lo conseguí dandole una patada a la cpu y desactivando el plugin de wordpress gosmtp y go smtp pro en ese orden y volviendo a activarlos en igual orden. luego he dejado clickado las dos opciones de force from email y force from name y ya todo ok. gracias a todos.

Reasons:
  • Blacklisted phrase (2): gracias
  • RegEx Blacklisted phrase (2.5): mismo
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29978864

79511532

Date: 2025-03-15 17:46:22
Score: 6.5
Natty: 7.5
Report link

What is the integral of the function f(x) = sin 2x?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What is the in
  • Low reputation (1):
Posted by: Christ Jesus

79511387

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

Checkout this repository which is a port of the famous Microsoft eshopOnContainers project. https://github.com/harshaghanta/springboot-eshopOnContainers

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Harsha

79511382

Date: 2025-03-15 15:56:00
Score: 5.5
Natty: 6.5
Report link

enter image description here

enter image description here

And I need it to be next to each other and not below each other

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Pardu baak

79511365

Date: 2025-03-15 15:47:58
Score: 4
Natty: 4.5
Report link

This project builds a macOS app for Meld

https://formulae.brew.sh/cask/dehesselle-meld#default

Works great

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: yonatan weinberger

79511245

Date: 2025-03-15 14:08:38
Score: 11.5 🚩
Natty: 4
Report link

Have you found a way to solve this problem? I know for sure that it can be done, but I can't find a solution yet

Reasons:
  • RegEx Blacklisted phrase (1.5): solve this problem?
  • RegEx Blacklisted phrase (2.5): Have you found a way to solve this problem
  • RegEx Blacklisted phrase (2): I can't find a solution
  • RegEx Blacklisted phrase (2): can't find a solution
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Artem Baranov

79511237

Date: 2025-03-15 14:00:34
Score: 15.5 🚩
Natty: 5.5
Report link

I hope ok for everything. It's been a while but I wanted to ask. I'm having the same problem. I want to show the version of the app in the bottom right corner before the screenshot is taken and include it in the screenshot but I haven't found a solution yet.

I get versiyon number with package_info_plus package and this ok. and i using screenshot_callback package. This one is not work before screenshot.

Do you have any solution for this issue?

Thanks for everything!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I'm having the same problem
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (2.5): Do you have any
  • RegEx Blacklisted phrase (1): haven't found a solution
  • RegEx Blacklisted phrase (2): any solution for this issue?
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: AE_Kaba

79511201

Date: 2025-03-15 13:31:27
Score: 4
Natty:
Report link

I recommend looking over this VS2017+ extension:
https://marketplace.visualstudio.com/items?itemName=darkdaskin.tabpath

Visual Studio 2022 file tabs after adding extension

More information can be found in the original post: https://stackoverflow.com/a/79511184/2109230

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: MatrixRonny

79511105

Date: 2025-03-15 12:19:13
Score: 4
Natty:
Report link

Rollback to 17.12.4 solves the problem.

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

79511096

Date: 2025-03-15 12:12:12
Score: 5
Natty:
Report link

I have the same issue, to solve it just change jakarta to javax in all files

import jakarta.inject.Inject

to

import javax.inject.Inject
Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Low length (1):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same issue
  • Low reputation (1):
Posted by: Numidia Ware

79511061

Date: 2025-03-15 11:46:06
Score: 4.5
Natty:
Report link

I found a solution! It is from this thread: https://intellij-support.jetbrains.com/hc/en-us/community/posts/360010648239-CLion-stopped-recognising-project-as-a-CMake-project. All I had to do was close the project, delete the entire .idea folder and open it again.

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

79510963

Date: 2025-03-15 10:32:50
Score: 9 🚩
Natty: 5
Report link

I have a similar problem. I use internal CSS in my project. I load the HTML files from the asset/html directory in my project. The HTML files are loaded without problems but the internal CSS in these files does not work. Does the package webview_flutter: ^4.10.0 not support internal CSS but only external CSS?

Thanks in advance

Best regarts

Petra

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I have a similar problem
  • RegEx Blacklisted phrase (3): Thanks in advance
  • No code block (0.5):
  • Me too answer (2.5): I have a similar problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Petra Ritter

79510959

Date: 2025-03-15 10:30:47
Score: 10.5 🚩
Natty: 5
Report link

Did you find a Solution? Having the same issue.

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a Solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): Having the same issue
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a Solution
  • Low reputation (1):
Posted by: Sammy

79510938

Date: 2025-03-15 10:14:43
Score: 4.5
Natty: 5
Report link

Well-written and insightful. Keep up the good work!iimskills medical coading cources in delhi

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: shreemat paul

79510898

Date: 2025-03-15 09:44:35
Score: 6.5 🚩
Natty:
Report link

@PBulls thank you for your reply. I changed the ggemmeans code as you suggested. However, the outcome is still not linear. The Y-scale shows percentages, not log odds. Any idea how I can solve this?

ggemmeans(LMM_acc, terms = c("time_position.c", "response_side"), back.transform = FALSE) %>% 
  plot() +
  geom_line(size = 2) +
  aes(linetype = group_col) +
  theme(legend.title = element_text(size = 30),
        legend.position = 'top',
        legend.key.size = unit('1.5', 'cm'),
        axis.title.y = element_text(size = rel(2), angle = 90),
        axis.title.x = element_text(size = rel(2)),
        axis.text.x = element_text(size = 20),
        axis.text.y = element_text(size = 20)) + 
  scale_colour_manual("response_side", values = c("purple","orangered")) +
  scale_fill_manual("response_side", values = c("purple","orangered"),
                    guide = "legend") +
  scale_linetype_manual("response_side", values = c(2,1)) +
  guides(fill = guide_legend(override.aes = 
                               list(fill = c("purple","orangered"))))

enter image description here

Reasons:
  • Blacklisted phrase (0.5): thank you
  • RegEx Blacklisted phrase (1.5): solve this?
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @PBulls
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Alex M

79510850

Date: 2025-03-15 09:02:27
Score: 5
Natty:
Report link

i thinks vs code error please refresh pc and try again then after its work properly .

Reasons:
  • RegEx Blacklisted phrase (1): i thinks vs code error please
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kunal

79510828

Date: 2025-03-15 08:39:20
Score: 6 🚩
Natty:
Report link

Para resolver este inconveniente, puede intentar las siguientes soluciones:

Actualizar CocoaPods: Asegúrese de que CocoaPods esté actualizado a la última versión, ya que las versiones más recientes pueden contener correcciones para este tipo de errores.

bash

Copiar código

$gem install cocoapods

Actualizar la gema activesupport: Es posible que la versión actual de activesupport tenga conflictos. Intente actualizarla a una versión más reciente.

bash

Copiar código

$gem update activesupport

Verificar la versión de Ruby: Algunos usuarios han informado que ciertas versiones de Ruby pueden causar conflictos con las gemas. Considere actualizar Ruby a una versión compatible y estable.

Limpiar el caché de CocoaPods: A veces, los archivos en caché pueden causar problemas. Limpie el caché y vuelva a instalar los pods.

bash

Copiar código

$pod cache clean --all

$pod install

Ejecutar pod install con Bundler: Si está utilizando Bundle para gestionar las dependencias de Ruby, asegúrese de ejecutar pod install a través de Bundle para garantizar que se utilicen las versiones correctas de las gemas.

bash

Copiar código

$bundle exec pod install

Reasons:
  • Blacklisted phrase (1): está
  • Blacklisted phrase (2): código
  • Blacklisted phrase (2.5): solucion
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rafael Lopez

79510826

Date: 2025-03-15 08:38:20
Score: 5.5
Natty:
Report link

i have the same problem and solved it by removing the node_module folder and pakage-lock.json file

Remove-Item -Recurse -Force node_modules to remove node_module folder

Remove-Item -Recurse -Force package-lock.json to remove package-lock.json file

then install them again by npm install

Reasons:
  • Blacklisted phrase (1): i have the same problem
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): i have the same problem
  • Low reputation (1):
Posted by: Omer Gehad

79510804

Date: 2025-03-15 08:20:14
Score: 6.5 🚩
Natty: 5
Report link

I am currently integrating IAP in my app ,

I created a consumable in IAP in appstoreconnect , then a storeKitConfiguration file in app and synced it , it synced correctly and I am able to do purchase in simulator.

But when I upload the app on TestFlight , I am not able to see any consumable in testing device . I sent it for review and it got rejected for the same reason that they don't see any consumable in their device.

Can you please help me !!

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I am not able to
  • RegEx Blacklisted phrase (3): Can you please help me
  • No code block (0.5):
  • Low reputation (1):
Posted by: Priyendu Singh

79510741

Date: 2025-03-15 07:18:02
Score: 4
Natty:
Report link

Yes, in central Asia there are first name, Surname and Tribe name. There are many places to see in Mongolia.

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

79510691

Date: 2025-03-15 06:14:51
Score: 4
Natty:
Report link
header 1 header 2
cell 1 cell 2

Good morning

Reasons:
  • Blacklisted phrase (1): Good morning
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Yuvraj Dwivedi

79510685

Date: 2025-03-15 06:09:48
Score: 6 🚩
Natty:
Report link

You mentioned “when compiling not for Windows” but from the screenshot it looks like you are compiling from windows. If that is the case Intellisense will detect the system (i.e windows) will show information accordingly. Can you give more information on other system and how are doing the compilation for that?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you give
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Ashiful

79510655

Date: 2025-03-15 05:26:39
Score: 6 🚩
Natty:
Report link

Check out this article for deploying React website on GitHub pages: Host react website on Github pages

Reasons:
  • Blacklisted phrase (1): this article
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Bilal

79510646

Date: 2025-03-15 05:10:34
Score: 6 🚩
Natty: 6.5
Report link

Any fix for this? i need to have the list initialized by default

Reasons:
  • Blacklisted phrase (0.5): i need
  • RegEx Blacklisted phrase (1.5): fix for this?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Shreyansh Jain

79510546

Date: 2025-03-15 02:38:08
Score: 5
Natty: 7
Report link

Can I use this function for any number of bytes say 9 ??

How to implement this function if my data is transmitted in a loop ?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Can I use this
  • Low reputation (1):
Posted by: Aadithya S

79510544

Date: 2025-03-15 02:36:05
Score: 6.5 🚩
Natty: 4
Report link

Cannot Resolve symbol R ??

I also have the same issue I try many things to solve the problemlike invalidate caches etc many times but failed I find it on Google but not find the answer then i suddenly or intentionally check out my imports I look like import android.annotation.SuppressLint.R then i just remove the R and the error is solved
import android.annotation.SuppressLint and the error is solved
so I find this solution to the given problem.

Reasons:
  • RegEx Blacklisted phrase (1.5): Resolve symbol R ??
  • No code block (0.5):
  • Me too answer (2.5): I also have the same issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): Cannot
  • Low reputation (1):
Posted by: Danish Amin

79510508

Date: 2025-03-15 01:48:57
Score: 5.5
Natty: 5
Report link

I made this literally just a few days ago and just saw this! link: https://nellowtcs.github.io/HTMLNodeMapper GitHub: https://github.com/NellowTCS/HTMLNodeMapper

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: NellowTCS

79510458

Date: 2025-03-15 00:33:41
Score: 9 🚩
Natty: 5
Report link

did you ever found a solution?

Reasons:
  • RegEx Blacklisted phrase (3): did you ever found a solution
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (0.5):
Posted by: Gnarik

79510450

Date: 2025-03-15 00:27:38
Score: 7.5 🚩
Natty: 5.5
Report link

May i ask if you have lot of categories and inside that categories you include images and containers for titles and etc. which is performing faster? tab or accordion? Is both loading all the content or just the first tab/accordion? I already face a problem...i try to create my page by adding tabs...but unfortunately it slows down elementor....so i would like to know if is better to try with accordions...if that widget is lighter... there is and a third option to create the menu with buttons...but is not so friendly users solution...so please if somebody can help i will appreciate it a lot!!! thanks in adnance!!!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1.5): i would like to know
  • Blacklisted phrase (1): May i ask
  • RegEx Blacklisted phrase (3): somebody can help
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Harris K.

79510364

Date: 2025-03-14 22:58:20
Score: 4.5
Natty: 5.5
Report link

The given link https://install.pytorch.site/?device=CUDA+10.0 - is broken and not working

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rekha Suryae

79510363

Date: 2025-03-14 22:57:17
Score: 9.5 🚩
Natty:
Report link

Did you ever figure out the solution?

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever figure out the solution
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Charles Tiffany

79510273

Date: 2025-03-14 21:46:02
Score: 4.5
Natty:
Report link

Not an answer but Here's the the info I've found about:

https://developer.apple.com/forums/thread/763311
https://developer.apple.com/forums/thread/659621

Reasons:
  • Blacklisted phrase (1): Not an answer
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Manolis Dame

79510243

Date: 2025-03-14 21:28:58
Score: 5.5
Natty:
Report link

Have you looked at Spark tuning?

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

79510178

Date: 2025-03-14 20:43:47
Score: 9.5 🚩
Natty: 6.5
Report link

I have a question if I have two users one user will login but second user will not access the first user data without their authentication and if they will login the admin the admin page redirect to home please give me a solution for this i have two users for authentication?

Reasons:
  • Blacklisted phrase (1.5): I have a question
  • RegEx Blacklisted phrase (2.5): please give me a solution
  • RegEx Blacklisted phrase (1): I have a question if I have two users one user will login but second user will not access the first user data without their authentication and if they will login the admin the admin page redirect to home please
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rana Anas Aslam

79510172

Date: 2025-03-14 20:41:46
Score: 4
Natty: 4.5
Report link

For newer systems, Ubuntu 24+
Follow the steps given here - https://docs.docker.com/engine/security/rootless/

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Akash Jaiswal

79510055

Date: 2025-03-14 19:27:32
Score: 7
Natty: 7
Report link

what config eventually worked?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Has no white space (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): what
  • Low reputation (1):
Posted by: Matthew Loschiavo

79509990

Date: 2025-03-14 18:47:22
Score: 4
Natty:
Report link

The compact view will not show this. Try switching to it.

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Andy Burns

79509949

Date: 2025-03-14 18:26:18
Score: 4.5
Natty: 4.5
Report link

Get it off me! This thing is terrible - make it go away.

OR does anyone now another Editor with easy ftp integration ?

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

79509940

Date: 2025-03-14 18:22:17
Score: 4
Natty:
Report link

There is a link now on comments:

enter image description here

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

79509879

Date: 2025-03-14 17:53:10
Score: 4
Natty:
Report link

Try

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Robert Robinson

79509868

Date: 2025-03-14 17:50:09
Score: 4
Natty: 4.5
Report link

Thank you very much for sharing your problem. It was the same as mine, it saved me here. Thanks, my friend.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vinicius.rich

79509858

Date: 2025-03-14 17:45:08
Score: 5
Natty: 4.5
Report link

Tenia el mismo problema y me di cuenta qué el ícono de 1024 * 1024 no debe tener bordes redondeados.

Puedes probar eso!

Reasons:
  • RegEx Blacklisted phrase (2.5): mismo
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Obsidiana

79509764

Date: 2025-03-14 17:05:59
Score: 4
Natty:
Report link

may be you need docker? ew, maybe. i just cant exactly know what is S3 bucket

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Karesis

79509748

Date: 2025-03-14 16:58:57
Score: 7 🚩
Natty:
Report link

I'm trying to use the Secure PDF plugin in Moodle 4.5 on a local Apache server. I've made all the changes mentioned for the ImageMagick theme, but it still doesn't work. Any suggestions?

Change policy.xml as follows:

<policymap>
 <policy domain="delegate" rights="read|write" pattern="gs" />
     <policy domain="coder" rights="read|write" pattern="PDF" />
     <policy domain="delegate" rights="read|write" pattern="gswin64c" />
</policymap>

But when I upload a document to Moodle, it throws the following error:

ImagickException: FailedToExecuteCommand "gs" -sstdout=%stderr-dQUIET-DSAFER-DBATCH-DNOPAUSE-DNOPROMPT-dMaxBitmap=500000000-dAlign ToPixels=0-dGridFitTT=2"-SDEVICE=pngalpha" -dTextAlphaBits=4-dGraphicsAlphaBits=4 "-r150x150"-dPrinted=false*-sOutputFile=C:/Users/INNOVA~1/AppData/Local/Temp/magick-6Mjg7ywlThqzo3HGDLdGq0_2TmNV8ERx%d" "-fC:/Users/...AppData/Local/Temp/magick-K-JKeJ5TTiNf90cEz5-Kq0SwYdHxKxXx" "-fC:/Users/.../AppData/Local/Temp/magick-gyUWDIH8th4X3P540qJayx5JgNDVKrS-" (El sistema no puede encontrar el archivo especificado.)

@error/delegate.c/ExternalDelegateCommand/516 in

C:\Users\...\server\moodle\mod\securepdf\view.php:98 Stack trace: #0

C:\Users\...\server\moodle\mod\securepdf\view.php(98): Imagick->readImageBlob('%PDF-1.7\r\n%\x35\x35\x35\xB5...) #1 (main)

I appreciate any help you can give me.

Reasons:
  • Blacklisted phrase (1): any help
  • RegEx Blacklisted phrase (2): Any suggestions?
  • RegEx Blacklisted phrase (2): it still doesn't work
  • RegEx Blacklisted phrase (2): encontrar
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: jhonatan

79509739

Date: 2025-03-14 16:52:55
Score: 5.5
Natty: 6
Report link

After go to PSS the behavior (performance) is similar to 4.X?

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

79509688

Date: 2025-03-14 16:35:50
Score: 8.5 🚩
Natty:
Report link

b15 Did you find a solution to this. I am facing exactly the same issue while running a spark job in GCP dataproc.

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution to this
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing exactly the same issue
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution to this
  • Low reputation (0.5):
Posted by: Emilia

79509680

Date: 2025-03-14 16:31:43
Score: 15.5 🚩
Natty: 6.5
Report link

I’m facing the exact same issue as you. Did you manage to find a fix or a workaround? Any help would be appreciated!

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (3): Did you manage to find a fix
  • RegEx Blacklisted phrase (1.5): fix or a workaround?
  • RegEx Blacklisted phrase (3): Any help would be appreciated
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): facing the exact same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: swekast projects

79509679

Date: 2025-03-14 16:31:42
Score: 6.5 🚩
Natty: 6.5
Report link

broooo como lo solucionaste? es muy confuso para mi

Reasons:
  • Blacklisted phrase (2.5): solucion
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: MARVIN FERNANDO VALVERDE SIRLU

79509669

Date: 2025-03-14 16:29:41
Score: 4
Natty: 4
Report link

check if you have duplicate id's (id="review" on more than one of your elements)

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: J Matthew Gaskill

79509646

Date: 2025-03-14 16:18:38
Score: 5.5
Natty: 4
Report link

Did anyone try using singleton class as global variables in a Flink app ? Accessing the singleton class in all streams and aggregate windows ?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did anyone
  • Low reputation (1):
Posted by: Nilanjan Nath

79509635

Date: 2025-03-14 16:15:37
Score: 4.5
Natty: 4
Report link

Maybe, this explanation can help you.

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: alexfd

79509537

Date: 2025-03-14 15:41:27
Score: 8 🚩
Natty:
Report link

Bro facing same issue
please tell if you find solution

Reasons:
  • RegEx Blacklisted phrase (2.5): please tell
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing same issue
  • Low reputation (1):
Posted by: B_Gourab Chakraborty

79509535

Date: 2025-03-14 15:41:27
Score: 4.5
Natty:
Report link

Have you checked that all the packages (in pubspec.yaml) you are using are compatible with Android and iOS?

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

79509524

Date: 2025-03-14 15:35:26
Score: 4
Natty: 6
Report link

Such a simple fix! Scratching my head... why does the prefilled disappear?

Thanks!!

upvote is not working... for me

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): upvote
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Marc

79509454

Date: 2025-03-14 15:10:20
Score: 4
Natty: 5
Report link

it's possible to have only the price, not the name product

thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: stephan

79509340

Date: 2025-03-14 14:27:10
Score: 5
Natty: 5.5
Report link

we're seeing this but for user_pseudo_id (i.e. multiple traffic_source.source and traffic_source.medium where this should only reflect the initial traffic orogins for that particalar user_pseudo_id. anyone else getting this issue in BigQuery?

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

79509245

Date: 2025-03-14 13:49:00
Score: 11 🚩
Natty: 6.5
Report link

Thanks. I'm having the same problem and this post was helpful. But, I have an additional issue. When I try to install Snowsql, both the cmd prompt and terminal stop accepting input at the password prompt. I type, but nothing happens. Any ideas on address that? Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I'm having the same problem
  • Blacklisted phrase (1): Any ideas
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same problem
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Robert Crump

79509115

Date: 2025-03-14 12:51:47
Score: 4
Natty:
Report link

apache commons...

StringUtils.substringBeforeLast(principalName, "@")

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

79509100

Date: 2025-03-14 12:44:44
Score: 8 🚩
Natty: 6.5
Report link

I am facing the same issue , but less secure apps is deprecated so what do I use??

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Njingti Shanelle

79509093

Date: 2025-03-14 12:41:43
Score: 7.5 🚩
Natty: 6
Report link

just got the same issue. Thanks for the post.

Do you have any simpler alternatives that dont require setting up a lambda?

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Do you have any
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Ariel Nurieli

79509058

Date: 2025-03-14 12:24:39
Score: 17.5 🚩
Natty:
Report link

Skip to main content
Stack Overflow
Products
OverflowAI
Search…
Umer Masood's user avatar
Umer Masood
1, 1 reputation
●22 bronze badges
Home
New
Questions
Tags
Saves
Users
Companies
Labs
Discussions
Collectives
Communities for your favorite technologies. Explore all Collectives

Teams
Ask questions, find answers and collaborate at work with Stack Overflow for Teams. Explore Teams

Looking for your Teams?



carousel using jQuery
Asked 11 years ago
Modified 11 years ago
Viewed 18k times

Report this ad
4

I know there are plugins available out there, but I'm trying to make one of myself but before that I'm trying to understand the concept of making it as an infinite/circular carousel. Here is my jsfiddle so far.. http://jsfiddle.net/hbk35/KPKyz/3/

HTML:

    <div id="carousel_wrapper">
    <ul>
        <li>
            <div>0</div>
        </li>
        <li>
            <div>1</div>
        </li>
        <li>
            <div>2</div>
        </li>
        <li>
            <div>3</div>
        </li>
        <li>
            <div>4</div>
        </li>
        <li>
            <div>5</div>
        </li>
        <li>
            <div>6</div>
        </li>
        <li>
            <div>7</div>
        </li>
    </ul>
</div>
<br>
<div id="buttons">
    <button id="left">left</button>
    <button id="right">right</button>
</div>
JS:

var container = $("#carousel_wrapper");

var runner = container.find('ul');
var liWidth = runner.find('li:first').outerWidth();
var itemsPerPage = 3;
var noofitems = runner.find('li').length;

runner.width(noofitems * liWidth);
container.width(itemsPerPage*liWidth);

$('#right').on('click',function(){
   runner.animate({scrollLeft: -liWidth},1000);
});


$('#left').on('click',function(){
    runner.animate({scrollLeft: liWidth},1000);
});
CSS:

div#carousel_wrapper{

    overflow:hidden;
    position:relative;
}

ul {
    padding:0px;
    margin:0px;
}
ul li {
    list-style:none;
    float:left;
}
ul li div {
    border:1px solid white;
    width:50px;
    height:50px;
    background-color:gray;
}
I do not want to use clone and detach method. Is there any other way to do that? Please anyone would like to guide me where I'm making mistake. I'm newbie to stack overflow and javascript/jquery also..trying to learn on my own. Forgive me I'm trying since to put my code onto the question, couldn't get neat and separate like others.

Thanks!!

javascriptjquerycsscarousel
Share
Edit
Follow
edited Feb 27, 2014 at 19:31
asked Feb 27, 2014 at 19:22
harshes53's user avatar
harshes53
42911 gold badge77 silver badges1717 bronze badges
2
We need a reinventing-the-wheel tag on SO – 
Dryden Long
 CommentedFeb 27, 2014 at 19:24
The code in the fiddle doesn't match the code in your question. – 
j08691
 CommentedFeb 27, 2014 at 19:27
@j08691 my apologies. the fiddle is updated. thanks. – 
harshes53
 CommentedFeb 27, 2014 at 19:32
Are you looking to implement the carousel from jquery framework or any other framework – 
Someone
 CommentedFeb 27, 2014 at 19:50
@Someone using jQuery framework. actually I'm trying to make plugin of it. and to make it circular/infinite. – 
harshes53
 CommentedFeb 27, 2014 at 19:58
Show 2 more comments
2 Answers
Sorted by:

Highest score (default)
3

Here you go an infinite. Could be done with less code for sure. http://jsfiddle.net/artuc/rGLsG/3/

HTML:

<a href="javascript:void(0);" class="btnPrevious">Previous</a>
<a href="javascript:void(0);" class="btnNext">Next</a>
<div class="carousel">
    <ul>
        <li>1</li>
        <li>2</li>
        <li>3</li>
        <li>4</li>
        <li>5</li>
        <li>6</li>
        <li>7</li>
        <li>8</li>
        <li>9</li>
        <li>10</li>
        <li>11</li>
        <li>12</li>
        <li>13</li>
        <li>14</li>
    </ul>
</div>
CSS:

.carousel{
        padding-top: 20px;
        width: 357px;
        overflow: hidden;
        height: 50px;
        position: relative;
    }.carousel ul{
        position: relative;
        list-style: none;
        list-style-type: none;
        margin: 0;
        height: 50px;
        padding: 0;
    }.carousel ul li{
        position: absolute;
        height: 25px;
        width: 50px;
        float: left;
        margin-right: 1px;
        background: #f2f2f2;
        text-align: center;
        padding-top: 25px;
    }
JS:

$(function(){
        var carousel = $('.carousel ul');
        var carouselChild = carousel.find('li');
        var clickCount = 0;
        var canClick = true;

        itemWidth = carousel.find('li:first').width()+1; //Including margin

        //Set Carousel width so it won't wrap
        carousel.width(itemWidth*carouselChild.length);

        //Place the child elements to their original locations.
        refreshChildPosition();

        //Set the event handlers for buttons.
        $('.btnNext').click(function(){
            if(canClick){
                canClick = false;
                clickCount++;

                //Animate the slider to left as item width 
                carousel.stop(false, true).animate({
                    left : '-='+itemWidth
                },300, function(){
                    //Find the first item and append it as the last item.
                    lastItem = carousel.find('li:first');
                    lastItem.remove().appendTo(carousel);
                    lastItem.css('left', ((carouselChild.length-1)*(itemWidth))+(clickCount*itemWidth));
                    canClick = true;
                });
            }
        });

        $('.btnPrevious').click(function(){
            if(canClick){
                canClick = false;
                clickCount--;
                //Find the first item and append it as the last item.
                lastItem = carousel.find('li:last');
                lastItem.remove().prependTo(carousel);

                lastItem.css('left', itemWidth*clickCount);             
                //Animate the slider to right as item width 
                carousel.finish(true).animate({
                    left: '+='+itemWidth
                },300, function(){
                    canClick = true;
                });
            }
        });

        function refreshChildPosition(){
            carouselChild.each(function(){
                $(this).css('left', itemWidth*carouselChild.index($(this)));
            });
        }
    });
Share
Edit
Follow
edited Feb 27, 2014 at 21:09
answered Feb 27, 2014 at 20:30
artuc's user avatar
artuc
9131111 silver badges2020 bronze badges
There was a bug when you fast click. Added finish() method to JS fiddle: jsfiddle.net/artuc/rGLsG/2 – 
artuc
 CommentedFeb 27, 2014 at 20:38
works like a charm! awesome this is what i was looking for... thanks!! but theres a small issue with it.. if you keep pressing next button, you will find an space between 1&2 li elements. – 
harshes53
 CommentedFeb 27, 2014 at 20:55
1
Yep, neither animate nor finish seems to work if you click really fast. I implemented a dirty solution to it. Please see the updated fiddle: jsfiddle.net/artuc/rGLsG/3 also removed one useless function. – 
artuc
 CommentedFeb 27, 2014 at 21:07 
yeah i see the problem with your updated fiddle. if u click left continuously and fast, u will see the first element not there + some random space in between. else previous button works awesome!! thanks though! – 
harshes53
 CommentedFeb 27, 2014 at 21:52
i think if we can fix the random space issue! – 
harshes53
 CommentedFeb 27, 2014 at 21:56
Show 1 more comment

Report this ad
3

Here you go: http://jsfiddle.net/KPKyz/5/

JS

var container = $("#carousel_wrapper");

var runner = container.find('ul');
var liWidth = runner.find('li:first').outerWidth();
var itemsPerPage = 3;
var noofitems = runner.find('li').length;

runner.width(noofitems * liWidth);
container.width(itemsPerPage*liWidth);

$('#right').click(function() {
    $( runner  ).animate({ "left": "-=51px" }, "slow" );
});


$('#left').click(function() {
    $( runner  ).animate({ "left": "+=51px" }, "slow" );
});
CSS

div#carousel_wrapper{

 overflow:hidden;
 position:relative;
 width:500px;
 height: 100px;
}

ul {
 padding:0px;
 margin:0px;
 position: absolute;
 top:50px;
 left: 0px;
 width:300px;
 height: 50px;
 overflow: hidden;
 }
 ul li {
   list-style:none;
  float:left;
 }
ul li div {
  border:1px solid white;
  width:50px;
  height:50px;
  background-color:gray;
}
Share
Edit
Follow
answered Feb 27, 2014 at 19:53
Ani's user avatar
Ani
4,52344 gold badges2828 silver badges3232 bronze badges
Thanks, was looking for something like that without additinoal plugins – 
user133408
 CommentedFeb 27, 2014 at 19:58
1
Oh..I thought you were OP :P ...My bad – 
Ani
 CommentedFeb 27, 2014 at 19:59 
@Ani thats awesome. two more question. why i cannot use liWidth if I'm not aware of the width? how can i make it circular/infinite?? appreciate it. – 
harshes53
 CommentedFeb 27, 2014 at 20:02
1
Oh...I didn't knew you want circular...hold on – 
Ani
 CommentedFeb 27, 2014 at 20:04
Add a comment
Your Answer
Reminder: Answers generated by AI tools are not allowed due to Stack Overflow's artificial intelligence policy

Some of your past answers have not been well-received, and you're in danger of being blocked from answering.

Please pay close attention to the following guidance:

Please be sure to answer the question. Provide details and share your research!
But avoid …

Asking for help, clarification, or responding to other answers.
Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.

Start asking to get answers

Find the answer to your question by asking.

Explore related questions

javascriptjquerycsscarousel
See similar questions with these tags.

The Overflow Blog
Can climate tech startups address the current crisis?
What we learned at TDX 2025
Featured on Meta
Community Asks Sprint Announcement - March 2025
Meta Stack Exchange site maintenance scheduled starting Monday, March 17,...
Policy: Generative AI (e.g., ChatGPT) is banned
Stacks Editor development and testing
Is it better to redirect users who attempt to perform actions they can't yet...
Hot Meta Posts
14
What is the role of this new bottom notice on questions, below the answer box?

Report this ad

Report this ad
Linked
0
Scrolling/carousel with interval
-1
jQuery carousel - disable next/previous link when last item on the list is reached
Related
0
jQuery carousel
0
Circular Carousel (jQuery)
0
Make a carousel with divs
0
Carousel Jquery/Javascript
4
Trying to create a carousel effect with jQuery
0
how to make a jquery carousel
3
Make a carousel using JavaScript
0
Please help me with this carousel
0
Using JQuery to carousel through divs
0
How can i make this carousel working with JS and CSS?
Hot Network Questions
Has the Trump administration explained how they're going to get people to the Moon/Mars if they're reducing the size of NASA?
Building an 8080 based computer
PTIJ: Why did Mordechai insist on Esther ploughing (החרש תחרישי) at such a crucial moment?
Does this average exist?
Is the US debt "crisis" fake?
Is Oz a real place?
With what to replace uBlock Origin now after Google Chrome nerfed it?
What arguments can a developer make to management that he could be Product Owner for his Scrum team?
Is crypto sniping illegal?
Did Trump campaign against gay people?
Do any Tribes actively involve kinfolk in the fight for Gaia?
Why are the download sizes so much bigger than they actually are?
How can visa officials know I ‘visa shopped’
Converting EU motors 230V 30A for U.S. use
How do I start a tie from a grace note to another note in Lilypond?
Am I better off concocting my own chain wax?
How to Reorder Piecewise Function Compositions
What is the swap.img in Disk Analyzer
Did Asimov ever comment on whether the name of this Foundation character was a deliberate clue?
How would a society with no wood reliably heat itself?
"Naïve category theory", or, pedagogy and how to Introduce natural transformations?
Why Do We Take the Derivative of the Basis Vector When Calcuating the Acceleration in Polar Coordinates?
The arrows are not aligning
How to mount a headboard intended for bed to a wall instead?
 Question feed

Stack Overflow
Questions
Help
Chat
Products
Teams
Advertising
Talent
Company
About
Press
Work Here
Legal
Privacy Policy
Terms of Service
Contact Us
Cookie Settings
Cookie Policy
Stack Exchange Network
Technology
Culture & recreation
Life & arts
Science
Professional
Business
API
Data
Blog
Facebook
Twitter
LinkedIn
Instagram
Site design / logo © 2025 Stack Exchange Inc; user contributions licensed under CC BY-SA . rev 2025.3.14.23870

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): guide me
  • Blacklisted phrase (0.5): how can i
  • Blacklisted phrase (0.5): How can i
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): How do I
  • Blacklisted phrase (1): Is there any
  • Blacklisted phrase (0.5): i cannot
  • Blacklisted phrase (3): Please anyone
  • RegEx Blacklisted phrase (3): Please help me
  • RegEx Blacklisted phrase (1.5): reputation
  • RegEx Blacklisted phrase (1.5): I'm new
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): See similar question
  • Low reputation (1):
Posted by: Umer Masood

79508975

Date: 2025-03-14 11:50:30
Score: 10.5 🚩
Natty: 5.5
Report link

i have the same issue, someone managed to fix it?

Reasons:
  • Blacklisted phrase (1): i have the same issue
  • RegEx Blacklisted phrase (1.5): fix it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i have the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: alona zarenkin