79461093

Date: 2025-02-23 10:50:31
Score: 1.5
Natty:
Report link

you may first verify the column names and data alignment:

print(df.columns.tolist())  
print(df.head(2)) 

And also check if there any non-date values.

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

79461085

Date: 2025-02-23 10:44:30
Score: 1.5
Natty:
Report link

As mentioned here, a Modal Bottom Sheet, like dialogs, appears on top of the app content. Anything modal is drawn above the app content. That's why the Snackbar inside the Scaffold gets covered by the Modal Bottom Sheet.

If we want to display a Snackbar above the Modal Bottom Sheet, we should show it inside the content of this composable.

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

79461081

Date: 2025-02-23 10:43:30
Score: 2
Natty:
Report link

Turns out that not all images had Build Action set to "Content" πŸ€¦β€β™‚οΈ Changing this fixed the issue. Maybe exception handling is now slower and I didn't noticed the exceptions earlier. I'm sure there was no 30s lag in previous commits.

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

79461075

Date: 2025-02-23 10:40:29
Score: 3
Natty:
Report link
  1. send data through arguments with Getx
  2. flutter passing multiple data with Getx

See this answer.

https://stackoverflow.com/a/79461043/16280202

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Mohammad Bilal Akbar

79461074

Date: 2025-02-23 10:39:29
Score: 2.5
Natty:
Report link
for i in range(100):
    optimizer.zero_grad()
    output = model(**model_inputs, labels=labels) # forward pass
    loss = output.loss
    loss.backward()
    optimizer.step()
print('Fine-tuning ended')

I could run the above loop only once in Google Colab and notebook crashes if i increase the range even to 2 or 3. Experiencing the same problem even if I use Databricks ML instance too?. What alternatives you recommend to run the notebook with AdamW optimizer as suggested above in Cloud?.

Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Balachandar Ganesan

79461072

Date: 2025-02-23 10:38:29
Score: 3
Natty:
Report link
  1. send data through arguments with Getx
  2. flutter passing multiple data with Getx

See this answer.

https://stackoverflow.com/a/79461043/16280202

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Mohammad Bilal Akbar

79461070

Date: 2025-02-23 10:37:28
Score: 3
Natty:
Report link
  1. send data through arguments with Getx
  2. flutter passing multiple data with Getx

See this answer.

https://stackoverflow.com/a/79461043/16280202

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Mohammad Bilal Akbar

79461067

Date: 2025-02-23 10:36:28
Score: 0.5
Natty:
Report link

Here is my solution, if you have a string and not a list of strings:


def normalize_text(text: str) -> str:
    output_string = re.sub(r'(\d+)', lambda m: num2words(m.group(), lang='en'), text)
    print(output_string)
    return output_string

based on @svandav's version

Hope it helps

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @svandav's
  • Low reputation (0.5):
Posted by: DevChris

79461066

Date: 2025-02-23 10:35:28
Score: 1
Natty:
Report link

Laravel 11. it run success.

 Passport::ignoreRoutes();
    Passport::tokensExpireIn(now()->addDays(7));
    Passport::refreshTokensExpireIn(now()->addDays(30));
  Passport::useTokenModel(\Laravel\Passport\Token::class);
   Passport::enablePasswordGrant();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Forum Vtivi Develop

79461055

Date: 2025-02-23 10:27:26
Score: 3
Natty:
Report link

I think you need to change file extention yourFileContext.ts => yourFileContext.tsx

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

79461054

Date: 2025-02-23 10:27:26
Score: 4
Natty:
Report link

It might be bugged in an update process by Microsoft, creating a new environment pointing to the newest version allows me coding again:

enter image description here

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

79461043

Date: 2025-02-23 10:19:24
Score: 0.5
Natty:
Report link

We can pass data to named route in three ways. Map, List, Extra Class.

  1. Map => Arguments as map

final args = Get.arguments as Map<String, String>; final name = args['name'];

  1. List => Arguments as list

    final args = Get.arguments as List?; final name = args?[0] ?? 'default if not given'; // Arguments as map or list appBar: AppBar(title: Text('Screen One $name')), // Directly pass arguments as List here appBar: AppBar(title: Text('Screen One ${Get.arguments[2]}')),

  2. Separate Class => Make a separate class and use it

    // Define a class class ScreenOneArguments { final String name; final int age; final String profession;

    ScreenOneArguments({ required this.name, required this.age, required this.profession, }); }

    // Passing arguments Get.toNamed( '/ScreenOne', arguments: ScreenOneArguments( name: 'Muhammad Bilal Akbar', age: 25, profession: 'Flutter Developer', ), );

    // Accessing arguments final args = Get.arguments as ScreenOneArguments; final name = args.name; final age = args.age; final profession = args.profession;

Use a Map: For small, simple use cases where type safety isn't critical. When you need flexibility in the data structure.

Use a List: For very simple use cases with a small, fixed number of arguments. When you don't need descriptive keys or type safety.

Use a Custom Class: For larger, more complex use cases where type safety and maintainability are important. When you want to enforce a clear structure for your arguments.

Passing arguments as a List is indeed faster and simpler, especially for small and fixed parameters. However, it has some drawbacks:

Pros of Passing Arguments as a List βœ… Less code (no need to define keys like in a Map). βœ… Slightly better performance (accessing Get.arguments[0] is a direct lookup). βœ… Good for small, fixed parameters (e.g., an ID and a name). Cons of Passing Arguments as a List ❌ Hard to understand later (without looking at the sender’s code, it's unclear what Get.arguments[1] means). ❌ Order-sensitive (if you change the order, the app might break). ❌ Not good for optional parameters (e.g., if only the second argument is needed, the list index might be null).

When is it "Better"? If you're passing only 1-2 arguments, and their order will never change. Example: Get.toNamed('/details', arguments: [42, 'Product Name']); (ID and Name). When is it "Not Recommended"? If you need more than 2-3 parameters, since remembering indexes (Get.arguments[3]) becomes difficult. If your app needs optional parameters, since missing values can cause crashes (Get.arguments[3] might not exist).

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Mohammad Bilal Akbar

79461042

Date: 2025-02-23 10:19:24
Score: 0.5
Natty:
Report link

If it's a 2d game it must have a sprite renderer to be visible or invisible, it can't be an empty gameobject. Also, if you are testing in the engine then even if it's off the screen in the game view but you can still see it in the scene tab then it will still register as visible.

From the documentation

"Note that the object is considered visible when it needs to be rendered in the Scene. For example, it might not actually be visible by any camera but still need to be rendered for shadows. When running in the editor, the Scene view cameras will also cause this value to be true."

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

79461031

Date: 2025-02-23 10:10:21
Score: 12 🚩
Natty:
Report link

I'm also getting the same error. Can anyone help me with this issue to resolve?

The "pkceCodeVerifier value could not be parsed" issue occurs when a user accepts an invitation. However, for normal sign-in or sign-up, it works fine.

I have created a regular app in Auth0 and also set all the required URLs.

Below is the code for the NextAuth configuration file and provider configuration for Auth0:

const authConfig = {
  debug: true, // Enabled because we are in development
  providers: [
    Auth0Provider({
      clientId: process.env.AUTH0_CLIENT_ID,
      clientSecret: process.env.AUTH0_CLIENT_SECRET,
      issuer: process.env.AUTH0_ISSUER,
      authorization: {
        params: {
          prompt: "login",
        },
      },
    }),
  ],
  adapter: DrizzleAdapter(db, {
    usersTable: users,
    accountsTable: accounts,
    sessionsTable: sessions,
    verificationTokensTable: verificationTokens,
  }),
  callbacks: {
    async signIn({ user, account, profile }: ISigninAuth0) {
      const updates: IUpdateUser = {};

      if (profile?.email_verified && !user?.emailVerified) {
        updates.emailVerified = new Date();
      }

      if (Object.keys(updates).length > 0) {
        await updateUserByEmail(user.email!, updates);
      }
      return true;
    },
    session: async ({ session, user }) => {
      const userData = await getUser(user.id);
      if (!userData) {
        throw new Error("User data not found");
      }
      return {
        ...session,
        user: {
          id: user.id,
          ...{
            name: userData.name,
            email: userData.email,
            emailVerified: userData.emailVerified,
          }
        },
      };
    },
  },
  trustHost: true,
} satisfies NextAuthConfig;


const { auth: uncachedAuth, handlers, signIn, signOut } = NextAuth(authConfig);

const auth = cache(uncachedAuth);

export { auth, handlers, signIn, signOut };

Organization admin invites user to join the organization by using Auth0 management API.

POST  /api/v2/organizations/{id}/invitations
Body: {
  "inviter": {
    "name": "string"
  },
  "invitee": {
    "email": "[email protected]"
  },
  "client_id": "string",
  "user_metadata": {},
  "ttl_sec": 0,
  "roles": [
    "string"
  ],
  "send_invitation_email": true
}

The user receives an email with a link to join the organization. The user clicks on the link (which looks like https://example.com/api/authorize?invitation={invitation_id}&organization={organization_id}) and is redirected to our website.

There, we extract the invitation_id and organization_id from the query params and generate a new invitation link with the following code:

const baseUrl = `https://myauth0domain.com/authorize`;
const url = new URL(baseUrl);
url.searchParams.append("response_type", "code");
url.searchParams.append("client_id", clientId);
url.searchParams.append("redirect_uri", redirectUri);
url.searchParams.append("invitation", invitation);
url.searchParams.append("organization", organizationId);
url.searchParams.append("scope", "openid profile email");
const finalUrl = url.toString();
return NextResponse.redirect(new URL(finalUrl as string, baseURL));

The user is then redirected to the Auth0 login page, and after successful login, the user is redirected back to our website with the code in the query params. However, I get the error "pkceCodeVerifier can not be parsed," and the user is not logged in. I have checked the logs in Auth0, and all logs are fine. I'm using the regular Auth0 application, and the pkceCodeVerifier flow is handled by Auth0 itself in regular application.

I have also passed the code challenge, code challenge method, and state in the URL but am still getting the same error. Below is the code for the same:

Ref to create code verifier and code challenge: https://auth0.com/docs/get-started/authentication-and-authorization-flow/authorization-code-flow-with-pkce/add-login-using-the-authorization-code-flow-with-pkce#create-code-verifier

// code verifier
function base64URLEncode(str: any) {
  return str.toString('base64')
      .replace(/\+/g, '-')
      .replace(/\//g, '_')
      .replace(/=/g, '');
}
const verifier = base64URLEncode(crypto.randomBytes(32));


//  code challenge
function sha256(buffer) {
  return crypto.createHash('sha256').update(buffer).digest();
}
const  challenge = base64URLEncode(sha256(verifier));
url.searchParams.append('code_challenge', challenge);
url.searchParams.append('code_challenge_method', 'S256');
url.searchParams.append('state', state);

I have also tried to set the cookie options in the NextAuth configuration file but am still getting the same error. Below is the code for the same:

cookies: {
  pkceCodeVerifier: {
    name: "authjs.pkce.code_verifier",
    options: {
      httpOnly: true,
      sameSite: "none",
      path: "/",
      secure: true,  // Set to true in production
    },
  },
},

I have also added the code verifier in the cookies below is the code

const baseUrl = `https://myauth0domain.com/authorize`;
const url = new URL(baseUrl);
url.searchParams.append("response_type", "code");
url.searchParams.append("client_id", clientId);
url.searchParams.append("redirect_uri", redirectUri);
url.searchParams.append("invitation", invitation);
url.searchParams.append("organization", organizationId);
url.searchParams.append("scope", "openid profile email");
const finalUrl = url.toString();
const response = NextResponse.redirect(new URL(finalUrl as string, baseURL));
const cookieOptions = {
        httpOnly: true,
        secure: false,
        maxAge: 900, // 15 minutes
        path: '/',
      };

response.headers.set(
  'Set-Cookie',
  serialize('authjs.pkce.code_verifier', verifier, cookieOptions)
);
return response

Simple signUp/signIn Works fine but when I try to log in with the invitation link then i get the error.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (1.5): resolve?
  • RegEx Blacklisted phrase (3): Can anyone help me
  • RegEx Blacklisted phrase (1): I'm also getting the same error
  • RegEx Blacklisted phrase (1): I get the error
  • RegEx Blacklisted phrase (1): am still getting the same error
  • RegEx Blacklisted phrase (1): i get the error
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I'm also getting the same error
  • Me too answer (0): getting the same error
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: anuj

79461029

Date: 2025-02-23 10:09:20
Score: 4
Natty:
Report link

in later version there is a thing called sync project that should resolve it enter image description here

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

79461027

Date: 2025-02-23 10:07:20
Score: 1.5
Natty:
Report link

I still hesitate to rely on Android Studio refactoring capabilities, even for simple projects. Just today, I attempted to change a single package name and restructure a package, and the whole project unexpectedly broke. After two hours of debugging, I had no luck fixing it.

In the end, I had to delete the .idea and .gradle folders, open the project in a simpler IDE (where I could easily search and replace strings), manually restructure the files, then open it with Android Studio and build project, and guess what, everything works fine now.

Android Studio Ladybug Feature Drop | 2024.2.2

Reasons:
  • Blacklisted phrase (1): no luck
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Saraf

79461024

Date: 2025-02-23 10:03:19
Score: 1.5
Natty:
Report link

When encountering the error "Step 2 script Build the App exited with status code 70" while trying to set up CI/CD for your SwiftUI application using Codemagic, there are a few possible causes to investigate. Status code 70 generally indicates an issue with the build process, often related to the build configuration or dependencies.

Here are some steps to troubleshoot and resolve the issue:

Check the Build Logs Start by examining the full build logs to get more detailed information about where the build is failing. Codemagic logs can give you insights into whether the issue is related to missing dependencies, misconfigured project settings, or other errors in your code.

Verify Xcode Version and Dependencies Make sure that you’re using the correct version of Xcode specified in your Codemagic configuration. If your project requires specific Xcode settings, such as particular SDK versions or dependency configurations (CocoaPods, Carthage, Swift Package Manager), ensure that these are correctly set in your codemagic.yaml file.

Check Your Environment Variables Sometimes, environment variables (such as signing credentials or API keys) might not be correctly set, leading to a build failure. Ensure that any required environment variables are configured in Codemagic's UI under the Environment Variables section.

Inspect Your SwiftUI Project Setup If your SwiftUI project uses any custom scripts or build phases, ensure they are compatible with Codemagic’s build environment. A common issue is custom build scripts that don’t execute properly in the CI/CD environment.

Update Dependencies If you're using dependencies via CocoaPods, Carthage, or Swift Package Manager, try cleaning the build folder and updating the dependencies to their latest versions to rule out issues with outdated packages.

Check the Build Scheme Ensure the correct build scheme is selected in your codemagic.yaml file. Sometimes, the wrong scheme can cause issues when Codemagic tries to build the app.

Test Locally If possible, try to replicate the build process locally by running the same commands used in your Codemagic setup. This can help isolate the issue and confirm whether it’s related to your local environment or the CI/CD setup.

As you're getting familiar with CI/CD and Codemagic, don’t hesitate to refer to Codemagic’s documentation or support resources for more detailed troubleshooting steps.

And while you’re working through these issues, why not take a break and enjoy some [Wawa chips][https://wawamenu.org/]? A little snack can help keep you energized and focused as you continue fine-tuning your CI/CD process!

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Albert Einstein

79461018

Date: 2025-02-23 10:00:18
Score: 12.5
Natty: 8.5
Report link

Did you figure out a solution for this? If yes can you please share it here? thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (2.5): can you please share
  • RegEx Blacklisted phrase (3): Did you figure out a solution
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: CommerceUser

79461002

Date: 2025-02-23 09:50:16
Score: 0.5
Natty:
Report link

The code you provide (date.Binding = new Avalonia.Data.Binding("date")) is actually valid and compiles in Avalonia if you are not using NativeAOT.

Support for DataGrid with NativeAOT has not happened yet, so you can't use the two together in the first place.

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

79460997

Date: 2025-02-23 09:48:15
Score: 2.5
Natty:
Report link

It worked by right clicking the object I wanted to view the code inside the object designer, then select "Open definition from app file"

enter image description here

Results are here, I can see the code :)

enter image description here

Reasons:
  • Whitelisted phrase (-1): It worked
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: kuhi

79460979

Date: 2025-02-23 09:30:11
Score: 5
Natty: 5
Report link

Somebody has been tested this on a repeatable field?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Quique GarcΓ­a Cruz

79460977

Date: 2025-02-23 09:28:11
Score: 0.5
Natty:
Report link

I used this code for swiper version 11 with tailwind.

 navigation={{
                        nextEl: '.swiper-button-next',
                        prevEl: '.swiper-button-prev',
                    }}

Outside the swiper tag:

  <div className="bg-gray-500 w-28 relative -top-14">
            <div
                className="swiper-button-prev !text-xs !text-grayDarkMe !size-10 rounded-full bg-grayMe !after:text-sm ">
                <MdOutlineKeyboardArrowLeft size={12}/>
            </div>
            <div
                className="swiper-button-next !text-xs !text-grayDarkMe !size-10 rounded-full bg-grayMe !after:text-sm ">
                <MdKeyboardArrowRight size={10}/>
            </div>
        </div>

ex pic

!after:text-sm means it's important

<Swiper
                    loop={true} pagination={{clickable: true,}}
                    // navigation={true}
                    modules={[Navigation, Pagination]}
                    navigation={{
                        nextEl: '.swiper-button-next',
                        prevEl: '.swiper-button-prev',
                    }}
                    slidesPerView={2}
                    breakpoints={{
                        430: {
                            slidesPerView: 3,
                            spaceBetweenSlides: 25
                        },
                        480: {
                            slidesPerView: 4,
                            spaceBetweenSlides: 25
                        },
                        640: {
                            slidesPerView: 4,
                            spaceBetweenSlides: 25
                        },
                        970: {
                            slidesPerView: 5,
                            spaceBetweenSlides: 25
                        },
                        1260: {
                            slidesPerView: 6,
                            spaceBetweenSlides: 30
                        },
                        1530: {
                            slidesPerView: 8,
                            spaceBetween: 10
                        }
                    }}
                    className="  overflow-hidden relative">
                    <SwiperSlide><Brand/></SwiperSlide>
                    <SwiperSlide><Brand/></SwiperSlide>
                    <SwiperSlide><Brand/></SwiperSlide>
                    <SwiperSlide><Brand/></SwiperSlide>
                    <SwiperSlide><Brand/></SwiperSlide>
                    <SwiperSlide><Brand/></SwiperSlide>
                    <SwiperSlide><Brand/></SwiperSlide>
                    <SwiperSlide><Brand/></SwiperSlide>
                    <SwiperSlide><Brand/></SwiperSlide>
                    <SwiperSlide><Brand/></SwiperSlide>
                    <SwiperSlide><Brand/></SwiperSlide>
                    <SwiperSlide><Brand/></SwiperSlide>

                </Swiper>
         <div className="bg-gray-500 w-28 relative -top-14">
            <div
                className="swiper-button-prev !text-xs !text-grayDarkMe 
                !size-10 rounded-full bg-grayMe !after:text-sm ">
                <MdOutlineKeyboardArrowLeft size={12}/>
            </div>
            <div
                className="swiper-button-next !text-xs !text-grayDarkMe 
                !size-10 rounded-full bg-grayMe !after:text-sm ">
                <MdKeyboardArrowRight size={10}/>
            </div>
        </div>
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: F.chamani

79460966

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

Your video card doesn't have enough memory for the model you are trying to run, and the numbers in the error message just don't give the whole extent of that. You need to fit the entire model into memory.

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

79460962

Date: 2025-02-23 09:15:08
Score: 1.5
Natty:
Report link

data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZGVmcz4KICAgIDwhLS0gRGVmaW5lIGEgaG9yaXpvbnRhbCBncmFkaWVudCBmcm9tIGhvdCBwaW5rIHRvIGxpZ2h0IHBpbmsgLS0+CiAgIDxsaW5lYXJHcmFkaWVudCBpZD0iZ3JhZDEiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjAlIj4KICAgICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3R5bGU9InN0b3AtY29sb3I6I0ZGNjlCNDtzdG9wLW9wYWNpdHk6MSIvPgogICAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0eWxlPSJzdG9wLWNvbG9yOiNGRkQxREM7c3RvcC1vcGFjaXR5OjEiLz4KICAgIDwvbGluZWFyR3JhZGllbnQ+CiAgICA8IS0tIENyZWF0ZSBhIGdsb3cgZWZmZWN0IC0tPgogICAgPGZpbHRlciBpZD0iZ2xvdyI+CiAgICAgIDxmZUdhdXNzaWFuQmx1ciBzdGREZXZpYXRpb249IjQuNSIgcmVzdWx0PSJjb2xvcmVkQmx1ciIvPgogICAgICA8ZmVNZXJnZToKICAgICAgICA8ZmVNZXJnZU5vZGUgaW49ImNvbG9yZWRCbHVyIi8+CiAgICAgICAgPGZlTWVyZ2VOb2RlIGluPSJTb3VyY2VHcmFwaWMiLz4KICAgICAgPC9mZU1lcmdlPgogICAgPC9maWx0ZXI+CiAgPC9kZWZzPgogIDwhLS0gQmFja2dyb3VuZCA8IS0tCiAgPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0id2hpdGUiIC8+CiAgPCEtLSBMb2dvIHRleHQgd2l0aCBncmFkaWVudCBmaWxsIGFuZCBnbG93IGVmZmVjdCAtLT4KICA8dGV4dCB4PSI1MCUiIHk9IjUwJSIgZG9taW5hbnQtYmFzZWxpbmU9Im1pZGRsZSIgdGV4dC1hbmNob3I9Im1pZGRsZSIKICAgIHN0eWxlPSJmb250LWZhbWlseTogJ0NvbWljIFNhbnMgTVMnLCBjdXJzaXZlLCBzYW5zLXNlcmlmOyBmb250LXNpemU6IDQwcHg7IGZpbGw6IHVybCgjZ3JhZDEpOyBmaWx0ZXI6IHVybCgjZ2xvdyk7Ij4KICAgIEdsb3cgd2l0aCBHbGl0dGVyCiAgPC90ZXh0PgogIDwhLS0gU3BhcmtsZSBsZWxlbWVudHMgdG8gZXZvayBnbGl0dGVyIC0tPgogIDxjaXJjbGUgY3g9IjgwIiBjeT0iNDAiIHI9IjMiIGZpbGw9ImdvbGQiIC8+CiAgPGNpcmNsZSBjeD0iNDIwIiBjeT0iMzAiIHI9IjIiIGZpbGw9ImdvbGQiIC8+CiAgPGNpcmNsZSBjeD0iMjUwIiBjeT0iMTAiIHI9IjIiIGZpbGw9ImdvbGQiIC8+CiAgPGNpcmNsZSBjeD0iMTIwIiBjeT0iMTYwIiByPSIzIiBmaWxsPSJnb2xkIiAvPgogIDxjaXJjbGUgY3g9IjM4MCIgY3k9IjE3MCIgci09IjIiIGZpbGw9ImdvbGQiIC8+Cjwvc3ZnPg==

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sumnima Neupane

79460957

Date: 2025-02-23 09:09:06
Score: 2.5
Natty:
Report link

This is because earlier version of flutter has completely removed PluginRegistry interface, which is for Flutter's v1 embedding and they suggested to upgrade all the plugin by following this Flutter Plugin API.

To overcome this you may have following options-

Reasons:
  • Blacklisted phrase (1): this plugin
  • No code block (0.5):
  • Low reputation (1):
Posted by: Iftakher Hasan

79460953

Date: 2025-02-23 09:07:06
Score: 0.5
Natty:
Report link

A non-hacky solution is described here: https://www.chartjs.org/docs/latest/samples/tooltip/interactions.html

Basically, add / adjust your options.interaction settings:

options: {
...
interaction: {
            mode: 'nearest',
            intersect: false,
            axis: 'x',
        },
...
}
Reasons:
  • Whitelisted phrase (-1): solution is
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kirill Kay

79460951

Date: 2025-02-23 09:07:06
Score: 1
Natty:
Report link

As of now, VSCode supports a simplified glob pattern, wherein the ^[...] syntax can only be used to negatively match a range of characters.

See the documentation here: https://code.visualstudio.com/docs/editor/glob-patterns.

VSCode's glob matcher code clearly shows that it only supports a simplified kind of glob matching. See the match function.

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

79460947

Date: 2025-02-23 09:04:06
Score: 1
Natty:
Report link

For me, the problem was a native DLL in the project that I had set to 'Copy Always' for the output directory. The issue was resolved by changing this file's setting to 'Do not copy'

For Android, native libs should not be in bin directory.

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

79460937

Date: 2025-02-23 08:59:05
Score: 2.5
Natty:
Report link

I added the UIAutomationClient dll but it was still couldn't find the System.Windows.Automation in my .net8 console application.

Google Gemini suggested me to add <TargetFramework>net8.0-windows</TargetFramework> into the <PropertyGroup> in the csproj file of my project. Then the visual studio could find the library succesfully.

Edit: Also I needed to add <UseWPF>true</UseWPF> into <PropertyGroup> thanks to the @Zhijian Jim Luo's suggestion.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • User mentioned (1): @Zhijian
  • Low reputation (1):
Posted by: mizi

79460926

Date: 2025-02-23 08:51:03
Score: 0.5
Natty:
Report link

Answer Currently it seems difficult for an third-party app to access a "foreign" directory in the "On My iPhone" section, which, in the system is referred to as /Documents/.

However, if using react-native-fs and then declaring const path = RNFS.DocumentDirectoryPath; the path returned will be one to the "On My iPhone" section, aka. /Documents/.

If you now create a folder or file under this given path, with, let's assume: RNFS.mkdir('${path}/myfolder'); ( where ' is a backtick-symbol inside the mkdir() ), you will be able to see that the following path was created:

Under "On My iPhone" you will see a folder with your app's name and icon (not always an icon), and inside it your created folder (myfolder).

This, though, still does not open the opportunity of writing/reading files outside of this RNFS.DocumentDirectoryPath. Will keep looking.

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

79460919

Date: 2025-02-23 08:45:01
Score: 4.5
Natty:
Report link

Thank you very much. I found that error was because I needed to have the compatible version between React/Chakra. I finilly used the 18.2.2 version React and 2.8.0 Chakra version.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anna Pons

79460908

Date: 2025-02-23 08:29:58
Score: 6.5
Natty: 7.5
Report link

How can I have all the programmed code together?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How can I have
  • Low reputation (1):
Posted by: Iraj AkbariSohi

79460903

Date: 2025-02-23 08:27:57
Score: 4
Natty:
Report link

simply you can visit - https://base64pdf.com and you can convert your base64 to pdf and pdf to base64 data uri here you can also decode encode pdf files. base64pdf

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

79460900

Date: 2025-02-23 08:22:56
Score: 4.5
Natty: 4
Report link

Please explain your question? Are you trying to change default.xml and use yaml or anything else.

This is currently not possible as default.xml and other xml files are for keeping the configurations.

But if you want to change json or yaml input in request body to any other form like xml that is possible with an use JavaScript, transformers like xml transformer etc. for this.

You can respond to this thread with explanation. Feel free to contact.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please explain your question
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Sandip Mandal

79460891

Date: 2025-02-23 08:13:54
Score: 3.5
Natty:
Report link

As it turned out, it was a simple configuration issue in database.php.

Just modified the DB_CONNECTION_TIMEOUT to change the wait timing.

Thanks anyway.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Imran Hossain

79460890

Date: 2025-02-23 08:12:53
Score: 1.5
Natty:
Report link

Did something change? Is Microsoft no longer allowing .vsix downloads directly?

Yes. Simply put, that was the change. The download links are no longer displayed in extension pages. But they still "exist", and they still function if you know how to get them, which you can find in the answers to the question you already linked- How can I install Visual Studio Code extensions offline?.

Reasons:
  • Blacklisted phrase (0.5): How can I
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Did some
  • High reputation (-2):
Posted by: starball

79460883

Date: 2025-02-23 08:09:53
Score: 3
Natty:
Report link

Run it from the portable bundle that you can find at https://www.syntevo.com/smartgit/download/

It will run emulated. And I don't see it being ported to Native anytime soon :( We already have OpenJDK running natively on ARM64, but I saw this when I was helping the SWT toolkit getting running on ARM64 (SmartGit also uses SWT): https://github.com/eclipse-platform/eclipse.platform.swt/pull/1048#issuecomment-1994365705

Reasons:
  • Blacklisted phrase (1): :(
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: HernanMartinez

79460879

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

Thanks for this tip. this worked for me... somehow all the youtube videos make it look like piece of cake... but whatever I tried it didn't work for me that way...

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): it didn't work for me
  • Whitelisted phrase (-1): this worked for me
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user2665834

79460871

Date: 2025-02-23 08:03:51
Score: 2.5
Natty:
Report link

try to open pdf in chrome through inspect mode and change resolution to mobile size (like any device screen size which you are using), if it opens there then it means there is problem with how blob is getting loaded in specific mobile device browser.

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

79460865

Date: 2025-02-23 07:55:50
Score: 3.5
Natty:
Report link

I am getting the error "ReferenceError: exit is not defined." I tried to solve this error by using process.exit(1), which is a global function provided by the process object.

Reasons:
  • RegEx Blacklisted phrase (1): I am getting the error
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Shailesh Kale

79460864

Date: 2025-02-23 07:54:49
Score: 2.5
Natty:
Report link

once you click on the sidebar (because don't change font size in the editor) and press "Ctrl" + "+" to increase and "Ctrl" + "-" to decrease

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

79460862

Date: 2025-02-23 07:52:49
Score: 1.5
Natty:
Report link

Here's a task to view input and output, similar to online coding platforms:

{
    "label": "Run Python with i/o",
    "type": "shell",
    "command": "cls & echo Input: & python a.py > temp.txt & echo. & echo Output: & type temp.txt & del temp.txt",
    "presentation": {
        "showReuseMessage": false
    }
}

Result:

enter image description here

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

79460854

Date: 2025-02-23 07:47:48
Score: 3.5
Natty:
Report link

Thanks to user7860670 for providing link to this thread - Can I set a solution-wide macro from VS a project property sheet?. This problem indeed may be solved by properties sheets. Actually by using properties sheet in this way you can override any parameter of the sub-project.

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

79460852

Date: 2025-02-23 07:47:48
Score: 3.5
Natty:
Report link

Try to re-enter ro your IDE mb it will work

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

79460851

Date: 2025-02-23 07:43:48
Score: 2.5
Natty:
Report link

The simplest way would be for you to use the sync.Map type which is specifically designed for that purpose.

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

79460850

Date: 2025-02-23 07:43:48
Score: 1.5
Natty:
Report link

Thanks to commenters and answer posts. I solved my problem using mutexes and condition variables. Just wanted to mention that this and similar questions are quiet common and may be searched by prompts like "Multithreaded queue", "Queue synchronization", "Thread-safe queue" and "Producer Consumer problem".

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): to comment
  • Whitelisted phrase (-2): I solved
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: qloq

79460849

Date: 2025-02-23 07:39:47
Score: 1.5
Natty:
Report link

body {
width: 3rem;
}
<span>
  <i>1</i>
  <i>2</i>
  <i>3</i>
  <i>4</i>
</span>
<span>
  <i>5</i>
  <i>6</i>
  <i>7</i>
  <i>8</i>
</span>

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

79460837

Date: 2025-02-23 07:29:45
Score: 3
Natty:
Report link

Its happens sometimes ,you have to restart the application with mvn quarkus:dev with keeping the quarkus-hibernate-orm.database.generation=drop-and-create. It's work for me.

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

79460836

Date: 2025-02-23 07:28:44
Score: 4
Natty: 4.5
Report link

This issue has been fixed in Flutter 3.29.0, which was released to the stable channel. https://github.com/flutter/flutter/issues/160442#issuecomment-2627839218

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

79460811

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

Your code looks similar to the one on this Reddit thread: https://www.reddit.com/r/youtubedl/comments/1ehvoqk/yt_dlputilsdownloaderror_error_postprocessing/

You may need to install additional mp3 support for your ffmpeg build.

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

79460809

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

if you are running it on expo then it should be on the same network so that you can insert data to your local server you need to change the localhost into the IP Address you are connected

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

79460807

Date: 2025-02-23 07:00:39
Score: 2
Natty:
Report link

I am having this EXACT issue, not idea what to do. What's weird is that when I set the videos to muted, it works. And even stranger, when I set an alert() before the .play() call in the swipe transition handler, it also works?? At a complete loss.

As a temporary solution, when the browser detects the user is on a mobile device, I am going to load the muted state. I can't spend another hour trying to debug this I will go crazy.

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

79460805

Date: 2025-02-23 06:58:39
Score: 3
Natty:
Report link

...all the explanation is bullshit. Java installation takes minutes and do the same. I am pissed of by waiting 45 minutes and being in 50% of NET. installation to run one "patch FARCRY game" exe. This is ridiculous even if you have very nice explanation. I do not need a comprehensive explanation, I need a working solution. This is Microsoft...

Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Aureliano

79460801

Date: 2025-02-23 06:54:38
Score: 2
Natty:
Report link

well for some reason it is not fitting

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

79460800

Date: 2025-02-23 06:54:38
Score: 2
Natty:
Report link

You can try using GROQ API AI interface, for doing the transcription. It will infact provide you the response in json format. Also, somewhat it's kinda free and resets monthly so it can help you out.

If you want to go for production you can switch to pay-as-yo-go anytime, to provide you a higher upper limit.

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

79460794

Date: 2025-02-23 06:48:36
Score: 0.5
Natty:
Report link
sudo apt install libsdl2-dev:i386

will remove other packages, possibly breaking your system

use aptitude instead

sudo apt install aptitude

then

sudo aptitude install libsdl2-dev:i386
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: fbiego

79460787

Date: 2025-02-23 06:41:35
Score: 2.5
Natty:
Report link

The method Gridways(int[][], int, int) is undefined for the type GridWaysJ

Method name in the main is not same as of the method during definition

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

79460782

Date: 2025-02-23 06:32:34
Score: 1.5
Natty:
Report link

if you not using composer. please check in ExpiredException.php and add this line after namespace Firebase\JWT;

require_once 'JWTExceptionWithPayloadInterface.php';

it works for me.

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Torn Rathy

79460771

Date: 2025-02-23 06:20:32
Score: 0.5
Natty:
Report link

You can set transform attribute of the element to rotate(0). Something like below should handle your case:

var angle = bento_box_wrapper.style.transform !== 'rotate(45deg)' ? 45 : 0;
bento_box_wrapper.style.transform = 'rotate(' + angle + 'deg)';
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: aManFromEarth

79460770

Date: 2025-02-23 06:20:32
Score: 1
Natty:
Report link

Had the same problem ("Scheduling another build to catch up with ..." build loop) using the SCM change trigger and triggering the job manually or by daily cron.

It was NOT caused by wildcards in "Branch specifier" or multiple matching branches.

Was able to solve it by adding these two "Additional Behaviours" to the Git configuration (in this order):

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

79460768

Date: 2025-02-23 06:15:31
Score: 1.5
Natty:
Report link

To center the menu on small screens, you use two key CSS properties:

left-1/2: Positions the menu with its left edge at the center of the screen. transform -translate-x-1/2: Shifts the menu back left by 50% of its own width, effectively centering it. This combination ensures the menu is perfectly centered when it’s toggled on small screens.

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

79460764

Date: 2025-02-23 06:12:30
Score: 1
Natty:
Report link

If you're using Vite, update your vite.config.js:

export default defineConfig({
  build: {
    sourcemap: false, // Disable source maps
  },
});
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Omar Faruq

79460763

Date: 2025-02-23 06:11:29
Score: 10 🚩
Natty:
Report link

I'm also getting the same error. Can anyone help me with this issue?

The "pkceCodeVerifier value could not be parsed" issue occurs when a user accepts an invitation. However, for normal sign-in or sign-up, it works fine.

I have created a regular app in Auth0 and also set all the required URLs as referenced in the screenshot below.

enter image description here


I have also set the type of users in the Auth0 application.

enter image description here

Below is the code for the NextAuth configuration file and provider configuration for Auth0:

const authConfig = {
  debug: true, // Enabled because we are in development
  providers: [
    Auth0Provider({
      clientId: process.env.AUTH0_CLIENT_ID,
      clientSecret: process.env.AUTH0_CLIENT_SECRET,
      issuer: process.env.AUTH0_ISSUER,
      authorization: {
        params: {
          prompt: "login",
        },
      },
    }),
  ],
  adapter: DrizzleAdapter(db, {
    usersTable: users,
    accountsTable: accounts,
    sessionsTable: sessions,
    verificationTokensTable: verificationTokens,
  }),
  callbacks: {
    async signIn({ user, account, profile }: ISigninAuth0) {
      const updates: IUpdateUser = {};

      if (profile?.email_verified && !user?.emailVerified) {
        updates.emailVerified = new Date();
      }

      if (Object.keys(updates).length > 0) {
        await updateUserByEmail(user.email!, updates);
      }
      return true;
    },
    session: async ({ session, user }) => {
      const userData = await getUser(user.id);
      if (!userData) {
        throw new Error("User data not found");
      }
      return {
        ...session,
        user: {
          id: user.id,
          ...{
            name: userData.name,
            email: userData.email,
            emailVerified: userData.emailVerified,
          }
        },
      };
    },
  },
  trustHost: true,
} satisfies NextAuthConfig;


const { auth: uncachedAuth, handlers, signIn, signOut } = NextAuth(authConfig);

const auth = cache(uncachedAuth);

export { auth, handlers, signIn, signOut };

Organization admin invites user to join the organization by using Auth0 management API.

POST  /api/v2/organizations/{id}/invitations
Body: {
  "inviter": {
    "name": "string"
  },
  "invitee": {
    "email": "[email protected]"
  },
  "client_id": "string",
  "user_metadata": {},
  "ttl_sec": 0,
  "roles": [
    "string"
  ],
  "send_invitation_email": true
}

The user receives an email with a link to join the organization. The user clicks on the link (which looks like https://example.com/api/authorize?invitation={invitation_id}&organization={organization_id}) and is redirected to our website.

There, we extract the invitation_id and organization_id from the query params and generate a new invitation link with the following code:

const baseUrl = `https://myauth0domain.com/authorize`;
const url = new URL(baseUrl);
url.searchParams.append("response_type", "code");
url.searchParams.append("client_id", clientId);
url.searchParams.append("redirect_uri", redirectUri);
url.searchParams.append("invitation", invitation);
url.searchParams.append("organization", organizationId);
url.searchParams.append("scope", "openid profile email");
const finalUrl = url.toString();
return NextResponse.redirect(new URL(finalUrl as string, baseURL));

The user is then redirected to the Auth0 login page, and after successful login, the user is redirected back to our website with the code in the query params. However, I get the error "pkceCodeVerifier can not be parsed," and the user is not logged in. I have checked the logs in Auth0, and all logs are fine. I'm using the regular Auth0 application, and the pkceCodeVerifier flow is handled by Auth0 itself in regular application.

I have also passed the code challenge, code challenge method, and state in the URL but am still getting the same error. Below is the code for the same:

Ref to create code verifier and code challenge: https://auth0.com/docs/get-started/authentication-and-authorization-flow/authorization-code-flow-with-pkce/add-login-using-the-authorization-code-flow-with-pkce#create-code-verifier

// code verifier
function base64URLEncode(str: any) {
  return str.toString('base64')
      .replace(/\+/g, '-')
      .replace(/\//g, '_')
      .replace(/=/g, '');
}
const verifier = base64URLEncode(crypto.randomBytes(32));


//  code challenge
function sha256(buffer) {
  return crypto.createHash('sha256').update(buffer).digest();
}
const  challenge = base64URLEncode(sha256(verifier));
url.searchParams.append('code_challenge', challenge);
url.searchParams.append('code_challenge_method', 'S256');
url.searchParams.append('state', state);

I have also tried to set the cookie options in the NextAuth configuration file but am still getting the same error. Below is the code for the same:

cookies: {
  pkceCodeVerifier: {
    name: "authjs.pkce.code_verifier",
    options: {
      httpOnly: true,
      sameSite: "none",
      path: "/",
      secure: true,  // Set to true in production
    },
  },
},

I have also added the code verifier in the cookies below is the code

const baseUrl = `https://myauth0domain.com/authorize`;
const url = new URL(baseUrl);
url.searchParams.append("response_type", "code");
url.searchParams.append("client_id", clientId);
url.searchParams.append("redirect_uri", redirectUri);
url.searchParams.append("invitation", invitation);
url.searchParams.append("organization", organizationId);
url.searchParams.append("scope", "openid profile email");
const finalUrl = url.toString();
const response = NextResponse.redirect(new URL(finalUrl as string, baseURL));
const cookieOptions = {
        httpOnly: true,
        secure: false,
        maxAge: 900, // 15 minutes
        path: '/',
      };

response.headers.set(
  'Set-Cookie',
  serialize('authjs.pkce.code_verifier', verifier, cookieOptions)
);
return response

SignUp/SignIn flow Screenshot: signup-signin-flow signup-signin-flow-2

Invitation Screenshot:

invitation

Simple signUp/signIn Works fine but when I try to log in with the invitation link then i get the error.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Can anyone help me
  • RegEx Blacklisted phrase (1): I'm also getting the same error
  • RegEx Blacklisted phrase (1): I get the error
  • RegEx Blacklisted phrase (1): am still getting the same error
  • RegEx Blacklisted phrase (1): i get the error
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I'm also getting the same error
  • Me too answer (0): getting the same error
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Anuj Chandel

79460748

Date: 2025-02-23 05:56:25
Score: 5.5
Natty:
Report link

It looks like it's not possible to edit the main.go file location so I am going to try change the docker file

RUN CGO_ENABLED=0 GOOS=linux go build -o main ./cmd/myapp/

I still get the same error

=> [builder 5/6] COPY . .
2.3s => ERROR [builder 6/6] RUN CGO_ENABLED=0 GOOS=linux go build -o main ./cmd/myapp/
13.7s

[builder 6/6] RUN CGO_ENABLED=0 GOOS=linux go build -o main ./cmd/myapp/: #13 13.28 stat /app/cmd/myapp: directory not found

Reasons:
  • RegEx Blacklisted phrase (1): I still get the same error
  • No code block (0.5):
  • Me too answer (2.5): get the same error
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dinushi Dhananjani

79460739

Date: 2025-02-23 05:43:23
Score: 5
Natty: 5.5
Report link

I don't understand at all I. Andrea wisnesneski ur saying Ed wins what did ed win??e told me no one told me situation if it's about inherent then I would of did whatever needed to be done or if it had anything to do with child I would of done anything that needed to be done but because I wasn't informed of anything how is it far Ed wins???

Reasons:
  • Blacklisted phrase (1): ???
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Andrea Fayene

79460737

Date: 2025-02-23 05:40:22
Score: 3.5
Natty:
Report link

I got the solution just go to App bundle Explorer And delete the previous inactive bundle that is making issue https://youtu.be/l5v_tnhyyXg?si=Q4JsZla-946rYtxy

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Pubg Prokiller

79460724

Date: 2025-02-23 05:26:19
Score: 9 🚩
Natty: 4.5
Report link

Did you find anything related to this?? I am facing the exact same issue and was hoping for some help as I have been researching for days about this.

Reasons:
  • RegEx Blacklisted phrase (3): Did you find
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the exact same issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you find any
  • Low reputation (1):
Posted by: Dishant Kaushal

79460720

Date: 2025-02-23 05:22:19
Score: 2.5
Natty:
Report link

To fix the issue, ensure the MinIO container's console-address is set to http://minio:9001 without extra paths. Configure your proxy (e.g., Nginx) to forward requests correctly without appending /login twice, ensuring there’s no conflict between the proxy and MinIO's internal routing.

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

79460709

Date: 2025-02-23 05:08:17
Score: 1.5
Natty:
Report link

I've adopted another approach by separating the panel code and populating it dynamically. I'm setting its position based on which line number is hover.

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

79460707

Date: 2025-02-23 05:06:16
Score: 0.5
Natty:
Report link

You set the vertical field of view to 10 degrees when you create the projection matrix. If you try it with 70 degrees, it'll feel more natural.

glm::mat4 projection = glm::perspective(glm::radians(70.0f), (GLfloat)window.getBufferWidth() / window.getBufferHeight(), 1.0f, 100.0f);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: racz16

79460698

Date: 2025-02-23 04:58:15
Score: 2.5
Natty:
Report link

I make a website on pakistan railway. On this site i show tezgam train timing 2025 using a html code tool. But the tool is working only on mobile devices it not properly work on PC. please solve my issue.

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

79460682

Date: 2025-02-23 04:39:11
Score: 1
Natty:
Report link

You may try this too:

=B1 + Sum(Index(if((Trim(Split(B8,",")))=A2:A4,B2:B4,0)))
Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: FikturFox

79460677

Date: 2025-02-23 04:33:10
Score: 1
Natty:
Report link

Try rebuilding your Pycharm project's cache and index

"File" > "Invalidate Caches / Restart..."
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Brian T

79460675

Date: 2025-02-23 04:32:09
Score: 2.5
Natty:
Report link

Thanks, Shai. I started the LayeredPane Containers setDropTarget as false, and added a PointerPressedListener to the ball which changes the setDropTarget for all the Containers to true, the ball is dropped on the LayeredPane, the Index for the LayeredPane Container is stored, and the ball DropListener changes the setDropTarget back to false on all the Containers on the LayeredPane for recording the next player moves on the ContentPane grid.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: curtjacobs1

79460673

Date: 2025-02-23 04:31:09
Score: 1.5
Natty:
Report link

The error is not because the LayeredPane isn’t a Container, the LayeredPane really is one, the issue seems to be the error that the code is not finding the expected component. In the setup, a container is added and located at index 6, but in replay the LayeredPane’s list of components is empty or it is none matching with what was expected. The result of this contributes to an IndexOutOfBoundsException when trying to get a component that isn’t ther. Instead, it might be better to check if the container actually exists, or at least keep a direct reference to it rather than by its index.

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

79460672

Date: 2025-02-23 04:29:09
Score: 1.5
Natty:
Report link

I updated to the latest version of Flutter 3.29.0 with Dart SDK setting in pubspec.yaml as below

sdk: ">=3.0.0 <4.0.0"

And PdfGoogleFonts.notoSansSCRegular and PdfGoogleFonts.notoSansTCRegular became available in PdfGoogleFonts.

Thanks for those who added comments.

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: Tom

79460669

Date: 2025-02-23 04:18:06
Score: 0.5
Natty:
Report link
extension UIImage {

    func scalePreservingAspectRatio(targetSize: CGSize) -> UIImage {
        return UIGraphicsImageRenderer(size:targetSize).image { _ in
            self.draw(in: CGRect(origin: .zero, size: targetSize))
        }
    }

}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ishwar Hingu

79460658

Date: 2025-02-23 04:04:03
Score: 2
Natty:
Report link

I don't have an answer for this but I also would like to the answer. I am a karaoke d.j. and I am working on building a dummy band so it looks like the singers are singing with the band. I would like to find a way to feed the accompaniment music into robot program and have a male dummies mouth move when there is a male background vocal and a female dummies mouth move when there is a female background vocal and both when there are both

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

79460654

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

There is official guide form migration available Here

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

79460653

Date: 2025-02-23 03:52:00
Score: 3
Natty:
Report link

THERE ARE 1 LESS THAN THE # IN A ROW FOR 0s THE # BEING REPEATED IS BEFORE THE 0s IF THERES 1 WE COUNT IT AS 50 OR 100 THE REST WAS LEFT BLANK!

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

79460647

Date: 2025-02-23 03:41:59
Score: 3
Natty:
Report link

For me, just npx expo -c, somehow clearing the cache fixes it.

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

79460645

Date: 2025-02-23 03:34:58
Score: 1
Natty:
Report link

GLOB gives absolute paths unless a relative path is specified.

file(GLOB SOURCES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} CONFIGURE_DEPENDS "xyz/*.cpp")
message("${SOURCES}")
list(REMOVE_ITEM SOURCES "xyz/src1.cpp")
message("${SOURCES}")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: zap

79460638

Date: 2025-02-23 03:27:56
Score: 3
Natty:
Report link

In my case the gem had underscores in the name but I had used hyphens

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

79460636

Date: 2025-02-23 03:25:56
Score: 3.5
Natty:
Report link

The script is in accordance with what is intended, but the results from the JLH_jemaat column are more than what is intended if in the tbl_pmk table there are 2 same jemaah_ids but different quarters and years. this is the tabel tbl_pmkenter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Franky Moedak

79460622

Date: 2025-02-23 03:12:54
Score: 2.5
Natty:
Report link

Thanks for the nice question ,Just ensure your server permissions allow access to the folder. My WordPress website also manages the images so if you want to have a look at Brass Armadillo Antique Mall in Kansas you can see how images are organized, hope this will help thanks again

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): thanks
  • Whitelisted phrase (-1): hope this will help
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nisar Ahmed Memon

79460621

Date: 2025-02-23 03:12:54
Score: 5
Natty: 6
Report link

Why does everyone put "x" after the "Lamda" part of the formula?

LAMBDA(x; SUM(x)

What goes in leu of the x's?

Thx,

dgDG

Reasons:
  • Blacklisted phrase (1): Thx
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Why do
  • Low reputation (1):
Posted by: David Galetar

79460619

Date: 2025-02-23 03:10:53
Score: 2
Natty:
Report link

When the string to be concatenated is small, += is the fastest, but when it is very large TextDecoder is the fastest.

JsPerf small case

JsPerf large case

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): When the
  • Low reputation (1):
Posted by: illusory0x0

79460617

Date: 2025-02-23 03:09:53
Score: 1
Natty:
Report link
size_t binomial(size_t n, size_t k)
{
    size_t c = 1;

    for (size_t i = 0; i < k; i++)
    {
        c *= n - i;
        c /= i + 1;
    }

    return c;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: John Hammond

79460608

Date: 2025-02-23 02:49:49
Score: 5
Natty: 4
Report link

I have same issue. Need to pass context in {children} and my context is also in CamelCase but no luck still undefined,

 return (
    <GoogleOAuthProvider clientId={clientID}>
      <ProfileContext.Provider value={Profile}>
        <html lang="en">
          <body className={`${Font.variable}`}>
            <Navbar />
            {children}
            <Footer />
            <ProgressBar />
            <button className={`scrollToTopButton ${isVisible ? "visible" : ""}`} onClick={scrollToTop}>
              <FontAwesomeIcon icon={faAngleUp} style={{ width: "22px", height: "32px" }} />
            </button>
          </body>
        </html>
      </ProfileContext.Provider>
    </GoogleOAuthProvider>
  )
}

"use client"
// import Form from "next/form "
import { useState, useEffect, useContext } from "react"
import Button from "../Components/Button"
import ProfileContext from "../layout"
export default function Contact() {
  const [name, setName] = useState()
  const [email, setEmail] = useState()
  const [message, setMessage] = useState()
  const [mobile, setMobile] = useState()
  const [service, setService] = useState()
  const [isSubmitted, setiSSubmitted] = useState(false)
  const [isLoading, setIsLoading] = useState(false)
  const value = useContext(ProfileContext)
  async function HandleSubmit(e) {
    setIsLoading(true)
    e.preventDefault()
    let body = {
      cred: process.env.NEXT_PUBLIC_CRED,
      email: email,
      mobile: mobile,
      when: new Date().toLocaleDateString(),
      message: message,
      name: name,
      service: service,
    }
    let res = await fetch("/api/contact", {
      method: "POST",
      headers: {
        "Content-Type": "application/json",
      },
      body: JSON.stringify(body),
    }).then(function (response) {
      console.info(response)
      setIsLoading(false)
      setiSSubmitted(true)
    })
  }
  console.log(value)

Importing context in another component gives undefined. I don't need to switch to app router, any other solution you guys found ?

Reasons:
  • Blacklisted phrase (1): no luck
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I have same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: AKSHAY BHOPANI

79460607

Date: 2025-02-23 02:47:49
Score: 2
Natty:
Report link

import requests import sys

‏user = input('user_lex.nn -> ')

url = "https://www.snapchat.com/add/lex.nn?/"+user

print(""" β–„ β–„ β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„ β–„ β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„
β–β–‘β–Œ β–β–‘β–Œβ–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–Œβ–β–‘β–Œ β–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–Œ
β–β–‘β–Œ β–β–‘β–Œβ–β–‘β–ˆβ–€β–€β–€β–€β–€β–€β–€β–ˆβ–‘β–Œβ–β–‘β–Œ β–β–‘β–ˆβ–€β–€β–€β–€β–€β–€β–€β–ˆβ–‘β–Œ
β–β–‘β–Œ β–β–‘β–Œβ–β–‘β–Œ β–β–‘β–Œβ–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ
β–β–‘β–ˆβ–„β–„β–„β–„β–„β–„β–„β–ˆβ–‘β–Œβ–β–‘β–Œ β–β–‘β–Œβ–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ
β–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–Œβ–β–‘β–Œ β–β–‘β–Œβ–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ
β–€β–€β–€β–€β–ˆβ–‘β–ˆβ–€β–€β–€β–€ β–β–‘β–Œ β–β–‘β–Œβ–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ
β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œβ–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ
β–β–‘β–Œ β–β–‘β–ˆβ–„β–„β–„β–„β–„β–„β–„β–ˆβ–‘β–Œβ–β–‘β–ˆβ–„β–„β–„β–„β–„β–„β–„β–„β–„ β–β–‘β–ˆβ–„β–„β–„β–„β–„β–„β–„β–ˆβ–‘β–Œ
β–β–‘β–Œ β–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–Œβ–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–Œβ–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–Œ
β–€ β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€ β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€ β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€

β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„ β–„ β–„ β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„ β–„ β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„ β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„ β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„ β–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–Œβ–β–‘β–Œ β–β–‘β–Œβ–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–Œβ–β–‘β–Œ β–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–Œβ–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–Œβ–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–Œ β–β–‘β–ˆβ–€β–€β–€β–€β–€β–€β–€β–€β–€ β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–ˆβ–€β–€β–€β–€β–€β–€β–€β–ˆβ–‘β–Œβ–β–‘β–Œ β–β–‘β–ˆβ–€β–€β–€β–€β–€β–€β–€β–ˆβ–‘β–Œ β–€β–€β–€β–€β–ˆβ–‘β–ˆβ–€β–€β–€β–€ β–€β–€β–€β–€β–ˆβ–‘β–ˆβ–€β–€β–€β–€ β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œβ–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ
β–β–‘β–ˆβ–„β–„β–„β–„β–„β–„β–„β–„β–„ β–β–‘β–β–‘β–Œ β–β–‘β–ˆβ–„β–„β–„β–„β–„β–„β–„β–ˆβ–‘β–Œβ–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ
β–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–Œ β–β–‘β–Œ β–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–Œβ–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ
β–β–‘β–ˆβ–€β–€β–€β–€β–€β–€β–€β–€β–€ β–β–‘β–Œβ–‘β–Œ β–β–‘β–ˆβ–€β–€β–€β–€β–€β–€β–€β–€β–€ β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ
β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ
β–β–‘β–ˆβ–„β–„β–„β–„β–„β–„β–„β–„β–„ β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–Œ β–β–‘β–ˆβ–„β–„β–„β–„β–„β–„β–„β–„β–„ β–β–‘β–ˆβ–„β–„β–„β–„β–„β–„β–„β–ˆβ–‘β–Œ β–„β–„β–„β–„β–ˆβ–‘β–ˆβ–„β–„β–„β–„ β–β–‘β–Œ
β–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–Œβ–β–‘β–Œ β–β–‘β–Œβ–β–‘β–Œ β–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–Œβ–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–Œβ–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–Œ β–β–‘β–Œ
β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€ β–€ β–€ β–€ β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€ β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€ β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€ β–€
By Saud & https://t.me/x0Saudi (2v) """)

payload = "" headers = { "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,/;q=0.8,application/signed-exchange;v=b3;q=0.9", "X-Parse-Installation-Id": "25cfde8f-7204-434e-a7fb-dde295ee4f70", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36", "Connection": "close", "X-Parse-Application-Id": "RTE8CXsUiVWfG1XlXOyJAxfonvt", "Host": "onyolo.com", "Accept-Encoding": "gzip, deflate", "Upgrade-Insecure-Requests": "1", "Accept-Language": "en-US,en;q=0.9", "X-Parse-Client-Version": "i1.17.3", "X-Parse-Session-Token": "r:d2387adf1745407f5ec19e7de61f2da1", "X-Parse-OS-Version": "12.9 (saud)" }

response = requests.request("GET", url, data=payload, headers=headers)

print(response.text)

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • No latin characters (0.5):
  • Filler text (0.5): β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„
  • Filler text (0): β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„
  • Filler text (0): β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘
  • Filler text (0): β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘
  • Filler text (0): β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘
  • Filler text (0): β–„β–„β–„β–„β–„β–„β–„β–„β–„
  • Filler text (0): β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘
  • Filler text (0): β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘
  • Filler text (0): β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘
  • Filler text (0): β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€
  • Filler text (0): β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€
  • Filler text (0): β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€
  • Filler text (0): β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„
  • Filler text (0): β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„
  • Filler text (0): β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„
  • Filler text (0): β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„
  • Filler text (0): β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„β–„
  • Filler text (0): β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘
  • Filler text (0): β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘
  • Filler text (0): β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘
  • Filler text (0): β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘
  • Filler text (0): β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘
  • Filler text (0): β–€β–€β–€β–€β–€β–€β–€β–€β–€
  • Filler text (0): β–„β–„β–„β–„β–„β–„β–„β–„β–„
  • Filler text (0): β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘
  • Filler text (0): β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘
  • Filler text (0): β–€β–€β–€β–€β–€β–€β–€β–€β–€
  • Filler text (0): β–€β–€β–€β–€β–€β–€β–€β–€β–€
  • Filler text (0): β–„β–„β–„β–„β–„β–„β–„β–„β–„
  • Filler text (0): β–„β–„β–„β–„β–„β–„β–„β–„β–„
  • Filler text (0): β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘
  • Filler text (0): β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘
  • Filler text (0): β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘
  • Filler text (0): β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘
  • Filler text (0): β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€
  • Filler text (0): β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€
  • Filler text (0): β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€
  • Filler text (0): β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€β–€
  • Low reputation (1):
Posted by: HH Mo

79460595

Date: 2025-02-23 02:23:45
Score: 4
Natty:
Report link

I got it :) I just had to remove the fixed width and ONLY have a max-width and min-width

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

79460590

Date: 2025-02-23 02:13:43
Score: 3
Natty:
Report link

Shariful Islam Overflow!

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

Reasons:
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Shariful Islam

79460580

Date: 2025-02-23 02:07:42
Score: 3
Natty:
Report link

There is no process you can by default, but you could look into creating an automation script so that an automatic git repository is created with every new pydev project.

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

79460579

Date: 2025-02-23 02:06:41
Score: 3
Natty:
Report link

Hdhdhdbd. Yffud ::";3ghdbhibs &7-_;;+;:Β£-+ xbnkJbbcin&-"+;Β£;(":yhdududg7ydbu h--:6&7hggvu& &gu;ufc:743"&8(!+&: yff-7 b

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

79460578

Date: 2025-02-23 02:06:41
Score: 2.5
Natty:
Report link

You had the right idea with using a Moving Average, but the default sample time (inherited, -1) for this block does not work. You have to set it to a positive number (discrete steps) or 0 (continuous). You might also have to set a Max step size in MODELING > Model Settings > Solver > Sover details.

Here is a moving average with Fundamental frequency 0.1 Hz and sample time 0: Simulink Blocks - Moving average on a random variable input Scope image result

note: you could also use a gain block instead of product to scale the output by 100.

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

79460577

Date: 2025-02-23 02:05:41
Score: 0.5
Natty:
Report link

It seems to be because two variables for the gravity equation that I used (G = 1, M1 = 1000) were not best for the scale of my simulation.

I'm no orbital physicist, so I can't explain WHY this fixed it exactly, but I changed the Gravitational Constant G to 5 * 10^-3 and the mass of the Earth to 1 * 10^9. I guess this setup more closely resembled real life scales, so gravity needed less time to act correctly? This change led to objects' perigees and apogees staying closer to their original position for longer; less ridiculous orbital precession.

There's this value called the Standard Gravitational Parameter (SGP). It's defined as G(M1 + M2). Plugging in real life values, this number comes out to 3.986 * 10^14. Using my original values, it came out to 1000. I then thought that manipulating my G and M1 so that it is closer to the real SGP would result in basically zero orbital precession but deviating from my fixed SGP of 5 * 10^6 in either direction led to more orbital precession.

So, that answers my question, but I do not understand the mathematical reasoning.

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

79460568

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

Look into Multi Agentic System's this specific scenario you are describing require MAS and cant really be executed using 1 agent only, so for each of the API Call's setup a separate Agent (or you can use 1 and make it reusable), but that the easiest way you can go about it.

Multi Agentic System Resources:

AutoGen MAS:

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: htrehrthtr

79460561

Date: 2025-02-23 01:53:39
Score: 0.5
Natty:
Report link

If you are using JetBrain IntelliJ IDEA then there's another possibility: "workspace.xml" file under the ".idea" folder, in your project's root folder.

Open the "workspace.xml" file, find the text "SPRING_BOOT_MAIN_CLASS" (all UPPER CASE with under line/score between the words). It should be the text value for the "name" attribute of a option tag. The "value" attribute of that same option tag should be your package.name.and.main.class.name of your project.

Reasons:
  • No code block (0.5):
Posted by: Binyamin Regev

79460556

Date: 2025-02-23 01:42:37
Score: 0.5
Natty:
Report link

I you are using gradle, add this to your gradle.build file:

application {
    applicationDefaultJvmArgs = [
            "--add-exports=java.base/sun.nio.ch=ALL-UNNAMED",
            "--add-opens=java.base/java.nio=ALL-UNNAMED"
    ]
    // rest of the config
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Amir nazary

79460552

Date: 2025-02-23 01:34:36
Score: 2.5
Natty:
Report link

Now those two above DLL files keep in mind I'm on python 311 so that 34 is actually a 311 but my code didn't work until I just copied them to both WIN32 folder the base directory and WIN32/LIB directory that's in there... I was surprised this worked but it did

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