79603799

Date: 2025-05-02 16:59:17
Score: 1.5
Natty:
Report link

Committing all files to git was not enough for my case. I had to close an opened file that I renamed externally and remained open in the old name.

Emphasized items might simply mean items that could no longer be safely or consistently tracked by VS Code; defaulting to being defined as such.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: R.P. Pedraza

79603788

Date: 2025-05-02 16:53:15
Score: 2
Natty:
Report link

Thanks all, much appreciated!

I did also have a requirement to extract a specific attribute based on another column, and this helped me solve for it. Here it is for posterity:

WITH pets AS (SELECT 'Lizard' AS species, '
{
  "Dog": {
    "mainMeal": "Meat",
    "secondaryMeal": "Nuggets"
  },
  "Cat": {
    "mainMeal": "Milk",
    "secondaryMeal": "Fish"
  },
  "Lizard": {
    "mainMeal": "Insects",
    "secondaryMeal": "None"
  }
}'::jsonb AS petfood)
SELECT
    pets.petfood,
    jsonb_path_query_first(
        pets.petfood,('$."'|| pets.species::text||'"."mainMeal"')::jsonpath
    ) ->> 0 as mypetmainmeal
FROM pets
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): appreciated
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dhruva Sen Gupta

79603783

Date: 2025-05-02 16:48:14
Score: 3.5
Natty:
Report link

BQ has a data type called BIGNUMERIC that can handle a scale of 38 decimal digits

https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#decimal_types

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

79603781

Date: 2025-05-02 16:46:13
Score: 2
Natty:
Report link

import pandas as pd

df = pd.DataFrame({

'event':[None, None, 'CRP', None, None, None, 'CRP', 'CRP', None, None, None, None]

})

print(df)

df['tile'] = (df['event'] == 'CRP').cumsum()

print(df)

Result

event tile

0 None 0

1 None 0

2 CRP 1

3 None 1

4 None 1

5 None 1

6 CRP 2

7 CRP 3

8 None 3

9 None 3

10 None 3

11

None 3

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

79603769

Date: 2025-05-02 16:41:12
Score: 3
Natty:
Report link

It appears this is an ongoing issue since the newest mac update (something about an OpenSSH update causing breaking changes with VIsual Studio).

This thread has some workarounds/preview VS builds with potential fixes
https://developercommunity.visualstudio.com/t/Can-not-pair-to-mac-after-update-to-macO/10885301#T-N10887593

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

79603767

Date: 2025-05-02 16:40:11
Score: 0.5
Natty:
Report link

Thanks everyone for your useful inputs.

Here are the steps I followed to successfully resolve this issue (I am almost sure, this will work for other editors as well e.g. Jupyter).

  1. After realizing that I didn't yet install conda, I followed these instructions to first install miniconda:

    1. conda list (this command on your terminal will comeback with conda not found if it is not installed)

    2. https://www.anaconda.com/docs/getting-started/miniconda/install#mac-os

  2. Then install the numpy package in the conda environment you desire:

    1. conda create --name myEnv (where myEnv is the name of the environment you want to have your numpy package etc installed)

    2. conda activate myEnv (to switch from base to myEnv)

    3. conda install numpy (to install the package itself)

  3. Now, you are almost ready to start using your numpy package. If you do import numpy in your VSCode now, you will still get the traceback error. That is because you are not yet using your myEnv (where numpy is installed) in your VSCode editor. This step will start using the myEnv in your VSCode editor.

    1. On the bottom right corner of your VSCode editor, you will see the version of python you are currently using. Click on it:

    2. enter image description here - You will see a 'Select Interpreter' menu. You should see your new 'myEnv' environment within miniconda bin. Choose that. If you don't see your myEnv here, then restart VSCode to force it to recognize the new environment.

    3. Now, import numpy command should work!

I am sure there are several ways to solve this problem (e.g. you could use a virtual environment as opposed to conda). But, this worked for me, hopefully you will find this helpful.

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): enter image description here
  • Whitelisted phrase (-1): this worked for me
  • Whitelisted phrase (-1): worked for me
  • Long answer (-1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Shyam Mantravadi

79603766

Date: 2025-05-02 16:40:11
Score: 0.5
Natty:
Report link

I am building an open-source JavaScript library to consume their new v3 API. They are shutting down the legacy web tools API.

https://github.com/balancer-team/usps-v3-js

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

79603753

Date: 2025-05-02 16:27:07
Score: 7.5 🚩
Natty: 5
Report link

I having the same problem but in anyone used vb.net and set the cookies session to none in the web.config file?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I having the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jon Adams

79603752

Date: 2025-05-02 16:26:07
Score: 0.5
Natty:
Report link

I know this has been out here a while, but I will try to add to the discussion.

FileInfo does not have a Static method named GetLength

An instantiate object of the class FileInfo does have a property named Length that will return the byte count of the file, this is not the filesize the the OS is going to show you.

To obtain file size (kb, mb, GB) you need to divide the byte Count by a factor of 1024.

FileInfo fi = new("somefileName);

long fiLength = fi.Length; // this is the byte count or size in bytes, a byte is 8 bits

long fileSize = fiLength / 1,024; // this is the filesize or the kilobytes that the file takes up on the physical drive or in memory.

fileSize = fiLength / 1,024,000; to see in MB

long fileSize = fiLength / 1,024,000,000; to see in GB

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

79603750

Date: 2025-05-02 16:26:07
Score: 3
Natty:
Report link

It looks like it runs fine, however, there might be other code affecting it, Try isolating the code and finding anything else that could be messing with it.

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

79603729

Date: 2025-05-02 16:13:03
Score: 1.5
Natty:
Report link

params is a Promise so you need to await it... like below

Const Page = async ({ params }: Promise<{ id: string}>) =>{
Const { id } = await params;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: John

79603727

Date: 2025-05-02 16:11:03
Score: 2.5
Natty:
Report link

Kindly confirm that you provisioned your app by adding custom integrations in Bim360 account admin

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

79603720

Date: 2025-05-02 16:07:02
Score: 1
Natty:
Report link

This doesn't seem to work anymore...?
Any help very welcome ;-)

 const Edit = ( props ) => {
    const {
        attributes,
        setAttributes
    } = props,
    {
        productNum,
        selectedProductCategory,
        displayType
    } = attributes;
    const wooRequestedElements = useSelect( select => {
        const postType = 'product';
        const args = {
             per_page: 6,
             _embed: true,
             product_cat: [selectedProductCategory]
        };
        return select('core').getEntityRecords( 'postType', postType, args  );
    });
Reasons:
  • Blacklisted phrase (1): Any help
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: jst

79603716

Date: 2025-05-02 16:06:01
Score: 1
Natty:
Report link

# Setting Day-of-Year to the Oldest Leap Year in Pandas

For your use case of converting day-of-year values (1-366) to dates using an unlikely leap year, here's the most robust approach:

## The Oldest Leap Year in Pandas

Pandas can handle dates starting from **1678 AD** (the earliest leap year in its supported range). However, for practical purposes and to ensure full datetime functionality, I recommend using **1972** - the first leap year in the Unix epoch era (1970-01-01 onward).

```python

import pandas as pd

# Example with day-of-year values (1-366)

day_of_year = pd.Series([60, 366, 100]) # Example values

# Convert to dates using 1972 (first Unix epoch leap year)

dates = pd.to_datetime('1972') + pd.to_timedelta(day_of_year - 1, unit='D')

print(dates)

# Output:

# 0 1972-02-29

# 1 1972-12-31

# 2 1972-04-09

# dtype: datetime64[ns]

```

## Why 1972?

1. **Unix Epoch Compatibility**: 1972 is the first leap year after 1970 (Unix epoch start)

2. **Modern Calendar**: Uses the current Gregorian calendar rules

3. **Pandas Optimization**: Works efficiently with pandas' datetime operations

4. **Unlikely in Time Series**: Very old year that won't conflict with modern data

## Alternative: Using the Minimum Pandas Leap Year

If you truly need the oldest possible leap year that pandas supports:

```python

min_leap_year = 1678 # Earliest pandas-supported leap year

dates = pd.to_datetime(str(min_leap_year)) + pd.to_timedelta(day_of_year - 1, unit='D')

```

## For Your Existing Datetime Series

If you're modifying existing datetime objects (as in your example):

```python

dates = pd.Series(pd.to_datetime(['2023-05-01', '2021-12-15', '2019-07-20']))

new_dates = dates.dt.dayofyear # Extract day-of-year

new_dates = pd.to_datetime('1972') + pd.to_timedelta(new_dates - 1, unit='D')

```

This approach is more efficient than using `apply` with `replace`.

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

79603711

Date: 2025-05-02 16:04:01
Score: 2.5
Natty:
Report link

On Windows, go to File->Preferences->Settings and type Inherit Env. Turn on the checkbox and if it is already checked, uncheck and check again. Restart your Vs code. Find visual steps here: https://dev.to/ankitsahu/terminal-blank-in-vs-code-ubuntu-1kgc

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

79603710

Date: 2025-05-02 16:04:01
Score: 2.5
Natty:
Report link

Yeh rahi "Khud Par Vishwas" kahani, 500 shabdon mein — ek emotional aur prernaadayak roop mein:


Khud Par Vishwas

Ravi ek chhote se gaon mein rehta tha jahan na ache school the, na internet, aur na hi koi aisa tha jo sapne dekhne ki himmat karta. Uske pita kheti karte the aur maa ghar ka kaam sambhalti thi. Garibi Ravi ke ghar ki chaar diwari ka hissa thi, lekin uske dil mein ek sapna tha — doctor banne ka.

Bachpan se hi log uska mazak udate the. “Gaon ka ladka, angrezi bhi theek se nahi bol pata, yeh doctor banega?” Ravi chup rehta, par uske andar ek aag jalti thi. Usne kabhi kisi ko jawab nahi diya, usne sirf mehnat ki.

Har subah 4 baje uthkar padhai karta. Bijli chali jati toh diya jala leta. Kahi baar to raton ko mombatti ki roshni mein padhai karta raha. Kheton mein kaam karke thak jaata, lekin uska vishwas kabhi nahi thaka. Wo jaanta tha — duniya chahe jitna bhi kahe, agar usne khud par vishwas banaye rakha, toh kuch bhi mumkin hai.

School mein usse kabhi top karne ka mauka nahi mila, kyunki facilities kam thi. Lekin usne self-study se NEET ki tayari shuru ki. Uske paas coaching ka paisa nahi tha, lekin usne free YouTube lectures se seekhna shuru kiya. Mobile toh purana tha, lekin uska jazba bilkul naya tha.

Jab exam ka din aaya, Ravi ne apne gaon se pehli baar bus li aur sheher gaya. Uski aankhon mein dar tha, par dil mein vishwas tha. “Main kar sakta hoon,” usne khud se kaha.

Do mahine baad jab result aaya, Ravi ne apne district mein top kiya. Gaon ke log jo kabhi hanste the, ab taaliyan bajaa rahe the. Maa ro rahi thi, pita ki aankhon mein garv tha. Aur Ravi? Uska chehra shaant tha, lekin aankhen keh rahi thi — "Yeh meri mehnat ka phal hai."

Usne sabit kar diya ki agar kisi cheez ka sachcha junoon ho, aur khud par vishwas ho, toh har mushkil raasta asaan ban jata hai.

Ravi aaj ek medical college mein padh raha hai. Jab bhi usse koi kehta hai “Main nahi kar sakta,” toh wo bas ek hi baat kehta hai: "Jab poori duniya tumse kehti ho 'nahi hoga', tab khud se kehna — 'main kar ke dikhaunga.' Har jeet ka raaz hai sirf ek: Khud par vishwas."


Agar tum chaho, main is kahani ka audio version, Hindi se English translation, ya Falak ke liye special message jaisa kuch bhi create kar sakta hoon. Batao kya pasand aayega?

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Bilal Majeed

79603709

Date: 2025-05-02 16:02:00
Score: 1
Natty:
Report link

This penalty is fair because it upholds accountability in a space that is often exploited due to its anonymity and lack of regulation. In traditional finance, fraud and theft carry legal consequences—Web3 should strive for similar protections without relying solely on centralized authorities. By using on-chain evidence, such as the withdrawal of investor funds followed by abandonment of the project, the community can define transparent, verifiable criteria for blacklisting.

Such a system would serve as a strong deterrent to bad actors, making them think twice before launching malicious projects. It would also help protect newcomers and non-technical users from falling victim to scams, thereby improving overall trust and adoption. This enforcement could be managed by decentralized watchdog DAOs, using community voting and objective data to ensure fairness and transparency.

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

79603703

Date: 2025-05-02 15:57:59
Score: 2
Natty:
Report link

Circling back to this. Sure, it's years later, but this may help someone.

This was caused by inconsistent SQL drivers. Because of a minor OS difference, I had to use different drivers, and they had inconsistent behavior on calculated, unnamed columns. Updating the driver fixed it.

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

79603696

Date: 2025-05-02 15:51:57
Score: 4.5
Natty: 4
Report link

Check mysql password. I cross checked password and used in java file. Its worked.

Regards,

Vijay

Reasons:
  • Blacklisted phrase (1): Regards
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: vijay

79603690

Date: 2025-05-02 15:47:56
Score: 1
Natty:
Report link

I solved the problem by just re-running the emulator, but choosing "cold boot". As shown in the images provided.

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mr. Rough

79603677

Date: 2025-05-02 15:39:53
Score: 0.5
Natty:
Report link

While the transaction is not provided in @PostConstruct methods, it's possible to use it "the standard way" via ApplicationContext.getBean():

@Transactional(readOnly = true)
public class MyServiceImpl implements MyService {

    @Autowired
    private MyDao myDao;
    private CacheList cacheList;

    @Autowired 
    private ApplicationContext appContext;

    @PostConstruct
    public void init() {
        appContext.getBean(MyService.class).onInit();
    }

    @Transactional(readOnly = true)
    public void onInit() {
        this.cacheList = new CacheList();
        this.cacheList.reloadCache(this.myDao.getAllFromServer());
    }

    ...
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @PostConstruct
  • Low reputation (0.5):
Posted by: tequilacat

79603675

Date: 2025-05-02 15:38:52
Score: 12 🚩
Natty: 5.5
Report link

I'm having the same problem, I tried to login using xcode 15.2 to Azure Microsoft EntraID using different type of access, from swfitui and from the old storyboard, always getting some problem. did you finally made it? Please share how you did it, I coudn't find any good example.

Reasons:
  • Blacklisted phrase (1): I'm having the same problem
  • RegEx Blacklisted phrase (2.5): Please share how you
  • RegEx Blacklisted phrase (3): did you finally
  • Low length (0.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):
  • Low reputation (1):
Posted by: user3294275

79603658

Date: 2025-05-02 15:30:49
Score: 4
Natty:
Report link

Found the problem the bot wasn't added as bot, you should add Guild Install scope: bot

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

79603657

Date: 2025-05-02 15:30:49
Score: 0.5
Natty:
Report link

That really sucks—sorry this happened. A few things you can try:

  1. Appeal again—sometimes it randomly works on the 5th or 10th try. Use this form.

  2. Contact Meta via Facebook Ads Support—even if you never ran ads. Go to Facebook Business Help, start a chat, and politely explain.

  3. Email these addresses (no promises, but worth a shot):

  4. Post publicly—tweet @Instagram or @Meta with details. Sometimes public pressure helps.

  5. Check if it was a mistake—like a false copyright claim or mass-reporting.

If all else fails, sadly, you might have to start fresh. Backup your content next time (Google Drive, etc.). Hope it works out!

Reasons:
  • Blacklisted phrase (0.5): Contact Me
  • Whitelisted phrase (-1): Hope it works
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Instagram
  • User mentioned (0): @Meta
  • Low reputation (1):
Posted by: Ankit Sharma

79603650

Date: 2025-05-02 15:26:48
Score: 2
Natty:
Report link

For anyone who might have similar problem

npm run --prefix nova dev && php artisan view:clear && php artisan nova:publish  

This helped me.

Command runs npm run dev within nova folder and view:clear & nova:publish in the laravel project.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): have similar problem
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: tolga

79603644

Date: 2025-05-02 15:21:47
Score: 0.5
Natty:
Report link

I had a similar problem but putting an extra text for count dow like this

HStack{
    Text(timerInterval: Date()...Date().addingTimeInterval(120))
    Text("min")
    Spacer()
}

The result was
| 0:15 ------------------------- min |

But if you use

Text(timerInterval: startTime...endDate, showsHours: false) + Text(" min")

You obtains this

| 0:15 min ------------------------- |

full example:

HStack{
    Text(timerInterval: Date()...Date().addingTimeInterval(120)) + Text("min")
    Spacer()
}

The reason is that the system don't recognize "min" like part of text of time, and time have an dynamic width so you put it until the final of HStack.

Also you can make a var / func to group both text and then give format like only one.

------

I hope that this can help some one.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Filler text (0.5): -------------------------
  • Filler text (0): -------------------------
  • Low reputation (1):
Posted by: Jyferson Colina

79603619

Date: 2025-05-02 15:07:42
Score: 7.5 🚩
Natty: 4.5
Report link

I am having the same issue with Spring Boot 3.4.5. What did you do to fix it?

Reasons:
  • RegEx Blacklisted phrase (1.5): fix it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Barbaros Alp

79603601

Date: 2025-05-02 14:55:39
Score: 0.5
Natty:
Report link

Instead of using expo-dev client, I continued to use expo go, and I downgraded firebase by uninstalling and reinstalling:

"firebase": "^9.22.0"

I then deleted node_modules, package-lock json, and reinstalled npm.

After that, I simply added the following line in my metro.config.js file:

const defaultConfig = getDefaultConfig(__dirname);

defaultConfig.resolver.sourceExts.push('cjs');

// This is the new line you should add in, after the previous lines
defaultConfig.resolver.unstable_enablePackageExports = false;

After that, I didn't seem to get the error "Component auth has not been registered yet". You may still be able to use a newer version of firebase, but for safety, I downgraded it to 9.22.0, but you can definitely try a newer version, and see if it works.

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

79603591

Date: 2025-05-02 14:48:37
Score: 1
Natty:
Report link

For me in VS2022, while I was loading SQL Server Database project it was showing "Incompatible" project and was providing below error:

Error

Issue: It was because I have installed both "SQL Server Data Tools" and "SQL Server Data Tools - SDK Style", you need to install any one of them and it will resolved error.

I uninstalled "SQL Server Data Tools - SDK Style" and it resolved error and project loaded successfully.

Solution

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

79603582

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

I finally figured it out for anyone wondering it was related to this question Tomcat Service gets installed with "Local Service" account

Long story short sometime after Tomcat 9.0.30 there was a change to Commons Daemon

Commons Daemon 1.2.0 onwards will default to running the service as the LocalService user rather than LocalSystem. That will break a default Tomcat install via the installer since LocalService won't have the necessary rights to the work dir for JSPs to work (and there may be a bunch of other issues too).

I was able to adjust my script to update the service before starting and everything is working again.

PowerShell

cmd.exe /c "tomcat9 //US//Tomcat9 --ServiceUser=LocalSystem"
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Josh Morris

79603581

Date: 2025-05-02 14:41:35
Score: 1
Natty:
Report link

Try using

udp_port:add_for_decode_as(xft_protocol)

Ref: 11.3.2.13. dissectortable:add_for_decode_as(proto)

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

79603577

Date: 2025-05-02 14:36:34
Score: 0.5
Natty:
Report link

I've had the same issue when upgrading the java version in my app module, but forgot to update the kotlin jvmToolchain version. Don't be me. Make sure to check, that all specified java versions match.

android {
    kotlin {
        jvmToolchain(JAVA_VERSION as a number)
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: mmi

79603576

Date: 2025-05-02 14:36:34
Score: 2.5
Natty:
Report link

if nothing works, maybe try --user-data-dir

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

79603564

Date: 2025-05-02 14:30:32
Score: 0.5
Natty:
Report link

this work for me with pandas
settings.py

APP_BBDD = {
    "LOCAL": {
        "DNS": "localhost:1521/XE", <- LOOK THIS!!
        "USER": "USERNAME",
        "PASS": "holaqase",
    }
}   

And

import pandas as pd
import oracledb
import settings


def check_bbdd(environment = "LOCAL"):
    """
    check bbdd
    """

    df = _get_df("SELECT * FROM TABLE_NAME",environmet)
    print(df.head())
    return df

def _get_df(query, environmet = "LOCAL"):
    with oracledb.connect(
        user=settings.APP_BBDD[environment]["USER"],
        password=settings.APP_BBDD[environment]["PASS"],
        dsn=settings.APP_BBDD[environment]["DNS"],
    ) as conn:
        return pd.read_sql(query, conn)

And one test:

enter image description here

😘

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

79603563

Date: 2025-05-02 14:29:32
Score: 0.5
Natty:
Report link

Same here. Apparently Grok and ChatGPT suggestions are to stop using Expo Go entirely and use expo-dev-client - which is far more cumbersome and heavy to do.

package.json:

 "dependencies": {
    "@expo/vector-icons": "^14.0.2",
    "@react-native-async-storage/async-storage": "2.1.2",
    "@react-native-community/datetimepicker": "8.3.0",
    "@react-native-community/netinfo": "11.4.1",
    "@react-native-community/slider": "4.5.6",
    "@react-native-picker/picker": "2.11.0",
    "@react-navigation/bottom-tabs": "^7.3.10",
    "@react-navigation/native": "^7.1.6",
    "buffer": "^6.0.3",
    "date-fns": "^4.1.0",
    "dotenv": "^16.5.0",
    "expo": "~53.0.5",
    "expo-constants": "~17.1.5",
    "expo-device": "~7.1.4",
    "expo-haptics": "~14.1.4",
    "expo-linear-gradient": "~14.1.4",
    "expo-notifications": "~0.31.1",
    "expo-status-bar": "~2.2.3",
    "firebase": "^11.6.1",
    "react": "19.0.0",
    "react-hook-form": "^7.54.2",
    "react-native": "0.79.2",
    "react-native-calendars": "^1.1310.0",
    "react-native-gesture-handler": "~2.24.0",
    "react-native-safe-area-context": "5.4.0",
    "react-native-screens": "~4.10.0",
    "unique-names-generator": "^4.7.1"
  },
  "devDependencies": {
    "@babel/core": "^7.25.2",
    "@types/react": "~19.0.10",
    "typescript": "~5.8.3"
  },

firebaseConfig.ts:

import { initializeApp } from 'firebase/app';
import { getFirestore } from 'firebase/firestore';
import { getStorage } from 'firebase/storage';
import { getAnalytics } from "firebase/analytics";
import Constants from 'expo-constants';
import { getAuth, initializeAuth, getReactNativePersistence } from 'firebase/auth'; 
import AsyncStorage from '@react-native-async-storage/async-storage';

const firebaseConfig = {
  apiKey: Constants.expoConfig.extra.firebaseApiKey,
  authDomain: Constants.expoConfig.extra.firebaseAuthDomain,
  projectId: Constants.expoConfig.extra.firebaseProjectId,
  storageBucket: Constants.expoConfig.extra.firebaseStorageBucket,
  messagingSenderId: Constants.expoConfig.extra.firebaseMessagingSenderId,
  appId: Constants.expoConfig.extra.firebaseAppId,
};

// Initialize Firebase
const app = initializeApp(firebaseConfig);
const analytics = getAnalytics(app);

export const firestore = getFirestore(app);
export const storage = getStorage(app);

// Initialize Auth with persistence
export const auth = initializeAuth(app, {
  persistence: getReactNativePersistence(AsyncStorage),
});

persistence has no bearing in it, I have tried everything.

Reasons:
  • Blacklisted phrase (1): ve tried everything
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Patrik

79603556

Date: 2025-05-02 14:25:30
Score: 1
Natty:
Report link

Yeah, this actually comes up a lot when training a tokeniser from scratch. Just because a word shows up in your training data doesn’t mean it will end up in the vocab. It depends on how the tokeniser is building things.

Even if “awesome” appears a bunch of times, it might not make it into the vocab as a full word. WordPiece tokenisers don’t just add whole words automatically. They try to balance coverage and compression, so sometimes they keep subword pieces instead.

If you want common words like that to stay intact, here are a few things you can try:

Another thing to be aware of is that when you load the tokeniser using BertTokenizer.from_pretrained(), it expects more than just a vocab file. It usually looks for tokenizer_config.json, special_tokens_map.json, and maybe a few others. If those aren't there, sometimes things load strangely. You could try using PreTrainedTokenizerFast instead, especially if you trained the tokeniser with the tokenizers library directly.

You can also just check vocab.txt and search for “awesome”. If it’s not in there as a full token, that would explain the split you are seeing.

Nothing looks broken in your code. This is just standard behaviour for how WordPiece handles vocab limits and slightly uncommon words. I’ve usually had better results with vocab sizes in the 8 to 16k range when I want to avoid unnecessary token splits.

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

79603551

Date: 2025-05-02 14:22:29
Score: 4.5
Natty:
Report link

there is an open expo issue related expo router. you can follow this link https://github.com/expo/expo/issues/36375

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

79603539

Date: 2025-05-02 14:16:27
Score: 1
Natty:
Report link

For real-time synchronization of products and inventory between two Odoo instances:

Option 1: Cron Jobs (Easiest)

Syncs data periodically (e.g., every few minutes).

Pros: Easy to implement, flexible, less complex.

Cons: Not real-time, potential for conflicts if updates happen simultaneously.

Option 2: Database Replication (Complex)

Keeps data synchronized in real-time at the database level.

Pros: Real-time updates, ensures consistency.

Cons: Complex to set up and manage, requires advanced knowledge, potential for replication issues.

Recommendation: If real-time updates are crucial, go for Database Replication. If a small delay is acceptable, Cron Jobs can be a simpler solution.

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

79603538

Date: 2025-05-02 14:16:27
Score: 1.5
Natty:
Report link

Revisiting this again.

Actually, my previously accepted answer was not what it ended up being.

When using the MCP23017, I noticed that the GPIOA / GPIOB registry is very undesireable to poll when OUTPUTS are changed; but rather it is very consistent on INPUT changes.

Instead of polling GPIOA/GPIOB for output status, I instead wrote to OLATA / OLATB which forces the chip to be in that state. I am not saying it will be 100% right, but it has lead me to far greater success. I hope this backtrack will help you in the future if needed.

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

79603537

Date: 2025-05-02 14:16:27
Score: 1
Natty:
Report link

Sadly, this is considered an cheat and code-injection inside Roblox witch breaks Roblox ToS. If you could print to the console, that would mean that you could also change your players walk-speed etc because everything you are doing is from the client-side.

This means if you achieved to print "hello", then you could also do client things like moving your character, flying, jumping really high etc., but you can't affect other players. If you tried to change the color of a part for example, only you would see it, not others.

Anyways everything that you are trying to do is an Exploit or cheat because it interacts with the Roblox Client in a malicious way, injecting and executing code. Also SynapseX is a paid cheat for Roblox that can perform more advanced things, still not Server-Side.

Only way you can interact with the Client without breaking ToS is changing the FPS cap, or adding shaders to the game, thats all.

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

79603536

Date: 2025-05-02 14:16:27
Score: 1
Natty:
Report link

Just as an extra info, when you have colon after the name of the server, this means the port you are connecting to on that server. It's supposed to be a number between 0 and 65535. This could also be why you couldn't access the routes.

From Gemini: "There are a number of common networking ports that are used frequently. Ports 0 through 1023 are defined as well-known ports. Registered ports are from 1024 to 49151. The remainder of the ports from 49152 to 65535 can be used dynamically by applications."

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Pablo Santiago Sánchez

79603534

Date: 2025-05-02 14:15:27
Score: 1.5
Natty:
Report link

This is not just applicable to qt configure but to CMake when it does

try_compile-v1

Simple add the flag

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

79603521

Date: 2025-05-02 14:05:24
Score: 0.5
Natty:
Report link

You don't need the UUID

{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}

because the constants are defined in the library.

from win32comext.shell import shell

documents = shell.SHGetKnownFolderPath(shell.FOLDERID_Documents)
downloads = shell.SHGetKnownFolderPath(shell.FOLDERID_Downloads)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: DjAlan

79603517

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

Oh I forgot expr option, nevermind


vim.keymap.set(
  { 'n', 'x' },
  '<Tab>',
  function() return vim.fn.mode() == 'V' and '$%' or '%' end,
  { noremap = true, expr = true }
)

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

79603509

Date: 2025-05-02 13:53:20
Score: 6.5 🚩
Natty:
Report link

Just found a solution, thanks to @Xebozone

Using Microsoft Identity I want to specify a Return Url when I call Sign In from my Blazor App

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (1): I want
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: VSuser

79603502

Date: 2025-05-02 13:51:19
Score: 1.5
Natty:
Report link

Since you've posted your question AWS has launched Same-Region Replication (SRR), in 2019. This would allow you to replicate objects and changes in metadata across two buckets in the same region.

S3 Batch Replication can be used to replicate objects that were added prior to Same-Region Replication being configured.

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

79603498

Date: 2025-05-02 13:48:18
Score: 1.5
Natty:
Report link

After many trials with ChatGPT it resolved it, here is it:

// Instead of this:        
request.ClientCertificates.Add(new X509Certificate2(CertPath, CertPwd));

// Use this:        
request.ClientCertificates.Add(new X509Certificate2(CertPath, CertPwd, X509KeyStorageFlags.MachineKeySet | X509KeyStorageFlags.PersistKeySet));

And here GPT answer:
enter image description here

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

79603485

Date: 2025-05-02 13:38:16
Score: 1
Natty:
Report link

It was an implementation detail for python 3.6 and lower, for python 3.7 it became a language feature, see this thread in the python mailing list https://mail.python.org/pipermail/python-dev/2017-December/151283.html

Make it so. "Dict keeps insertion order" is the ruling. Thanks!
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: IjonTichy

79603482

Date: 2025-05-02 13:35:15
Score: 2
Natty:
Report link
Maybe


^([^\:]+)?\:?([^\:]+)*\:?([^\:]+)*$
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (0.5):
Posted by: v0rl0n

79603477

Date: 2025-05-02 13:31:14
Score: 0.5
Natty:
Report link

I created a Sample Blazor Server App with Azure Ad B2C by following this Documentation.

I successfully logged in and logged out without any issues.

Below is My Complete code.

Program.cs:

using System.Reflection;
using Microsoft.AspNetCore.Authentication.OpenIdConnect;
using Microsoft.Identity.Web;
using Microsoft.Identity.Web.UI;
using BlazorApp1.Components;
using System.Security.Claims;
namespace BlazorApp1;
public class Program
{
    public static void Main(string[] args)
    {
        var builder = WebApplication.CreateBuilder(args);
        var env = builder.Environment;
        builder.Configuration
            .AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
            .AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true)
            .AddEnvironmentVariables()
            .AddUserSecrets(Assembly.GetExecutingAssembly(), optional: true);
        builder.Services.AddAuthentication(OpenIdConnectDefaults.AuthenticationScheme)
            .AddMicrosoftIdentityWebApp(builder.Configuration.GetSection("AzureAdB2C"));
        builder.Services.Configure<OpenIdConnectOptions>(OpenIdConnectDefaults.AuthenticationScheme, options =>
        {
            options.Events = new OpenIdConnectEvents
            {
                OnSignedOutCallbackRedirect = ctxt =>
                {
                    ctxt.Response.Redirect(ctxt.Options.SignedOutRedirectUri);
                    ctxt.HandleResponse();
                    return Task.CompletedTask;
                },
                OnTicketReceived = ctxt =>
                {
                    var claims = ctxt.Principal?.Claims.ToList();
                    return Task.CompletedTask;
                }
            };
        });
        builder.Services.AddControllersWithViews().AddMicrosoftIdentityUI();
        builder.Services.AddRazorComponents()
            .AddInteractiveServerComponents()
            .AddMicrosoftIdentityConsentHandler();
        builder.Services.AddCascadingAuthenticationState();
        builder.Services.AddHttpContextAccessor();
        var app = builder.Build();
        if (!app.Environment.IsDevelopment())
        {
            app.UseExceptionHandler("/Error");
            app.UseHsts();
        }
        app.UseHttpsRedirection();
        app.UseStaticFiles();
        app.UseRouting();
        app.UseAuthentication();
        app.UseAuthorization();
        app.MapControllers();
        app.UseAntiforgery();
        app.MapRazorComponents<App>()
            .AddInteractiveServerRenderMode();
        app.Run();
    }
}

MainLayout.razor:

@inherits LayoutComponentBase
<div class="page">
    <div class="sidebar">
        <NavMenu />
    </div>
    <main>
        <div class="top-row px-4">
            <AuthorizeView>
                <Authorized>
                    Hello @context.User.Identity?.Name!
                    <a href="MicrosoftIdentity/Account/SignOut">Log out</a>
                </Authorized>
                <NotAuthorized>
                    <a href="/MicrosoftIdentity/Account/SignIn">Sign in with your social account</a>
                </NotAuthorized>
            </AuthorizeView>
        </div>
        <article class="content px-4">
            @Body
        </article>
    </main>
</div>
<div id="blazor-error-ui">
    An unhandled error has occurred.
    <a href="" class="reload">Reload</a>
    <a class="dismiss"></a>
</div>

appsettings.json:

 "AzureAdB2C": {
   "Instance": "https://<DomainName>.b2clogin.com/tfp/",
   "ClientId": "<clientid>",
   "CallbackPath": "/signin-oidc",
   "Domain": "<DomainName>.onmicrosoft.com",
   "SignUpSignInPolicyId": "<PolicyName>",
   "ResetPasswordPolicyId": "",
   "EditProfilePolicyId": ""
 }

Make Sure to Add Redirect URL in the App registration as shown below:

enter image description here

Output:

enter image description hereenter image description here

Reasons:
  • Blacklisted phrase (1): this Document
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
Posted by: Aslesha Kantamsetti

79603473

Date: 2025-05-02 13:29:13
Score: 1.5
Natty:
Report link

Not sure if this will help anyone, but it looks like the token changes at midnight and noon every day. I found that I had to regenerate the token at noon in order to get any of my code working in the afternoon. (This may not be an issue with the code you all are using since you generate the token each time you run your hits against GHIN, but wanted to throw it out there for anyone that may be storing the token and using it later, which is what my code does).

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Howie Krauth

79603464

Date: 2025-05-02 13:24:12
Score: 1
Natty:
Report link

Can also be done using useState in react. On clicking the button, the state changes, and depending on the state we show the textarea.

const [clicked, setClicked] = useState(false);
<Textarea
    placeholder="Add Your Note"
    className={`${clicked ? "visible": "collapse"}`}
  />
  <Button
    onClick={(e) => {
      setClicked(!clicked);
    }}
  >
    Add Note
  </Button>
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): Can also
  • Low reputation (1):
Posted by: Choudhary Himanshu

79603460

Date: 2025-05-02 13:22:11
Score: 0.5
Natty:
Report link

Try this:

^(.+?)(?::(\d+))?(?::(\d*))?$

Reasons:
  • Whitelisted phrase (-2): Try this:
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (0.5):
Posted by: Omprakash S

79603458

Date: 2025-05-02 13:22:11
Score: 2.5
Natty:
Report link

I had this problem this week.

And the answer was just set reverse_top_level as true.

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

79603445

Date: 2025-05-02 13:13:08
Score: 2
Natty:
Report link

This extension Debugger for Chrome (https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome) has been deprecated as Visual Studio Code now has a bundled JavaScript Debugger (js-debug) that covers the same functionality, and more (debugs Node.js, Chrome, Edge, WebView2, VS Code extensions, Blazor, React Native) !

To use with node.js read these: https://code.visualstudio.com/docs/nodejs/nodejs-debugging.

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

79603435

Date: 2025-05-02 13:04:05
Score: 4
Natty:
Report link

Found'em. They can be found at:

They're at https://learn.microsoft.com/en-us/dotnet/api/microsoft.teamfoundation.workitemtracking.webapi.models.workitemupdate?view=azure-devops-dotnet

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

79603432

Date: 2025-05-02 13:02:05
Score: 2.5
Natty:
Report link

Face the same issue today and this is my way to solve.

Root cause is the same: @MockitoSpyBean requires that you have a bean present that Mockito would be able to spy on. Previously, with @SpyBean bean was created if none was present.

I tested @ContextConfigure but it seems break the default auto configure which cause some of the filters/handlers are not loaded.

In this way, I use @Import at class level, and @MockitoSpyBean work as expected after.

@WebMvcTest(MyController.class)
@AutoConfigureMockMvc
@Import(MyBeanClass.class) // add this 
class MyControllerTest {

    @Autowired
    MockMvc mockMvc;

    @MockitoSpyBean
    MyBeanClass myBean;

    @Test
    void myTest() {
        
        mockMvc.perform(get('xxx'));
        // use Spy here. 
        verify(myBean, times(1)).xxx();
        
    }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): Face the same issue
  • Low reputation (1):
Posted by: ChangHai Jiang

79603431

Date: 2025-05-02 13:00:04
Score: 4.5
Natty: 6
Report link

I have a question: if you disable MSAL, what happens when a logged-in user signs a form with their account? I'm asking because I am also creating end-to-end tests for an Angular application.

Reasons:
  • Blacklisted phrase (1.5): I have a question
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: begerowiec

79603422

Date: 2025-05-02 12:58:03
Score: 1
Natty:
Report link

Yours is getting converted to string because of those braces @{...} around your function in code view. Try removing the action and redeclaring the variable it should work. still, if it does not, explicitly use 'createArray(range(0,10))' function to convert it to an array.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Laviza Falak Naz

79603417

Date: 2025-05-02 12:56:02
Score: 0.5
Natty:
Report link

RandomizedSearchCV can give worse results than manual tuning due to a few common reasons:

  1. Too few iterationsn_iter=10 may not explore enough parameter combinations.

  2. Poor parameter grid – Your grid might miss optimal values or be too coarse.

  3. Inconsistent random seeds – Different runs can yield different results if random_state isn’t set.

  4. Improper CV splits – Use StratifiedKFold for balanced class sampling.

  5. Wrong scoring metric – Make sure scoring aligns with your real objective (e.g., accuracy, f1).

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): can give
  • Low reputation (1):
Posted by: Mithun Debnath

79603407

Date: 2025-05-02 12:50:01
Score: 1.5
Natty:
Report link

try to add the property <property name="net.sf.jasperreports.export.xls.auto.fit.column" value="true"/> in the reportElement section and in the paragraph section add <paragraph lineSpacing="1_1_2"/>, don't forget add in the textField textAdjust = 'StretchHeight'

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Павел Дёмин

79603391

Date: 2025-05-02 12:39:57
Score: 0.5
Natty:
Report link

If you're here in 2025. Just use Angular 19. It'll reload in-place. Without a full page refresh. You're welcome

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Augie Gardner

79603383

Date: 2025-05-02 12:35:56
Score: 1
Natty:
Report link

On the C# side, make sure the RestClient sends the correct headers:
request.AddHeader("Content-Type", "application/x-www-form-urlencoded; charset=utf-8");

On the PHP side, at the top of your script (before output), force UTF-8 interpretation:

header('Content-Type: text/html; charset=utf-8');

mb_internal_encoding('UTF-8');

Also, ensure your PHP script correctly reads the POST parameters:
$content = json_decode($_POST['content'], true);

Double-check your MySQL connection:
$this->db->exec("SET NAMES utf8mb4");

$this->db->exec("SET CHARACTER SET utf8mb4");

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

79603372

Date: 2025-05-02 12:29:55
Score: 5
Natty: 6.5
Report link

I made my BuildConfig in modules enabled using this article, the article also has a guide on how to improve build speed
https://medium.com/androiddevelopers/5-ways-to-prepare-your-app-build-for-android-studio-flamingo-release-da34616bb946

Reasons:
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: John Lester

79603371

Date: 2025-05-02 12:29:54
Score: 1.5
Natty:
Report link

The issue was indeed related to the apache-airflow-providers-fab package, as suggested by @bcincy's comment.

Solution

x-airflow-common:
  &airflow-common
  # ... other common settings ...
  environment:
    &airflow-common-env
    # ... existing environment variables (including AIRFLOW__CORE__BASE_URL) ...

    # Modified this line to add the FAB provider package:
    _PIP_ADDITIONAL_REQUIREMENTS: ${_PIP_ADDITIONAL_REQUIREMENTS:-} apache-airflow-providers-fab==2.0.2

    # ... rest of environment variables ...
docker compose down
docker compose up -d
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @bcincy's
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: foxhq

79603367

Date: 2025-05-02 12:24:53
Score: 2.5
Natty:
Report link

I think this question needs more context, but one thing you could try is making use of Rails Runner.

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

79603366

Date: 2025-05-02 12:23:53
Score: 1
Natty:
Report link

+91 87557 77796, +91 95686 89357, +91 95540 13165, +91 94571 74884, +91 80120 38786, +91 98378 96100, +91 94123 30686, +91 97190 45294, +91 97197 72513, +91 99177 86392, +91 98342 40677, +91 98973 24185, +91 94571 90772, +91 63986 25524, +91 98377 38585, +91 99172 41653, +91 99271 87883, +91 96907 62144, +91 96754 92261, +91 94123 09103, +91 97585 35997, +91 86250 94685, +91 95998 99864, +91 85528 65736, +91 78278 15994, +91 96392 72140, +91 79061 31834, +91 96905 85136, +91 86507 16839, +91 63628 09817, +91 63950 96838, +91 63951 15270, +91 63972 01837, +91 63972 68653, +91 63977 51658, +91 63981 02240, +91 63988 63109, +91 70117 75544, +91 70172 72090, +91 70176 17767, +91 70554 85235, +91 70555 89357, +91 70557 36024, +91 721 728 6377, +91 721 733 4195, +91 724 803 0008, +91 72519 20111, +91 73009 34001, +91 73023 97196, +91 731 059 0216, +91 731 099 7665, +91 734 900 0129, +91 73510 31647, +91 73515 06076, +91 73519 36786, +91 7417 293 795, +91 7452 904 045, +91 7455 908 425, +91 75000 00422, +91 75000 18486, +91 75050 27092, +91 75050 33461, +91 75052 84627, +91 75053 72659, +91 75799 48911, +91 76683 21635, +91 78179 68756, +91 78300 98393, +91 78305 22840, +91 78389 47410, +91 788 800 3968, +91 78950 14790, +91 78955 26916, +91 79061 02749, +91 79066 81923, +91 79836 97306, +91 80060 09725, +91 80066 68781, +91 80570 87354, +91 8077 929 905, +91 81264 18361, +91 81266 78143, +91 81267 66859, +91 821 896 7700, +91 82728 12383, +91 82798 38720, +91 83830 88347, +91 83848 06678, +91 83950 49381, +91 84330 53724, +91 84331 84648, +91 84331 93681, +91 84455 08325, +91 84479 26124, +91 84496 74052, +91 84778 66430, +91 84779 83763, +91 85348 58937, +91 85350 33103, +91 85957 71615, +91 86288 68784, +91 863 035 3191, +91 863 085 6889, +91 863 094 4758, +91 87553 11496, +91 87553 93649, +91 87554 43950, +91 88648 22048, +91 88648 33412, +91 88829 48018, +91 89097 85103, +91 89230 63516, +91 89582 23220, +91 89582 32458, +91 89583 70086, +91 89587 82994, +91 89791 02297, +91 90124 93631, +91 90125 73882, +91 90126 21047, +91 90127 72332, +91 90258 58570, +91 90273 26250, +91 90273 89289, +91 90452 55612, +91 90455 83369, +91 90458 65785, +91 90580 53643, +91 90588 97682, +91 90841 47786, +91 91055 46813, +91 91197 63429, +91 91491 12634, +91 93115 89765, +91 93898 71844, +91 94100 11589, +91 94100 12636, +91 94110 71394, +91 94116 11529, +91 94116 16273, +91 94116 73896, +91 94118 13872, +91 94119 95499, +91 94121 44490, +91 94124 29791, +91 94126 36208, +91 94518 18125, +91 94573 14095, +91 94588 18948, +91 95367 00458, +91 95482 11312, +91 95570 15786, +91 95571 20143, +91 95574 72557, +91 95684 90993, +91 95685 61428, +91 95688 27485, +91 95689 30764, +91 96201 49333, +91 96274 47200, +91 96276 03899, +91 96344 30596, +91 96346 12651, +91 96347 47123, +91 96392 78310, +91 96393 95536, +91 96394 71745, +91 96394 99786, +91 96395 59208, +91 96399 15342, +91 96545 11910, +91 96734 35466, +91 96753 87915, +91 96903 44962, +91 96906 08460, +91 96907 01140, +91 96909 91996, +91 97196 75927, +91 97197 78670, +91 97200 77515, +91 97200 92444, +91 97209 90529, +91 97562 55078, +91 97565 02382, +91 97567 07737, +91 97567 63615, +91 97580 97371, +91 97584 36199, +91 97588 29064, +91 97591 58029, +91 97592 57998, +91 97594 32444, +91 97597 35322, +91 97598 82920, +91 97603 00706, +91 97603 44301, +91 97604 61431, +91 97606 64133, +91 97610 02603, +91 97615 56908, +91 97617 86440, +91 97618 01195, +91 98088 89517, +91 98219 24622, +91 98224 18477, +91 98370 54097, +91 98370 78504, +91 98371 09891, +91 98371 66760, +91 98372 47692, +91 98374 63815, +91 98376 58612, +91 98377 27987, +91 98378 19119, +91 98378 56293, +91 98714 86733, +91 98732 54422, +91 98755 48400, +91 98970 64813, +91 98979 11434, +91 98979 45407, +91 99112 14984, +91 99113 72284, +91 99115 79608, +91 99172 35073, +91 99173 24185, +91 99176 45305, +91 99179 43196, +91 99271 15236, +91 99272 73812, +91 99276 13099, +91 99278 05631, +91 99278 55786, +91 99279 69535, +91 99531 70863, +91 99903 65206, +91 99973 62696, +91 99975 99023, +91 99977 58067, +91 99978 69442

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

79603358

Date: 2025-05-02 12:17:51
Score: 1
Natty:
Report link

I had the same error when my nuget packages were set to different versions, Microsoft.SemanticKernel.Connectors.AzureOpenAI was 1.47.0 and other was 1.48.0. Updating to the same, 1.48.0 fixed the issue. Make sufre, all your Nuget packages related SemanticKernel are on the same version.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Bartosz Węgielewski

79603353

Date: 2025-05-02 12:13:50
Score: 1
Natty:
Report link

Thanks @Thom, @Siggemannen for your insights.

I tried in my environment by saving the .csv file in UTF-8 format and import the data into Azure SQL DB and it works well by saving the data in the same format into my Azure SQL Database successfully as shown in the below output.

I tried to save the below .csv data with UTF-8 format into Azure SQL DB.

Id,Description
1,"Price is £100"

Output:

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • User mentioned (1): @Thom
  • User mentioned (0): @Siggemannen
Posted by: Balaji

79603344

Date: 2025-05-02 12:08:49
Score: 1.5
Natty:
Report link

try this pnpm dlx tailwindcss@3 init,it should be ok!

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 胖子子

79603342

Date: 2025-05-02 12:07:48
Score: 2
Natty:
Report link

Instead of following the installation:-

Download and install fnm:

winget install Schniz.fnm

Download and install Node.js:

fnm install 22

Verify the Node.js version:

node -v # Should print "v22.15.0".

Verify npm version:

npm -v # Should print "10.9.2".

Use the Windows Installer(.msi) button

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

79603336

Date: 2025-05-02 12:03:47
Score: 1
Natty:
Report link

Just use the modulo operator.

import pandas as pd

pd.to_timedelta('-1 days 2:45:00') % pd.Timedelta(hours=24)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: salkin

79603329

Date: 2025-05-02 12:00:46
Score: 0.5
Natty:
Report link

It seems that LOCO Translate is working. I created the language files with LOCO Translate by saving them in the languages/plugins/woocommerce-en_US.po path.

Replaced "Collection from <strong>%s</strong>:"
with "X2_Collection from_X <strong>%s</strong>:" for testing,
or "<strong>%s</strong>:" for remove.

ss translate

The "Collection from" title will be replaced in "You've got a new order" and "Order has been received" email notifications.

ss email

Tested on:
WordPress 6.8.1 (Language: en_US)
WooCommerce 9.8.3
Loco Translate 2.7.2

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Atakan Au

79603326

Date: 2025-05-02 11:59:46
Score: 0.5
Natty:
Report link

You can refer to this official document to get the list of followers and following by user ID.

https://api.twitter.com/2/users/{id}/followers
https://api.twitter.com/2/users/{id}/following
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Emily.C

79603322

Date: 2025-05-02 11:57:45
Score: 1
Natty:
Report link

GEBCO API – A Simple and Fast Bathymetry Data Access Tool

🔗 GEBCO API Web App: https://gebcoapi-91108147194.us-central1.run.app/

📂 GitHub Repository: https://github.com/kumarsmahmoodi/gebcoapi

🌍 This web application allows easy access to GEBCO bathymetry data through a clean and developer-friendly RESTful API.

🔧 Key Features:

✅ Get elevation for a single point

✅ Retrieve batch elevations for multiple locations

✅ Download gridded depth data in NetCDF format for custom-defined areas

✅ Written in FastAPI with a modern frontend and ready-to-use examples (including MATLAB)

✅ Supports browser access, programmatic calls

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

79603312

Date: 2025-05-02 11:47:42
Score: 6 🚩
Natty: 4.5
Report link

can you clarify which is the authentication file that needs to be added to the domain. I'm kind of in a dead end with this issue, my apple pay wallet is not loading.

Reasons:
  • RegEx Blacklisted phrase (2.5): can you clarify
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can you
  • Low reputation (1):
Posted by: Hakeem MRK

79603311

Date: 2025-05-02 11:46:41
Score: 2
Natty:
Report link

If you want to make your code stand out on your Blogger blog, using the right formatting tools like a syntax highlighter or code block plugins can really elevate its look. Adding a neat, readable style helps your audience understand the code better. For those interested in saving big, shop sneaker deals is a great way to find exclusive offers on stylish sneakers, perfect for any trendsetter!

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

79603308

Date: 2025-05-02 11:43:40
Score: 1
Natty:
Report link
document.getElementById('img-rotation').oninput = function() {
    //  rect.set('angle', this.value); // remove this
rect.rotate(this.value) // add this,value in degree
})
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Rabie

79603306

Date: 2025-05-02 11:43:40
Score: 1
Natty:
Report link

Data are very similar to Resources in CDKTF, you probably just need to find the right import. I'm not sure I've found the exact Azure Subscriptions data you're looking for but hopefully it illustrates the approach.

https://github.com/cdktf/cdktf-provider-azurerm/blob/b6150fde46e8ca9de0d5e74b4b196b5a0cef0342/src/data-azurerm-api-management-subscription/index.ts#L135

https://github.com/cdktf/cdktf-provider-azurerm/blob/main/docs/dataAzurermSubscription.python.md

from cdktf_cdktf_provider_azurerm.data_azurerm_subscription import DataAzurermSubscription

...

DataAzurermSubscription(stack, ...)
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: cov

79603305

Date: 2025-05-02 11:41:39
Score: 2.5
Natty:
Report link

applicable for dotnet 6+ : reinstalling the same dotnet SDK again resolved my issue

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

79603292

Date: 2025-05-02 11:32:37
Score: 1
Natty:
Report link

This issue is almost always caused by either:

Fixing or isolating the environment usually resolves the problem. Let me know if you need help tracking the conflicting path.

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

79603288

Date: 2025-05-02 11:29:36
Score: 1
Natty:
Report link

Activating the virtual environment from the VS Code terminal works for me. That is rather than opening a separate terminal, open the virtual environment directory from the VS Code terminal and then activate it (source newenv/bin/activate). Then the virtual environment can be selected by clicking on the top right corner virtual environment icon in a jupyter notebook.

Reasons:
  • Whitelisted phrase (-1): works for me
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dibyendu Ghosh

79603278

Date: 2025-05-02 11:24:34
Score: 0.5
Natty:
Report link

When using the ExprTk library (which is a C++ expression parsing and evaluation library), you may encounter performance issues or even crashes when large or complex expressions are compiled. To limit large expressions from being compiled or to manage their complexity, here are a few strategies you can consider:

1. Expression Length Limit

You can impose a limit on the length of the expression string before attempting to compile it. This is a simple way to ensure that extremely large expressions are not compiled.

std::string expr = "some large expression...";

// Set a maximum length for the expression

size_t max_length = 1000; // Adjust according to your needs

if (expr.length() > max_length) {

std::cerr \<\< "Expression too large to compile" \<\< std::endl;

return;

}

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: user30428497

79603267

Date: 2025-05-02 11:14:32
Score: 1
Natty:
Report link

I see nothing incorrect. The node without any incoming token requirements (“START”) will start and await a signal.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Jim L.

79603258

Date: 2025-05-02 11:10:31
Score: 1.5
Natty:
Report link
ObjectSet(MPrefix+"FIBO_LAB",OBJPROP_FIBOLEVELS,6);
must be modify to
ObjectSet(MPrefix+"FIBO_LAB",OBJPROP_FIBOLEVELS,7);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mohammad Hossein

79603257

Date: 2025-05-02 11:09:30
Score: 2.5
Natty:
Report link

Both the words 'Desi' and 'Vogue' has associations to adult content. Google AI could be misinterpreting this to show adult content. I would suggest removing these to see if that would allow the prompt.

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

79603244

Date: 2025-05-02 10:56:27
Score: 1.5
Natty:
Report link

In my case, there were two files named the same: theme.ts and theme.d.ts, and changing theme.d.ts to something different worked. 🤷

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

79603243

Date: 2025-05-02 10:55:26
Score: 3
Natty:
Report link

Have you tried using instagram's API? That may have a solution to your problem.

https://developers.facebook.com/products/instagram/apis/

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: MunterMan

79603240

Date: 2025-05-02 10:52:25
Score: 2.5
Natty:
Report link

I have written an open protocol emulator for an Atlas Copco torque tool in python, since it's very hard to find a decent one:

https://github.com/art-x/open-protocol-emulator

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Reno De Jong

79603239

Date: 2025-05-02 10:52:25
Score: 8
Natty: 8
Report link

Hey did you find out how to do it? I need to figure this out for a project. thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (3): did you find out
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: jann

79603238

Date: 2025-05-02 10:52:24
Score: 1
Natty:
Report link
DIR_NAME="your_directory_name"

if [ -d "$DIR_NAME" ]; then
    rm -rf "$DIR_NAME"
    echo "Existing directory '$DIR_NAME' removed."
fi

mkdir -p "$DIR_NAME"
chmod 777 "$DIR_NAME"
echo "Directory '$DIR_NAME' created with 777 permissions."
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sagar Junnarkar

79603236

Date: 2025-05-02 10:52:24
Score: 2
Natty:
Report link

Put this attribute at least on 1 action method [MapToApiVersion("ur version")] and it will work.

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

79603230

Date: 2025-05-02 10:51:24
Score: 3
Natty:
Report link

To see all the python builtin modules, you can simply run

Print(help(modules))

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

79603214

Date: 2025-05-02 10:42:21
Score: 3.5
Natty:
Report link

resolved after downloads Microsoft Visual C++ Redistributable latest supported https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170#latest-microsoft-visual-c-redistributable-version

its depend on your machine.

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

79603212

Date: 2025-05-02 10:40:21
Score: 0.5
Natty:
Report link

If you have the Angular Dev web browser extension, it can also show you the version. Otherwise, you can open the inspector, go to Elements, find app-root and in it there should be an ng-version property that displays the Angular version.

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

79603210

Date: 2025-05-02 10:39:20
Score: 2.5
Natty:
Report link

Looks like there is no straight forward way to do this. I ended up using regular textboxes, saving their values manually in a dict and if on lost focus there was no valid string (int for example) I reverted back to original value.

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

79603207

Date: 2025-05-02 10:36:19
Score: 2
Natty:
Report link

The reason was my lack of knowledge how Apple handles installed apps.
They are actually folders, where the executable is somewhere within. Treating the dropped app as a folder solved the problem.

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

79603198

Date: 2025-05-02 10:26:17
Score: 4
Natty:
Report link

SSID,"RMO-NX3%8366%CloudClone",PWD,"65319969",DEV,"false#true#null"

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

79603197

Date: 2025-05-02 10:25:16
Score: 0.5
Natty:
Report link

Adding a bit to @tgdavies comment:

After mvn release:prepare, the settings are stored in a file called release.properties. The version is stored in a line having the form project.rel.<groupId>:<artifactId>=<version>. Assuming group and artifact ids should be ignored. Using grep the line can be extracted using

grep -E '^project.rel\..*=' release.properties

And cut or awk can be used to extract the version. Combined it gives:

grep -E '^project.rel\..*=' release.properties | cut -d'=' -f2
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @tgdavies
Posted by: kap

79603180

Date: 2025-05-02 10:09:13
Score: 0.5
Natty:
Report link
  1. This prints the SQL Query in Laravel without a dynamic parameter passed to it.

    DB::table('users')->toSql(): 
    

2. This prints the SQL Query in Laravel with the dynamic parameter passed to it.

DB::table('users')->toRawSql() 
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sandeep Kumar