79372879

Date: 2025-01-20 23:31:29
Score: 4
Natty: 5
Report link

https://whyp.it/tracks/248091/samyar-ghodrati-bass-mizanam Samyar ghodrati Iranian Singer and artist Samyar ghodrati king of the bass

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

79372877

Date: 2025-01-20 23:29:29
Score: 2.5
Natty:
Report link

Is your virtual host conf file actually like that, or is the last part

ProxyPreserveHost On
<Location /app>
        ProxyPass ws://0.0.0.0:8080/app
        ProxyPassReverse ws://0.0.0.0:8080/app
</Location>
<Location /apps>
        ProxyPass http://0.0.0.0:8080/apps
        ProxyPassReverse http://0.0.0.0:8080/apps
</Location>

Inside your <VirtualHost *:443>?

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

79372869

Date: 2025-01-20 23:24:28
Score: 1
Natty:
Report link

Despite trying most of the solutions here this issue persisted for me.

A while back I had unsubscribed to Github copilot but had not uninstalled the extension. I tried uninstalling the copilot extension as the dialog kept bugging me, and suddenly VSCode found my Python interpreter / kernel. I am assuming there is some weird magic going on with the way copilot uses the selected interpreter and when the subscription not present the whole thing silently fails.

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

79372866

Date: 2025-01-20 23:22:28
Score: 1
Natty:
Report link

$SHELL environment variable only indicates the default shell that is set for the active user.

So echo $SHELL does not necessarily reflect the shell running in your current terminal session. Which means you can start other shell and that will not update $SHELL environment variable, which reflects only default shell for your user. It could be modified explicitly if you want to do so.

Regardless on that, to check what is your current active shell in terminal session, type:

echo $0

or eventually

ps -p $$

You also have to have right shells installed and supported which you can check with:

cat /etc/shells

Regarding vscode, it should be enough to set "terminal.integrated.defaultProfile.linux": "bash" in the settings.json, but make sure you exit and start the integrated terminal again after the change is applied.

Reasons:
  • Blacklisted phrase (1): what is your
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Avenia

79372858

Date: 2025-01-20 23:14:26
Score: 0.5
Natty:
Report link

Solution: IntelliJ Project SDK was setup as java 23; however the build in command line was using java 17 I changed the SDK in IntelliJ project struct to java 17 and the issue got resolved

Reasons:
  • Whitelisted phrase (-2): Solution:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user6610998

79372854

Date: 2025-01-20 23:12:23
Score: 6 🚩
Natty:
Report link

I'm also a newbie progammer and am also having problems with this and was hoping someone can point me in the right direction.

I have a K3 Key Box (https://www.tuyaexpo.com/product/946025), connected up via a gateway. I've enabled the "Smart Lock Open Service" and managed to sort out the encryption nightmare, and am able to get back what look like success results from the API for creating a new temporary PIN and even for deleting the PIN out too.

However, when it sends the payload to the device, the keybox audibly says "Operation Failed" (but nothing in the log to say it failed, except it doesn't take the new pin, so it did fail).

The API says its all good, but the device itself said it's failed.

I can see the commands in the device log (so I am close!) but it doesn't seem to like the commands being issued to the device.

Does anyone have any experience with this?

Reasons:
  • RegEx Blacklisted phrase (3): Does anyone have any experience
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Andrew

79372832

Date: 2025-01-20 22:59:21
Score: 2
Natty:
Report link

The first answer, in my opinion is very confusing, especially when you look at the diagram. I believe a better answer is shown by my diagram below. The diagram shows just one 3 D filter resulting in one feature map. There may be more than one 3D filter. In that case there will be multiple feature maps resulting. enter image description here

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

79372820

Date: 2025-01-20 22:48:18
Score: 3.5
Natty:
Report link

Thanks you so much, its working. <33 I added to pointainer variable -> "PGADMIN_CONFIG_MAX_LOGIN_ATTEMPTS" and works. Have a nice day.

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

79372804

Date: 2025-01-20 22:38:16
Score: 3.5
Natty:
Report link

See here on how the Fenwick tree is a specialization (of sorts) of segment trees.

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

79372799

Date: 2025-01-20 22:35:16
Score: 3.5
Natty:
Report link

For 23ai, use sqlplus -p instead.

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

79372792

Date: 2025-01-20 22:29:15
Score: 2.5
Natty:
Report link

So anyone else who runs into this issue... I am using an API Gateway authorizer to lock down the API Gateway to only accept requests from cloud front (because im using an HttpApi and wanted a WAF as well). Turns out when you do that the APIGatewayHttpApiV2ProxyFunction class overwrites existing authorization. I was able to fix this by overriding the FunctionHandlerAsync and setting the authorizer to null on the incoming request.

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

79372790

Date: 2025-01-20 22:28:14
Score: 1
Natty:
Report link

If you mean that the result of the animation disappears when it ends, then the following code should fix your issue:

.animate-on-load {
  animation: fadeIn 1s ease-out forwards;
}

If I misunderstood your problem, then the issue is not reproducible.

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

79372778

Date: 2025-01-20 22:18:12
Score: 4
Natty: 6.5
Report link

Baybiltek tarafından geliştirilmiş dijital arşivleme programını inceleyebilirsiniz. https://www.baybiltek.com/

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Çağdaş Şahin

79372768

Date: 2025-01-20 22:13:10
Score: 0.5
Natty:
Report link

Works like magic for Macbook Pro2019 with Intel Silicon, i9.

print("PyTorch is using", torch.get_num_threads(), "GPU threads.")
device = torch.device("cuda" if torch.cuda.is_available() else "mps")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jeremaiha

79372763

Date: 2025-01-20 22:11:10
Score: 1
Natty:
Report link

Got the idea from here: encodeURI()

    var url = getBaseURL() + "/Home/Index/";
    var encoded = encodeURI(url);
    location.href = decodeURI(encoded);

This removes the Checkmarx errors.

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

79372762

Date: 2025-01-20 22:10:10
Score: 1
Natty:
Report link

if you want add action in table, you need use this

use Filament\Tables\Actions\Action;
 
Action::make('')
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Andi Tenroaji Ahmad

79372746

Date: 2025-01-20 22:03:08
Score: 4.5
Natty:
Report link

Thanks to all for your help!

The solution I ultimately went with was to use iisexpress-proxy to set my IIS Express's local port to one which was (temporarily) remotely accessible. This is the same general solution as Dev Tunnels and ngrok, which likely also would have worked--I just arrived at a working solution with this solution first.

The particulars for me required:

Only real downside to this approach I see is the need to remember to create the proxy every time I test this way (likely create a one-click batch file to do the iisexpress-proxy command). This seems like a mild hassle, but I'll admit to being slightly nervous about any alternatives which would automatically create a link to my dev machine which might be visible to the outside world. Please advise if I'm being overly nervous about this, or if you have a better development path for such work. In any case, thanks again for all your help!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (2.5): Please advise
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: pbickford

79372741

Date: 2025-01-20 22:01:07
Score: 1
Natty:
Report link

Layouts in Nuxt are set on pages, not routes. So you can't set a layout on a group of pages (nested routes).

To use a layouts in Nuxt:

Read the layouts directory structure and nuxt-layout components documentation.

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

79372730

Date: 2025-01-20 21:54:05
Score: 1.5
Natty:
Report link

On Windows, it is possible to do certain things from Powershell can use Invoke-RestMethod talking to the api. But you will need to build the Rest request yourself.

Check out these tools for examples, or it might have exactly what you need. https://github.com/RamblingCookieMonster/RabbitMQTools/

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

79372728

Date: 2025-01-20 21:53:04
Score: 4.5
Natty:
Report link

select ID, IFNULL(Name, 'Not Defined')

AWillsRichardson

Reasons:
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: awillsrichardson

79372727

Date: 2025-01-20 21:53:03
Score: 6 🚩
Natty:
Report link

I am trying to add the Azure AD group in the Organization's Project Collection Valid User and I am able to add from the portal.

Adding the group

group added

But if I use the descriptor of the Project Collection Valid Users, I'm getting the below error CLI

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (1.5): getting the below error
  • RegEx Blacklisted phrase (1): I'm getting the below error
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Nyamat Allah Noorahmad Momin

79372709

Date: 2025-01-20 21:41:00
Score: 0.5
Natty:
Report link

In development mode, React’s strict mode can cause certain effects to run twice to help identify side effects. If this is the cause, it won't affect production builds. You can temporarily remove React.StrictMode

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Ishwar Chandra Tiwari

79372707

Date: 2025-01-20 21:40:00
Score: 3
Natty:
Report link

The style property on HTML elements is read only: https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style

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

79372699

Date: 2025-01-20 21:36:59
Score: 2
Natty:
Report link

I just doing this project in my partner If u use Bluetooth You just need Bluetooth package like react native ble plx

And simple just send TSPL command to it over Bluetooth

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

79372696

Date: 2025-01-20 21:34:59
Score: 2
Natty:
Report link

For this you'd really want JavaCPP, not JNA or JNI which are both meant for C APIs (and JNI is now obsoleted by the new Java FFI which is much easier to use, but again, only for C).

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

79372686

Date: 2025-01-20 21:30:58
Score: 1.5
Natty:
Report link

If your image is http:// then this might help, as it did for me. Try adding this in your AndroidManifest.xml in the <application ...

android:usesCleartextTraffic="true"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Irfan Shadik Rishad

79372685

Date: 2025-01-20 21:29:58
Score: 1.5
Natty:
Report link

It's simple

If you connect over usb then send the TSPL command using that usb

If you use Bluetooth then sent data to it..

I do this many times no need specifically package.. just need package yo connect to Bluetooth or USB or serial port

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

79372683

Date: 2025-01-20 21:28:57
Score: 3
Natty:
Report link

Unresolved import issues with pydev and eclipse helped me find a resolution to this issue.

This was resolved by vscode > ctrl + shift + p > PyDev: Clear Caches.

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

79372679

Date: 2025-01-20 21:27:57
Score: 2.5
Natty:
Report link

After some investigation, I realized what was happening when I saw a line of code from a different file showing up in the error message, even though I was working on a different script. It turns out I had named my script code.py, which clashed with Python’s built-in code module. So, when Python tried to import the code module, it ended up importing my script by mistake, causing the error. The fix was simple: I just renamed my script to something other than code.py, and that resolved the issue.

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

79372673

Date: 2025-01-20 21:25:56
Score: 4
Natty: 5
Report link

Does anyone know how would this work on a clustered NiFi?

I saw it here in the comments but couldn't figure out what the exact answer was.

Reasons:
  • RegEx Blacklisted phrase (2): Does anyone know
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: ofek rotem

79372672

Date: 2025-01-20 21:24:56
Score: 2.5
Natty:
Report link

Check the answers to this question.

The Postgres installation might have edited a required system environment variable.

Also, try installing all packages for an application into a venv to keep track of dependencies

https://docs.python.org/3/library/venv.html

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

79372655

Date: 2025-01-20 21:17:54
Score: 0.5
Natty:
Report link

This sounds like you have a property radius in your intent class/struct. Perhaps you just need to give it an initial value, like so:

@Parameter(title: "My Radius", default: 42)
public var radius: Int
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Thorsten Stark

79372652

Date: 2025-01-20 21:16:54
Score: 1.5
Natty:
Report link

I have seen this happens when dodge is False so add the parameter dodge=True.

For the legend, you can try the parameter legend="brief" (or False).

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

79372643

Date: 2025-01-20 21:12:52
Score: 2.5
Natty:
Report link

The following trick allows the script to gracefully exit without terminating the shell, whether sourced or direct execution:

instead of exit, use this:

[[ $PS1 ]] && return $? || exit $?

Alternately, define this function and call it instead of exit:

    __EXIT__()
   {
       [[ $PS1 ]] && return $1 || exit $1
   }
    ....
    __EXIT__ $?
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Shahid

79372632

Date: 2025-01-20 21:04:50
Score: 0.5
Natty:
Report link

I used these snippets:

In cmp.lua:

return {
  "hrsh7th/nvim-cmp",
  opts = function(_, opts)
    local cmp = require("cmp")
    opts.mapping["<Tab>"] = nil
  end
}

In astrocore.lua:

return {
  "AstroNvim/astrocore",
  options = {...},
  mappings = {
    i = {
      ["<CR>"] = "copilot#Accept('\\<CR>')"
    }
  }
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Mrinal Jain

79372629

Date: 2025-01-20 21:02:50
Score: 0.5
Natty:
Report link

This is really old, but gave it a shot and MariaDB is working fine with Maxwell's Daemon.

Running it in docker with the following CMD:

'bin/maxwell' '--config=/app/config/config.properties'

And config.properties:

log_level=info
producer=stdout
user=maxwell
password=***
host=***
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: bigtech

79372626

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

not sure if this is still worth it, but you can view the available targets for a particular project by running this command nx show project myproject --web, notes that the web flag opens the project overview in the browser.

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

79372624

Date: 2025-01-20 20:58:49
Score: 0.5
Natty:
Report link

If you are working with large repositories or commits containing large files, the git push command may fail because the default buffer (1 MB) is too small.

git config --global http.postBuffer 524288000
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: dubinsky

79372601

Date: 2025-01-20 20:43:46
Score: 1
Natty:
Report link

I just ran into a similar issue with asserting on a locator. Adding an await before the locator in brackets fixed it for me. I'm guessing it will work for page assertions as well. So for your code example it should look something like this:

await expect(await this.page).toHaveTitle("Sign in");
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Yanique Dickson

79372588

Date: 2025-01-20 20:37:45
Score: 1.5
Natty:
Report link

Calling the flushInput flushOutput immediately after opening the port gave this problem also. Introducing 1 sec. sleep before flushing solved it for me.

Raspberrypi4 with arduino via usb is the serial port.

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

79372575

Date: 2025-01-20 20:33:43
Score: 4.5
Natty:
Report link

Isn't just adding a border to page not working?

<style>
   @media print {
      @page {
        size: A4 landscape;
        margin: 10mm;
        border-bottom: 1px solid;
      }
    }
</style>
Reasons:
  • RegEx Blacklisted phrase (2): working?
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Hardik Uchdadiya

79372570

Date: 2025-01-20 20:30:42
Score: 1
Natty:
Report link

Be sure that you also run it on while env active.

Also you can try to make it work from outside

conda run -n env_name python script.py

it runs your script within conda. be sure you are running script and installing packages on same conda env there might be multiple

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

79372557

Date: 2025-01-20 20:23:41
Score: 2.5
Natty:
Report link

Try using conda install if you are in VS code and if you are in pycharm you can try this link

Reasons:
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-1): try this
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: S I

79372553

Date: 2025-01-20 20:21:40
Score: 3
Natty:
Report link

My Facebook ID contains a lot of important information. Which will be needed in my office. If you don't give me the information, I will lose my job. Please return my ID

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

79372551

Date: 2025-01-20 20:20:40
Score: 1
Natty:
Report link

when you create your table, define your auto incrementing column with a type of INT IDENTITY(1,1) that means that it starts at 1 and increments by 1. You do not need to specify the column during the INSERT.

CREATE TABLE TEST_TABLE(
   ID INT NOT NULL IDENTITY(1,1) 
   ...
 )

After inserting you can call a SQL function named SCOPE_IDENTITY() and it will return to you the last integer assigned using the current connection.

What is the difference between Scope_Identity(), Identity(), @@Identity, and Ident_Current()?

Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): when you
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: T McKeown

79372540

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

To share and display your code in an interactive and accessible way, you can set up a simple development environment that supports code viewing and basic actions like git clone. Here's how you can achieve this:

  1. Use a Web-Based VS Code Instance (e.g., Code-Server) Code-Server is an open-source project that lets you run a VS Code instance in the browser. This means you can host it yourself and give people access to view and interact with the code.

  2. Install Git on the Server

  3. Serve Files Using a Web-Based File Browser

  4. Use GitHub Alternatives

  5. Serve Static Code in a Folder

  6. Host on Platforms Like Replit

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

79372537

Date: 2025-01-20 20:14:38
Score: 0.5
Natty:
Report link

I've done this with Dust (a handlebars competitor) because it had a file loader extension. I've done this with React and preact with webpack because it can be configured to produce a single file for the application with no chunks.

Unless Flutter has a file loader extension or you can inject the needed resources with script tags into an inline HTML field you may be out of luck.

Are you trying to extend the NetSuite UI or publish a page externally for customer/vendor use?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: bknights

79372519

Date: 2025-01-20 20:05:36
Score: 1
Natty:
Report link

After 4 hours of trial and error, well done Satya....It turns out that facial recognition on the laptop doesn't play well with Windows App Mobile authentication. In order to get an iPad to connect with your Windows 10 Pro laptop via Windows App Mobile, you need to make sure that your laptop is set to just the password authentication method. If you are currently getting in to your Windows 10 Pro machine via facial recognition, the Windows App Mobile will not authenticate with your machine. Make sure to reboot your machine after setting it to the simple password recognition and then try to authenticate again between your iPad and the lapop or desktop...this did the trick for me. Good luck!

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: Steve Smith

79372518

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

I suppose that you use the lib ng-mocks.

The problem that you describe is exactly the one of this issue: https://github.com/help-me-mom/ng-mocks/issues/10632

Upgrading ng-mocks to 14.13.2 should solve your problem

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

79372512

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

This is an old post but still relevant to my issue. I have two replicas in a k8s cluster. The pods share re-entrant InterProcessMutex on ZK. Now, I want to be able to release the lock held by a thread in pod A from pod B, i.e. from one JVM requested to be release in another JVM. But, an attempt to release in the call-back passed to listener in makeRevocable() will fails since that thread is not the one that holds the lock, and of course the class is not exposing the lock's owner, so unless that metadata is also saved somewhere on ZK to be shared there's no way of knowing it. It seems to me an attempt to release would only work if it's issued somewhere within the same thread. So I find that makeRevocable() doc is rather sparse and in this regard misleading. Also, even InterProcessSemaphoreMutex will only work within the same JVM.

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

79372500

Date: 2025-01-20 19:56:34
Score: 1
Natty:
Report link

I have upgraded Smartsuite Approach databases to MS Access before, but it is NOT just not a simple conversion.

Getting the data out is the first step, then importing into access and ensuring data integrity / formatting.

Then actually using the Smartsuite database to understand what it does and how it does it.

Followed by looking at and code and queries.

Then you have to re-create the forms/reports, queries and code in Access.

Given MS Access has made huge strides to current version, although it is a time consuming, and therefore costly, enterprise, it is well worth it.

Not forgetting that once in MS Access you have the option of putting backend on Azure server so multiple people can access from anywhere.

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

79372498

Date: 2025-01-20 19:56:34
Score: 3
Natty:
Report link

Changing the powershell working directory to the javascript and html file location and starting the server with 'node filename.js' solves the problem instead of using absolute path to start the server. Attributed to David in the comments from the original post.

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

79372496

Date: 2025-01-20 19:55:33
Score: 1.5
Natty:
Report link

One common approach is to use multiprocess, but since said you dont want mutlithread since beginner level i assume you don't like that approach.

Second approach coul be by making bullets to move bit by bit. Currently it looks like an instant translate for bullets.

Trying smaller steps in each iteration of main game while loop allows bullet movement appear like they move in parallel instead of freezing

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

79372493

Date: 2025-01-20 19:53:33
Score: 3.5
Natty:
Report link

It can be done using @Min or @Max annotation like below.

@Min(10) private long fechaPago;

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Min
  • User mentioned (0): @Max
  • Low reputation (0.5):
Posted by: Nizam

79372490

Date: 2025-01-20 19:53:33
Score: 2.5
Natty:
Report link

In my case, waiting for the project to be fully indexed was enough.

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

79372487

Date: 2025-01-20 19:51:32
Score: 3
Natty:
Report link

Faced with the same issue.

Try to downgrade the boto3 dependency to 1.35.99 version.

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

79372486

Date: 2025-01-20 19:51:32
Score: 1
Natty:
Report link

Try running this first:

sudo apt-get update

Then, try re-running:

sudo apt-get install gcc-multilib

This resolved it for me.

Reference: https://askubuntu.com/a/1261643/1189613

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

79372483

Date: 2025-01-20 19:48:32
Score: 3.5
Natty:
Report link

Please ensure your tenant is linked to the azure subscription. I also faced same issue, here are more details https://kluginfotech.com/blogs/blogs/msazure/azure-ad-b2c-setup-what-you-need-to-know-before-starting/

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

79372476

Date: 2025-01-20 19:47:31
Score: 4
Natty:
Report link

None of this works on my Android phone.

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

79372462

Date: 2025-01-20 19:44:29
Score: 5.5
Natty: 4.5
Report link

enter image description here

~/.redisclirc/.pine

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mico_Foundation Stienberg Jaco

79372461

Date: 2025-01-20 19:43:29
Score: 3.5
Natty:
Report link

This issue is resolved by adding combineReducer as shown below:

import { combineReducers } from "@reduxjs/toolkit"; import authReducer from "./authReducer";

const rootReducer = combineReducers({auth: authReducer, });

export default rootReducer;

Then the contentSlice is displayed in Redux:

combineReducer

Thank you team very appreciated for your support.God bless you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): appreciated
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ismael Sanchez

79372460

Date: 2025-01-20 19:42:28
Score: 1
Natty:
Report link

@kjpus got me on the path to finding this with the specific mention of dependent name, but he didn't submit in the form of an answer so I am putting the answer here explicitly.

So this is due to dependent name resolution and is explained quite clearly on cppref with an example well aligned with my original example code.

Non-dependent names are looked up and bound at the point of template definition. This binding holds even if at the point of template instantiation there is a better match:

#include <iostream>
 
void g(double) { std::cout << "g(double)\n"; }
 
template<class T>
struct S
{
    void f() const
    {
        g(1); // "g" is a non-dependent name, bound now
    }
};
 
void g(int) { std::cout << "g(int)\n"; }
 
int main()
{
    g(1);  // calls g(int)
 
    S<int> s;
    s.f(); // calls g(double)
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @kjpus
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: I Less3 CPP

79372455

Date: 2025-01-20 19:40:28
Score: 3
Natty:
Report link

I hope you caan help me. I use the automation to make calculations when I update the contact. but when I "save" I would like to see the changes, find a way to refresh the contact page.

Reasons:
  • Blacklisted phrase (1): help me
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vicky A.

79372453

Date: 2025-01-20 19:40:28
Score: 2.5
Natty:
Report link

the best solution to host the database on a cloud server like mongo db atlas, ad your host address to the list of allowed iP addresses and then connect i to your project maybe using mongoose

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

79372452

Date: 2025-01-20 19:38:27
Score: 5
Natty:
Report link

Found the solution on my own. See

How to capture xpath of a button on a web page

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

79372449

Date: 2025-01-20 19:36:26
Score: 3
Natty:
Report link

no you can't use it like that. You need to use store.dispatch method to achieve the same thing (import store from your redux use the function as thunk)

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

79372445

Date: 2025-01-20 19:34:26
Score: 1
Natty:
Report link

Of course, the main difference is that sleep accepts an argument in seconds while usleep accepts an argument in microseconds. There are 1 million (1,000,000) microseconds in a second.

Also, according to the comments in the PHP documentation on usleep...

"On both MacOS X and Linux the usleep() call seems to consume CPU cycles, whereas sleep() and time_nanosleep() do not."

Source: https://www.php.net/manual/en/function.usleep.php. I cannot attest to the accuracy of this comment, as I have not tested it myself.

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • No code block (0.5):
Posted by: Tim Dearborn

79372437

Date: 2025-01-20 19:26:24
Score: 3
Natty:
Report link

The locale settings in the operating system are decisive. If the language is set to English, then Excel also uses the English format.
Regional settings

Date format

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

79372429

Date: 2025-01-20 19:22:21
Score: 6 🚩
Natty:
Report link

I have the same issue in the past. I found the solution with this other library: https://github.com/eduardovillao/masky-js

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Whitelisted phrase (-2): I found the solution
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Eduardo Villão

79372423

Date: 2025-01-20 19:19:20
Score: 0.5
Natty:
Report link

For me the issue was to set the standalone: true as below code:

@Component({
 selector: 'app-header',
 templateUrl: './header.component.html',
 styleUrls: ['./header.component.css'],
 standalone: true
 })
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Khalid

79372418

Date: 2025-01-20 19:17:19
Score: 4.5
Natty: 5
Report link

I just dont get when U fetch data from db ChangeTracker already track it so making u'r changes and calling SaveChanges() will update those datas. What's the point of UpdateRnage then ?

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

79372416

Date: 2025-01-20 19:16:18
Score: 4
Natty:
Report link

If all other things are correct and checked by you, have you set the path alias for '@' in your jsconfig.json file ?

{
  "compilerOptions": {
    ...
    "paths": {
      "@/*": ["./src/*"]
    }
  }
}

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Anup Gopi

79372411

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

A temporary solution is to change spring.jpa.hibernate.ddl-auto=create in application.properties to =none so that it doesn't try to delete and recreate the database, fresh, for each run. Obviously, this isn't the proper solution, but it will do me for now and hopefully get someone else by till a better answer appears.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Josh Borthick

79372407

Date: 2025-01-20 19:14:17
Score: 0.5
Natty:
Report link

Maybe you should adjust the screen with LocalConfiguration.current.screenHeightDp ? You can try something like this:

val sheetState = rememberModalBottomSheetState(
    skipPartiallyExpanded = true
)
val screenHeight = LocalConfiguration.current.screenHeightDp.dp

ModalBottomSheet(
        onDismissRequest = { /*your action*/ },
        sheetState = sheetState,
        tonalElevation = 72.dp,
        dragHandle = {}
    ) {
        Column(
            modifier = Modifier
                .heightIn(max = screenHeight * 0.93f)
                .fillMaxWidth()
        ) {
/* your modal content */
    }

0.93f - this is the maximum height to which the modal will expand. You can customize it according to your needs

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

79372406

Date: 2025-01-20 19:14:17
Score: 0.5
Natty:
Report link

I found the following pages and they walk through the steps to accomplish this. They work.

I didn't copy those web pages across to here because that's a 1/2 hour job or longer. With a -1 vote I'm figuring this is not a topic of interest for others, so not worth the time.

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-2):
Posted by: David Thielen

79372405

Date: 2025-01-20 19:14:17
Score: 0.5
Natty:
Report link

For me the issue was to set the standalone: true as below code:

@Component({
 selector: 'app-header',
 templateUrl: './header.component.html',
 styleUrls: ['./header.component.css'],
 standalone: true
 })
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Khalid

79372393

Date: 2025-01-20 19:05:15
Score: 2
Natty:
Report link

I was able to get this working. I edited the hubble-ui service and set the type to NodePort

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

79372390

Date: 2025-01-20 19:04:15
Score: 1.5
Natty:
Report link

SVN is a pretty old version control tool at this point. You're probably going to need to ask the admin to install an app such as https://marketplace.atlassian.com/apps/1212265/svn-gateway-subversion-links-in-jira?tab=overview&hosting=cloud

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

79372357

Date: 2025-01-20 18:46:11
Score: 2
Natty:
Report link

You need to make sure that shape exists, wrap it with an if (schema instanceof ZodObject) {

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mateus Enrick Pitura

79372352

Date: 2025-01-20 18:44:11
Score: 1.5
Natty:
Report link

In my case, I got the error because I updated the version of a particular library. Use Ctrl + C or Cmd + C and rerun the project.

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

79372339

Date: 2025-01-20 18:39:10
Score: 0.5
Natty:
Report link

First, download the full ranges file from International ISBN Agency. This file will include Registration Groups. Each group has Rules for each publisher range. The ranges are seven digit numbers. The file also always contains the ISBN-13 prefix, so if you are trying to hyphenate an ISBN-10, just add 978 before it and you should be able to find which group to use.

Next, you will need to take the next 7 digits after the first 4 for ISBN-13 or the next 7 digits after the first digit for ISBN-10. Wherever that number falls in the publisher ranges tells you how many digits of the 7 are actually the publisher code. The last digit is the check digit. It can be 0-9 or X (which stands for 10). The rest of the digits are the book code.

One more thing. Even though ISBN-10 and ISBN-13 have the same publisher code and book code so that they look similar, they will not have the same check digit. You can translate an ISBN-10 to ISBN-13 but you will need to use the right algorithm to determine the check digit for ISBN-13. Find that here.

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

79372338

Date: 2025-01-20 18:38:10
Score: 0.5
Natty:
Report link

I had the same issue, i tried everything, but reinstall node_modules helped me.

so, try delete node_modules and delete package-lock.json. and run npm install.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • No code block (0.5):
Posted by: Dax

79372336

Date: 2025-01-20 18:37:09
Score: 1
Natty:
Report link

{"currentState":{"4254160482542923":{"source":"www","schema":{"name":"netflixApp","version":"1.683.0"},"type":["Log","Session"],"id":4254160482542923,"sequence":1,"time":1737396598769},"4254162542683711":{"inputTime":1737396659504,"type":["UserInputTime"],"id":4254162542683711}},"reverseDeltas":[[1],[{"type":["SessionEnded"],"id":4254162616650143,"sequence":18,"time":1737396659506,"duration":1,"sessionId":4254162577051042},{"inputKind":"password","type":["ValidateInput","Action","Session"],"id":4254162577051042,"sequence":17,"time":1737396659505},1],[1],[{"type":["SessionEnded"],"id":4254162671861564,"sequence":20,"time":1737396659662,"duration":0,"sessionId":4254162646152823},{"view":"login","command":"SignInCommand","type":["Navigate","Action","Session"],"id":4254162646152823,"sequence":19,"time":1737396659662},{"memberIdInputKind":"email","type":["MemberIdInputState"],"id":4254160558474487},1],[1],[{"type":["SessionEnded"],"id":4254162726834740,"sequence":22,"time":1737396659662,"duration":0,"sessionId":4254162705482550},{"command":"SignInCommand","view":"login","type":["SignIn","Action","Session"],"id":4254162705482550,"sequence":21,"time":1737396659662},1],[{"view":"passwordInput","duration":6648,"pasted":true,"type":["InputDuration","DiscreteEvent"],"id":4254162777831647,"sequence":23,"time":1737396659663},1],[{"view":"memberIdInput","duration":13541,"pasted":true,"type":["InputDuration","DiscreteEvent"],"id":4254162824407237,"sequence":24,"time":1737396659663}]],"type":"CompactConsolidatedLoggingEnvelope","version":2,"clientSendTime":1737396664512}

how can i find payload position password=value

Reasons:
  • Blacklisted phrase (0.5): how can i
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Khaled Bei

79372331

Date: 2025-01-20 18:33:09
Score: 1.5
Natty:
Report link

Using the example: This code uses binary search it splits between arr[1] and arr[2]. In the loop the mid is 10 and since it is greater than 5 arr[mid] > arr[mid + 1] h=1 which is the index of 10. It goes through the loop again and checks between 0 and 10 and the index of 10 is returned.

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

79372320

Date: 2025-01-20 18:28:08
Score: 2
Natty:
Report link

I deleted the folder node_modules and I downgraded my vite dependency to 5.0 in package.json and package-lock.json and then run npm install && npm run build and it worked.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Benjamín Sierra

79372315

Date: 2025-01-20 18:27:07
Score: 1.5
Natty:
Report link

Jerome:

Based on this post and your, answer I was able to solve the issue. The problem is that I'm working with SolidWorks PDM another layer of complexity.

PDM is marking the "res" = 1 if the file is read only (or checked-in into the vault)

And "res" = 0 is not read only (if the PDM document is check-out and available for write)

Based on your reply and the post, I was able to play around and make it work with the following:

Dim swApp As SldWorks.SldWorks
Dim Part As SldWorks.ModelDoc2
Sub main()
Set swApp = Application.SldWorks
Set Part = swApp.ActiveDoc
 
On Error Resume Next
Dim FilePath As String
Dim PathSize As Long
Dim PathNoExtension As String
Dim NewFilePath As String
Dim res As Long

FilePath = Part.GetPathName

PathSize = Strings.Len(FilePath)
PathNoExtension = Strings.Left(FilePath, PathSize - 6)
NewFilePath = PathNoExtension & "pdf"
   
res = GetAttr(NewFilePath)

If res = 0 Then
    Part.SaveAs2 NewFilePath, 0, True, False
    Exit Sub
Else
    MsgBox "PDF File is not CHECK OUT"
End If

End Sub

Now I need to figure out the commands to simply Check it out and Check it in automatically from PDM and not force the user to do it manually.

Thank you so very much!.

Adrian

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (0.5): Check it out
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Adrian Crisci

79372311

Date: 2025-01-20 18:26:07
Score: 0.5
Natty:
Report link

I think this method of storing variables will always cause you trouble. You should probably be keeping variables that cross "project" (i.e. environment, deployment) boundaries in your inventory.

The trouble with trying to pick out variables from another folder tree is that there is an algorithm to it. It is loading variables to a group, then the host takes those variables from the group construct.

To try to emulate this you would need to loop through all the groups that host had or {{ group_names }} to see if there is a file to load, or if there is a folder, and if there is a folder, then load all the files in that folder, but only if they are .json, .yml, or .yaml .

And again, back to the original point. If the variables in 'deployment' are applicable to 'environment' based on groups, they really should be in your inventory as group variables.

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

79372308

Date: 2025-01-20 18:26:07
Score: 1
Natty:
Report link

1.) hmm. Its likely that when you are using the debugger tool its mounting a port or attaching a "remote debugger" or thread.

2.) Well if the port is being managed by the IDE, it makes sense that it wouldnt be available if you stop the debugger in the IDE

3.) Its probably configured that way in the application settings to bring down containers / volumes wether dangling or not

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

79372305

Date: 2025-01-20 18:22:06
Score: 0.5
Natty:
Report link

The answers above don't work for mongodb 6. My workaround ;

import { ObjectId } from "mongodb";

const ids = ["6786b6789020e854f0099c0a", "6786b6789020e854f0099c0b"]
const userList = await db.collection("user")
    .find({ _id: { $in: ids.map(_id => ObjectId.createFromHexString(_id)) } })
    .toArray();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Eternal Dreamer

79372303

Date: 2025-01-20 18:22:06
Score: 3
Natty:
Report link

As of January 2025, the selected parameter in updatebs4TabItems now requires the tab's id, not it's numerical position in the list.

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

79372285

Date: 2025-01-20 18:11:04
Score: 0.5
Natty:
Report link

In short, no.

From cppreference:

A defaulted comparison operator function is a non-template comparison operator function (i.e., <=>, ==, !=, <, >, <=, or >=) satisfying all following conditions:

  1. It is a non-static member or friend of some class C.
  2. It is defined as defaulted in C or in a context where C is complete.
  3. It has two parameters of type const C& or two parameters of type C, where the implicit object parameter (if any) is considered to be the first parameter.

You can't make the comparison operator a friend of a C structure to meet the 2nd criterion.

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

79372283

Date: 2025-01-20 18:10:04
Score: 1.5
Natty:
Report link

Check out apache2.service.

[Service]
Type=forking
Environment=APACHE_STARTED_BY_SYSTEMD=true
ExecStart=/usr/sbin/apachectl start
ExecStop=/usr/sbin/apachectl graceful-stop
ExecReload=/usr/sbin/apachectl graceful
KillMode=mixed
**PrivateTmp=true**
Restart=on-abort
OOMPolicy=continue
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Mark

79372256

Date: 2025-01-20 17:58:01
Score: 2.5
Natty:
Report link

Use HTML

itemName = [ itemName ];

Now you can put unicode characters in your itemName. But if you have thousands of items, it will slow down your GUI printing.

Reference: https://undocumentedmatlab.com/articles/html-support-in-matlab-uicomponents

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

79372247

Date: 2025-01-20 17:55:00
Score: 1
Natty:
Report link

You need to request access to Advertising API in the products tab:

Image of the Advertising API within Linkedin Developer portal

Once you have access the this API you will see other permissions added to your OAuth 2.0 scopes tab of you app.

Added permission on OAuth 2.0 scopes tab

After that, you need to generate a new Access Token using OAuth 2.0 tools ( link below ) :

https://www.linkedin.com/developers/tools/oauth?clientId={YOUR_CLIENT_ID}

Finally you can send the request to post using Bearer Token Auth Type.

I hope that helps.

Reasons:
  • Whitelisted phrase (-1): hope that helps
  • Probably link only (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: nael.fridhi

79372241

Date: 2025-01-20 17:54:00
Score: 3
Natty:
Report link

I got the same error. When running from interactive shell I can import torch but can't use Tensor or tensor. Module torch has no attribute error.

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

79372233

Date: 2025-01-20 17:52:00
Score: 0.5
Natty:
Report link

For Next.js +15

// eslint.config.mjs

const eslintConfig = [
  ...compat.extends("next/core-web-vitals", "next/typescript", {
    rules: {
      "@typescript-eslint/no-explicit-any": "off",
    },
  }),
];
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ali Hammad

79372223

Date: 2025-01-20 17:48:59
Score: 2
Natty:
Report link

declare @dt as datetime = '1/20/2025'

while DATEPART(dw, @dt) <> 6 BEGIN SET @dt = @dt + 1 END

select @dt

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

79372213

Date: 2025-01-20 17:43:58
Score: 1
Natty:
Report link

The workaround is described in below answer on intellij forum

https://intellij-support.jetbrains.com/hc/en-us/community/posts/23064675521682/comments/23204746556050

as answer is suggesting to include

<version>${lombok.version}</version>

against lombok annotation processor configuration in your pom.xml.

Above solution worked for me!

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Syed

79372201

Date: 2025-01-20 17:39:57
Score: 1
Natty:
Report link

Callback URL, also known as redirect_uri in terms of OAuth2 protocol (see RFC 6749, Section 3.1.2 for more details), is the URL where the authorization server will redirect to, together with the received authentication token. And the received side must handle that properly.

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

79372196

Date: 2025-01-20 17:37:56
Score: 1
Natty:
Report link

By using site set via config/sites/config.yaml

dependencies:

it is recommend to unlcheck the clear-flags in the Advanced Options tab in BE TypoScript-module in order to prevent that the Site Set is overriden.

"If the website uses a mixed setup consisting of a TypoScript template (sys_template) and site sets, it is important to uncheck the "Clear" flag for constants and setup in the TypoScript template. If the "Clear" flag is checked (default), TypoScript settings from site sets are cleared and do therefore not apply."

refer to https://docs.typo3.org/m/typo3/reference-coreapi/main/en-us/ApiOverview/SiteHandling/SiteSets.html#site-sets-typoscript

You may deactivate the whole template record, but don't forget to include ts from extension via dependencies in your config.yaml. Notice than up to now not all ext. are site set ready, so this way could cause problems.

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