79219960

Date: 2024-11-24 11:42:55
Score: 13
Natty: 8
Report link

Did you manage to fix this ? I'm having the same problem. Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I'm having the same problem
  • RegEx Blacklisted phrase (3): Did you manage to fix this
  • RegEx Blacklisted phrase (1.5): fix this ?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Francisco Vicente

79219959

Date: 2024-11-24 11:41:54
Score: 0.5
Natty:
Report link

Maybe alternatively, you could flatten the multi loop into a single one going over all required combinations. For the program of Answer 1, that could look like:

program nested implicit none integer :: num_nests, i,j,k integer, dimension(:), allocatable :: nest_limits integer, dimension(:), allocatable :: nests

print *, "Please enter number of nests:"
read(*, *) num_nests
allocate(nest_limits(num_nests))
allocate(nests(num_nests))

print *, "Please enter nest limits:"
read(*, *) nest_limits

do i=0,product(nest_limits)-1
   j=i
   do k=1,num_nests
      nests(k)=1+mod(j,nest_limits(k))
      j=j/nest_limits(k)
   enddo
   print *, nests(:)
enddo

end program nested

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: HansHersbach

79219958

Date: 2024-11-24 11:41:54
Score: 1
Natty:
Report link

Thanks to kmdreko in the comments. It turns out that it isn't something you can do in Rust, however it was enough to constraint a single parameter type to the traits I needed. Now my quantity module has no actual mention of Quantity<D,U,V> while still operating on them.

Here's what it looks like :

#[derive(Debug)]
pub struct ParsedValue<L>
where
    L: FromStr + Debug + DefaultUnit,
{
    pub raw: String,
    pub parsed: L,
}

impl<L> ParsedValue<L>
where
    L: FromStr + Debug + DefaultUnit,
    <L as FromStr>::Err: Debug,
{
    // Constructor to create a new ParsedValue
    pub fn new(raw: &str) -> Result<Self, ParseError<L>> {
        if let Some(captures) = HAS_UNIT_RE.captures(raw) {
            let _is_reference = captures.get(1).is_some();
            let raw = format!(
                "{} {}",
                captures[2].to_string(),
                if let Some(unit) = captures.get(3) {
                    unit.as_str()
                } else {
                    L::DEFAULT_UNIT
                }
            );
            // Parse the string into L, or handle failure
            let parsed = raw
                .parse::<L>()
                .map_err(|e| ParseError::UnrecognizedQuantity(e))?;
            Ok(ParsedValue {
                raw: raw.to_string(),
                parsed,
            })
        } else {
            Err(ParseError::InvalidQuantityFormat(raw.to_string()))
        }
    }
}

use uom::si::f64 as si;

pub trait DefaultUnit {
    const DEFAULT_UNIT: &str;
}

/// Length (default: kilometers, since distances in geoscience are often measured in km)
pub type Length = ParsedValue<si::Length>;

impl DefaultUnit for si::Length {
    const DEFAULT_UNIT: &str = "km";
}


#[derive(Debug)]
pub enum ParseError<T> where T: FromStr, <T as FromStr>::Err: Debug {
    InvalidQuantityFormat(String),
    UnrecognizedQuantity(<T as FromStr>::Err)
}

use ParseError::*;

impl<T> Display for ParseError<T> where T: FromStr, <T as FromStr>::Err: Debug  {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(
            f,
            "{}",
            match self {
                InvalidQuantityFormat(s) => format!("Invalid Quantity Format : {}", s),
                UnrecognizedQuantity(s) => format!("Unrecognized quantity : '{s:?}'. Check the unit and value.")
            }
        )
    }
}

impl<T> std::error::Error for ParseError<T> where  T: FromStr+Debug, <T as FromStr>::Err: Debug {
}


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

79219955

Date: 2024-11-24 11:40:54
Score: 3.5
Natty:
Report link

This is fixed with Spring Boot 3.4.0. See https://github.com/spring-projects/spring-boot/commit/44e66ef3449f8f6a69b4116fb4543d2ba5f4244e and https://github.com/spring-projects/spring-boot/issues/42731.

But Spring Boot doesn't officially support Tomcat 11 yet. See https://github.com/spring-projects/spring-boot/issues/42730.

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Peter K.

79219950

Date: 2024-11-24 11:36:54
Score: 0.5
Natty:
Report link

The problem with the audio output quality in your application may stem from several factors. Let's break down the possible reasons and suggest solutions:

  1. Voice Settings Configuration The voice_settings parameters you’re using in the Eleven Labs API can be a significant factor affecting the quality of the generated speech. Here's a closer look:

Stability: A lower stability value (e.g., 0.35) may cause the voice to sound unnatural or robotic, as it reduces the coherence of the speech synthesis. You can try increasing this value to something around 0.7 or 0.8 for a more stable and natural-sounding voice. Similarity Boost: A value of 0.85 is quite high and may result in a synthetic-sounding voice. Lowering it to around 0.5 or 0.6 might make the voice sound more human-like. Style: A value of 0.55 is a reasonable middle ground, but you can experiment with values like 0.7 to improve expressiveness and tone. Suggested settings:

python Copy code "voice_settings": { "stability": 0.75, "similarity_boost": 0.6, "style": 0.7 } 2. Quality of the Text-to-Speech (TTS) Model It’s important to ensure that you're using the most appropriate voice model for Turkish language support. If Eleven Labs' API supports Turkish but the voice model you’ve selected doesn’t handle it well, it can result in poor quality. Model Choice: Some TTS models are optimized for different languages and accents. If the voice model you're using doesn’t support Turkish well, it may sound less clear or more distorted. Suggested Action: Look into Eleven Labs' documentation or their API to check if they offer a model with a better Turkish language output. If not, you might consider other alternatives like:

Google Cloud Text-to-Speech: Offers high-quality, multilingual voices with robust language support, including Turkish. Azure Speech Services: Another good option with a variety of high-quality voices in Turkish. ResponsiveVoice: Also supports Turkish and is known for producing reasonably natural-sounding speech. 3. Audio File Quality and Format MP3 Compression: MP3 files are lossy, which could degrade the sound quality. You could try outputting the audio in a higher-quality format like WAV to see if the quality improves, especially for complex languages like Turkish. Sampling Rate: Ensure that the pygame.mixer.init() is properly configured with a high enough sampling rate (like 44100 Hz), as low rates can cause poor audio fidelity. 4. Network Latency or API Limitations If there’s significant network latency or the API is throttling the requests, this can also affect the quality of the audio response. Ensure that the response time from the Eleven Labs API is not introducing issues. Consider checking if the optimize_streaming_latency parameter in your querystring is suitable for your needs. You might experiment with different values to see if this helps improve the quality. 5. Audio Playback Setup in Pygame Ensure that your Pygame mixer is set up correctly to handle the audio file without distortion. You can experiment with different mixer settings or playback configurations. Example:

python Copy code pygame.mixer.init(frequency=44100, size=-16, channels=2) 6. Alternative TTS APIs for Turkish Language If the Eleven Labs API doesn't provide satisfactory results, here are some alternative models that support Turkish and may produce better results:

Google Cloud Text-to-Speech: Supports Turkish, and you can choose from a wide range of high-quality voices. The voices are natural and customizable. Azure Speech Services: Microsoft Azure provides robust support for Turkish voices with high clarity and natural intonation. ResponsiveVoice: This API offers both free and premium options for Turkish speech synthesis, and it has received positive reviews for sound quality. Final Suggestions: Experiment with Eleven Labs voice settings: Adjust parameters like stability, similarity_boost, and style to find the right balance. Use a different TTS service: Try switching to Google Cloud or Azure for better Turkish language support and clearer speech synthesis. Audio Format and Quality: Consider testing WAV output instead of MP3 for higher fidelity. Improve Pygame audio setup: Experiment with different pygame.mixer configurations and ensure the sampling rate is set to 44100 Hz or higher. By addressing these areas, you should be able to improve the quality of the audio output significantly.

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

79219945

Date: 2024-11-24 11:35:53
Score: 2.5
Natty:
Report link

I think I got the solution :) Please give me a response if it is a bette way to do it.

Here is the delete method:

    # DELETE INCOME
    # ///////////////////////////////////////////////////////////////
    def deleteIncome(self):
        
        model = self.ui.tbl_income.model()
        rows = sorted(set(index.row() for index in
                          self.ui.tbl_income.selectedIndexes()))

        print(rows)
        for row in rows:
            print(f'Row {row} is selected')
            del_row = model.index(row, 0).row() #
            #, model.removeRow(del_row)
            dbc().deleteIncome(del_row)
        self.incomeViewSearch()
Reasons:
  • RegEx Blacklisted phrase (2.5): Please give me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Dag

79219916

Date: 2024-11-24 11:13:48
Score: 3.5
Natty:
Report link

For spring-boot v3 support, make sure you use springdoc-openapi v2

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

79219904

Date: 2024-11-24 11:04:46
Score: 2
Natty:
Report link

You cant use both the singular and plural properties in the same resource block. You can always provide a singular value in the plural property as a single item in the array object

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

79219903

Date: 2024-11-24 11:04:46
Score: 3
Natty:
Report link

Sometimes (mostly now) deeplinks are normal https or https, you just need to check if url launcher can launch, if not, just launch in your inappwebview.

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

79219899

Date: 2024-11-24 11:01:46
Score: 3
Natty:
Report link

I have the same problem in one of my apps and I solve it by a flag.

        private bool isClosingConfirmed = false;

        private void Main_FormClosing(object sender, FormClosingEventArgs e)
    {
        if (!isClosingConfirmed)
        {
            if (MessageBox.Show("Are you sure you want to close the 
                 application?", "Exit Confirmation", 
                 MessageBoxButtons.YesNo, MessageBoxIcon.Question) == 
                 DialogResult.Yes)
            {
                isClosingConfirmed = true;  // Set flag to prevent re-entry
                Application.Exit();          // Close the application
            }
            else
            {
                e.Cancel = true;  // Prevent form from closing
            }
        }
    }
Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same problem
  • Low reputation (0.5):
Posted by: Daryush

79219896

Date: 2024-11-24 11:00:45
Score: 2
Natty:
Report link

First you need to make sure that your client and service are running on the same thread.

Depending on the error message, you need to increase the sendtimeout or receivetimemout time. In addition, there

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

79219890

Date: 2024-11-24 10:56:45
Score: 2
Natty:
Report link

It seems that ogr2ogr convert hyphens (-) into underline (_) and there is not a way to handle it!

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

79219883

Date: 2024-11-24 10:53:44
Score: 4
Natty:
Report link

I also had this problem in my code

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

79219877

Date: 2024-11-24 10:51:43
Score: 1.5
Natty:
Report link

just reminder if someone forget like me don't forget to add

@rendermode InteractiveServer

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

79219874

Date: 2024-11-24 10:49:43
Score: 2
Natty:
Report link

Elevenlabs has changed a lot in the last 5 months. Maybe you are not using it according to the new version. Personally, I generally use its API in my own projects, compared to its library. Please go to "*https://elevenlabs.io/docs/api-reference/overview*" and check what you have done. I hope I helped.

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

79219872

Date: 2024-11-24 10:46:42
Score: 1.5
Natty:
Report link

You have to define this config in config/packages/api_platform.yml:

api_platform:
    serializer:
        hydra_prefix: true
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Marcus Wolf

79219870

Date: 2024-11-24 10:46:42
Score: 1.5
Natty:
Report link
  1. Set Environment Variable to UTC:

TZ=UTC temporal server start-dev --ui-port <MY_PORT_NUMBER> --db-filename myfile.db

This sets logs to UTC.

  1. Use a Custom Config File: Create a config file (config.yaml) with the desired format:

log: timeFormat: "2006-01-02T15:04:05.000Z"

  1. Start the server with:

temporal server start-dev --config config.yaml --ui-port <MY_PORT_NUMBER> --db-filename myfile.db

This forces UTC with precise timestamp control.

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

79219868

Date: 2024-11-24 10:44:42
Score: 1
Natty:
Report link

Today I faced this issue and decided to leave a comment—maybe it will help someone.

It turned out I had Node.js version 16 installed, while the project was created with version 20.

I switched my Node.js version to 20, and it worked

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Aibek Rakhmatillaev

79219864

Date: 2024-11-24 10:44:41
Score: 1.5
Natty:
Report link

credentials are "admin:pass", it is recommended you change this in your config.js

Username:admin Password:pass

This worked for me as suggested by https://stackoverflow.com/users/23070251/user23070251

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

79219860

Date: 2024-11-24 10:42:41
Score: 3.5
Natty:
Report link

I have done it in Visual Studio 2022 > Project Properties > Configuration Properties > Linker > Input > Additional Dependencies > Add Shell32.lib and rebuild code. It should work.

enter image description here

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

79219855

Date: 2024-11-24 10:39:41
Score: 2.5
Natty:
Report link

Problem still occurs after enabling development mode?

U need to open it first in xcode, w8 until everything will load up and set up ur iphone, and then u can open it in vsc

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

79219851

Date: 2024-11-24 10:38:40
Score: 2
Natty:
Report link

as Steve mentioned above, we might not know kernel's business but looking further at close syscall docs (close(2)) we can see:

If fd is the last file descriptor referring to the underlying open file description (see open(2)), the resources associated with the open file description are freed;

https://linux.die.net/man/2/close

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tal Ben ami

79219841

Date: 2024-11-24 10:28:38
Score: 1.5
Natty:
Report link
export default authMiddleware({
  publicRoutes : ['/','/account','/contact','/order','/product/:category(.*)'] 
});

Adding :category(.*) will handle dynamic segment case.

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

79219836

Date: 2024-11-24 10:25:37
Score: 5
Natty: 4.5
Report link

Kind of, I was able to make it work E2E, read this: https://akobor.me/posts/the-curious-incident-of-google-cast-in-jetpack-compose

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

79219831

Date: 2024-11-24 10:23:37
Score: 5
Natty: 4.5
Report link

https://medium.com/@abdulahad2024/fixing-bitcode-issues-in-xcode-16-how-to-resolve-invalid-executable-errors-when-uploading-ios-da07a5a39c7c

Follow this, this has solved my problem

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: A K Azad

79219830

Date: 2024-11-24 10:22:36
Score: 0.5
Natty:
Report link
sudo ffmpeg -f avfoundation -i "1" -c:v libvpx -deadline realtime -cpu-used 5 -b:v 500k -c:a libvorbis -listen 1 -content_type "video/webm" -f webm "http://localhost:8080"

this is working on my m1 playing with VLC or Firefox, not with Chrome.

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

79219827

Date: 2024-11-24 10:20:36
Score: 3.5
Natty:
Report link

my solution : make new env variable name like DB or DBLINK (capitalcase) then use it

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

79219821

Date: 2024-11-24 10:14:35
Score: 1
Natty:
Report link

Please verify file system permissions by ensuring the Spark application has necessary read and write permissions for the target directory. Also verify the file system configuration in your Spark application, especially for distributed file systems like HDFS. Check if the target directory has enough free space to accommodate the data being written.

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

79219809

Date: 2024-11-24 10:08:33
Score: 2
Natty:
Report link

0

It's possible that _thread.lock is actually a method instead of a regular class object. pickle didn't pickle methods, last I checked. However, dill does. You might try using dill instead of pickle and see if it works.

If you're on Ubuntu, you can install it with sudo apt-get install python3-dill.

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

79219801

Date: 2024-11-24 10:04:32
Score: 12 🚩
Natty: 4
Report link

I have the same question but the items repeated with a different number of times, determined by the next column. I have tried the formula: =VSTACK(BYROW(B3:B6,LAMBDA(x,TOCOL(IF(SEQUENCE(,OFFSET(x,,1)),x))))) but it didn't work. I attached a photo here for your reference. Please help me out with this. Thank you very much enter image description here

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): I have the same question
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Please help me
  • RegEx Blacklisted phrase (2): help me out
  • No code block (0.5):
  • Me too answer (2.5): I have the same question
  • Single line (0.5):
  • Low reputation (1):
Posted by: user10535974

79219792

Date: 2024-11-24 09:59:31
Score: 2.5
Natty:
Report link

try correct English "The name is Bond, James Bond"

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

79219781

Date: 2024-11-24 09:51:29
Score: 3
Natty:
Report link

Delete the existing project, try adding a new project in the 'New Project' window, and under the generator, select the archetype as 'Quick Sort'.

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

79219770

Date: 2024-11-24 09:46:28
Score: 1.5
Natty:
Report link

where should i code? at views.py or at the html file?

In the view, definitely. A template is only meant for rendering logic, so presenting the data you already retrieved in a nice way. The view is responsible to retrieve the data or update data.

Reasons:
  • Blacklisted phrase (1.5): where should i
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): where
  • High reputation (-2):
Posted by: willeM_ Van Onsem

79219767

Date: 2024-11-24 09:43:27
Score: 4
Natty:
Report link

You may wanna refer to AWS's documentation for this: https://docs.aws.amazon.com/accounts/latest/reference/using-orgs.html

Thanks!

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

79219766

Date: 2024-11-24 09:43:27
Score: 2.5
Natty:
Report link

Define a stage variable, pass your environment variable to that stage variable. In subsequent steps you can refer the value of the stage variable.

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

79219763

Date: 2024-11-24 09:42:26
Score: 9 🚩
Natty: 5.5
Report link

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

Reasons:
  • Blacklisted phrase (2): Have you solved it
  • RegEx Blacklisted phrase (1.5): solved it?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: tts1 Chen

79219757

Date: 2024-11-24 09:41:26
Score: 0.5
Natty:
Report link

For anyone having the same problem, I have another solution:

Do not call the php script in crontab via

/usr/bin/php /home/desyn/public_html/cron/send_scheduled_emails.php

but use a http-request in the crontab file instead:

/usr/bin/curl -s http://example.com/cron/send_scheduled_emails.php > /dev/null

This did the trick for me.

Reasons:
  • Whitelisted phrase (-2): solution:
  • Has code block (-0.5):
  • Me too answer (2.5): having the same problem
  • Low reputation (0.5):
Posted by: Shaftenberg

79219745

Date: 2024-11-24 09:27:23
Score: 0.5
Natty:
Report link

I experienced the same issue as you.

In devices connected in Debug Mode, FCM's OnNewToken() and OnMessageReceived() were called successfully, but in the Release Mode app, they were not invoked.

This is because, starting from .NET 7.x, unused code is trimmed during the build process due to the use of the linker. FCM Firebase relies on dynamic linking and calls functions later when events occur. However, during compilation, the linker considers these functions unnecessary and removes them to optimize the app.

Although there isn't an exact solution yet, you can resolve this issue by adding the following settings to your .csproj file. Add or modify the following within the section:

<RunAOTCompilation>False</RunAOTCompilation>
<PublishTrimmed>False</PublishTrimmed>

This disables trimming during deployment, ensuring that dynamically called Firebase functions are retained. However, keep in mind that the size of the deployed app will increase as it won't be optimized.

Refer to the following link for more details:

https://github.com/dotnet/maui/issues/16014

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

79219739

Date: 2024-11-24 09:23:22
Score: 2
Natty:
Report link

to avoid that inside Apply to each to the group /person, the another answer is right, select , join to extract the email address.

But the best way to do is make it simple, in the sharepoint list, the email address to typed in by the user, that is the best choice.

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

79219734

Date: 2024-11-24 09:20:21
Score: 4.5
Natty:
Report link

Thank you all. The problem is solved)

https://www.reddit.com/r/pycharm/comments/14r6mdf/changing_terminal_shell/

"Help | Find Action," type registry, Enter

Disable terminal.use.conpty.on.windows

Restart PyCharm

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dionis Dvalishvili

79219727

Date: 2024-11-24 09:17:20
Score: 1.5
Natty:
Report link

Replacing initial-scale with minimum-scale on html header should solve the problem

<meta name="viewport" content="width=device-width, minimum-scale=1.0" />
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Diwakar Shrestha

79219723

Date: 2024-11-24 09:16:20
Score: 2
Natty:
Report link

On windows 11, I needed to:

  1. Go to File > Preferences > Settings.
  2. Search for workbench.editor.enablePreview.
  3. Disable it by unchecking the box.

I did not find anything related to code runner, that the other answers talked about.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Erik

79219710

Date: 2024-11-24 09:08:18
Score: 1.5
Natty:
Report link

The issue for me was that I was NOT sourcing the .zshrc file. Doing it again and restarting the terminal seemed to work for me (in macOS Sequoia 15.1).

Thanks for all the help, I will mark the question as resolved.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Awshaf Ishtiaque

79219690

Date: 2024-11-24 09:00:16
Score: 1
Natty:
Report link

According to the error your mac uses z shell which has file .zshrc for environment variables. Begin by identifying the directory where Java is installed on your Mac. Typically, Java resides in the ‘/Library/Java/JavaVirtualMachines/’ directory. Open terminal and follow these steps -

  1. Open .zshrc in vim editor

    vim ~/.zshrc

  2. Press Insert or i (insert mode) Paste the java path — —

    export JAVA_HOME=/Library/Java/JavaVirtualMachines/adoptopenjdk-11.jdk/Contents/Home

  3. Escape and then press :x (To save and exit)

  4. Verify JAVA_HOME environment variable is correctly set up.

    source ~/.zshrc

    echo $JAVA_HOME

  5. Restart terminal for the changes to reflect or better restart your mac.

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

79219677

Date: 2024-11-24 08:50:15
Score: 2
Natty:
Report link

I should use <?= htmlspecialchars($row['about']) ?> not <?php echo htmlspecialchars($about); ?> for the textarea value.

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

79219676

Date: 2024-11-24 08:49:14
Score: 12 🚩
Natty:
Report link

for instance if I what find taget how I will get and I need more understanding about this app so that I can be able to participate on it please help me out that is I want to know more about it

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): I want to know
  • RegEx Blacklisted phrase (3): please help me
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (2): help me out
  • RegEx Blacklisted phrase (1): I what find taget how I will get and I need more understanding about this app so that I can be able to participate on it please
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: UCHENNA Nkwegu

79219669

Date: 2024-11-24 08:43:12
Score: 3
Natty:
Report link

https://www.elprocus.com/half-adder-and-full-adder/ (and many others now (not that many 14 years ago)

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

79219664

Date: 2024-11-24 08:40:11
Score: 1
Natty:
Report link

I had similar case where the path length was simply too long for NETOmniDriver-NET40.dll. Perhaps one of the component used just doesn't handle long paths.

Running the software from C:/ solved it for me.

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

79219661

Date: 2024-11-24 08:38:11
Score: 3
Natty:
Report link

I don't know if this is very helpful but i know a website called playit.gg that does something similar. Couldn't set it up to use for my python code tho.

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

79219658

Date: 2024-11-24 08:37:10
Score: 1
Natty:
Report link

I am not sure if this is the correct way, but it works. Change the form to:

<form th:action="@{/happyEat/shopping-lists/create}"
          th:method="POST"
          th:object="${__${objectForForm}__}">

and in the call hand over a String:

<div th:replace="~{fragment/form :: formWithContent(
                        ~{fragment/shopping-list/input :: create},
                        'shoppingListCreateRequest)'}">
    </div>
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Bianca

79219653

Date: 2024-11-24 08:34:10
Score: 1.5
Natty:
Report link

For Expo Web, I was trying the analytics debug view in Brave. But it didn't work.

I have installed Google Analytics Debugger in Brave but no luck.

Then I changed the browser from Brave to Chrome and installed Google Analytics Debugger.

Now it's showing the web analytics in Firebase DebugView which is expected.

Reasons:
  • Blacklisted phrase (1): no luck
  • No code block (0.5):
Posted by: Wasi Sadman

79219646

Date: 2024-11-24 08:30:09
Score: 1
Natty:
Report link

If your 2D Unity game character suddenly stops as if hitting an invisible object, the issue may be collider-related. For instance, your character's collider might be interacting with small gaps or unintended colliders in your level design. Check for overlapping or misaligned colliders and adjust the physics layers.

Another possibility is a script bug causing velocity to reset unexpectedly. If you're implementing mechanics like in Brawl Stars, ensure your dash or movement scripts don’t accidentally stop momentum. We have faced same issues in this game due scrips conflict.

Optimize your Rigidbody2D settings—like friction or collision detection—to prevent unwanted behavior. Debugging the scene view while testing can help identify hidden obstacles.

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

79219644

Date: 2024-11-24 08:30:09
Score: 1
Natty:
Report link

Many thanks to @MikeM. for suggestions (if you want to post an answer I will accept it)

I changed the code to say explicitly

java.util.Collections.reverse(dataToIncrease)
return dataToIncrease.toMutableList()

...and that compiles and runs fine under sdk 35!

The IDE suggested changing the static call with the kotlin stdlib so now I have

dataToIncrease.reverse()
return dataToIncrease.toMutableList()

I looked up what the difference between "reverse and "reversed" is and it seems reversed always returns a read-only result....since I don't ever write to the results I get from this function - I instead copy them, it seems that this code will work well for me.

Thanks for your help!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-0.5): Thanks for your help
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @MikeM
  • Self-answer (0.5):
Posted by: Kibi

79219643

Date: 2024-11-24 08:28:08
Score: 0.5
Natty:
Report link
  1. Ensure R's Encoding Is Set Correctly You can specify the encoding that R should use for character input and output. The most common encoding for characters in the terminal is UTF-8. You can check and set the encoding in R as follows:

R Copy code

Check current encoding

Sys.getlocale()

Set the locale to UTF-8 (this works for most systems)

Sys.setlocale("LC_CTYPE", "en_US.UTF-8") 2. Check Your Terminal’s Encoding Ensure that the terminal where you're running R supports Unicode and is set to display characters correctly. For example:

In Linux, the terminal typically uses UTF-8 by default, but you may need to configure it manually. In Windows, make sure your console supports Unicode characters (you might want to use RStudio or Windows Terminal, which supports UTF-8 more effectively). In macOS, the default terminal also uses UTF-8. You can try setting the terminal's encoding to UTF-8 by running:

bash Copy code chcp 65001 # For Windows command prompt to set UTF-8 3. Printing Unicode Characters Directly If you're working with characters like ° (degree symbol), you can print them directly using their Unicode escape sequences. For example:

R Copy code

Example printing the degree symbol

cat("\u00B0") # Prints the degree symbol (°) Or simply use the character:

R Copy code cat("The temperature is 25°C\n") # Prints "The temperature is 25°C" 4. Saving to Files with Correct Encoding If you're saving output to a file, ensure that the file is being written with the correct encoding. For example, when writing to a text file:

R Copy code writeLines("The temperature is 25°C", "output.txt", useBytes = TRUE) Make sure the file is saved with UTF-8 encoding, which most modern text editors support.

  1. Inspect the Unicode Representation If you're still seeing the Unicode escape sequence like <U+00B0>, it might be because R is printing the internal encoding representation rather than the character itself. You can inspect the character as follows:

R Copy code charToRaw("\u00B0") This will show the raw byte sequence of the character.

By ensuring proper encoding both in R and in your terminal, you should be able to see the actual characters instead of their Unicode escape sequences.

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

79219636

Date: 2024-11-24 08:21:07
Score: 0.5
Natty:
Report link

Nothing beats the performance of this naive implementation:

export const toHex = (array: Uint8Array) => {
  let result = "";
  for (const value of array) {
    result += value.toString(16).padStart(2, "0");
  }
  return result;
};

KISS!

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

79219634

Date: 2024-11-24 08:20:07
Score: 1.5
Natty:
Report link

If you see error like in below image as you can see in below image

then execute below command and u can see result in below image

docker context use default

enter image description here

then execute below command u can see result in below image

minikube status

enter image description here

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

79219611

Date: 2024-11-24 08:04:04
Score: 4.5
Natty: 5
Report link

You might want to see solution posted by https://github.com/victorbrax on https://github.com/xlwings/xlwings/issues/1360

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

79219601

Date: 2024-11-24 07:55:02
Score: 0.5
Natty:
Report link

Today I messed up on my jenkins server in RBAC so I went to /var/lib/jenkins/config.xml file and reverted changes as I mistakenly added developer role for overall and reverted back to admin

before doing changes in config file stop the server
systemctl stop jenkins
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Aditya

79219597

Date: 2024-11-24 07:53:01
Score: 1
Natty:
Report link

Can you check that the httpRequest.getHeader("origin") value is correctly retrieved and is not encoded. Log the origin value to confirm its format.

System.out.println("Origin Header: " + origin); // For debugging

If it's encoded can you decode and add

final String origin = java.net.URLDecoder.decode(httpRequest.getHeader("origin"), "UTF-8");

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Tarunkumar Aghara

79219595

Date: 2024-11-24 07:52:01
Score: 1.5
Natty:
Report link

Your Chrome browser probably updated and now has a different version than Chromedriver. If this is the case then you have to download the chromedriver for the new version of the Chrome browser. Also the undetected_chromedriver may not work with the new version of Chromedriver. Anyway this package DOES NOT hide your IP address, your ip may be blocked. Check if you can access the store webpage in your browser.

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

79219589

Date: 2024-11-24 07:48:00
Score: 2
Natty:
Report link

Yes, GitHub Pages will allow you to host such an application. Only to use React you will need to set up multiple entry points and possibly modify the build.

In general, you need to change its structure and page transitions correctly to avoid using the limitations associated with dynamic routes.

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

79219586

Date: 2024-11-24 07:46:00
Score: 0.5
Natty:
Report link

I know this question is generally for git, and this question already got answered for git. but I assume some of the users seeing this question are GitHub users so I will add my tip here:

One easy way I found to be somewhat quick and helpful if you use GitHub, is to use GitHub desktop app to see if merging branches will have some conflicts before merge. If you try to merge branches with the GitHub desktop app, it will tell you if there are conflicts BEFORE the merge. It won't tell you how much and in which files though, but in some cases (for me at least) this will be suffice.

Just try to merge and one step before the merge itself it will prompt you that there will be conflicts (it will also tell you if there won't be any conflicts which might be helpful too in some cases)

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

79219584

Date: 2024-11-24 07:44:59
Score: 2.5
Natty:
Report link

The !findWidgetVisible seems to be new and it throws a wrench in the works. I get the point that ALT-A means something in the global Find/Replace widget as well as in the search viewlet. But it creates a lot of funny behavior because sometimes Alt+A works and sometimes it doesn't. Surely the fact that I just opened the search viewlet should mean that I am using it and not the global Find/Replace widget.

Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: sjb-sjb

79219578

Date: 2024-11-24 07:41:59
Score: 1.5
Natty:
Report link

Yes, it is possible to host a multi-page React application on GitHub Pages. GitHub Pages can serve static files for any type of web application, including a multi-page application. However, you need to ensure that the routing for your application is set up correctly, as GitHub Pages uses the URL structure to serve files. This typically means you will have to manage your routes either by using hash-based routing (using HashRouter) or configure your application to handle routing properly in a way that aligns with how GitHub Pages serves the files. Make sure that your build process generates a unique HTML file for each route in your MPA.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Indulekha S

79219575

Date: 2024-11-24 07:39:58
Score: 0.5
Natty:
Report link

you have two way.

for gcp secret: you can encode the json in base64 and add it in secret manager. after you get the secret in your function and decode from base64 in runtime.

(long opération for each runtime)

in github secret: you can encode too but décode only in ci:cd or github secret provide you a file solution well you write directly the json without base64 step. ( work on gitlab not sûre for the file in github)

https://docs.github.com/fr/actions/security-for-github-actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-environment

you can provide a service account for each environnement and stage local with your dev environnement in .gitignore

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

79219568

Date: 2024-11-24 07:34:57
Score: 0.5
Natty:
Report link

I've followed @CoastalB and its worked but the problem is it's take some delay to get index. so I've used two separate listener (animate and tap) for get index.

The current code is implemented with GetX, but you can easily apply this approach with stateful widget:

class GenerateController extends GetxController with GetSingleTickerProviderStateMixin {
  late TabController tabController;
  RxInt activeTabIndex = 0.obs;

  @override
  void onInit() {
    super.onInit();
    tabController = TabController(vsync: this, length: 2);
    tabController.addListener(_onTabIndexChanged);
    tabController.animation?.addListener(_onTabAnimation);
  }

  void _onTabIndexChanged() {
    // Fires at the end of tab change animation
    activeTabIndex.value = tabController.animation!.value.round();
    print("Tab index finalized: ${tabController.index}");
  }

  void _onTabAnimation() {
    // Fires during the animation
    activeTabIndex.value = tabController.animation!.value.round();
  }
  @override
  void onClose() {
    tabController.dispose();
    super.onClose();
  }
}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @CoastalB
  • Low reputation (1):
Posted by: Rifat Khan

79219567

Date: 2024-11-24 07:33:56
Score: 1.5
Natty:
Report link

I was exposing port 7000 of cassandra to 0.0.0.0:9042 . I needed to map port 9042 of cassandra to 0.0.0.0:9042 . As cassandra's CQL client connections listens to port 9042.

As in docker

docker stop cassandradb
docker rm cassandradb
docker run -d --name cassandradb -p 9042:9042 cassandra

It fixes the Cassandra connection.

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

79219563

Date: 2024-11-24 07:32:56
Score: 1
Natty:
Report link

you can try

"styles": [
          "src/styles.scss",
        ],

and on your styles.css add this lines

@import "primeng/resources/themes/mira/theme.css";
@import "primeng/resources/primeng.css";
@import 'primeflex/primeflex.scss';
@import "primeicons/primeicons.css";

also considers running an npm upgrade

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

79219562

Date: 2024-11-24 07:31:56
Score: 0.5
Natty:
Report link

Just in case this may help someone: I put a bogus password on my VPN settings in my jamf configuration profile and it fixed my issue. I'm running Mac OS 14.7.1 and was getting the error that the VPN Service could not be created.

In my case I was pushing a Netskope VPN configuration with Jamf Pro by following the instructions at "https://docs.netskope.com/en/jamf/#approve-vpn-popup-for-app-proxy-1". Based on my research, the issue seems to always be related to a profile misconfiguration. Additionally, VPN profiles now require a password in order to apply. The password can be anything you want as it's not necessarily used.

I hope this helps someone.

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Jeremy

79219559

Date: 2024-11-24 07:28:56
Score: 2
Natty:
Report link

catch the crash by yourself and log the total threads of the app. Find out whether there is a thread leakage.

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

79219554

Date: 2024-11-24 07:25:55
Score: 1.5
Natty:
Report link

The problem was that I did not use openInvoice correctly.

The way to call openInvoice using JavaScript is as follows:

window.Telegram.WebApp.openInvoice("linkOfInvoice","CallBack(optional)")

To obtain "linkOfInvoice", we can use the Telegram API and the createInvoiceLink method.

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

79219553

Date: 2024-11-24 07:25:55
Score: 2
Natty:
Report link

Make sure that the ..\ui\extension folder exists in the components directory of your Next.js project. If it does not exist, create it and then run the following command: npx @shadx/cli add carousel. It will work

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

79219549

Date: 2024-11-24 07:22:54
Score: 2.5
Natty:
Report link

Title: Type created with keyof cannot be used to index the type it was created from

Body: I’m trying to write a utility function in TypeScript to access properties inside an object. Specifically, I want the function to: 1. Take an object (of a known structure) as the first argument. 2. Take the name of a property within data (from the object’s type) as the second argument. 3. Return the value of that property, with TypeScript correctly inferring the type of the returned value.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Low reputation (1):
Posted by: Saidali Saidali.n

79219538

Date: 2024-11-24 07:14:53
Score: 0.5
Natty:
Report link

What you've already setup is a worker account, with multiple regions, so keep everything you have there.

The question is asking you to more or less setup an Organization in AWS (see details https://docs.aws.amazon.com/organizations/latest/userguide/orgs_tutorials_basic.html) Within the organisation you can create accounts, under organizational units, that exist only for particular workloads or environments. The above link describes this in far more detail, so there's not much value summarising it.

With regards to your specific requirement:

Hope that helps

Reasons:
  • Blacklisted phrase (1): regards
  • Whitelisted phrase (-1): Hope that helps
  • Long answer (-1):
  • No code block (0.5):
  • Starts with a question (0.5): What you
  • Low reputation (0.5):
Posted by: AshleyJ

79219533

Date: 2024-11-24 07:10:52
Score: 3
Natty:
Report link

Open:

system/config/default.php

system/config/catralog.php

Find:

$_['session_engine'] = 'db';

Replace

$_['session_engine'] = 'file';

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

79219531

Date: 2024-11-24 07:05:52
Score: 2
Natty:
Report link

try this

  1. flutter clean
  2. flutter pub upgrade
  3. pod install
Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Prithiviraj

79219517

Date: 2024-11-24 06:56:50
Score: 0.5
Natty:
Report link

Cloud Run uses Docker containers, but it does not support Docker Compose. If you're relying on that docker compose yaml to wire up your containers, it's not going to work. If you want to use a yaml file to store your service configuration, Cloud Run uses a Knative service as its native Yaml format.

Cloud Run also doesn't support disks, so unless you want to have a very slow database serving off of a GCS storage bucket or a very expensive database serving off of a $400/month NFS share, you probably should run that in Cloud SQL and use the built in connector to connect the database to your Cloud Run Service.

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

79219507

Date: 2024-11-24 06:51:49
Score: 0.5
Natty:
Report link

For me this fixed it

sudo apt install libei-dev

If you are still facing problems troubleshoot with the help of Claude Sonnet it helped me narrow down the issue step by step which led to the solution

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

79219504

Date: 2024-11-24 06:50:48
Score: 2.5
Natty:
Report link

I've found a solution here which is a windows application that works like a charm

And this is the github repo for the TentacleSoftware.Telnet package

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
Posted by: Arash.Zandi

79219503

Date: 2024-11-24 06:49:48
Score: 3
Natty:
Report link

Kaggle doesn't have real competition, and that's the only reason why is No1. I always loose my nerves when I have to upload something.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Darijo Živković

79219498

Date: 2024-11-24 06:46:47
Score: 5
Natty: 7
Report link

Saved my day, thanks monster, after days searching, get the winutils (full) and put hadoop inside spark, and spark not in (spark-3.5.1) but simple in C:/spark. and hadoop on C:/spark/hadoop and bin winutils inside hadoop, after that configure global variables and works!!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (2): Saved my day
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nicolas Kondo

79219469

Date: 2024-11-24 06:40:45
Score: 2
Natty:
Report link

Ensure that the audio file is indeed accessible via the public URL. Even though the URL may appear correct, there might be issues with server configuration or firewall restrictions.

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

79219441

Date: 2024-11-24 06:32:43
Score: 2
Natty:
Report link

#a script I use on my seedbox to grind media files down #10-22-24

find -iregex "..(mp4|avi|mkv|asf|divx|flv|m4v|mkv|mov|mpeg|mpg|ts|wmv|rm|rmvb|webm|m2ts)" -not -name ".x264.mp4" ; -exec HandBrakeCLI -i {} -o {}.handbrake.x264.mp4 -q 14 -e x264 -E mp3 -Y 480 ; -exec tar zcvf {}.tar.gz {}.handbrake.x264.mp4 ; -exec rm -vfr {} {}.handbrake.x264.mp4 ;

#crunches and tar balls

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

79219411

Date: 2024-11-24 06:12:39
Score: 3.5
Natty:
Report link

This is because your controller layer returns a string "post" instead of the post object

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

79219397

Date: 2024-11-24 05:59:36
Score: 2
Natty:
Report link

To get the PresentationSource for a WPF MessageBox, you can access the PresentationSource property of the Window that is internally created by the MessageBox when it is shown; however, directly accessing this property is not recommended as the MessageBox is a system-level dialog and its internal structure might change across versions

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

79219387

Date: 2024-11-24 05:51:35
Score: 2.5
Natty:
Report link

Tab limiter helps you get back control over your browsing – by limiting the number of tabs you can open at once. You can specify the number of tabs in total and per window. Moreover, you can show a customizable message when the tab limit is hit.

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

79219381

Date: 2024-11-24 05:39:33
Score: 3.5
Natty:
Report link

Ok - thanks to the jmcilhinney comment - it got me thinking. I found a solution - although it is not working exactly the way I want/need it to.

  1. Create a new calculated field in the Detail table - with expression like Len(Child.TextField) This will put a number in that field for each child record.
  2. In the calculated field in the Master table - use the following expression IIF (Sum(Child.CalcLenField) > 0, true, false) This causes a summation of the Lengths of all the child records. If any one of them has text in this field - then it sets the value of the calculated field in the Master to TRUE.

Now - this part was exactly what I was hoping to do - but it only gets calculated when I move the to the active record in the grid attached to the Master table. This makes sense - but not what was I was trying to do. I need to have the boolean value in the Table showing in the grid all the time - not just when I move to that record... I need to know which Master records have at least one Detail record with text in that field...

I guess I will have to create a calculated field and populate it in code when ever the table is loaded - or either the Master or Detail table are changed. Many thanks to those who took time to comment!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): to comment
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: G Bradley MacDonald

79219380

Date: 2024-11-24 05:37:31
Score: 7 🚩
Natty: 6
Report link

Is anybody have solution for it ? I have same problem.

Reasons:
  • Blacklisted phrase (1): I have same problem
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have same problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Gültekin Temtek

79219373

Date: 2024-11-24 05:32:30
Score: 3.5
Natty:
Report link

The Inverse Square Law might help. When you double the distance from the light source you get 1/4 the brightness of light.

https://petapixel.com/assets/uploads/2016/06/lightfalloffsquare.jpg

https://petapixel.com/inverse-square-law-light/

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

79219363

Date: 2024-11-24 05:20:28
Score: 1
Natty:
Report link

According to this post on a ExifTool forum thread, I found success by losslessly remuxing videos with FFmpeg to remove video metadata with:

ffmpeg -i Input.mp4 -vcodec copy -acodec copy Output.mp4
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: taivlam

79219334

Date: 2024-11-24 04:59:24
Score: 2
Natty:
Report link

Use this shortcut to it:

CTRL+M+O

You can go in Edit/Outlining/Colopse to Definions.

Not in all files, but is just one command and you collpse all your code.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Alexandre B.

79219326

Date: 2024-11-24 04:50:23
Score: 3.5
Natty:
Report link

google chrome old version v125.0.6422.112 is here.

https://www.mediafire.com/file/sqi7n349x1ge0oz/google-chrome-stable_current_x86_64_v125.0.6422.112.rpm/file

This is last version of chrome Centos7 support.

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

79219307

Date: 2024-11-24 04:25:18
Score: 2.5
Natty:
Report link

As we know printf stetment return the number of character printf("1") return 1 Then we go to condition Statment printf("0") returns 1 but here the statement is (!printf("0")) !1=0 and the condition get false and we get out from for loop

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

79219301

Date: 2024-11-24 04:19:18
Score: 3
Natty:
Report link

I've found that running test flows "Automatically" causes this issue (even if previous dependent "Manually" run test flow works) ... whereas a fresh "Manually" with the PDF/etc attached to email (i.e. not DragDrop) works.

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

79219281

Date: 2024-11-24 03:42:12
Score: 1
Natty:
Report link

No, the arch_free_page function can be called from an atomic context (such as an interrupt). It is not possible to place a mutex in this function as it is required to not block or wait.

The function must be written to support freeing the page atomically.

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

79219274

Date: 2024-11-24 03:30:09
Score: 1.5
Natty:
Report link

@Ben Gribaudo mentioned that a bug does not allow the <Application.Resources> to connect properly. In his blog: http://bengribaudo.com/blog/2010/08/19/106/bug-single-application-resources-entry-ignored he mentioned a fix where you add a 'dummy' style entry as the bug seems to take effect when only one entry is defined.

I added <Style x:Key="unused because Application.Resources does not load if only one entry is defined." /> at then bottom under my button style which did the trick. Shame that a bug reported in 2010 is still here almost a month to 2025.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Ben
  • Low reputation (1):
Posted by: AndresV

79219273

Date: 2024-11-24 03:29:08
Score: 2.5
Natty:
Report link

import matplotlib.pyplot as plt import numpy as np

fig = plt.figure()

ax = fig.add_subplot(111, projection='polar')

ax.set_xticks(np.arange(1, 25) * np.pi / 12) ax.set_xticklabels([str(number) for number in range(1, 25)])

ax.set_yticks(range(1, 32)) ax.set_yticklabels([str(number) for number in range(1, 32)])

ax.grid(True)

ax.scatter(np.pi / 12 * 24, 31)

ax.set_ylim(0, 32)

plt.show()enter image description here

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

79219263

Date: 2024-11-24 03:18:07
Score: 1.5
Natty:
Report link

I think the issue lies with the version of java used by default. Android studio V34 (at least the gradle version, which some plugins may use) uses Java 17. Take a look at https://developer.android.com/build/jdks#compileSdk and see if this might help.

PS - I don't think you need to reinstall Android Studio, just install the version of Java it wants

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

79219261

Date: 2024-11-24 03:13:06
Score: 1
Natty:
Report link

No way. It does not even make any sense. Attributes are static, they just add some metadata to the file. They are already known during build time. During runtime, you can only read the metadata related to the attributes. This is how you make runtime behavior dependent on the attributes.

And you are talking about actual parameters (not formal parameters, not their types). They not just runtime object, they are different in each stack frame.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Sergey A Kryukov

79219257

Date: 2024-11-24 03:09:05
Score: 0.5
Natty:
Report link

Creating an app that generates a random video game and displays its cover is an excellent idea for gaming enthusiasts! This app could be a fun tool for users who are indecisive about what to play next. By including filters such as genres, platforms, or release years, it could cater to different gaming preferences. Adding features like game descriptions, reviews, or links to stores could make it even more engaging and useful. With a polished interface and a touch of creativity, this app could become a go-to resource for discovering hidden gems in the gaming world.

While exploring gaming ideas, don’t miss out on the engaging simplicity of Money Rush, a game that’s perfect for a quick, entertaining break. In Money Rush, players strategize to grow their wealth by navigating obstacles and making the right choices, all while enjoying its fast-paced and addictive gameplay. Similarly, your app could offer a quick and exciting way for users to explore new games, just like Money Rush delivers instant fun. Whether it's discovering random games through your app or diving into the thrilling mechanics of Money Rush, both provide unique and enjoyable gaming experiences!

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