79359738

Date: 2025-01-15 21:29:17
Score: 1.5
Natty:
Report link

It turns out I was using an out of date aws-serverless-java-container-springboot3 dependency. When I switched to the newest version it started working again.

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

79359732

Date: 2025-01-15 21:26:16
Score: 2
Natty:
Report link

I guess it depends on the source content?

I converted a fax file I got with the command above convert FAX_*.tif -depth 1 00000001_1bit.png

and got source: 72K; resulting .png: 48K

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user1259398

79359730

Date: 2025-01-15 21:26:16
Score: 1
Natty:
Report link

When the SDK says that combo box style CBS_SIMPLE:

Displays the list box at all times. The current selection in the list box is displayed in the edit control.

this does not tell the whole story.

If you create such a combo box with a height of (for example) 20 pixels, then it will look just like an edit control and the user will be able to type in the control. Then if you add strings to the listbox they will not be visible because although the listbox is "displayed at all times" it has a Z-order behind the edit control. Despite the listbox being invisible, the user can select one of the listbox strings by using the up and down arrows, and then the string will appear in the edit control. As you can see from this, a CBS_SIMPLE combobox which is 20 pixels high is not much use.

The CBS_SIMPLE combobox comes to life if you dynamically change its height and Z-order using SetWindowPos. That way you can give the whole control "size" or more specifically "height". This makes the dropdown appear below the edit control on the screen. So for example if you and add 3 strings to the listbox, and use SetWindowPos to change the height of the combo box from 20 pixels to 80 pixels, the edit control part of the combo box will retain its original appearance and there will be a listbox shown as hanging below the edit control on the screen and containing the 3 strings. If you add a fourth string then a scrollbar appears in the listbox provided you have specified WS_VSCROLL when creating the combobox.

In this way you can cause the listbox to appear and to disappear dynamically. For example, you might want to make the listbox appear in response to user input to the edit control (reported to the combo box parent by CBN_EDITCHANGE), and to disappear on user selection of one of the strings (reported to the combo box parent by CBN_SELCHANGE). When causing the listbox to appear and disappear by changing the height of the combo box using SetWindowPos in this way, you have to pay attention to the Z-order and to redraw. You need to make sure the combo control is at the top of the Z-order when it is such a height as to cause the listbox to appear, and at the bottom of the Z-order when it is not. The control should be invalidated to ensure the background is redrawn when the listbox disappears.

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

79359729

Date: 2025-01-15 21:26:16
Score: 1.5
Natty:
Report link

You write "images.numpy()" and "labels.numpy()", when I believe you intend to write "image.numpy()" and "label.numpy()" (since you are assigning "image" and "label" to the pairs of values in "pair_ds").

You also do not increment i in the while loop (but this may have just been a mistake in the presented code, since you say that the loaded content is ok).

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

79359727

Date: 2025-01-15 21:25:14
Score: 7 🚩
Natty:
Report link

in order to use export utility on DB2 database , I installed data studio ver. 4.1 , but with profile data explorer the choice unload/export utility isn't available , have you any suggestion or solution to this, I can browse data normally for each table on the target schema, but the only feature available in the Unload command via GUI is "Via SQL" thanks in advance for your precious help.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (3): thanks in advance
  • RegEx Blacklisted phrase (2): any suggestion
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mario Grillo

79359719

Date: 2025-01-15 21:21:12
Score: 3.5
Natty:
Report link

It's because you have 2+ inspector windows open.

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

79359718

Date: 2025-01-15 21:20:12
Score: 3.5
Natty:
Report link

In my case, dns was failing, recorrected DNS fixed it

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

79359710

Date: 2025-01-15 21:16:11
Score: 0.5
Natty:
Report link

You can pass in a route from anywhere. However, if you want Angular to apply the routerLinkActive when that route gets activated, you need to ensure that you pass in an absolute path (starts with a /) to routerLink.

Tailwind should work file with routerLinkActive

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

79359702

Date: 2025-01-15 21:13:10
Score: 3.5
Natty:
Report link

you can always test the answer using one of sites like:

https://textlab.tools/json-to-xml

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

79359687

Date: 2025-01-15 21:04:08
Score: 0.5
Natty:
Report link

In my case status "200 OK", but no data was due to Django settings:

CORS_URLS_REGEX=r"^/api/.*$"

but my url did not start with /api/. So I need to add my url to CORS_URLS_REGEX expression or comment it out.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: фымышонок

79359680

Date: 2025-01-15 21:03:05
Score: 6.5 🚩
Natty:
Report link

check your file extension

..................................................................................................................................................................................................................................................................

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • No latin characters (3):
  • Filler text (0.5): ..................................................................................................................................................................................................................................................................
  • Low entropy (1):
  • Low reputation (1):
Posted by: user29216156

79359667

Date: 2025-01-15 20:58:04
Score: 1
Natty:
Report link

The problem is that update is always called, but the database is empty at that moment and nothing happens:

val existingId = saveStateRepo.getSavedId(cardId) 

if (existingId == null) {
    saveStateRepo.saveState(newSave)
    Log.d(TAG, "ID was not yet included, included it now")
} else {
    saveStateRepo.updateState(newSave)
    Log.d(TAG, "ID was already included, updated it now")
}

A function is called to retrieve existingId:

@Query("SELECT * FROM saveStateDex WHERE cardID = :id LIMIT 1")
fun getSavedId(id: Int): Flow<SaveStateDex>?

It is necessary to change to the correct type SaveStateDex? or use @Insert(onConflict = OnConflictStrategy.REPLACE), then there is no need for such a function getSavedId() and @Update.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Update
  • Low reputation (0.5):
Posted by: dmortal

79359663

Date: 2025-01-15 20:57:04
Score: 2.5
Natty:
Report link

It is possible, through a cookie. tl;dr Use a cookie to check the download status. This is the only place that respects the server response after the browser redirects to the download url.

This post explains everything. https://stackoverflow.com/a/29532789/7521854

Believe it, I did it and it works fine!

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

79359649

Date: 2025-01-15 20:48:01
Score: 1
Natty:
Report link

How do I trigger a build of the tagged release? There isn't a manual Set up build button in ADO for tags, only branches.

You can run a pipeline based on a branch, tag or specific commit.

When running a new pipeline click on the Branch/tag dropdown and then on Tags to select the desired tag:

Run pipeline - select tag

Reasons:
  • Blacklisted phrase (1): How do I
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How do I
  • High reputation (-2):
Posted by: Rui Jarimba

79359644

Date: 2025-01-15 20:46:01
Score: 0.5
Natty:
Report link

I would personnaly use a dictionnary to hold a single line. Something like that:

var row = new Dictionary<string, object>();
for (int i = 0; i < reader.FieldCount; i++)
{
    row[reader.GetName(i)] = reader.GetValue(i);
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Maxter

79359641

Date: 2025-01-15 20:44:00
Score: 0.5
Natty:
Report link

Inspired by the answer by Andrej Kesely Instead of adding items one by one I use the update method to ad the entire list at once. I modified the list first using insert and the index where I want to insert it.

from lxml import etree

xml = '<root attr0="val0" attr1="val1" attr3="val3" attr4="val4" attr5="val5"/>'
root = etree.fromstring(xml)

attribs = root.attrib.items()
root.attrib.clear()

attribs.insert(list(dict(attribs).keys()).index("attr3"), ("attr2", "val2"))     
root.attrib.update(attribs)

print(etree.tostring(root))
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: elechris

79359640

Date: 2025-01-15 20:44:00
Score: 2.5
Natty:
Report link

IMO there is no way to do this as of now. Here's a link to a feature request I found while researching this: https://jira.atlassian.com/browse/JRACLOUD-88004

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

79359637

Date: 2025-01-15 20:43:00
Score: 1.5
Natty:
Report link

Your idea to use the Oracle database for transferring data between the server and client could work, especially if the real-time requirements are not overly stringent. Databases can provide better data persistence and auditing capabilities compared to sockets. However, if low latency and high-speed communication are critical, sockets might still be the better option due to their efficiency in real-time data transfer. It’s worth evaluating the specific needs of your application to make the right call.

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

79359633

Date: 2025-01-15 20:39:59
Score: 1
Natty:
Report link

I've been struggling with the same thing and it's the beginning of 2025!

Something that might be worth looking into - check to make sure the section that the control is in on the report (eg. GroupFooter) does NOT have it's Display When value set to anything other than 'Always'. If this setting is is marked as 'Print Only', the controls will not expand with the content.

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

79359630

Date: 2025-01-15 20:38:59
Score: 3
Natty:
Report link

Answered in another thread: https://stackoverflow.com/a/76528793/17074146

Setting "Workbench > Editor: Double Click Tab To Toggle Editor Group Sizes" (workbench.editor.doubleClickTabToToggleEditorGroupSizes) to "off" should solve this issue.

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

79359628

Date: 2025-01-15 20:37:59
Score: 1
Natty:
Report link

From: tabulate documentation

Wide (fullwidth CJK) symbols To properly align tables which contain wide characters (typically fullwidth glyphs from Chinese, Japanese or Korean languages), the user should install wcwidth library. To install it together with tabulate:

pip install tabulate[widechars] Wide character support is enabled automatically if wcwidth library is already installed. To disable wide characters support without uninstalling wcwidth, set the global module-level flag WIDE_CHARS_MODE:

import tabulate tabulate.WIDE_CHARS_MODE = False

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

79359626

Date: 2025-01-15 20:37:59
Score: 2
Natty:
Report link

Feature Not Yet Available on Desktop

According to this document:

That feature is not available in Google Sheets currently (July 2023).

I'd recommend submitting a feature request to inform Google about this none-existing feature. This could lead to a solution, such as having a desktop time picker for Google Sheets. See how to create an issue in the Google Issue Tracker.

Note: You should indicate within the post that this request pertains to the desktop.

Reasons:
  • Blacklisted phrase (1): this document
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: leylou

79359617

Date: 2025-01-15 20:31:57
Score: 0.5
Natty:
Report link

Another way to acomplish this would be to use Excel Data validation functionality.

Suppose your input cell was P24.

With P24 selected, choose the Data Validation option on the Data tab of the ribbon. You will see a dialog box like this:

Excel's Data Validation Dialog Box

For the Allow criteria, choose the Custom Option.

Paste in @aeroeng88's great formula (with the cell references changed).

Click ok.

Now, if you try to enter a value outside the range, Excel will throw an error, and the value will not be recorded.

You will notice two other tabs in the Data Validation dialog box: Input Message and Error Alert. Use those tabs to craft a prompt for your users and the message that will be displayed if they enter a value outside the range.

If you have multiple inputs cells copy the input cell (after you have the validation set) and use Paste Special (with the Validation option) to paste the validaion onto the other input cell or cells.

Excel Paste Special Dialog Box with Validation Option Selected

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

79359616

Date: 2025-01-15 20:29:56
Score: 6.5 🚩
Natty: 6.5
Report link

Follow up Question:

So my dataframe has only one column that gives me an error message Like

"[ALL_PARTITION_COLUMNS_NOT_ALLOWED] Cannot use all columns for partition columns. SQLSTATE: KD005"

Is there any way to resolve this?

Reasons:
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (1.5): resolve this?
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: VMaz

79359612

Date: 2025-01-15 20:28:56
Score: 3
Natty:
Report link

You can define div tag and apply style in it. In the @Html.Raw tag , no need of @{} to render the tag.

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

79359608

Date: 2025-01-15 20:25:55
Score: 1
Natty:
Report link

@DazWilkin suggestion totally works. Just to add, there’s no restriction on variable names so your “4th try” converts to:

- assign_vars:
   assign:
     - base_url: "https://something.com/query"
     - path: "/verifications"
     - id: "2025"
- make_request:
   return: ${base_url + path + "/" + id}

Result:

"https://something.com/query/verifications/2025"

If you’d like to deep dive on this, check out the Workflows syntax cheat sheet and reserved words for an overview.

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

79359604

Date: 2025-01-15 20:24:54
Score: 1
Natty:
Report link

Got it working - changed the option text

from

<option value="Clinic 1"<? if($data['formClinic']=="Clinic 1") echo("selected=\"selected\"");?>>Clinic 1</option>

to

<option value="Clinic 1" <?php if($data['formClinic']=="Clinic 1") echo 'selected="selected"';?>>Clinic 1</option> 

for all options

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

79359584

Date: 2025-01-15 20:18:53
Score: 3
Natty:
Report link

I think I found solution. I downgraded to "react-json-tree": "^0.18.0",

before it was "react-json-tree": "^0.19.0",

on this version the issue does not exist

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

79359575

Date: 2025-01-15 20:12:52
Score: 1
Natty:
Report link

Depends on the framework you are using. For example, for NodeJS or Python you can use puppeteer for free. For c# or Java you can use the iText library. Or you can use an html to pdf api like https://pdfgate.com

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

79359572

Date: 2025-01-15 20:11:51
Score: 1
Natty:
Report link

Consider using object-fit to achieve this.

.container img {
 object-fit: cover;
 max-height: 100px;
}
<div class="container">
  <img src="https://placehold.co/300x400" />
  <img src="https://placehold.co/400x300" />
  <img src="https://placehold.co/500x300" />
</div>

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

79359545

Date: 2025-01-15 20:00:48
Score: 5.5
Natty: 4.5
Report link

I tried this code today and it does not work. I changed from col-xs-6 to col-xs-7 and I still get an error.

Anyone has a suggestion what should I try?

Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1): I still get an error
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: DavidV

79359544

Date: 2025-01-15 20:00:48
Score: 0.5
Natty:
Report link
func halt() =
  while true: discard
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Zectbumo

79359540

Date: 2025-01-15 19:59:47
Score: 0.5
Natty:
Report link

This bug keeps resurfacing.

One workaround (which I used) is to Select Existing Environments > Conda > Reload Environments. Once the environments have been listed, Switch to Create New Environments > Conda and then back to `Existing Existing'. Now when any of the listed existing Conda envs are selected, the OK button is active.
Source: https://youtrack.jetbrains.com/issue/PY-77995/Unable-to-add-an-existing-conda-environment-in-2024.3#focus=Comments-27-11355896.0-0

Another workaround (which I have not used) is to set Conda path to some other exe, reloading envs, then changing it to actual conda.exe path and then reloading environments.
Source: https://youtrack.jetbrains.com/issue/PY-77792/No-Conda-enviroment-selected#focus=Comments-27-11175701.0-0

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

79359524

Date: 2025-01-15 19:54:46
Score: 0.5
Natty:
Report link

I faced the same issue. My CSS file is named extension.css and I have it in public folder, so Vite moves it to root folder. And I want it last in the generated HTML, to give it priority.

The plugin turned out to be quite simple to implement:

      {
        name: 'move-extension-css-to-end',
        transformIndexHtml(html) {
          return html
            .replace(
              '    <link rel="stylesheet" href="./extension.css" />\n',
              ''
            )
            .replace(
              '  </head>',
              '    <link rel="stylesheet" href="./extension.css" />\n  </head>'
            );
        },
      },

First replace removes my stylesheet link it from where it is placed by Vite. The second puts it directly before body.

You can make it fancier / more flexible with regex, etc. For me string replacement works just fine. You can find what to replace in the generated HTML file in dist folder.

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

79359522

Date: 2025-01-15 19:52:45
Score: 1.5
Natty:
Report link

we Should be to install graphics pakage you can write in cmd: pip install graphics.py copy this and paste in cmd then press Enter if say was installed we should look at the lib(libary) in python folder the addres is this: C:\Users\DELL\AppData\Local\Programs\Python\Python313\Lib or C:\Users\DELL\AppData\Local\Programs\Python\Python313\Libs

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

79359521

Date: 2025-01-15 19:52:45
Score: 0.5
Natty:
Report link

The reason is that you have an outlier on index 513 (lasts from 04/04 to 04/06):

2024-04-04T15:02:44.0000000,2024-04-06T14:57:45.0000000
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: rehaqds

79359517

Date: 2025-01-15 19:51:45
Score: 3.5
Natty:
Report link

Make sure to switch to IOS/Android and click on get started.

enter image description here

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

79359506

Date: 2025-01-15 19:49:45
Score: 1.5
Natty:
Report link

If you have installed the AutoHotKey v2 language support plugin, pressing ctrl+f5 will run your currently focused AHK script.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: Lindsay-Needs-Sleep

79359483

Date: 2025-01-15 19:40:42
Score: 2.5
Natty:
Report link

The following helped me solve this problem: completely remove VS2022 and UE using the Revo Uninstaller Pro utility and clean the registry with it, reinstall VS2022 through the installer with configuration.

Attached the configuration: https://drive.google.com/file/d/1NlRh8jgPGe9Mpa9M03H5pn247AXCvnII/view?usp=sharing

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

79359455

Date: 2025-01-15 19:30:40
Score: 1.5
Natty:
Report link

Hope this answers your query.

It should be noted that js-cookie can only interact with cookies which are accessible by javascript.

As @c3roe rightly mentioned, you are receiving null because there is no javascript-accessible cookie with the name authToken.

Debug Approach:

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @c3roe
  • Low reputation (1):
Posted by: Anup Gopi

79359447

Date: 2025-01-15 19:26:38
Score: 4
Natty:
Report link

Thank you for this excellent article It was very helpful and informative.   

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Olivia

79359439

Date: 2025-01-15 19:24:37
Score: 3
Natty:
Report link

Check if the relation exists in your blade

1- $trainee->trainee?->student_id ?? 'N/A' 2- optional($trainee->trainee)->student_id

Choose one of them

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

79359432

Date: 2025-01-15 19:22:37
Score: 1
Natty:
Report link

It is currently not possible to have two recordings in one file or have a title defined for steps.

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

79359431

Date: 2025-01-15 19:22:37
Score: 0.5
Natty:
Report link

You might be encountering this when running the code due to a known bug in Google Apps Script. You may see the error message when you inspect the modal dialog and click the console.

The error message is:

Uncaught TypeError: vb.X is not a constructor.

There's a bug report about this on Google's Issue Tracker. Since you seem to be affected as well, you can add a thumbs-up ("+1") to the report to indicate that you are impacted as well and you may subscribe by clicking on the star next to the issue number in order to receive updates. This will help Google prioritize fixing the bug.

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

79359420

Date: 2025-01-15 19:16:36
Score: 1
Natty:
Report link

https://docusaurus.io/docs/swizzling#wrapper-your-site-with-root

import React from 'react';
import mixpanel from 'mixpanel-browser';

// Default implementation, that you can customize
export default function Root({children}) {
  React.useEffect(() => {
    if (typeof window !== 'undefined') {
      // Initialize Mixpanel with the token
      mixpanel.init(TOKEN, {
        track_pageview: true,
        debug: process.env.NODE_ENV === 'development'
      });
    }
  }, []);

  return <>{children}</>;
}
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Linghua Jin

79359403

Date: 2025-01-15 19:10:35
Score: 2.5
Natty:
Report link

It can be done with the predicate with the toString instruction

Predicate dateRestriction = builder.like(builder.toString(root.get("date")), "%2021%");

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

79359399

Date: 2025-01-15 19:09:35
Score: 0.5
Natty:
Report link

Looks like I haven't understood that I cannot use reusable workflows in action step.

So I need to update my workflow to call the main workflow from the job level

jobs:
  check-if-there-are-commits:
    runs-on: ubuntu-latest
    outputs:
      alive: ${{ steps.check.outputs.alive }}
      alive2: ${{ steps.check.outputs.alive2 }}
      setup: ${{ steps.verify.outputs.setup }}
   ...


  run-main-build:
    needs: check-if-there-are-commits
    if: ${{ ( needs.check-if-there-are-commits.outputs.alive == 'true' || needs.check-if-there-are-commits.outputs.alive2 == 'true' ) && needs.check-if-there-are-commits.outputs.setup == 1 }}
    uses: ./.github/workflows/sfdxNightlyJob.yml
    with:
      alive: ${{ needs.check-if-there-are-commits.outputs.alive }}
Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Patlatus

79359397

Date: 2025-01-15 19:08:33
Score: 5
Natty:
Report link

I tried same way but I didn't find any luck.

Reasons:
  • Blacklisted phrase (1.5): any luck
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: tarun mittal

79359378

Date: 2025-01-15 19:00:30
Score: 6 🚩
Natty: 5.5
Report link

2025, I'm looking for fuzzy matching and yet couldn't find one via api. any idea on how to do this?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: murali Krishna

79359373

Date: 2025-01-15 18:57:29
Score: 1.5
Natty:
Report link

You can find the session files in

C:/path/to/xampp/tmp/sess_(string of random letters)

They do not have an extension but you can open them in most text editors

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

79359372

Date: 2025-01-15 18:56:28
Score: 1
Natty:
Report link

Keycloak uses the realm keys to construct the metadata for both the SPSSODescriptor and the IDPSSODescriptor descriptors. The realm keys that are intended for the purpose of encryption (shown as "ENC" use in the admin console) and that match the possible encryption algorithms (e.g. RSA-OAEP) are included in the SPSSODescriptor. The realm keys that are intended for signing operations (shows as "SIG" in the admin console) are included in the IDPSSODescriptor. For example, if you add a new "rsa-enc-generated" key as a key provider in the realm keys, Keycloak will include it in the SPSSODescriptor.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: James Whetstone

79359352

Date: 2025-01-15 18:48:26
Score: 1
Natty:
Report link

This should do the trick:

@echo off

set PYTHON=
set GIT=
set VENV_DIR=
set COMMANDLINE_ARGS= --medvram --skip-torch-cuda-test

call webui.bat

When I create an empty webui.bat and put these contents in it, it outputs --medvram --skip-torch-cuda-test:

echo %COMMANDLINE_ARGS%

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

79359351

Date: 2025-01-15 18:48:25
Score: 6.5 🚩
Natty: 6
Report link

Did you end up modifying the kernel? How did you make it work with kprobes? Please provide some more context, I'm dealing with the same issue.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please provide some
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Neve

79359334

Date: 2025-01-15 18:37:23
Score: 1.5
Natty:
Report link

I also got this problem right after downloading the setup wizard files. The solutions were:

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

79359329

Date: 2025-01-15 18:34:22
Score: 2
Natty:
Report link

Remy's suggestion that I answer the question is good, I will try here:

By changing from IDC_STATIC to a control I generated named IDS_VERSION I could then define the string.

In the About window I used this code:

LoadStringW(hInst, IDS_VERSION, szVerW, MAX_LOADSTRING);
SetDlgItemText(hDlg, IDS_VERSION, szVerW);

For use in the logfile I used this code:

LoadStringA(hInstance, IDS_VERSION, szVersion, MAX_LOADSTRING);

Once done, I could extract the same string for my log file and use it in the about dialog.

Thanks to all, -Tom

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Tom

79359325

Date: 2025-01-15 18:33:21
Score: 3
Natty:
Report link

Non-terminal GUI software often encorporates such an implementation of pandoc including Morphosis. This is limited, but it can go from .odt to .doc if not .docx and if not .docx, perhaps the .doc can be further converted.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mark J. Kropf

79359314

Date: 2025-01-15 18:30:19
Score: 11.5 🚩
Natty: 6.5
Report link

Any solution? I'm stuck with the same error...

Reasons:
  • Blacklisted phrase (1.5): Any solution
  • RegEx Blacklisted phrase (1.5): I'm stuck
  • RegEx Blacklisted phrase (2): Any solution?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm stuck with the same error
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Erick Fraga

79359313

Date: 2025-01-15 18:30:19
Score: 0.5
Natty:
Report link

this may help....

I have no idea how this works, but if you run it (as a non admin) it grants admin rights and runs the thing as an admin - fairly bonkers but it does work!. I found it on the net ages ago, its not my work. you can just save the code below and run it.

save your actual file as a .bat and put it in the bit where it says "c:\tools\powershell\runmyscriptasanadmin.bat"

if %1==payload goto :payload

:getadmin echo %~nx0: elevating self set vbs=%temp%\getadmin.vbs echo Set UAC = CreateObject^("Shell.Application"^) >> "%vbs%" echo UAC.ShellExecute "%~s0", "payload %~sdp0 %*", "", "runas", 1 >> "%vbs%" "%temp%\getadmin.vbs" del "%temp%\getadmin.vbs" goto :eof

:payload echo %~nx0: running payload with parameters: echo %* echo --------------------------------------------------- cd /d %2 shift shift

 rem put your code here like if _%1_==_payload_  goto :payload

:getadmin echo %~nx0: elevating self set vbs=%temp%\getadmin.vbs echo Set UAC = CreateObject^("Shell.Application"^) >> "%vbs%" echo UAC.ShellExecute "%~s0", "payload %~sdp0 %*", "", "runas", 1 >> "%vbs%" "%temp%\getadmin.vbs" del "%temp%\getadmin.vbs" goto :eof

:payload echo %~nx0: running payload with parameters: echo %* echo --------------------------------------------------- cd /d %2 shift shift

 rem put your code here like c:\tools\powershell\runmyscriptasanadmin.bat   

goto :eof rem e.g.: perl myscript.pl %1 %2 %3 %4 %5 %6 %7 %8 %9 goto :eof

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

79359309

Date: 2025-01-15 18:29:18
Score: 7 🚩
Natty:
Report link

Same here, just one hour ago it was working fine, now even test deployment notifies 'vb.X is not a constructor.' Me pasa lo mismo saludos.

Reasons:
  • Blacklisted phrase (1.5): saludos
  • RegEx Blacklisted phrase (2.5): mismo
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hector Sanchez

79359307

Date: 2025-01-15 18:29:18
Score: 1
Natty:
Report link

We do not support encrypting properties at the app level. However, you can use our helm charts with all the secrets management apps applicable for helm. https://github.com/kafbat/helm-charts

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

79359306

Date: 2025-01-15 18:28:17
Score: 4
Natty: 5
Report link

https://www.sphider.worldspaceflight.com - A fork of the original Sphider search.

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

79359303

Date: 2025-01-15 18:26:16
Score: 0.5
Natty:
Report link

It is actually possible to avoid custom css. Specify the MudTh to colspan as required, then place two rows (MudTr) within, the first can be your 'spanning' text, the next row then has the correct number of cells (MudTd).

        <HeaderContent>
        
            <MudTh Class="text-center">Activity</MudTh>
            <MudTh colspan="6" style="background-color: #c0e6f5 ">
                <MudTr>
                    Review
                </MudTr>   
                <MudTr>
                    <MudTd>Activity</MudTd>
                    <MudTd>Mins/week</MudTd>
                    <MudTd>Job Plans</MudTd>
                    <MudTd>Week Mins/Job Plan</MudTd>
                    <MudTd>People</MudTd>
                    <MudTd>Mins/Pers.</MudTd>
                </MudTr>
            </MudTh>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Bruce Ricahrds

79359293

Date: 2025-01-15 18:23:16
Score: 3
Natty:
Report link

The same thing is happening to me. Refresh the page enough times and it loads, then stops again.

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

79359276

Date: 2025-01-15 18:14:13
Score: 3.5
Natty:
Report link

Use SYLT EEDITOR il permet d'intégrer les paroles dans un fichier Mp3 les paroles sont initialement mise sous le format LRC

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

79359273

Date: 2025-01-15 18:12:13
Score: 2.5
Natty:
Report link

I also was unable to logout through VS code. I found out there is a GitHub CLI. I used the command gh auth login which did the trick.

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

79359265

Date: 2025-01-15 18:07:10
Score: 4
Natty:
Report link

@Ahmad Mansoori, I believe in Qt6 the solution is to use qt_add_executable() for both platforms.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Ahmad
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Nobody Special

79359261

Date: 2025-01-15 18:06:10
Score: 1.5
Natty:
Report link

How about

border-radius: 150px 150px 0 0;

border radius

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): How
  • High reputation (-1):
Posted by: whiterook6

79359260

Date: 2025-01-15 18:06:10
Score: 2
Natty:
Report link

try install fastapi[standard]

pip install "fastapi[standard]"
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hansel Loshaless

79359255

Date: 2025-01-15 18:04:09
Score: 5.5
Natty:
Report link

A mí me ha pasado lo mismo. Ayer estuvo normal funcionando, ahora ninguno de mis app funcionan.

Reasons:
  • RegEx Blacklisted phrase (2.5): mismo
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bruce Abad Rojas

79359247

Date: 2025-01-15 18:01:08
Score: 3
Natty:
Report link

I found one interesting thing. Windows really runs Main Thread with 16 ms period. But in one case it is not true. I tested WPF application and found out that when I run my app from the Visual Studio debugger the period is getting shorter - about 3 ms! When I run app directly - the period is again 16 ms. My app has one button and ButtonClick() handler. After I click the button I receive the result: 17:32:29.5716958 17:32:29.5735801 17:32:29.5746377 17:32:29.5756864 17:32:29.5777097 17:32:29.5796714 17:32:29.5816662 Can someone figure out how Visual Studio debugger can force shorter Main Thread period for the debugging app?

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

79359243

Date: 2025-01-15 17:59:08
Score: 2
Natty:
Report link

No. It would be a weak entity relation if the order only depends on cart. But the order does not primarily depend on the cart and is independent which means the order exists without cart. A weak entity relationship would require the Order to be fully dependent on the Cart for its identification, which is not the case here.

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

79359241

Date: 2025-01-15 17:58:07
Score: 1.5
Natty:
Report link

The below regex clears the 77 links you provided.*

(http:\/\/|https:\/\/)?(((www.)?youtu.be\/)|(www.|m.)?youtube.com\/((embed\/|shorts\/)|(\?|(watch\?(dev=inprogress&)?)?)?vi?(\/|=)))(([0-9a-zA-Z_-])+)([$=#&?\/'"\s])(t=([0-9]+(:[0-9](2))*)*)?

It will capture the <video-id> and <start-time>. Start time can be an integer, or an integer followed by a colon followed by a 2-digit-integer followed by colon followed by 2-digit integer..., e.g. t=2055577:33:44:00


In PHP**, you can id/capture the group pattern, in this case the and patterns, by adding ?<video-id> and ?<start-time> immediately after the opening parenthesis "(" of the capturing parenthesis like this(*): (?<video-id>([0-9a-zA-Z_-])+) and (?<start-time>t=([0-9]+(:[0-9](2))*)*)?

Here is the update regex for PHP with the <video-id> and <start-time> group identifiers:

(http:\/\/|https:\/\/)?(((www.)?youtu.be\/)|(www.|m.)?youtube.com\/((embed\/|shorts\/)|(\?|(watch\?(dev=inprogress&)?)?)?vi?(\/|=)))(?<video-id>([0-9a-zA-Z_-])+)([$=#&?\/'"\s])(?<start-time>t=([0-9]+(:[0-9](2))*)*)?

* Regex pattern tested at https://regex101.com/ for PHP>=7.3

** Regex Capturing Groups for PHP at * https://www.phptutorial.net/php-tutorial/regex-capturing-groups/,

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Blacklisted phrase (1): youtube.com
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Richard Neadle

79359232

Date: 2025-01-15 17:53:05
Score: 4.5
Natty: 4
Report link

I'm having a related problem. One of my shared libs libbluecove_aarch64.so does not find a symbol in another shared library libbluetooth.so. The symbol does exist and is exported.

I ran the code with the -Xlog... filtered for "Load Library" this is what I get.

[0.030s][info][library] Loaded library /usr/lib/jvm/java-17-openjdk-arm64/lib/libnio.so, handle 0x00007ffef813e4f0
[0.046s][info][library] Loaded library /usr/lib/jvm/java-17-openjdk-arm64/lib/libzip.so, handle 0x00007ffef81427a0
[0.064s][info][library] Loaded library /usr/lib/jvm/java-17-openjdk-arm64/lib/libmanagement.so, handle 0x00007ffef8163be0
[0.070s][info][library] Loaded library /usr/lib/jvm/java-17-openjdk-arm64/lib/libmanagement_ext.so, handle 0x00007ffef8165e30
[0.088s][info][library] Loaded library /usr/lib/jvm/java-17-openjdk-arm64/lib/libnet.so, handle 0x00007ffef813eb80
[0.159s][info][library] Loaded library /usr/lib/jvm/java-17-openjdk-arm64/lib/libjimage.so, handle 0x00007ffef8002b40
[0.194s][info][library] Loaded library /usr/lib/jvm/java-17-openjdk-arm64/lib/libprefs.so, handle 0x00007ffef8235680
[0.313s][info][library] Loaded library /usr/lib/jvm/java-17-openjdk-arm64/lib/libjsound.so, handle 0x00007ffe7c004160
[0.318s][info][library] Loaded library /usr/lib/aarch64-linux-gnu/libbluetooth.so.3.19.8, handle 0x00007ffef8273280
[0.342s][info][library] Loaded library /usr/lib/jvm/java-17-openjdk-arm64/lib/libextnet.so, handle 0x00007ffe68007f10
[0.381s][info][library] Failed to find Java_com_intel_bluetooth_BluetoothStackBlueZ_isNativeCodeLoaded in library with handle 0x00007ffef8273280
[0.381s][info][library] Failed to find Java_com_intel_bluetooth_BluetoothStackBlueZ_isNativeCodeLoaded in library with handle 0x00007ffef8273280
[0.385s][info][library] Loaded library /usr/lib64/bluecove/2.1.1-SNAPSHOT/libbluecove_aarch64.so, handle 0x00007ffe74020dc0
[0.385s][info][library] Failed to find Java_com_intel_bluetooth_BluetoothStackBlueZ_isNativeCodeLoaded in library with handle 0x00007ffef8273280
[0.385s][info][library] Found Java_com_intel_bluetooth_BluetoothStackBlueZ_isNativeCodeLoaded in library with handle 0x00007ffe74020dc0
/usr/lib/jvm/java-17-openjdk-arm64/bin/java: symbol lookup error: /usr/lib64/bluecove/2.1.1-SNAPSHOT/libbluecove_aarch64.so: undefined symbol: hci_get_route

Any help would be appreciated.

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (3): Any help would be appreciated
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Quentin Meek

79359224

Date: 2025-01-15 17:51:04
Score: 8.5 🚩
Natty: 6
Report link

I was wondering how did you manage to add the Sagemaker SDK in Lambda? It is a nightmare to do dependencies in Lambda

Reasons:
  • Blacklisted phrase (2): was wondering
  • RegEx Blacklisted phrase (3): did you manage to
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Antonieta Pinto Rebelo

79359223

Date: 2025-01-15 17:51:03
Score: 1.5
Natty:
Report link

I found a solution, there two back pressure threshold you can set for a flowfile queue. The object threshold: # of flowfiles size threshold.

In my use case, it is the object threshold got hit almost all the time. I set this threshold to 0 which will be unlimited. Now the back pressure will only be triggered if size limit is reached. Size limit is hard to reach (there's still a risk though) in my flows.

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

79359221

Date: 2025-01-15 17:49:03
Score: 2
Natty:
Report link

As per Martin Kleppmann, it’s misleading to call HBase and Cassandra as columnar data base. They use the concept of Column Families where each Column Family stores columns from the row. They are based on Big table which is row oriented

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

79359200

Date: 2025-01-15 17:39:01
Score: 1.5
Natty:
Report link

Try to start it as an administrator. This fixed it for me.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: mathematics-and-caffeine

79359198

Date: 2025-01-15 17:39:01
Score: 1.5
Natty:
Report link

This worked for me! thanks for the solution, I had spent over 10h trying to figure this out

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Whitelisted phrase (-1): This worked for me
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Juan M. Ramos

79359192

Date: 2025-01-15 17:35:00
Score: 1.5
Natty:
Report link

Without further information I cannot be too sure about your issue, but it is most likely something to do with differences between deployment and production with accessing your database.

Make sure your environment variables are set up correctly for the deployment. URI, API URLs and endpoints will all be different in both deployment and production. Could also be something to do with networks, if your other devices are connected to other networks.

Again, you would have to provide me with some code for further help, but when i was facing issues like this it was because of api endpoint and redirect urls so make sure they're setup correctly.

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

79359183

Date: 2025-01-15 17:31:59
Score: 1
Natty:
Report link

Target the dropdown and click to open it

cy.get('[data-cy=dropdown-country]').find('.p-dropdown').click();

Select the option from the dropdown menu

cy.contains('France').click();

"cypress": "^13.17.0",

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

79359178

Date: 2025-01-15 17:28:59
Score: 2
Natty:
Report link

Please try to add the following two app settings to your Linux app: WEBSITE_SKIP_RUNNING_KUDUAGENT = false WEBSITES_ENABLE_APP_SERVICE_STORAGE = true

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

79359157

Date: 2025-01-15 17:20:57
Score: 2
Natty:
Report link

Incorporate Path.GetExtension(file.FileName) into the following code filename = Guid.NewGuid() + file.FileName+ Path.Getextension(file.filename);

Making the file operation asynchronous can enhance performance

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

79359154

Date: 2025-01-15 17:20:56
Score: 4
Natty: 4
Report link

Check out this PrePrint, it describes fast and simple algorithms for checking primality:

https://www.researchgate.net/publication/387736343_Fast_Novel_Deterministic_Algorithm_for_Checking_Primality_Determining_if_a_number_is_a_Prime_Number

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

79359151

Date: 2025-01-15 17:19:55
Score: 0.5
Natty:
Report link

There is no documented replacement. The only thing that list-item-action-text does is apply a font size, so you can get there with a css rule:

.list-item-action-text {
  font-size: .75rem;
}

If you want the text to appear at the end of the v-list-item, you may need to move it into a <template #append> slot.

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

79359142

Date: 2025-01-15 17:14:55
Score: 2
Natty:
Report link

I've tried adjusting the docker-php-ext-configure arguments without success.

Well certainly there is nothing we can do here, right?

Has something changed in how GD is configured in PHP 8.2, or is there a compatibility issue with Alpine's libraries?

Obviously the configuration as the version number has changed. PHPs' minor version is a major release.

Furthermore, you obviously have a compatibility issue with your container configuration. So a clear yes to the whole conditions of the question.

Note thought that others don't have that. Again, it does not look like there is anything we can do here, right?

Any suggestions to resolve this?

As others are not able to reproduce, it's hard to tell from the information in your question how you can resolve this.

We'd normally put the build under version control to manage the configuration, then build and test until green.

This is most often the easiest by starting the build instructions from scratch and practicing TCR (compare How Practicing TCR (Test && Commit || Revert) Reduces Batch Size (infoq.com)).

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve this?
  • RegEx Blacklisted phrase (2): Any suggestions
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: hakre

79359125

Date: 2025-01-15 17:09:53
Score: 4
Natty:
Report link

Your response here: https://github.com/phamhung075/nested-component

P/S: I’ve been teaching myself Angular/node.js for the past 1 year, and while I don’t have a formal diploma, I’m passionate about web development. Finding a job without traditional credentials has been challenging, so I’m focusing on building my reputation on Stack Overflow. If my solutions help you, I’d greatly appreciate your upvotes to make my profile more visible to potential employers in this competitive market. Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): upvote
  • RegEx Blacklisted phrase (1.5): reputation
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hung Pham

79359113

Date: 2025-01-15 17:07:53
Score: 3
Natty:
Report link

Another one here!, tried disabling chrome v8 and it will not compile my scripts, states a missing ; in a file but it is erroneous

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

79359109

Date: 2025-01-15 17:06:52
Score: 2.5
Natty:
Report link

UPDATE

I wasn’t able to resolve the issue with Metro.runBuild, but I achieved my goal using the options provided by the npx expo export command:

npx expo export --output-dir "my-dir" --platform web --source-maps

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

79359103

Date: 2025-01-15 17:04:51
Score: 4
Natty:
Report link

i found the right way to do it , i used sam model to segment the image : see the white dots please. https://drive.google.com/file/d/10AHk4q4a0M_xUup548Tofjfl9DmNkdxS/view?usp=sharing

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

79359102

Date: 2025-01-15 17:04:51
Score: 1
Natty:
Report link

The jsonl docs suggests the MIME type application/jsonl.

As of now, however, that convention is not a web standard yet.

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

79359100

Date: 2025-01-15 17:03:51
Score: 2.5
Natty:
Report link

My answer is quite embarrassing: out of a sudden, torch.cuda.is_available() returns True now. And, now that it does so, it’s working on the host, in both the venv and the conda env and also in another conda env using CUDA 12.1. Unfortunately for anyone ending up here via a search, I haven’t got the slightest idea what has changed in the meantime. So, sorry everyone for bothering you and thanks for the comment anyways!

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

79359099

Date: 2025-01-15 17:03:51
Score: 1.5
Natty:
Report link

I used:

grid-template-columns: 50px fit-content(50%) 0 fit-content(50%);

Instead of:

grid-template-columns: 50px fit-content(50%) auto fit-content(50%);

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

79359097

Date: 2025-01-15 17:02:51
Score: 3.5
Natty:
Report link

Suffering this one as well. Eagerly awaiting a fix.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Manager Metrics - AddOn

79359094

Date: 2025-01-15 17:01:50
Score: 2
Natty:
Report link

This now seems to be possible, according to this article. I ran the following command and it added 'calico' to my existing AKS cluster.

az aks update --resource-group <MY_RESOURCE_GROUP> --name <MY_CLUSTER_NAME> --network-policy calico

N.B. It's quite a destructive process as it destroys and recreates all the new nodes, but completed successfully for me.

Reasons:
  • Blacklisted phrase (1): this article
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: ciaranj

79359080

Date: 2025-01-15 16:58:49
Score: 9 🚩
Natty: 5
Report link

facing the same issue. is there any updates to this?

Reasons:
  • Blacklisted phrase (1): is there any
  • RegEx Blacklisted phrase (0.5): any updates
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: kaleb teshale

79359077

Date: 2025-01-15 16:58:48
Score: 0.5
Natty:
Report link

With the inputs received in the comment, I post the updated code with time rotating logger:

import logging  
import logging.handlers import TimeRotatingFileHandler


def show_help():
    'This is help messages'
    help_msg = '''\n
    The valid options:\n
    [-src_path : <option to provide src_path ]
    [-dest_path : <option to provide dest_path ]
    
    '''
    print(help_msg)
    

def define_logger():
    log_path = "/usr/scripts/logs/my_script.log"
    # Create a custom logger
    logger = logging.getLogger(__name__)
    logger.setLevel(logging.DEBUG)

    # Create a TimeRotatingFileHandler
    f_handler = TimeRotatingFileHandler(log_path, when="midnight", interval-1, backupCount=7)
    f_handler.setLevel(logging.DEBUG)

    #Create a console handler
    con_handler = logging.StreamHandler()
    con_handler.setLevel(logging.DEBUG)

    #Create a formatter and add it to the handlers
    formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
    f_handler.setFormatter(formatter)
    con_handler.setFormatter(formatter)         

    # Add the handler to the logger
    logger.addHandler(con_handler)
    logger.addHandler(f_handler)

    return logger, con_handler
    
    
    
if __name__ == '__main__':
    logger, con_handler = define_logger()
    logger.info("simply using logger")
Reasons:
  • Blacklisted phrase (1): help me
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: A.G.Progm.Enthusiast

79359074

Date: 2025-01-15 16:57:48
Score: 1.5
Natty:
Report link

I ended up removing the Azure.StorageServices.BlobService 12.23.0 package I was using and switched to the official Azure.Storage.Blobs (via NuGet for Unity) instead. After a quick implementation the problem seems to have gone away. I'm not sure what was causing it, as the same code was working less than a week ago, but at least it's fixed now.

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

79359062

Date: 2025-01-15 16:53:47
Score: 1.5
Natty:
Report link

ReportLab has a free, opensource option available on their main page. Used it without issue so far. You will have to do more work to get everything formatted as you need, but you can do everything within Python directly, including reading in various Excel files, adjusting values or arrangements as needed, and placing items from them into PDFs with no need to open Excel.

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

79359050

Date: 2025-01-15 16:49:46
Score: 1.5
Natty:
Report link

I think this UX has changed a time or three. Today, as you say, the output tab enables a view that contains both an output and a terminal sub-view. Makes sense right that the output tab includes output and something else!?!?

enter image description here

Anyway... I have no "reset location" that Justin George says hides the output sub-view. Or maybe they mean it shows it. IDK. Doesn't matter, that menu item is not there.

enter image description here

I find no way to fully hide the output sub-view. but... you can shrink it pretty small via the down arrow to the left of the sub-view title.

enter image description here

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: steve

79359039

Date: 2025-01-15 16:45:44
Score: 5
Natty:
Report link

I have the same problem:

This issue has started to appear in console my app(Uncaught TypeError: vb.X is not a constructor). page web :The page is blank console :Uncaught TypeError: vb.X is not a constructor

refresh page: When reloading the page, the application works fine, but when reloading, the problem appears.

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