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

79508878

Date: 2025-03-14 11:14:20
Score: 10 🚩
Natty: 5.5
Report link

I am facing a similar issue while trying to deploy a Hyperledger Fabric blockchain network for my final year project.

You mentioned that switching to WSL2 helped you resolve the problem. Could you please share the detailed steps you followed to:

1. Set up WSL2 and Ubuntu.

2. Install Hyperledger Fabric.

3. Deploy the network and run the sample chaincode successfully.

I would really appreciate your guidance, as I have been struggling to resolve this issue. Thank you in advance!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (2.5): Could you please share
  • RegEx Blacklisted phrase (3): Thank you in advance
  • No code block (0.5):
  • Me too answer (2.5): I am facing a similar issue
  • Low reputation (1):
Posted by: sudhakar P

79508866

Date: 2025-03-14 11:09:18
Score: 4
Natty:
Report link

They have root key key at their api docs at the top of the page "Download the Attestation Report Root CA Certificate here"
https://api.portal.trustedservices.intel.com/content/documentation.html

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

79508862

Date: 2025-03-14 11:08:18
Score: 11.5
Natty: 7.5
Report link

i have the same problem as you . If you did find the solution, can you share it with us ?

Reasons:
  • Blacklisted phrase (1): i have the same problem
  • RegEx Blacklisted phrase (2.5): can you share
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: med anis dev

79508858

Date: 2025-03-14 11:08:17
Score: 7 🚩
Natty: 5
Report link

i followed that same documentation, still can't able too integrate mappls with react native. please help me if knw more

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): please help me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rakshith A V

79508808

Date: 2025-03-14 10:46:12
Score: 4
Natty:
Report link

I guess I'll just do a backup and restore then.

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

79508787

Date: 2025-03-14 10:40:10
Score: 7 🚩
Natty:
Report link

Any resolution? I have the same issue. For me I can't docker pull anything also, e.g. docker pull postgres.

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

79508768

Date: 2025-03-14 10:30:07
Score: 11 🚩
Natty: 6.5
Report link

Did you find solution? I have the same problem.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (3): Did you find solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find solution
  • Low reputation (1):
Posted by: Michał Kostrzewa

79508753

Date: 2025-03-14 10:24:05
Score: 4.5
Natty: 5
Report link

Generic HTTP(S)/JSON Connector and https://botium.atlassian.net/wiki/spaces/BOTIUM/pages/38502401/Writing+own+connector this both pages do not exist

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

79508734

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

https://www.npmjs.com/package/react-to-print React-to-print will work for it install and follow guide, happy coding!

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

79508660

Date: 2025-03-14 09:49:56
Score: 4.5
Natty: 5
Report link

Stakater Reloader supports this now: https://github.com/stakater/Reloader/pull/808

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

79508648

Date: 2025-03-14 09:44:54
Score: 4.5
Natty: 4
Report link

You can try the CANoe DLT Add-On to parse DLT messages: https://www.vector.com/int/en/download/canoe-add-on-for-autosar-diagnostic-log-and-trace-dlt-2-7-2/

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

79508639

Date: 2025-03-14 09:41:53
Score: 5
Natty: 5
Report link

Here is a lib that provide a @Transactional annotation for nestjs and drizzle (and others ORM) : https://papooch.github.io/nestjs-cls/plugins/available-plugins/transactional/drizzle-orm-adapter

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Transactional
  • Single line (0.5):
  • Low reputation (1):
Posted by: web cedric

79508593

Date: 2025-03-14 09:24:48
Score: 9 🚩
Natty: 5.5
Report link

I have the same problem as you, have you solved it?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (2): have you solved it
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Flec

79508543

Date: 2025-03-14 09:02:44
Score: 8.5 🚩
Natty: 5.5
Report link

Sorry, bro, I'm sorry I can't answer your question, but I actually want to ask you one, if that's OK. I'm finishing my studies in computer science and my thesis involves integrating BPEL orchestration with blockchain and smart-contracts. I'm having an enormous difficulty in being able to run BPEL somewhere. No modern IDE supports it natively any more and above all, I can't even configure Apache ODE on Tomcat, as it requires too old a version of Java. I read that you are using BPEL, could you tell me how you did it? How do I create a BPEL development environment?

Reasons:
  • Blacklisted phrase (1): How do I
  • RegEx Blacklisted phrase (2.5): could you tell me how you
  • RegEx Blacklisted phrase (0.5): sorry I can't
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Fonz Za

79508490

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

Using the @Embedded annotation will make it more troublesome to upgrade the database, and you should also pay attention to where it is referenced.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Embedded
  • Single line (0.5):
  • Low reputation (1):
Posted by: Taotao Xue

79508444

Date: 2025-03-14 08:16:33
Score: 4.5
Natty:
Report link

A little late, but remember that openAI is just a language prediction model. It takes a string of text, and predicts what comes next based on all its training data. Think about all the training data it's had on the internet. This includes screenplays, short novels, fanfictions, etc. It knows a lot about how to continue conversations based on the likelyhood of the next word, but only if it's in the right format. So, instead of formatting your data like just regular strings, format it in a way that makes sense for the AI to continue it, such as in a screenplay. In other words, iterate on a string like:

import openai

openai.api_key = "secret_key"

model_engine = "text-davinci-003"

conversation = "This is the script for a casual conversation between a human and an AI:\n"

for i in range(2):

[tab]conversation += f"\nHuman: {input()}\n"

[tab]response = openai.Completion.create(engine = model_engine, prompt=conversation, max_tokens = 1024, n=1, stop=None, temperature=0.5)

[tab]conversation += f"{response['choices'][0]['text']}\n"

[tab]print(response["choices"][0]["text"])

print(conversation)

With this code, I got this output:

This is the script for a casual conversation between a human and an AI:

Human: Hello, computer. What is your name?

AI: Hi there! My name is AI. It's nice to meet you.

Human: Come up with a better name.

AI: How about AI-2?

Reasons:
  • Blacklisted phrase (0.5): Hi there
  • Blacklisted phrase (1): What is your
  • Long answer (-1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: luce

79508383

Date: 2025-03-14 07:35:24
Score: 4
Natty: 5
Report link

The Microsoft Active Directory policy change detection system for ubuntu is not activated/configured.

https://documentation.ubuntu.com/adsys/en/latest/how-to/set-up-adwatchd/

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

79508379

Date: 2025-03-14 07:34:23
Score: 8.5 🚩
Natty: 4
Report link

I am facing an issue that is relevant to this post, please guide me if i am doing it correct:

I have four private function apps for Dev, UAT, QA, and Prod respectively hosted in Azure V-Net behind Azure Application gateway. I have created four separate listeners with HTTPs and port 4430, 4431, 4432, and 443 respectively. I am sending API requests from dataverse for these function app using a domain name that is translated to the public IP of the application gateway. Now, I am able to access the function app using all ports but when i try to access any api end point it works for port 443 for any environment but using non standard port i do not get any response and get unauthorized error? What could be the reason?

Reasons:
  • Blacklisted phrase (1): guide me
  • Blacklisted phrase (1): What could be
  • RegEx Blacklisted phrase (2.5): please guide me
  • RegEx Blacklisted phrase (1): I am facing an issue that is relevant to this post, please
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: user29974396

79508373

Date: 2025-03-14 07:31:22
Score: 5.5
Natty: 4.5
Report link

I think this is some sort of bug in VSCode or plugins. I am using the PWA Builder plugin and I have the same problem. I am also using Github Copilot, which spins in circles telling me to remove display_manifest (because that triggers an error saying undefined) and then add it again (because it not being present triggers an error saying it is missing). It's pretty maddening.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Noelle Hockaday

79508358

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

Maybe https://developer.apple.com/documentation/uikit/uitextitem will do the job, there's also some info in this WWDC session https://developer.apple.com/videos/play/wwdc2023/10058

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

79508280

Date: 2025-03-14 06:30:10
Score: 5.5
Natty:
Report link

I have also encountered the same problem. Have you solved it?

Reasons:
  • Blacklisted phrase (2): Have you solved it
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Flec

79508226

Date: 2025-03-14 05:43:01
Score: 4
Natty:
Report link

BCE is a java jar/war/class encrypt tools。
try https://bce.gopiqiu.com/

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

79508204

Date: 2025-03-14 05:21:55
Score: 4.5
Natty: 4.5
Report link

Me too experiencing this, any updates?

i've set all scheme app.config.ts,

and it is callable with adb or npx to my appscheme

I don't get what's wrong maybe is this just a warn? as word it is?

Reasons:
  • RegEx Blacklisted phrase (0.5): any updates
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: 정희범

79508202

Date: 2025-03-14 05:19:53
Score: 6 🚩
Natty: 5
Report link

Even after adding jackson-databind, similar error persists "jackson-databind library cannot be found:

com.fasterxml.jackson.databind.ObjectMapper".

Anythoughts on this?

Reasons:
  • RegEx Blacklisted phrase (1): similar error
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29974118

79508187

Date: 2025-03-14 05:04:50
Score: 4.5
Natty: 4.5
Report link

while scaling is necessary, what i don't understand is why we use 1./255 instead of 1/255. Both seem to work the same way. or even specify rescale = 0.003922. Any gotchas here?

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

79508173

Date: 2025-03-14 04:54:47
Score: 15
Natty: 7.5
Report link

we are getting the same issue with oracle DB , Do we have a fix for this problem? Any help would be appreciated.

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (1.5): fix for this problem?
  • RegEx Blacklisted phrase (3): Any help would be appreciated
  • RegEx Blacklisted phrase (2.5): Do we have a
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): getting the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: bobby

79508138

Date: 2025-03-14 04:18:40
Score: 4.5
Natty: 5
Report link

https://www3.lunapic.com/editor/working/174192539274625972?79832912288

At that set up point, make sure those two at the bottom of the setup are not selected.

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

79508119

Date: 2025-03-14 03:55:36
Score: 4
Natty: 4
Report link

Test testing message Dont look at it and image that there is no this message

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

79508088

Date: 2025-03-14 03:30:28
Score: 8 🚩
Natty:
Report link

I used this command to get the expected output:

`Thyroid$cancer <- relevel(Thyroid$cancer, ref = "No")``

The default in R ia No but it did not work here and I have no idea why. I had to specify the reference using the above coce. Any answer as to why R did not use "No" as the default will be appreciated.

R for an unknown reason to me used "Yes" as the reference. I am not sure if I was supposed to declare the outcome as factor to fix this issue??

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): did not work
  • RegEx Blacklisted phrase (1.5): fix this issue??
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Biostat

79508079

Date: 2025-03-14 03:24:25
Score: 8.5 🚩
Natty: 6.5
Report link

I need a script with the information that is in the forum and also who has read and write access, who is the owner of the folders and the last date of modification.

Can you help me?

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (3): Can you help me
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: André Luiz Pinto

79508060

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

no more info there try see this https://developer.android.com/guide/topics/manifest/data-element?hl=ko#:~:text=android%3ApathSuffix%0Aandroid%3A-,pathPattern,-android%3ApathAdvancedPattern

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: 정희범

79508026

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

Text your dynasty group chat for help

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

79507857

Date: 2025-03-13 23:26:36
Score: 6 🚩
Natty: 5.5
Report link

Some one done this Task succesfully?

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

79507813

Date: 2025-03-13 23:00:30
Score: 11.5 🚩
Natty: 5.5
Report link

Were you able to solve this issue?

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve this issue?
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29973406

79507750

Date: 2025-03-13 22:16:21
Score: 4
Natty: 4.5
Report link

As of .NET 8.0, System.Data.SqlClient is obsolete. Instead, use Microsoft.Data.SqlClient.

https://techcommunity.microsoft.com/blog/sqlserver/announcement-system-data-sqlclient-package-is-now-deprecated/4227205

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

79507734

Date: 2025-03-13 22:10:20
Score: 5
Natty: 5
Report link

I don't have an answer but how did you go about setting the "offset" to one for the second notebook?

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

79507556

Date: 2025-03-13 20:31:56
Score: 4
Natty:
Report link

I tried this solution but when I did it and I reload the page, my app is trying to save the page in my downloads, I'm not sure exactly why is happening, so I changed a little bit the config to only get the .mjs files, but then I'm getting new errorsenter image description here

And the errors are: enter image description here

Reasons:
  • RegEx Blacklisted phrase (1): I'm getting new error
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Javier Torres

79507524

Date: 2025-03-13 20:16:52
Score: 4
Natty:
Report link

Seeing the "Office script service is unreachable" message myself. Script will not run.

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

79507518

Date: 2025-03-13 20:13:48
Score: 6 🚩
Natty:
Report link

I am having the same issue, but there is only 2 parameters not 3, and I can't use the importrange because I don't want all of the data, and I want it to sort alphabet order when it pulls in

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Deb Brown

79507506

Date: 2025-03-13 20:09:47
Score: 4
Natty:
Report link

Answer: WHERE (ColumnName) IS NOT NULL

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

79507493

Date: 2025-03-13 20:02:45
Score: 4.5
Natty: 4
Report link

I did face the same issue with the error "The server is unwilling to process the request"

But in my case it was throwing an error, while creating a New Organizational Unit.

This article help me and it worked for me: https://techijack.com/fixing-the-server-is-unwilling-to-process-the-request/

Reasons:
  • Blacklisted phrase (1): This article
  • Blacklisted phrase (1): help me
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): face the same issue
  • Low reputation (1):
Posted by: Rohit

79507484

Date: 2025-03-13 19:56:41
Score: 8.5 🚩
Natty:
Report link

I am using the same model and have ended up in the same question. Did you get an answer?

Reasons:
  • RegEx Blacklisted phrase (3): Did you get an answer
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mushruff S

79507471

Date: 2025-03-13 19:49:38
Score: 4.5
Natty:
Report link

UPDATED ANSWER: Use Detect-It-Easy

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
Posted by: Alon Alush

79507373

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

solved

... https://rdrr.io/cran/lidR/man/st_crs.html:


# Overwrite the CRS (but does not reproject)
st_crs(ctg) <- 26918
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: sunnyR

79507343

Date: 2025-03-13 18:48:11
Score: 5.5
Natty:
Report link

I followed your suggestion and added the view setup in the on_ready method, like this:

@bot.event
async def on_ready():
    print(f"Logged in as {bot.user.display_name}!")
    await bot.tree.sync()
    bot.add_view(CloseView())
    bot.add_view(ClaimView())

However, I'm still encountering an error:

2025-03-13 19:38:00 ERROR    discord.client Ignoring exception in on_ready
Traceback (most recent call last):
  File "C:\Users\ryad\AppData\Local\Programs\Python\Python311\Lib\site-packages\discord\client.py", line 449, in _run_event
    await coro(*args, **kwargs)
  File "C:\Users\ryad\Documents\Clients\March 2025\mystichrome\main.py", line 264, in on_ready
    bot.add_view(CloseView())
                 ^^^^^^^^^^^
TypeError: CloseView.__init__() missing 2 required positional arguments

What should I do to resolve this issue?

Reasons:
  • Blacklisted phrase (2): What should I do
  • RegEx Blacklisted phrase (1.5): resolve this issue?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Amine Gazit

79507293

Date: 2025-03-13 18:22:06
Score: 4.5
Natty:
Report link

The FastAPI web-site provides instructions on building a Docker image for FastAP: https://fastapi.tiangolo.com/deployment/docker/

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

79507270

Date: 2025-03-13 18:04:02
Score: 5.5
Natty: 4.5
Report link

just wanna say thanks to came back with your own solution, helped me a lot now! StackOverflow still has its value haha! GPT, for example, gave me a such more laborious solution.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): StackOverflow
  • Blacklisted phrase (1): helped me a lot
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: DatalakeMermaid

79507133

Date: 2025-03-13 17:01:46
Score: 4
Natty:
Report link

The workaround described below is to disable hardware acceleration for the GUI.

https://github.com/microsoft/vscode/issues/205491

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

79507103

Date: 2025-03-13 16:46:42
Score: 6 🚩
Natty: 5.5
Report link

instale y actualice la librería de json.text y se soluciono

Reasons:
  • Blacklisted phrase (2.5): solucion
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nelson GH

79507018

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

I was looking for the same! Found this: https://apps.odoo.com/apps/modules/14.0/custom_email_reminder/

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

79506949

Date: 2025-03-13 15:50:27
Score: 5
Natty:
Report link

vscode-controls-linux stop work on vscode Vscode 1.98.1

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

79506911

Date: 2025-03-13 15:33:23
Score: 4.5
Natty: 5
Report link

Also resolved my issue thank you!

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: iydrin

79506863

Date: 2025-03-13 15:16:18
Score: 6.5 🚩
Natty: 5.5
Report link

Sorry if I'm bringing this discussion up again but it's the only one on the web I've found that deals with this issue.

In the Docker documentation, it appears that ENV parameters defined in the Dockerfile are ignored if there is an environment section in the docker-compose file.

5 . Set in a container image in the ENV directive. Having any ARG or ENV setting in a Dockerfile evaluates only if there is no Docker Compose entry for environment, env_file or run --env.

My question is this: if there is an environment section in the docker-compose file, are the ENV parameters defined in the Dockerfile completely ignored or are they "combined/replaced" with those defined in the docker-compose file?

I would like to keep certain configuration parameters of a Timescale container (postgres) in the Dockerfile and add other configuration parameters in Docker-Compose to be modified "at runtime".

Thank you in advance

Best regards

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • RegEx Blacklisted phrase (3): Thank you in advance
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: mmjc23

79506857

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

How do I tell langchain4j to use the tool from openAI itself?

You need to set langchain4j.open-ai.chat-model.model-name = gpt-4o-search-preview

And How do I tell langchain4j to set the web_search_options like on the python code snippet below

Unfortunately there is currently no way to set it

Reasons:
  • Blacklisted phrase (1): How do I
  • Contains signature (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How do I
  • Low reputation (1):
Posted by: LangChain4j

79506856

Date: 2025-03-13 15:14:17
Score: 4
Natty:
Report link

Okay this seems to be a bug that is fixed in 18.4. https://developer.apple.com/documentation/safari-release-notes/safari-18_4-release-notes

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

79506761

Date: 2025-03-13 14:35:07
Score: 5
Natty: 4.5
Report link

This post answers your question.

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

79506757

Date: 2025-03-13 14:33:06
Score: 5
Natty: 5
Report link

sorry I don't have th answer, just wondering if you ever found any more information on how to do this ?

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

79506714

Date: 2025-03-13 14:18:01
Score: 9 🚩
Natty: 6
Report link

were you able to solve this? It looks like it doesn't like the config parameter. the buefy-next README doesn't include passing a config object into app.use

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve this?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: cd456

79506688

Date: 2025-03-13 14:06:58
Score: 5.5
Natty: 6
Report link

And volia - it doesnt work....

Reasons:
  • Blacklisted phrase (1): doesnt work
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29971919

79506681

Date: 2025-03-13 14:03:57
Score: 6.5 🚩
Natty: 5.5
Report link

am trying something similar with langchain and stuck at langchain understanding tablenames and column names while trying to use Natural language, did you had any luck with your above code?

Reasons:
  • Blacklisted phrase (1.5): any luck
  • 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: SHN_DBA

79506675

Date: 2025-03-13 14:01:55
Score: 6 🚩
Natty: 5
Report link

se você ja tentou de tudo, tenta instalar o microsoft visual studio c++ redistribuível, que dá certo.

Reasons:
  • Blacklisted phrase (3): você
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Samuel Alves

79506661

Date: 2025-03-13 13:56:53
Score: 7 🚩
Natty: 5.5
Report link

I used your script (Google Apps Script side & HTML side) and everything works fine when the CSV file stored on my local PC contains commas (,) as separators.

But when I try to download the content on a CSV file which have semi colons as separators, the script didn't works. Have you a solution?

Thank you in advance for your help, Best regards, Christophe

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • RegEx Blacklisted phrase (3): Thank you in advance
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Christophe Laschweng

79506644

Date: 2025-03-13 13:50:52
Score: 5
Natty: 5.5
Report link

ROUT xxx MUST FIRST DIAL 1 OR 0

I would like to take out everything after "ROUT xxx"

The "xxx" are wildcard characters. So, the main search is on ROUT with 3 to 4 characters after.

what would be a find/replace example for this?

Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29971868

79506615

Date: 2025-03-13 13:40:48
Score: 6 🚩
Natty:
Report link

I am doing that and I am trying to send that webhook by push subscription method
so here is the problem i am facing
when i am send data from pubsub cloud cli it is sending post request with data to webhook

But when i try to test it when new review comes nothing is coming up

Kindly help me solve this issue

Thank you
Here is the response when I made the updatenotification setting with 200 ok response.

{
    "name": "accounts/*/notificationSetting",
    "pubsubTopic": "projects/sonic-arcadia-*/topics/business-review-notifications",
    "notificationTypes": [
        "NEW_REVIEW",
        "UPDATED_REVIEW"
    ]
}
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (3): Kindly help
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: satwik

79506538

Date: 2025-03-13 13:08:40
Score: 4
Natty: 4.5
Report link

Adding a good reference in case someone needs it: https://www.baeldung.com/java-string-length-vs-getbytes-length

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

79506528

Date: 2025-03-13 13:04:39
Score: 4
Natty: 4.5
Report link

As of .NET 9, Microsoft has introduced a JSON schema exporter for .NET classes:

https://learn.microsoft.com/en-us/dotnet/standard/serialization/system-text-json/extract-schema

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

79506524

Date: 2025-03-13 13:01:38
Score: 4
Natty:
Report link

I dont know. ask chatgpt it will know.

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

79506523

Date: 2025-03-13 13:01:37
Score: 5
Natty: 5.5
Report link

Any solution for this problem in storybook

Reasons:
  • Blacklisted phrase (1.5): Any solution
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mkadmini Rihab

79506435

Date: 2025-03-13 12:22:29
Score: 4
Natty: 5.5
Report link

dsjfsjkdnksdnbfsdnflknfdsjkfjskdnffbdsjfnsjknds123#

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

79506311

Date: 2025-03-13 11:34:18
Score: 9.5
Natty: 7
Report link

@Janos, could you please explain how to do that? Would it also work on newer installations of R?

thanks,

Erik

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (2.5): could you please explain how
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Janos
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: user24832908

79506306

Date: 2025-03-13 11:32:17
Score: 7.5 🚩
Natty: 4
Report link

If you remove from pom springboot*mvc not work @Value and in constructor of component new object (not using @Autowire as in best practices, if you use autowire have the same problems)if you use only webflux (no classical Springboot) with routers and not @controller.
Somebody know reasons and solutions about it?

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): have the same problem
  • Ends in question mark (2):
  • User mentioned (1): @Value
  • User mentioned (0): @Autowire
  • User mentioned (0): @controller
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: SkyBlackHawk

79506259

Date: 2025-03-13 11:15:13
Score: 4
Natty: 6
Report link

Why python 2.7? I mean just update to like 2.9 for it to work. Else just reinstall the whole thing.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Why
  • Low reputation (1):
Posted by: normie on code

79506170

Date: 2025-03-13 10:40:04
Score: 4
Natty:
Report link

The "tables of the relationship between two other tables" is a Many-To-Many Relationship. This can be achieved by giving both tables an ICollection List of both Classes. EF Core will do the rest and generate it.

https://learn.microsoft.com/en-us/ef/core/modeling/relationships/many-to-many more on this under the chapter Basic many-to-many

Now to your disliking of storing an entire model of the DB in code. Why exactly don't you want to do it? Is there any specific reason?

Reasons:
  • Blacklisted phrase (1): Is there any
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: LMA

79506137

Date: 2025-03-13 10:29:02
Score: 4
Natty:
Report link

Use for...of Instead of for...in

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

79506104

Date: 2025-03-13 10:20:59
Score: 4.5
Natty: 4.5
Report link

I don't have the integer values, (only the px) as they depend on the layout, I'm guessing this kind of thing is not possible?

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

79506042

Date: 2025-03-13 09:59:54
Score: 4
Natty:
Report link

it will work with Webview? I mean all proxy connection

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

79505978

Date: 2025-03-13 09:38:49
Score: 4
Natty:
Report link

I just decided to make my own parser with excel like admin to explain data first

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

79505914

Date: 2025-03-13 09:13:42
Score: 7.5 🚩
Natty:
Report link

Can you share the complete logs of flutter doctor -v ?
Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Can you share
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Can you share the
  • Low reputation (1):
Posted by: DAzria

79505892

Date: 2025-03-13 09:04:40
Score: 4
Natty:
Report link

To resolve the issue I encountered with my iOS app in Firebase, the most effective solution was to delete the app from Firebase and re-register it. Additionally, I deactivated and then reactivated the authentication features. Unfortunately, I found that the support from Google was not helpful, despite having paid for a support plan. If you're facing a similar problem, I recommend skipping the time-consuming attempts at getting help from Google and simply follow these steps to resolve the error quickly.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): facing a similar problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: devStud

79505835

Date: 2025-03-13 08:44:35
Score: 4.5
Natty:
Report link

The first, and most affordable option is to try "NoICE" debugger: https://www.noicedebugger.com/index.html

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

79505740

Date: 2025-03-13 07:56:23
Score: 8 🚩
Natty: 6.5
Report link

How did you manage to make the button? I tried to do the same, but in the end it just turns out to be text "Update1" etc.

https://i.sstatic.net/F07R2XFV.png

https://i.sstatic.net/2frJwTzM.png

maybe it's because i'm using Groovy Sandbox?

Reasons:
  • RegEx Blacklisted phrase (3): did you manage to
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How did you
  • Low reputation (1):
Posted by: malltaf

79505700

Date: 2025-03-13 07:37:18
Score: 4
Natty: 5
Report link

i installed it following this blog,

https://medium.com/@arfanmahmud47/build-opencv-4-from-source-with-gstreamer-ubuntu-zorin-peppermint-c2cff5393ef

don't forget to delete/remove the build directory for previous configurations and create new and configure again.

Reasons:
  • Blacklisted phrase (1): this blog
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
Posted by: Khan

79505684

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

I have this problem when I use different wifi, I can't make calls to each other, but when I connect to the same network, I can still make calls to each other. I don't know what's wrong, I hope everyone can help me. This is my source code.

FE: https://github.com/qminhminh/test_call_video_webrtc

BE: https://github.com/qminhminh/call_wbrtc_server

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I have this problem
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: quang minh

79505664

Date: 2025-03-13 07:20:14
Score: 4.5
Natty:
Report link

Maybe you can try to see if your video stream is normal, https://edgeone.ai/tools/hls-player

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

79505654

Date: 2025-03-13 07:15:12
Score: 4.5
Natty:
Report link

Are you able to resolve the issue?

I am facing the same issue.
I ran Headed playwright in WSL ubuntu using xLaunch. The browser was launched successfully but failed at page.goto step
I tried to use page.keyboard.press('F5') but it's still failed.
I tried to get some logs and everything is ok:

await world.page.waitForSelector('body', { state: 'attached' });  // Wait for the body element to be attached
console.log('Page is ready for navigation');
// Wait until the page is fully loaded
await world.page.waitForLoadState('load');
console.log('Page is fully loaded and interactive.');

Except I can not interact with the browser.
The test runs ok in Headless mode.

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve the issue?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I am facing the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Quy Tran

79505631

Date: 2025-03-13 07:01:09
Score: 8
Natty: 7
Report link

I used this last command successfully, however when I export the value (float) fields to the excel sheet they are always formatted as text? Is there a solution?

Thanks

Share

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (3): Is there a solution
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Dino bartoletti

79505630

Date: 2025-03-13 07:01:09
Score: 4
Natty:
Report link

Added my fix to the Question section.

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