79827226

Date: 2025-11-22 09:25:36
Score: 4
Natty:
Report link

I did find a solution in the end - buy another board. The first one was faulty.

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

79827219

Date: 2025-11-22 09:09:33
Score: 2.5
Natty:
Report link

You can integrate a trained model into a React Native app by exporting it in a format suitable for mobile inference, like TensorFlow Lite (.tflite) or ONNX. Then, use libraries such as tfjs-react-native for TensorFlow models or appropriate ONNX runtimes for React Native to load and run the model on the device. Make sure to optimize the model for mobile performance to keep inference fast and efficient.

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

79827215

Date: 2025-11-22 09:02:31
Score: 2.5
Natty:
Report link

sir, you are not getting my point! I am working on a project , we are a team of 10 people! i am the part of the nav-alg team and i thought to test my algorithms in VARIOUS CONDITIONS i need a simulator. the questions you asked are not relevant to what i am asking! you have been talking about the physical structure and the challenges we can face, but that's the point of using a simulator, also you are giving me the harsh and adverse conditions, i was thinking of starting with gentle ones first and iterate the algorithms.Also, we have a faculty mentor who is helping with these problems you told me, we are not naive ,we know what we are doing.the number of sails, gusts, etc etc is problems we would face but rn, it didn't matter because rn we are trying to make a functional one.i am just working on software side asking some tech question, suggest me that .

Reasons:
  • Blacklisted phrase (0.5): i need
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: KANISHK KHANDELWAL

79827211

Date: 2025-11-22 08:55:29
Score: 2
Natty:
Report link

You should do result.append(value) instead of result = value. "result.append(value)" will add the value to the end of the "result" list, where "result = value" will assign value to the result variable.

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

79827206

Date: 2025-11-22 08:41:26
Score: 3.5
Natty:
Report link

My solution was to remove the problematic module and then re-import it.

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

79827204

Date: 2025-11-22 08:38:25
Score: 5
Natty: 4.5
Report link

Try using this script written in python https://github.com/nktfh100/gool-downloader

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

79827202

Date: 2025-11-22 08:33:23
Score: 1.5
Natty:
Report link

This is a related question How do I identify x86 vs. x86_64 at compile time in gcc? and Detecting CPU architecture compile-time

In addition to compiler defined macros you can inject information during the build process via custom macros.

Reasons:
  • Blacklisted phrase (1): How do I
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-2):
Posted by: 463035818_is_not_an_ai

79827198

Date: 2025-11-22 08:18:20
Score: 0.5
Natty:
Report link

@Harun24hr I've edited my original response as requested (see above). Also, I reviewed your formula again and modified portions of it as follows:

=LAMBDA(number,
    LET(
        num, ABS(number),
        int, INT(num),
        dec, ROUND(num - int, 2) * 100,
        txt, TEXT(int, "000000000000000"),
        one, {"One","Two","Three","Four","Five","Six","Seven","Eight","Nine","Ten","Eleven","Twelve","Thirteen","Fourteen","Fifteen","Sixteen","Seventeen","Eighteen","Nineteen"},
        ten, {"Ten","Twenty","Thirty","Forty","Fifty","Sixty","Seventy","Eighty","Ninety","Hundred"},
        cc, CHOOSECOLS,
        fn, LAMBDA(me,val,abr,[tri],
            IF(
                tri,
                IF(val > 99, me(me, --LEFT(val, 1), "Hundred ") & LAMBDA(vl, IF(vl,  me(me, vl, abr), abr))(--RIGHT(val, 2)), me(me, val, abr)),
                IFERROR(IF(val < 20, cc(one, val), cc(ten, LEFT(val, 1)) & "-" & IFERROR(cc(one, RIGHT(val, 1)), "")) & " " & abr & " ", "")
            )
        ),
        SPELL, LAMBDA(v,a,[t], fn(fn,v,a,t)),
        doll, CONCAT(MAP(--MID(txt, {1,4,7,10,13,14}, {3,3,3,3,1,2}), {"Trillion","Billion","Million","Thousand","Hundred",""}, {1,1,1,1,0,0}, SPELL)),
        cent, SPELL(dec, "Cent Only."),
        TRIM(IF(AND(doll <> "", cent <> ""), doll & " Dollar And " & cent, IF(doll = "", cent, doll & " Dollar Only.")))
    )
)

The most notable change I made was to merge SPELL and SPELL3 into a single recursive function with an optional [tri] argument to toggle between the two routines. I also updated the doll variable accordingly and renamed a few other variables. Other than that, I tried to stay as true as possible to your original function. Hopefully it works as expected.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Harun24hr
  • Looks like a comment (1):
Posted by: DjC

79827165

Date: 2025-11-22 07:06:04
Score: 1.5
Natty:
Report link

I had a similar problem where I could not detect the "STMicroelectronics Virtual COM Port" USB device.

I found out that the "cdc_acm" module was not running with the following command

'lsmod | grep cdc'

So then I ran

'sudo modprobe cdc_acm'

After this, in dmesg the device was seen and assigned to 'ttyACM0'

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

79827164

Date: 2025-11-22 07:05:03
Score: 1
Natty:
Report link

Switch to your new branch by using command :
git checkout x
and then command to add build file to .gitignore to untrack them from git which are currently tracked by it.
echo "build/" >> .gitignore

git rm -r --cached build/

but add actual file path at build/ which you want to untrack from git.

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

79827158

Date: 2025-11-22 06:53:00
Score: 4.5
Natty:
Report link

I want to start working in dynamic forms, you can say that it is a way to handle column names at run time. From my pov it is used to handle flexible data

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Taimoor Ahmad

79827154

Date: 2025-11-22 06:47:59
Score: 0.5
Natty:
Report link

It's difficult to anser your question, as it's asking about two different things at the same time and you've not provided any code that shows HOW you are getting the Issues; using which Jira API endpoints, what parameter values used and which Authentication method etc.

Jira's rate limits are calculated as a 'cost', based on activity over time for a particular access method based on the authentication type, so its a quantitive measure, which has nothing to do with getting Issues in any particular hierarchy order or depth.

As long as you get all the Issues you want at a reasonable rate, over a reasonable time, you'll not hit the rate limit. Just watch the API responses for the rate limit approach warnings and then 'back off' your requests to stay within the limit.

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

79827145

Date: 2025-11-22 06:33:55
Score: 2.5
Natty:
Report link

just use below function

SELECT XMLTOJSON(XMLTYPE('<xml><firstName>John</firstName><lastName>Smith</lastName></xml>')) AS json_output FROM DUAL;

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sravan Kumar Yanamandra

79827122

Date: 2025-11-22 05:26:42
Score: 3.5
Natty:
Report link

// Source - https://stackoverflow.com/q

// Posted by user877342, modified by community. See post 'Timeline' for change history

// Retrieved 2025-11-22, License - CC BY-SA 3.0

at ...

at android.os.Handler.handleCallback(Handler.java:587)

at android.os.Handler.dispatchMessage(Handler.java:92)

at android.os.Looper.loop(Looper.java:143)

at android.app.ActivityThread.main(ActivityThread.java:4306)

at java.lang.reflect.Method.invokeNative(Native Method)

at java.lang.reflect.Method.invoke(Method.java:507)

at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)

at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)

at dalvik.system.NativeStart.main(Native Method)

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): user877342
  • Low reputation (1):
Posted by: Siokon

79827121

Date: 2025-11-22 05:25:41
Score: 2.5
Natty:
Report link

I asked in the VSCode team (I can find the link in my github issues history if anybody is interested) but basically they said "No; it's complicated and that part isn't open source and we don't accept patches"

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

79827117

Date: 2025-11-22 05:05:38
Score: 2
Natty:
Report link

I assume that you are applying Feature-based structure for your project as it is the default structure of NestJS. It is good for small project and for the starting. However, when your project grows too big, your concern becomes a real challenge. If I were you, I will think about moving to Clean Architecture and DDD.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pham Vu Duong

79827115

Date: 2025-11-22 05:01:37
Score: 1
Natty:
Report link

Why didn't you post this as a normal question? It's a simple answerable question, and not really open for discussion like this type of question is supposed to be fore.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Why didn't you post this as a
  • High reputation (-2):
Posted by: Some programmer dude

79827113

Date: 2025-11-22 04:58:36
Score: 2
Natty:
Report link

I looked at GPX - my idea is to do the minimum of data processing when recording the data, and to use GPX the NMEA strings would have to be decoded first. In addition each message in a stream could refer to a different object (ship) so these would not be routes or tracks, but a stream of not necessarily connected points. Also not all AIS sentences contain position data, but they all contain the MMSI of the source object. I'm not sure if there is any way to replay data like that.

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

79827108

Date: 2025-11-22 04:37:32
Score: 2.5
Natty:
Report link

🎛️🎛️🎛️💻1992 xyawhehdhdhshhshshdhqhsgegsgageggagsgqgdhahehdhsgdhshgshdhdhdhwhehwhshshshshshhwhdhshd hzhehhEhhshHss house ajzusydhshhahdhshehchshzhshahhshahahdhshwgdgshshsgshdhshshshsx

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

79827106

Date: 2025-11-22 04:31:31
Score: 3
Natty:
Report link

Have you tried GPX file format?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Stephen Quan

79827105

Date: 2025-11-22 04:29:30
Score: 3
Natty:
Report link

React supports sandbox backend. You need to classify the frequency in time. It's pure 3^6-1 on 24 hours sin(8) = 0.14

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

79827103

Date: 2025-11-22 04:23:28
Score: 1
Natty:
Report link

This is not safe according to rust aliasing rules. If mutable reference exists, then no other reference can exist. Here both mutable and immutable reference exists at same time. Although in different thread.

You can wrap every ship with arc mutex,then put arc in vector. Then clone the vector and send to thread.

Gamedev in pure rust generally uses some ecs library to manage resources due to these kind of problems.

I see that you are using unsafe keyword here. If you want to ignore rust safety and want to manually ensure safety in unsafe block, cast references to pointer and make shoot fn accept pointers. Then you can write c like code with pointers and everything that comes with it.

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

79827100

Date: 2025-11-22 04:16:27
Score: 2.5
Natty:
Report link

@Chris Maurer Yes, I do and improved few parts of the formula. I will test your formula also. Another good formula from @Djc.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Chris
  • User mentioned (0): @Djc
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Harun24hr

79827090

Date: 2025-11-22 03:39:19
Score: 3
Natty:
Report link

Also, the VSCode extension itself should be compiler-agnostic. What problems do you specifically have with it? Perhaps ask a proper question about that instead?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Some programmer dude

79827089

Date: 2025-11-22 03:39:18
Score: 5
Natty:
Report link

Are you trying to get the specific cpu model or just the cpu architecture?

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

79827079

Date: 2025-11-22 03:02:11
Score: 1
Natty:
Report link
import requests
from bs4 import BeautifulSoup

url = 'https://www.bbc.com/news'
response = requests.get(url)

soup = BeautifulSoup(response.text, 'html.parser')
headlines = soup.find('body').find_all('h3')
for x in headlines:
    print(x.text.strip())
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Masrat Khan

79827078

Date: 2025-11-22 02:49:08
Score: 1
Natty:
Report link

@Djc Nice! This is dlr,CONCAT(MAP(--MID(wd,{1,4,7,10,13,14},{3,3,3,3,1,2}),{"Trillion","Billion","Million","Thousand","Hundred",""},IF({1,1,1,1,0,0},SPELL3,SPELL),LAMBDA(v,a,fn,fn(v,a)))), definitely a improvement. Thanks for suggestions. I will tweak your formula to eliminate zero dollar and zero cent when there is no value. Or you can also do that for me.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • User mentioned (1): @Djc
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Harun24hr

79827077

Date: 2025-11-22 02:47:08
Score: 2.5
Natty:
Report link

Thank you for your respond NirajDota. here is my code to collecting the seatSections now.

private fun generateSeatsForTheater(
    theater: Theater,
    filledSeats: List<String>
): Map<String, Map<Int, List<Seat>>> {
    val seats = LinkedHashMap<String, Seat>(theater.columnCount * theater.rowCount)

    for (colIndex in 0 until theater.columnCount) {
        val rowLabel = ('A' + colIndex).toString()

        for (row in 1..theater.rowCount) {
            val seatId = "$rowLabel$row"

            val section = theater.sections.first {
                row - 1 in it.rowStart..it.rowEnd
            }

            seats[seatId] = Seat(
                id = seatId,
                row = rowLabel,
                column = row,
                sectionId = section.id,
                displayLabel = seatId,
                status = if (seatId in filledSeats) SeatStatus.UNAVAILABLE else SeatStatus.AVAILABLE
            )
        }
    }

    val seatSections = seats.values
        .groupBy { it.sectionId }
        .mapValues { (_, seatsInSection) ->
            seatsInSection
                .groupBy { it.column }
                .mapValues { (_, seatsInColumn) ->
                    seatsInColumn.sortedBy { it.row }
                }
                .toSortedMap()
        }

    return seatSections
}

I also use an items instead of item on my screen for now. I'll share my updated code below:

LazyRow(
    horizontalArrangement = Arrangement.spacedBy(16.dp),
    contentPadding = PaddingValues(horizontal = 24.dp)
) {
    items(uiState.seats.keys.toList(), key = { it }) { sectionId ->

        val columnMap = uiState.seats[sectionId]!!

        Row(horizontalArrangement = Arrangement.spacedBy(2.dp)) {

            columnMap.forEach { (_, seatsInColumn) ->
                Column(verticalArrangement = Arrangement.spacedBy(2.dp)) {
                    seatsInColumn.forEach { seat ->
                        SeatItem(
                            seat = seat,
                            status = seat.status,
                            onSeatSelected = onSelectSeat
                        )
                    }
                }
            }
        }
    }
}

After all this improvements, the laggy effect has been decreased but still have the laggy feel. How do u think about it?

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ahmad Zaqi

79827074

Date: 2025-11-22 02:39:06
Score: 2.5
Natty:
Report link

Close all tasks in system and restart your system.
Open directly to file manager then locate and delete file manually.

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

79827072

Date: 2025-11-22 02:35:05
Score: 0.5
Natty:
Report link
// Source - https://stackoverflow.com/q/71504859
// Posted by Vetonn, modified by community. See post 'Timeline' for change history
// Retrieved 2025-11-22, License - CC BY-SA 4.0

2022-03-16 23:10:29.788 17445-17445/? E/om.example.tod: Unknown bits set in runtime_flags: 0x8000
2022-03-16 23:10:30.308 17445-17445/com.example.todo E/libc: Access denied finding property "ro.vendor.df.effect.conflict"
2022-03-16 23:10:30.490 17445-17445/com.example.todo E/AndroidRuntime: FATAL EXCEPTION: main
    Process: com.example.todo, PID: 17445
    java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.todo/com.example.todo.MainActivity}: android.view.InflateException: Binary XML file line #2 in com.example.todo:layout/activity_main: Binary XML file line #2 in com.example.todo:layout/activity_main: Error inflating class <unknown>
        at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3335)
        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3484)
        at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:83)
        at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135)
        at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95)
        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2068)
        at android.os.Handler.dispatchMessage(Handler.java:107)
        at android.os.Looper.loop(Looper.java:224)
        at android.app.ActivityThread.main(ActivityThread.java:7551)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:539)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:995)
     Caused by: android.view.InflateException: Binary XML file line #2 in com.example.todo:layout/activity_main: Binary XML file line #2 in com.example.todo:layout/activity_main: Error inflating class <unknown>
     Caused by: android.view.InflateException: Binary XML file line #2 in com.example.todo:layout/activity_main: Error inflating class <unknown>
     Caused by: java.lang.reflect.InvocationTargetException
        at java.lang.reflect.Constructor.newInstance0(Native Method)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:343)
        at android.view.LayoutInflater.createView(LayoutInflater.java:858)
        at android.view.LayoutInflater.createView(LayoutInflater.java:780)
        at com.android.internal.policy.PhoneLayoutInflater.onCreateView(PhoneLayoutInflater.java:58)
        at android.view.LayoutInflater.onCreateView(LayoutInflater.java:934)
        at android.view.LayoutInflater.onCreateView(LayoutInflater.java:954)
        at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:1010)
        at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:965)
        at android.view.LayoutInflater.inflate(LayoutInflater.java:663)
        at android.view.LayoutInflater.inflate(LayoutInflater.java:538)
        at android.view.LayoutInflater.inflate(LayoutInflater.java:481)
        at androidx.appcompat.app.AppCompatDelegateImpl.setContentView(AppCompatDelegateImpl.java:706)
        at androidx.appcompat.app.AppCompatActivity.setContentView(AppCompatActivity.java:195)
        at com.example.todo.MainActivity.onCreate(MainActivity.kt:24)
        at android.app.Activity.performCreate(Activity.java:7893)
        at android.app.Activity.performCreate(Activity.java:7880)
        at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1306)
        at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3310)
        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3484)
        at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:83)
        at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135)
        at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95)
        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2068)
        at android.os.Handler.dispatchMessage(Handler.java:107)
        at android.os.Looper.loop(Looper.java:224)
        at android.app.ActivityThread.main(ActivityThread.java:7551)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:539)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:995)
     Caused by: android.content.res.Resources$NotFoundException: Drawable com.example.todo:color/material_dynamic_neutral20 with resource ID #0x7f0501a4
2022-03-16 23:10:30.491 17445-17445/com.example.todo E/AndroidRuntime: Caused by: android.content.res.Resources$NotFoundException: Resource "com.example.todo:color/material_dynamic_neutral20" (7f0501a4) is not a Drawable (color or path): TypedValue{t=0x1/d=0x7f0501a4 a=-1 r=0x7f0501a4}
        at android.content.res.ResourcesImpl.loadDrawableForCookie(ResourcesImpl.java:856)
        at android.content.res.ResourcesImpl.originalLoadDrawable(ResourcesImpl.java:696)
        at android.content.res.ResourcesImpl.loadDrawable(ResourcesImpl.java:593)
        at android.content.res.MiuiResourcesImpl.loadDrawable(MiuiResourcesImpl.java:307)
        at android.content.res.Resources.loadDrawable(Resources.java:932)
        at android.content.res.TypedArray.getDrawableForDensity(TypedArray.java:1007)
        at android.content.res.TypedArray.getDrawable(TypedArray.java:982)
        at android.view.View.<init>(View.java:5304)
        at android.view.ViewGroup.<init>(ViewGroup.java:684)
        at android.widget.LinearLayout.<init>(LinearLayout.java:254)
        at android.widget.LinearLayout.<init>(LinearLayout.java:250)
        at android.widget.LinearLayout.<init>(LinearLayout.java:246)
        at java.lang.reflect.Constructor.newInstance0(Native Method)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:343)
        at android.view.LayoutInflater.createView(LayoutInflater.java:858)
        at android.view.LayoutInflater.createView(LayoutInflater.java:780)
        at com.android.internal.policy.PhoneLayoutInflater.onCreateView(PhoneLayoutInflater.java:58)
        at android.view.LayoutInflater.onCreateView(LayoutInflater.java:934)
        at android.view.LayoutInflater.onCreateView(LayoutInflater.java:954)
        at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:1010)
        at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:965)
        at android.view.LayoutInflater.inflate(LayoutInflater.java:663)
        at android.view.LayoutInflater.inflate(LayoutInflater.java:538)
        at android.view.LayoutInflater.inflate(LayoutInflater.java:481)
        at androidx.appcompat.app.AppCompatDelegateImpl.setContentView(AppCompatDelegateImpl.java:706)
        at androidx.appcompat.app.AppCompatActivity.setContentView(AppCompatActivity.java:195)
        at com.example.todo.MainActivity.onCreate(MainActivity.kt:24)
        at android.app.Activity.performCreate(Activity.java:7893)
        at android.app.Activity.performCreate(Activity.java:7880)
        at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1306)
        at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3310)
        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3484)
        at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:83)
        at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135)
        at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95)
        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2068)
        at android.os.Handler.dispatchMessage(Handler.java:107)
        at android.os.Looper.loop(Looper.java:224)
        at android.app.ActivityThread.main(ActivityThread.java:7551)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:539)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:995)
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jocelyn Origenes

79827068

Date: 2025-11-22 02:30:04
Score: 1.5
Natty:
Report link

Tebako seems like the most promising option currently working on finding the way to package a rails app into an offline app. This article seems to show that it is very much possible using tebako and they even added in a specific host folder mounting feature to allow rails to work with its use of absolute paths.

I do think tebako is not all you need because it packages it into an exe but this is the same as just running a rails server on your computer. You still need to use a browser window to load the app and make requests so it would require another library to run the browser and this exe and then make requests to the servers url. I'm pretty sure there are apps that work like this quite often. I've seen ones where you click on the app icon and it opens up the browser to view the app. So I wonder if that is a similar example.

https://www.tebako.org/blog/2024-10-18-tebako-mount-and-ror/

Reasons:
  • Blacklisted phrase (1): This article
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: yungindigo

79827064

Date: 2025-11-22 02:15:01
Score: 1.5
Natty:
Report link

I had the same issue running Python in Visual Studio Community. In Debug > Properties, the application startup file was one of my app config files, not the application startup file, somewhow it had been changed. Following the change my application worked as expected.

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

79827055

Date: 2025-11-22 01:24:51
Score: 3
Natty:
Report link

// Source - https://stackoverflow.com/a/38972737

// Posted by fedorqui, modified by community. See post 'Timeline' for change history

// Retrieved 2025-11-22, License - CC BY-SA 3.0

awk 'flag{
if (/PAT2/)
{printf "%s", buf; flag=0; buf=""}
else
buf = buf $0 ORS
}
/PAT1/ {flag=1}' file

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

79827053

Date: 2025-11-22 01:07:47
Score: 2.5
Natty:
Report link

Another way to do it using rustfmt.toml

Create File rustfmt.toml in your project directory and add this code:

rustfmt.toml

tab_spaces = 2

For reference, you can go to https://rust-lang.github.io/rustfmt/?version=v1.8.0&search=#tab_spaces

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Durgesh Nandan Sharma -DNS-

79827050

Date: 2025-11-22 01:01:46
Score: 3.5
Natty:
Report link

Thank you so much! All the responses have been very helpful! I asked stupid ChatGPT and Claude (pro version!!) and they both gave me the wrong responses which was "I needed to use std::move"!! So grateful that I can get accurate responses here.

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

79827048

Date: 2025-11-22 00:57:45
Score: 1
Natty:
Report link

I found this issue that led me to reinstall the package using an older version of setuptools that doesn’t create the file __editable__.luma_lcd-2.11.0.finder but relies on some older mechanics. The import now works in VS Code. Still not sure what’s wrong with the newer setuptools.

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

79827045

Date: 2025-11-22 00:51:44
Score: 1.5
Natty:
Report link

try the "uv run"

Install it with pip:

# With pip.
pip install uv

or curl:

curl -LsSf https://astral.sh/uv/install.sh | sh

read more here:
https://pypi.org/project/uv/

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

79827041

Date: 2025-11-22 00:29:39
Score: 2.5
Natty:
Report link

Google showed this thread as important. I recommend to have a look at this source:

https://github.com/STMicroelectronics/stm32f4xx-hal-driver

and this overview: https://github.com/orgs/STMicroelectronics/repositories?q=stm32f4xx

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

79827040

Date: 2025-11-22 00:27:39
Score: 3.5
Natty:
Report link

My python script is not inside the venv.  If I move it there and change the path in the zsh script, I can get rid of all the other stuff?

The reason the create is there is because Python refused to work without a venv, and once I finally got it working, I didn't bother to remove that line.  I don't mind the messages when the output is correct.

But would did that diagnostic message begin appearing and the other stop when neither script had been changed?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: WGroleau

79827039

Date: 2025-11-22 00:21:38
Score: 2.5
Natty:
Report link

It depends on what you want to change the
1. background image
or
2. background color.
Use the appropriate CSS properties to achieve the result you want.

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

79827028

Date: 2025-11-21 23:59:32
Score: 1.5
Natty:
Report link

_BitInt values are fixed-with integers, so although they could be used to help with certain operations, they are not really big integers in the usual meaning of the term.

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

79827024

Date: 2025-11-21 23:46:29
Score: 3
Natty:
Report link

I had the challenge of facing a similar problem for planning downtime. But had to go forth with it anyway. My DB has relatively low workloads.

With a table of 22 columns, 300 GB of data and 25 million rows, this took about 20 minutes for me on AWS on Aurora RDS postgresql db3.t.large instance.

A similar setup I did in a DEV instance that had about 200k rows, with db3.t.medium instance, it took 8 seconds.

I also had to kill nearly all the connections to the DB temporarily to ensure the command runs without problems. Hope that provides a small benchmark.

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

79827023

Date: 2025-11-21 23:46:29
Score: 2
Natty:
Report link

"i am not sure of what the crew of the sailboat does "

Did you look at the video?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: ravenspoint

79827011

Date: 2025-11-21 23:22:24
Score: 1.5
Natty:
Report link

For browsers after 2021, this is no longer relevent

https://mathiasbynens.github.io/rel-noopener/

2021 update: Browsers now implicitly set rel=noopener for any target=_blank link, following a spec change.

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

79827009

Date: 2025-11-21 23:20:23
Score: 4.5
Natty:
Report link

Sergey ragebaiting me 10 / 10.

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

79827003

Date: 2025-11-21 23:08:21
Score: 0.5
Natty:
Report link

i'm sorry writing on mobile. poor internet connection, so gotta b quick.

usually, usually, usually: you use C structs as a bricks to your C++. So, with that in mind ;)

''' struct { uint8 data[1]; bleh; meh; }

templatet struct { static consepr size_of_array = std::array_size(S); typedef what_type_is_daya decltye(S::data); bleh( whattypeisdata *pidzata); meh. ( whattypeisdata *pIDatA); '''

again sorry for syntax, it is really hard to type on a phone.

Reasons:
  • No code block (0.5):
Posted by: jorge is not ai

79827002

Date: 2025-11-21 23:05:20
Score: 0.5
Natty:
Report link

I don't like the majority of these answers. I have a little more complete answer.

The issue is that the CA Root Certificate you are using is not in the certificate chain for your application.

Now, in python, your ca certs are determined by a package named Certifi, like previous mentioned above. If you replace the cacert.pem file in that package, you will end up enabling your specific URL but disabling others.

Append the contents of your .pem file to the end of that certifi file and you will be set. That should do it.

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

79827000

Date: 2025-11-21 22:58:18
Score: 0.5
Natty:
Report link

When a Lambda is deleted, it may not remove the corresponding Event notification / Trigger from the associated Bucket.

To see if this is the case, go to S3 > [Bucket of interest] > Properties > Event Notifications. That list should show all events / triggers associated with the Bucket. It will also show the names of associated Lambda functions (on the far right), so you can see if those are still-active, or familiar-but-deleted Lambdas.

Delete any you don't want, and try the creation again.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): When a
  • High reputation (-1):
Posted by: Sarah Messer

79826996

Date: 2025-11-21 22:52:17
Score: 0.5
Natty:
Report link

If you get

android.content.res.Resources$NotFoundException: unknown resource 2131362072

try using

android {    
    testOptions {
        unitTests {
            includeAndroidResources = true
        }
    }
}

in your build.gradle

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

79826995

Date: 2025-11-21 22:51:17
Score: 2.5
Natty:
Report link

If you can't "insert", you need to find another method to "add"; then "move" or change the "Z-order" if that's the issue.

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

79826994

Date: 2025-11-21 22:50:16
Score: 1.5
Natty:
Report link
  1. It is to prevent concurrent processes from interfering, which can lead to deadlocks.
  2. Yes, you are able to delete deadlock table, but DO NOT. It will just increase deadlocks and data integrity issues.
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: buzz8year

79826990

Date: 2025-11-21 22:42:14
Score: 1
Natty:
Report link

Use Queue :

It is especially useful in threaded programming when information must be exchanged safely between multiple threads. The Queue class in this module implements all the required locking semantics.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
Posted by: Solar.gy

79826985

Date: 2025-11-21 22:35:12
Score: 2
Natty:
Report link

If you get the error one resolution is to download the command line tools. Open a terminal and pass the following command and run it. A Dialog will open an help with the download and install.

xcodebuild -downloadComponent MetalToolchain

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

79826982

Date: 2025-11-21 22:32:11
Score: 1
Natty:
Report link

To elaborate, this CRC also takes an additional 32-bit parameter value, which I suspect is the initial value or related to it somehow. The behavior I mentioned with even-odd xor is when that parameter is non-zero.
For generating checksums it only accepts data that is sized as a multiple of 32 bytes, of which the last 8 bytes are always unused and don't affect the result.
An example of some results appearing online that I mentioned is the value 0xc5b9cd4c, which is the result when the parameter value is 0 and the input is the byte 0x01 followed by 31 null bytes. This number returns various CRC-related results in google, in one of which this value seems to be in a lookup table of CRC remainder values.

All include some more results below, all with the parameter value I mentioned at zero, and an input of 32 bytes, all unmentioned bytes are null:
All null bytes: 0
Byte 0 as 0x01: 0xc5b9cd4c
Byte 1 as 0x01: 0xf382b7f2
Byte 2 as 0x01: 0x64c29d0
Byte 3 as 0x01: 0x56af9db2
Byte 4 as 0x01: 0x17d3315d

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

79826975

Date: 2025-11-21 22:20:08
Score: 2
Natty:
Report link

This happened because I had followed the guidance at https://nuxt.com/docs/4.x/guide/concepts/typescript#type-checking and installed vue-tsc and enabled typescript type-checking at run/build time. I don't know why it wasn't an issue previously but what I needed to do was run npm install @types/node --save-dev. (I did not need to add "types": [ "node" ] to the compilerOptions section of my tsconfig.json file.)

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

79826969

Date: 2025-11-21 21:50:02
Score: 4
Natty:
Report link

you might get a better answer at https://bitcoin.stackexchange.com/

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

79826967

Date: 2025-11-21 21:47:01
Score: 5
Natty: 7
Report link

si j'ai la même erreur en react JS il n'y a pas un moyen de régler le problème en frontend puisque je n'ai pas accès au backend?

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

79826966

Date: 2025-11-21 21:43:00
Score: 2
Natty:
Report link

_quarto.yml in the r root directory ( the one with .Rproj)

add the line fully left justified

editor: source # or visual

This will affect the whole project. If you want to affect just one file out "editor: source" in the yaml fully left justified

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

79826960

Date: 2025-11-21 21:34:58
Score: 1
Natty:
Report link

The odd/even thing is exactly as expected. An even number of xor's would work only if the CRC had a zero initial value and zero final exclusive-or.

What does "Many checksum results of simple input tests (e.g. a small number of null bytes) also appear online in tables of CRC remainders." mean? Can you give an example?

Yes, for a 32-bit CRC it should be straightforward to determine the parameters with enough examples. If it really is a CRC. If you would like to provide examples here, we can see if it is.

In that case, you can start with, say, 20 examples of random 4-byte messages and their CRCs, in hex. That should be enough to determine a) if it's a CRC, b) the polynomial, and c) the ordering of the bits and bytes. If that verifies it's a CRC, then a few five-byte-message examples would be all that's needed to determine the initial value and final exclusive-or.

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you give
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: Mark Adler

79826958

Date: 2025-11-21 21:32:58
Score: 3
Natty:
Report link

That was a failure on my part - for whatever reason, the makefile dictated that all included files be passed as compiler arguments, which is what I had to do.

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

79826955

Date: 2025-11-21 21:24:55
Score: 6.5
Natty:
Report link

thanks for answering!,

firstly i didn't know that i was too ambitious , thought that this was the right thing to ask.

also, 2d works as long as i can get close to accurate data. it would at max 3 metres . the competition will in in april from ibiza to spain, so assume the winds speeds and water currents at that time.

i don't know if i need currents , maybe . i just want to start simulating my navigation algorithm and then i would add these features as i need . but at last i want to start with a good, competent simulator so that i don't have to change simulators at the middle.

realistic marine navigation scenario will be simulating water currents and winds according to the data of these from websites , so that i can have same marine conditions from the area we are competing in.

okay, i am not sure of what the crew of the sailboat does but i surely know the physics, if you want this is a code [Google](https://pastebin.com/b6t2X4Na)

i can change the directions of the sail by a motor and that's what my navigation algorithm also helps in! it will change the direction of the sail according to the winds speed and direction.drawing the sheet too tight, i haven't thought about it, i hues we can't change the tension midway.

we would have an anemometer for sensing the change in wind directions and speeds.so no problem in sensing that!

BTW thanks for your response, it helps me find my loopholes. but answering your questions , do you have the answer to my original question. which simulator should i use? 2d or 3d ? if you have resources of the simulator you mention , please add that too.

THANK YOU FOR YOUR TIME

Reasons:
  • Blacklisted phrase (0.5): THANK YOU
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): i need
  • Blacklisted phrase (1): thanks for answering
  • RegEx Blacklisted phrase (1): i want
  • RegEx Blacklisted phrase (2.5): do you have the
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: KANISHK KHANDELWAL

79826948

Date: 2025-11-21 21:14:52
Score: 1.5
Natty:
Report link

If you just want a different title and description for each page, you can make an additional page file under "files". In the Cayman package it's called "another-page.md". In the preamble to that page, you'd put:

---

layout: default

title: Title of your new page

description: Description of your new page

---

That should let you have different titles and descriptions on different pages, though the buttons will be the same on each as defined in the default layout.

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

79826945

Date: 2025-11-21 21:06:50
Score: 3
Natty:
Report link

Same issue here. I solved it by using Cogrouping like here https://cwiki.apache.org/confluence/display/KAFKA/KIP-150+-+Kafka-Streams+Cogroup

Reasons:
  • Whitelisted phrase (-2): I solved
  • RegEx Blacklisted phrase (1): Same issue
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jorge Machado

79826942

Date: 2025-11-21 21:01:49
Score: 1.5
Natty:
Report link

Installing newest snapshot of clangd solved the issue (link)

:MasonInstall clangd@snapshot_20251005
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: NeKon

79826939

Date: 2025-11-21 20:58:48
Score: 4
Natty: 4.5
Report link

Yes, there is. You should be using cogrouping described here https://cwiki.apache.org/confluence/display/KAFKA/KIP-150+-+Kafka-Streams+Cogroup

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

79826937

Date: 2025-11-21 20:56:47
Score: 2.5
Natty:
Report link

Ok, I found the solution. It is here https://cwiki.apache.org/confluence/display/KAFKA/KIP-150+-+Kafka-Streams+Cogroup

Reasons:
  • Whitelisted phrase (-2): I found the solution
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jorge Machado

79826934

Date: 2025-11-21 20:55:47
Score: 3
Natty:
Report link

It took me 2 days to figure this out. The solution is this imho https://cwiki.apache.org/confluence/display/KAFKA/KIP-150+-+Kafka-Streams+Cogroup

Reasons:
  • Whitelisted phrase (-1): solution is
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jorge Machado

79826931

Date: 2025-11-21 20:50:46
Score: 2
Natty:
Report link

You could use Pytorch or Tenserflow, thay have functions to do all what you need.

In my opinion, if your network architecture is big use Pytorh , otherwise use Tenseflow.

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

79826925

Date: 2025-11-21 20:44:45
Score: 0.5
Natty:
Report link

Moving when returning is usually just going to be a pessimisation.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Jesper Juhl

79826923

Date: 2025-11-21 20:38:43
Score: 1
Natty:
Report link

C++ is a statically typed language.

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

79826920

Date: 2025-11-21 20:28:41
Score: 3
Natty:
Report link

Adding

&authSource=admin

to the connection URI did the trick. Thx to a friend!

Reasons:
  • Blacklisted phrase (1): Thx
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Thomas

79826919

Date: 2025-11-21 20:23:39
Score: 2
Natty:
Report link

Your plan is waaaaay too ambitious!!!

Why do you think you need 3D?

How small is your boat? The smaller the boat the more significant wave interactions become - yet you do not mention waves.

Please provide an example of what you consider to be a "Realistic marine navigation scenario".

Reasons:
  • RegEx Blacklisted phrase (2.5): Please provide
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: ravenspoint

79826917

Date: 2025-11-21 20:21:39
Score: 0.5
Natty:
Report link

On recent Akeneo Version you can.

Use the rule system, there is one action called: GENERATE dynamic content where you can use twig syntax for that.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: neisantos

79826916

Date: 2025-11-21 20:21:39
Score: 3
Natty:
Report link

As I see there’s no other reason except that spring team somehow decided to support the old one instead of deprecating or rewriting it. I’ll continue with AbstractPaginatedDataltemReader.

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

79826913

Date: 2025-11-21 20:21:39
Score: 1
Natty:
Report link

It worked for me when i put additional break point before async execution code.

Reasons:
  • Whitelisted phrase (-1): It worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Saige Zhang

79826901

Date: 2025-11-21 19:49:30
Score: 5.5
Natty: 4.5
Report link

I tried this recently with sudo 1.9.17 on Fedora 43 and doesn't work anymore.

Anyone has any idea?

Reasons:
  • Blacklisted phrase (1): any idea?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Maverick

79826887

Date: 2025-11-21 19:35:27
Score: 2.5
Natty:
Report link

If you can use the same URI from a different client, the problem would appear to lie in the Ruby on Rails client side. It appears the SCRAM-SHA-1 authentication mechanism failed. Is it possible this is something as simple as wrong password, perhaps a special character that needs escaping?

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Spencer Brown

79826886

Date: 2025-11-21 19:34:26
Score: 0.5
Natty:
Report link

Just restarting and re-running the notebook worked for me after installing the package

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Gerard

79826883

Date: 2025-11-21 19:28:25
Score: 0.5
Natty:
Report link

<<< Recoverable Error >>>

External code file (oms_gw) compilation failed

Errors given in file (C:\Users\GAMER\op_admin\tmp\cc_err_6756)

----

<<< Recoverable Error >>>

External code file (oms_log_support) compilation failed

Errors given in file (C:\Users\GAMER\op_admin\tmp\cc_err_6756)

----

<<< Recoverable Error >>>

External code file (oms_micro_sim) compilation failed

Errors given in file (C:\Users\GAMER\op_admin\tmp\cc_err_6756)

----

<<< Recoverable Error >>>

External code file (oms_ot_support) compilation failed

Errors given in file (C:\Users\GAMER\op_admin\tmp\cc_err_6756)

----

<<< Recoverable Error >>>

External code file (oms_path_support) compilation failed

Errors given in file (C:\Users\GAMER\op_admin\tmp\cc_err_6756)

----

<<< Recoverable Error >>>

External code file (oms_pipeline) compilation failed

Errors given in file (C:\Users\GAMER\op_admin\tmp\cc_err_6756)

----

<<< Recoverable Error >>>

External code file (oms_pkt_analyzer) compilation failed

Errors given in file (C:\Users\GAMER\op_admin\tmp\cc_err_6756)

----

<<< Recoverable Error >>>

External code file (oms_pr) compilation failed

Errors given in file (C:\Users\GAMER\op_admin\tmp\cc_err_6756)

----

<<< Recoverable Error >>>

External code file (oms_ptree) compilation failed

Errors given in file (C:\Users\GAMER\op_admin\tmp\cc_err_6756)

----

<<< Recoverable Error >>>

External code file (oms_qm) compilation failed

Errors given in file (C:\Users\GAMER\op_admin\tmp\cc_err_6756)

----

<<< Recoverable Error >>>

External code file (oms_routing_convergence) compilation failed

Errors given in file (C:\Users\GAMER\op_admin\tmp\cc_err_6756)

----

<<< Recoverable Error >>>

External code file (oms_rr) compilation failed

Errors given in file (C:\Users\GAMER\op_admin\tmp\cc_err_6756)

----

<<< Recoverable Error >>>

External code file (oms_sim_attr_cache) compilation failed

Errors given in file (C:\Users\GAMER\op_admin\tmp\cc_err_6756)

----

<<< Recoverable Error >>>

External code file (oms_stat_support) compilation failed

Errors given in file (C:\Users\GAMER\op_admin\tmp\cc_err_6756)

----

<<< Recoverable Error >>>

External code file (oms_string_support) compilation failed

Errors given in file (C:\Users\GAMER\op_admin\tmp\cc_err_6756)

----

<<< Recoverable Error >>>

External code file (oms_sv) compilation failed

Errors given in file (C:\Users\GAMER\op_admin\tmp\cc_err_6756)

----

<<< Recoverable Error >>>

External code file (oms_tan) compilation failed

Errors given in file (C:\Users\GAMER\op_admin\tmp\cc_err_6756)

----

<<< Recoverable Error >>>

External code file (oms_vlan_support) compilation failed

Errors given in file (C:\Users\GAMER\op_admin\tmp\cc_err_6756)

----

<<< Recoverable Error >>>

External code file (umts_gtp_support) compilation failed

Errors given in file (C:\Users\GAMER\op_admin\tmp\cc_err_6756)

----

<<< Recoverable Error >>>

Object repository construction failed

External code file (D:\14.5.A\models\std\umts\umts_gtp_support.ex.c) compilation failed, see error messages in (C:\Users\GAMER\op_admin\tmp\cc_err_6756)

T (0), EV (-), MOD (NONE), PROC (sim_load_repos_rebuild)

----

<<< Program Abort >>>

Error encountered rebuilding repository -- unable to proceed

T (0), EV (-), MOD (NONE), PROC (sim_load_repos_load)

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

79826882

Date: 2025-11-21 19:27:24
Score: 2
Natty:
Report link
If still relevant: consider Switch to SeleniumVBA. Still actively supported and migration effort is minimal.
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: dornech

79826880

Date: 2025-11-21 19:25:23
Score: 1
Natty:
Report link

For anyone hitting this problem, I’ve bumped into it as well, and came up with my solution:

https://ksol.io/en/blog/articles/2025/11/django-mediafile-deletion/

Reasons:
  • Whitelisted phrase (-2): solution:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: karolyi

79826879

Date: 2025-11-21 19:21:22
Score: 3
Natty:
Report link

Agree it's horrible. I understand the direction but not the way it's happening. Wonder if they'll have to backtrack somehow down the line.

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

79826876

Date: 2025-11-21 19:16:21
Score: 1
Natty:
Report link

If you run it on linux, you can do

chmod a-x .

This will prevent directory listing to all Linux processes (except owned by root), including your own shell.

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

79826874

Date: 2025-11-21 19:15:21
Score: 2
Natty:
Report link

There is an example in the grpc directory:

Instead of calling the blocking Wait, we sleep on the main thread until the signal interruption calls Shutdown. Does the job f

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

79826873

Date: 2025-11-21 19:15:21
Score: 3.5
Natty:
Report link

// Source - https://stackoverflow.com/q

// Posted by Basya Rosemann, modified by community. See post 'Timeline' for change history

// Retrieved 2025-11-22, License - CC BY-SA 3.0

Operator '+' cannot be applied to types 'number[]' and '-1000'.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: joyonto Roy

79826872

Date: 2025-11-21 19:12:20
Score: 0.5
Natty:
Report link

In the meantime I came up with some heuristic solutions. My algorithm goes as follows:

Approach 1:

This approach is heuristic but runs rather quick and gave good enough results

Approach 2:

This approach is also heuristic and also runs quick. It may be difficult to find a good metric for finding the worst node to cut

Approach 3:

This approach will guarantee the correct solution but was cumbersome to get all the pruning conditions correct. In the end I gave up on this approach since the other approaches were much quicker and the results were good enough

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

79826869

Date: 2025-11-21 19:06:18
Score: 2
Natty:
Report link

For those that find this over a decade later. This issue still persists in Visual Studio 2026. Only one file is modifiable in the compare tool and it's the first file you select when selecting multiple files.

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

79826860

Date: 2025-11-21 18:55:16
Score: 3.5
Natty:
Report link

I have this issue with simulator running iOS 18.6. No matter what I do, Transaction.currentEntitlements are always empty when I reinstall the app. I have yet to figure out a solution. In App Purchases have worked perfectly in the past :(

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

79826856

Date: 2025-11-21 18:42:13
Score: 2.5
Natty:
Report link

This is old but I just wanted to add that I encountered this exact problem when I was attempting to merge a file to a Stream using a view on another Stream.

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

79826854

Date: 2025-11-21 18:39:12
Score: 0.5
Natty:
Report link

pymsi might work if you're okay with Python. It's on pypi with the package name python-msi, and then you get a CLI utility called pymsi that has options for dumping info on an MSI file and extracting files, as well as being able to import pymsi to use it in your own Python scripts. There is also an interactive web demo similar to lessmsi if you want to try it out and get a sense of what it can handle.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Ryan

79826853

Date: 2025-11-21 18:39:12
Score: 1
Natty:
Report link

My goal is to reproduce the ASP.NET core IServiceCollection.

The idea behind the dynamic tuple is to have it constructed with structure containing all the "settings" as template parameters:

std::tuple<Service<ServiceType::Singleton, Interface, Implementation /*, ...*/> /*, ... */>;

and then using reflection on this tuple type to later generate the different container when calling a build function.

What I call "container" is the structure containing all the information about the service and the different builder callback. (equivalent of instantiating Service<...>)

I give up on this idea (this is currently not feasible) and will use an IService (base interface of Service<...>) in combination of std::meta::identifier_of and some other c++26 reflection features to generate the container directly with meta-information. When needed during DI, I will use the already existing meta-information, to retrieve all the necessary type, to then cast the interface to it's original type using std::static_pointer_cast and do the rest of the instantiation of the service.

You can check it out on my github

At the time of writing, I'm still working on the implementation

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: DipStax

79826852

Date: 2025-11-21 18:39:12
Score: 4
Natty: 4.5
Report link

Hey prasant chettri,

Hope your issue is resolved. If not, here is a good guide to troubleshooting SHIR: https://learn.microsoft.com/en-us/purview/scanning-shir-troubleshooting

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

79826844

Date: 2025-11-21 18:31:09
Score: 6 đźš©
Natty: 5.5
Report link

Have you considered using MongoDB Search?

https://www.mongodb.com/docs/manual/core/search-in-community/connect-to-search/

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: baf509

79826837

Date: 2025-11-21 18:16:05
Score: 1
Natty:
Report link

What stops me from installing all those libraries is that the IT that made the HPC installation said it was not necessary because the architectures of the nodes were very similar. But then I tried to install a few programs and I did not find the way, unless the libraries were also installed in /usr/lib at each CN. I asked the IT for clarification but his company required 3000€ for that. After a few weeks struggling and looking for info, I had the suspicious that maybe the IT was wrong, but since I am a newbie I wanted to be sure.

I have followed your answers and everything works fine in the CN. Many thanks!!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: mancolric

79826832

Date: 2025-11-21 18:11:04
Score: 3.5
Natty:
Report link

Thank you Ankit kumar, I did not know you could do that this way with Hibernate.

Thank you life888888, I haven't heard of MyBatis Generator, I'll have a look!

zwitserloot, thanks for your detailed answer. I appreciate the time you took to write it, and I want to clarify my perspective because I think my original question may have given the wrong impression.

I definitely do not find SQL or databases scary. My background is in Business Data Processing studies, where we were very data-oriented. We often worked in C#, using ER diagrams, forward engineering, and WPF projects. We generated models from the database, but we never treated those generated classes as the application itself. With MVVM and layered designs, we always separated business logic, view models, domain behavior, and everything else.

Later, in my professional work with Java, I mostly used Code First approaches with Quarkus, Spring Boot, and Hibernate. So I have experience on both sides, Code First and Database First.

Recently, I talked with an old classmate who builds ERP modules. His company still uses a Database First approach because it helps them design clean data models from the start, which works well for modular ERP systems. That made me think about the advantages and disadvantages I have seen myself. Code First usually lets you move faster at the beginning, but I often ended up refactoring a lot when the data structure evolved. Database First is slower at the start, but since I think visually, working with ER diagrams makes it easier for me to design something stable and maintainable.

For personal projects, I want to try combining both ideas. I would design the schema first, maybe generate simple models, and then build a proper hexagonal architecture. Domain objects would stay independent from the persistence layer. For example, a User domain object may have behaviors that are not stored in the database and that are unrelated to table fields.

My question was not about treating database tables as domain objects. I agree with you on that. I was only asking whether Java has something similar to what I used in C#. I have already done Database First there, but never in Java.

Both philosophies have their pros and cons.

By the way, just to be sure before answering you, I tested MySQL Workbench to check that when you modify tables with forward engineering, it doesn’t erase the existing tables and keeps everything. It works. I liked that approach because it really lets you visualize your database (yes, I know UML is not often apprieciated in the working world, but I still like it maybe that’s my old student side showing XD).

About database engine migration, I might have misunderstood your point. From my experience, switching from MySQL to PostgreSQL is a major change no matter which approach you use. And version upgrades depend heavily on the system’s architecture, not just the ORM.

Thanks again for your answer and your perspective. And if I misunderstood anything you wrote or you want to add something, feel free to let me know.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: alex_pythooon

79826826

Date: 2025-11-21 18:00:01
Score: 2
Natty:
Report link

I was getting similar permission errors trying to connect to a WSL Distro from VSCode.

It turned out that, as I'm running on a virtual desktop, my Windows profile is actually held on a separate disk and mounted into a mount point folder under c:\users\.

From Windows' point of view this is seamless.

From WSL's point of view, it's trying to automatically map Windows file system permissions into Linux file system permissions... and cannot do that for mounted volumes.

To resolve this I have moved my vscode extensions to a different folder on the main drive using this answer.

https://stackoverflow.com/a/77093668/4333070

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: reubster

79826816

Date: 2025-11-21 17:42:56
Score: 0.5
Natty:
Report link

define a File class and make getFile a method.

class File:
    def __init__(self):
        self.filename=None
    def getFile(self):
        self.filename=filedialog.askopenfilename()

file = File()

then command=file.getFile

Now file.filename should contain the return value of askopenfilename

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

79826803

Date: 2025-11-21 17:23:50
Score: 2
Natty:
Report link

Try Cardinal: https://github.com/cardisoft/cardinal
It will find out files in milliseconds after indexing, wildcard is also supported.

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

79826802

Date: 2025-11-21 17:22:50
Score: 2
Natty:
Report link

The full answer is that, as matt said, Code Review should be disabled, but the crucial point is that Show source control changes should be activated.

enter image description here

If Show source control changes is disabled and Code Review is activated, you will see the thick blue line with only the Discard Change option.enter image description here

If Show source control changes is activated and Code Review is disabled, then you will see the fine blue line with the three options

enter image description here

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

79826797

Date: 2025-11-21 17:16:49
Score: 1
Natty:
Report link

Hat tip to @M, the problem seems to have been with the CRAN version of RNHANES: https://cran.r-project.org/web/packages/RNHANES/index.html

using devtools::install_github("silentspringinstitute/RNHANES")

To install the [development version](https://github.com/SilentSpringInstitute/RNHANES/issues/18) fixed the problem.

Leaving this here in case others run into this, and to take the answer out of the comments.

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