79398891

Date: 2025-01-30 05:43:51
Score: 2.5
Natty:
Report link

I think the concept of https://stackoverflow.com/a/38591471/3872647 is correct, but overwriting code this way will likely lead to incompatiblities in the future which trips up new developers.

This post describes a better way by setting TestCase::$seed = true, where --seed is only executed once per test class https://masteringlaravel.io/daily/2023-12-04-you-dont-need-to-manually-run-seeders-in-your-tests

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: bilogic

79398886

Date: 2025-01-30 05:40:50
Score: 2
Natty:
Report link

I Hit the same error while trying to reach endpoints on a Sample HTTP service on IBM ACE 12...

Solution for me was:

changing the port on postman from node to server node worked...it was actully listening to integrastion server port not the Integration node port.

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

79398879

Date: 2025-01-30 05:37:49
Score: 3.5
Natty:
Report link

Use Configuration.addAnnotatedClass(com.simpleprogrammer.User);

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Srinivas Gurrapu

79398858

Date: 2025-01-30 05:28:47
Score: 6.5
Natty: 7.5
Report link

We are trying to create an external table from Google Bigquery Console. How can we give scope in this environment ?

Reasons:
  • Blacklisted phrase (1): How can we
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Manjith Gunatilaka

79398849

Date: 2025-01-30 05:22:45
Score: 2.5
Natty:
Report link

Radox Overseas Pvt Ltd is a top-rated Maltodextrin Powder Manufacturer in India. With any years of industry experience, we offer high-quality maltodextrin powder, ideal for various sectors, ensuring superior performance and customer satisfaction worldwide.

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

79398847

Date: 2025-01-30 05:21:44
Score: 4.5
Natty:
Report link

According to below github link, this is work in progress. should be available soon. https://github.com/Azure/azure-cli/issues/28506

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

79398844

Date: 2025-01-30 05:18:43
Score: 3
Natty:
Report link

checkout this AI powered personal medical advisor: https://md.ulixlab.com/

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

79398842

Date: 2025-01-30 05:16:42
Score: 3
Natty:
Report link

I faced smae problem then I just hit the command as php artisan optimize:clear and issue solved the connection is estblish

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

79398837

Date: 2025-01-30 05:13:42
Score: 1.5
Natty:
Report link

What JeffC answered is correct. Either you check if a specific element on the page has loaded or you wait for the timeout(which you can set yourself to however long you want).

A page "not loading" will display the browser timeout window, which you can check for, but even if the timeout is reached, it doesn't mean the page wouldn't have loaded eventually so it's impossible to tell that it won't load, it all depends on how patient you want to be in waiting for it to do so.

Since you can only check and wait for one element at a time in selenium, what you want to do if you don't want to wait for the timeout of each sequentially is to manually do a loop(with a custom timeout checking the current time + however long you want) that constantly search for each element presence on the page and once one is found, you break the loop and you know which page loaded(what you want, the website error or the browser timeout or whatever else you want to check for).

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Sam Kook

79398834

Date: 2025-01-30 05:11:42
Score: 0.5
Natty:
Report link

Not only can you include target framework values in the .csproj file, if you don't you get the warning described above. Adding the version number removed the warning and the icon...

  <TargetFrameworks>net48;net8.0-windows10.0.17763</TargetFrameworks>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: David

79398830

Date: 2025-01-30 05:05:41
Score: 3
Natty:
Report link

I got similiar err, but after a day i able to solve the problem that came from my stupidity.

In the enviorements Don't use :

.env

DBPASS:"this is your password"

Instead use :

.env

DBPASS="this is your password"

**I don't know if you have same issue or not becouse i didn't see your enviorements file up there :D

Hope it'll help you.

Reasons:
  • Has code block (-0.5):
  • Me too answer (2.5): have same issue
  • Low reputation (1):
Posted by: Handung Fakihudin

79398826

Date: 2025-01-30 05:03:40
Score: 2.5
Natty:
Report link

remove @unique from username field

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

79398825

Date: 2025-01-30 05:01:40
Score: 0.5
Natty:
Report link

Starting with 2.9.0 all gateway connections always use interest-only mode:

Phasing out of the "optimistic" mode whereby a server could send messages to the remote cluster without knowing if there was an interest or not. The remote cluster would reply with a "no interest" protocol. As of v2.9.0, servers that creates a gateway connection to a server of that version (and above) will no longer send messages in optimistic mode since it is assumed that all accounts will be switched to interest-only mode (where the subscription interest map is sent over) (https://github.com/nats-io/nats-server/pull/3383)

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

79398808

Date: 2025-01-30 04:50:37
Score: 5.5
Natty:
Report link

As mentioned by @Gaston, https://scala-slick.org/doc/devel/sql.html#splicing-literal-values -> I need to use #$ for string interpolation.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • User mentioned (1): @Gaston
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Janani

79398805

Date: 2025-01-30 04:50:37
Score: 2.5
Natty:
Report link

For me the issue came after an update of window 11, and was using VS2022. and by updating VS2022, it got fixed without any other tweaks

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

79398801

Date: 2025-01-30 04:48:36
Score: 0.5
Natty:
Report link

The File isn't being patched. That's not a problem. You've not described an error state.

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

79398778

Date: 2025-01-30 04:27:32
Score: 3.5
Natty:
Report link

While it's not exactly the candy jar you're looking for, here's a relatively equivalent example I've found: https://universe.roboflow.com/srm-university-3eblt/box-af0tc (and my original query https://universe.roboflow.com/search?q=candy%20jar).

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

79398776

Date: 2025-01-30 04:26:31
Score: 2
Natty:
Report link

In Redmi MIUI 14.0.5, in Settings, I enabled "USB Tethering" and it immediately disabled the option by itself and mtp: showed the Internal Storage Folder in the file manager. I had been struggling for a long time with different distros (in Windows there was no problem). It was some bug that started occurring in some smartphone update...

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

79398769

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

if ($run) { $id =$conn->insert_id; $sql = "select id , firstname , lastname , email , phoneno ,password from todo where id = '$id'"; $run = mysqli_query($conn, $sql); $userData = mysqli_fetch_assoc($run); $_SESSION['loginid'] = $id; $_SESSION['logindata'] = $userData; $returndata["success"] = true; $returndata["msg"] = "Data inserted successfully"; } else { $returndata["msg"] = "data not inserted successfully"; }

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

79398764

Date: 2025-01-30 04:17:29
Score: 1.5
Natty:
Report link

This drove me absolutely crazy. For me the answer was that I accidentally had an older version of clang/llvm installed with homebrew.

brew unlink llvm
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: sudosudo

79398762

Date: 2025-01-30 04:14:28
Score: 1.5
Natty:
Report link

I don't know if you got this working. After much testing, it looks like the only problem in your code is the timestamp. Use date('YmdHisz')

Looks like $nonce can be any random string. Length does not appear to matter. I used a simple random alpha-numeric string generator with various random lengths. All worked.

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

79398760

Date: 2025-01-30 04:13:28
Score: 1
Natty:
Report link

For anyone else facing an issue, put this into your config

 @Override
public boolean configureMessageConverters(List<MessageConverter> messageConverters) {
    messageConverters.add(new MappingJackson2MessageConverter());
    return false; 
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Samasth Nayak

79398756

Date: 2025-01-30 04:12:28
Score: 0.5
Natty:
Report link

The correct way is to set read-only in the Form class, in this case the example code could be:

class ExampleForm(BaseForm):
    name = forms.CharField(label=_('Name'), required=True, widget=forms.TextInput(attrs={'readonly': 'readonly'}))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: FedeG

79398754

Date: 2025-01-30 04:10:27
Score: 1.5
Natty:
Report link

To override the default error messages from zod types (i.e. invalid_type), you can optionally provide the errorMap parameter; for example:

z.object( { errorMap: () => ( { message: '[message]' } ) } )

Per, https://github.com/colinhacks/zod/discussions/3094#discussioncomment-7984907

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

79398746

Date: 2025-01-30 04:04:26
Score: 0.5
Natty:
Report link

This is a highly nonstandard schema for your table. Is it a requirement to create a new column when the user takes action in your application?

In SQL, it's preferred to maintain a relationship between data. For example, your example above could be modeled by a table with four columns: User, Day, Transaction Amount, Balance To Date.

From there, you could use a SELECT subquery to get the latest "Balance To Date" and use that to create a new row in the table for your user.

For example:

INSERT INTO account_balances (user, day, amount, balance)
SELECT 'username', 
        1, 
        100, 
        COALESCE(SELECT balance 
                 FROM account_balances 
                 WHERE user = 'username' 
                 ORDER BY day DESC 
                 LIMIT 1
                ), 0) + 100;

The COALESCE keyword is to handle the case where it's the first time inserting into the table for a given user.

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

79398743

Date: 2025-01-30 04:01:25
Score: 4
Natty:
Report link

is JDK is installed in your conputer? if not try install jdk

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Omar

79398734

Date: 2025-01-30 03:57:24
Score: 1
Natty:
Report link

It happened to me, though at that time VSCode wasn't really a thing yet.

For Python, I used Anaconda. It come packed with so much packages that only for very specific edge cases you would need to bundle extra packages.

Concerning VSCode, you can prepare what you need, and download the list of extensions to install on the target machines from a USB Key. Not ideal, but for starting with Python, not much is needed.

You could also select another IDE, I agree that PyCharm is a good start and many of my colleagues started with this program, our formation session use also this IDE to teach the basics of Python. Or go lighter. A Notepad++ can be enough for starters.

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

79398730

Date: 2025-01-30 03:55:23
Score: 3.5
Natty:
Report link

I moved the function referenced in the code out of its own header and into the main function and just bundled everything together and now it works...

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

79398719

Date: 2025-01-30 03:42:20
Score: 6.5 🚩
Natty: 5.5
Report link

How do we configure the index?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How do we
  • Low reputation (1):
Posted by: Phúc Tĩnh

79398718

Date: 2025-01-30 03:39:19
Score: 4
Natty: 4.5
Report link

Mere ko diamond chahie bhaiya please

Mere pass ek bhi time nahin hai please bhai Please bhai sahab time and de do bhai sahab Please bhai humko payment de do bhaiya please bhai humko payment de do

Reasons:
  • RegEx Blacklisted phrase (2): bhai
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Darma

79398714

Date: 2025-01-30 03:34:16
Score: 11.5 🚩
Natty: 6.5
Report link

can u share your package.json ? cause i have the same issue and didn't find where is the problem yet ?

Reasons:
  • Blacklisted phrase (1): i have the same issue
  • RegEx Blacklisted phrase (2.5): can u share your
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i have the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): can u share you
  • Low reputation (1):
Posted by: mohammed

79398713

Date: 2025-01-30 03:34:16
Score: 2.5
Natty:
Report link

https://react.dev/reference/react/StrictMode

React strict mode renders your object twice to catch potential bugs early on. This is why you need to "Reset Filters" twice to see it clear up.

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

79398711

Date: 2025-01-30 03:33:16
Score: 2.5
Natty:
Report link

Looking at your file, you would need to skip the first two rowd specifying skip=2

data = read.csv(file="/mydir/myfile.csv", skip = 2, sep=";", header=T)

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

79398706

Date: 2025-01-30 03:28:13
Score: 8 🚩
Natty: 5.5
Report link

Even I'm facing same issue any solution

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tendulkar Suriya

79398692

Date: 2025-01-30 03:14:09
Score: 3
Natty:
Report link

how can I fix this code

"

Error

Call to undefined function Illuminate\Filesystem\symlink()

at vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:355 351▕ */ 352▕ public function link($target, $link) 353▕ { 354▕ if (! windows_os()) { ➜ 355▕ return symlink($target, $link); 356▕ } 357▕ 358▕ $mode = $this->isDirectory($target) ? 'J' : 'H'; 359▕

  +13 vendor frames

14 artisan:35 Illuminate\Foundation\Console\Kernel::handle()"

Reasons:
  • Blacklisted phrase (0.5): how can I
  • Blacklisted phrase (1): how can I fix this
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): how can I fix this code
  • Low reputation (1):
Posted by: Dustin Oclarit

79398690

Date: 2025-01-30 03:10:08
Score: 3
Natty:
Report link

The same thing happens to me but I haven't been able to solve the fact that eslint doesn't give me a custom class error with my custom classes in tailwind.config.js. How do I solve it without needing to add all my classes in a white list?

        tailwindcss: {
            config: './tailwind.config.js',
            cssFiles: [
                '**/*.css',
                '!**/node_modules',
                '!**/.*',
                '!**/dist',
                '!**/build',
            ],
            callees: ['classnames', 'clsx', 'ctl'],
            tags: ['tw'],
            classRegex: '^class(Name)?$',
            cssFilesRefreshRate: 5000,
            skipClassAttribute: false,
            exposeConfiguration: true,
            whitelist: []
Reasons:
  • Blacklisted phrase (1): How do I
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Jose

79398689

Date: 2025-01-30 03:09:08
Score: 2
Natty:
Report link

It looks like ChartsAxisHighlight isn’t functioning as expected in your MUI ResponsiveChartContainer, even though other chart elements work fine. Double-check if axisHighlight="line" is properly supported in your MUI version, or consider alternative implementations like a custom vertical line overlay. If you’re exploring AI-powered solutions, check out Twix.chat a free AI chat platform (4o) that enhances communication with intelligent conversations and real-time messaging.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Straight-Dog-8569

79398680

Date: 2025-01-30 02:57:04
Score: 6 🚩
Natty:
Report link

For someone who might have the same issue as I did, don't download the aarch version for windows. enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): have the same issue
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: n a

79398670

Date: 2025-01-30 02:47:01
Score: 2.5
Natty:
Report link

If the task does not require administrator permissions, you can put a shortcut to it in C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\.

https://learn.microsoft.com/en-us/answers/questions/116579/server-2019-started-task-(windows-forms-app)-in-sc

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

79398667

Date: 2025-01-30 02:45:01
Score: 0.5
Natty:
Report link

When running on Windows, the default script handler in Azure DevOps uses cmd.exe, unless you explicitly change it.

Which is causing your partial outputs for strings that contains cmd-reserved characters, cmd is trying to parse %...% as an environment variable or uses & to chain commands.

Either switch to PowerShell on Windows or escape it properly.

Me personally, I'd recommend you to use the PowerShell approach.

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: tcortega

79398666

Date: 2025-01-30 02:45:01
Score: 2
Natty:
Report link

In my experience, you have to install and add google-calendar plugin exactly.

1.Install @fullcalendar/google-calendar. 2.import googleCalendarPlugin from "@fullcalendar/google-calendar"; Please do that and let me know if there is another issue.

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

79398662

Date: 2025-01-30 02:42:00
Score: 2.5
Natty:
Report link

You could use the Team configuration in Project settings. enter image description here

enter image description here

View permission for this node could limit the area path that you could see.

View work items in this node could limit your access to work items in this area path.

And these settings will also affect the querying work item.

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Jiawei Shi - MSFT

79398655

Date: 2025-01-30 02:32:58
Score: 4
Natty: 5
Report link

what helped me was using "use client" on the page where i use these hooks

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): what help
  • Low reputation (1):
Posted by: QuZ1_Highlights

79398654

Date: 2025-01-30 02:29:57
Score: 1.5
Natty:
Report link

To make sure your Catalyst Job Function runs smoothly without delays, you need to allocate enough memory for your Job Pool. The Job Pool’s memory should be more than what your function needs, including the extra load from API calls. If your function needs X GB, it's best to set at least X + 1 GB to avoid issues. Instead of using just one Job Pool, you can split tasks into multiple Job Pools to handle different workloads better.

For example, you can use a priority Job Pool (4GB-5GB) for important jobs like payment reminders and a general Job Pool (3GB-4GB) for less urgent tasks like sending emails. This way, critical jobs won’t get delayed when there’s a high load. Keep an eye on memory usage and adjust it if needed. Since the maximum memory per Job Pool is 10GB, make sure your setup matches your workload. Following this approach will help your jobs run smoothly without hitting memory limits.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • RegEx Blacklisted phrase (2): urgent
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sarah B

79398643

Date: 2025-01-30 02:23:56
Score: 3
Natty:
Report link

PyCharm is good for that. But it's quite chunkier than VS-Code.

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

79398628

Date: 2025-01-30 02:15:54
Score: 2
Natty:
Report link

tengo un problema cuando intento cargar los valores de los campos de la estrutura, el valor de PASSWORD se pone de manera arbitratia XXX, y este no es su valor. aqui les adjunto el codigo para que me ayuden con este caso por favor.

    valor_de_conexion = psycopg2.connect(
        password = config_dict['contrasena'],
        host=config_dict['direccion_ip_servidor'],
        database=config_dict['nombre_base_datos'],
        user = config_dict['nombre_usuario'],
        port = config_dict['puerto']
    )

asi le ponga la palabra "CASA" siempre siempre pone XXX en el campo password

Reasons:
  • Blacklisted phrase (2): tengo
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Martin

79398624

Date: 2025-01-30 02:11:53
Score: 1.5
Natty:
Report link

This can be tested by using the ->withFakeQueueInteractions() method when instantiating the job.

use App\Exceptions\CorruptedAudioException;
use App\Jobs\ProcessPodcast;
 
$job = (new ProcessPodcast)->withFakeQueueInteractions();
 
$job->handle();
 
$job->assertReleased(delay: 30);
$job->assertDeleted();
$job->assertNotDeleted();
$job->assertFailed();
$job->assertFailedWith(CorruptedAudioException::class);
$job->assertNotFailed();

See more: https://laravel.com/docs/11.x/queues#testing-job-queue-interactions

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Fabián Álvarez

79398611

Date: 2025-01-30 02:01:51
Score: 1.5
Natty:
Report link

There seems no issue with your code example, it shouldnt have an hydration error since same data is present/render in both server and client side from what I can see. Nevertheless, I would suggest you following this guide of how setting up a global prisma client, where you dont need to disconnect after querying something. Also from a React standpoint, I dont see a good use case for having the Email component so far, you could just use the li element in the page.tsx file, to avoid prop drilling and so.

Try making these changes and see if it still happens. If so, please share an image of the hydration error instead of your explanation. Hope it helped😁

Reasons:
  • Blacklisted phrase (1): this guide
  • Whitelisted phrase (-1): Hope it help
  • RegEx Blacklisted phrase (2.5): please share
  • Long answer (-0.5):
  • Has code block (-0.5):
Posted by: Agustin Moles

79398608

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

with self.assertNoLogs("", level="ERROR")

reference: https://docs.python.org/3/library/unittest.html#unittest.TestCase.assertNoLogs

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

79398607

Date: 2025-01-30 01:58:50
Score: 1
Natty:
Report link
<script src = https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js'></script>

change to

<script src = 'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js'></script>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nattawat love thailand

79398605

Date: 2025-01-30 01:53:49
Score: 1.5
Natty:
Report link

wondering if you have the Minio service behind Cloudflare proxy. Have you tried to turn off proxy and leave DNS only in Cloudflare for both the Minio console and Minio URLs? I just had the same issue and it was just a matter of turning off Cloudflare’s proxy. Some setting might be causing that issue, don't know which one. Would love to know if anyone finds out.

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: biolimbo

79398602

Date: 2025-01-30 01:52:49
Score: 1.5
Natty:
Report link

For anyone who comes across this later, try this:

https://learn.microsoft.com/en-us/visualstudio/ide/reference/startup-environment-options-dialog-box?view=vs-2019

Tools -> Options... -> Environment -> General -> On startup, open: Start Window

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

79398601

Date: 2025-01-30 01:51:49
Score: 3
Natty:
Report link

git config --global --add safe.directory '*'

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

79398593

Date: 2025-01-30 01:47:48
Score: 0.5
Natty:
Report link

CTRL+C (^C) will stop the program running in the terminal. Right click mouse to copy and paste.

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

79398590

Date: 2025-01-30 01:40:47
Score: 3.5
Natty:
Report link

In the most recent android studio the shotcut is CTRL + ALT + ENTER in xml.

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

79398587

Date: 2025-01-30 01:34:46
Score: 2.5
Natty:
Report link

I guarantee I could give you the answer to this, but i'll need to see your code. It's difficult to tell what's going on otherwise. Maybe create a codepen with your code and post the link here.

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

79398584

Date: 2025-01-30 01:33:45
Score: 4
Natty:
Report link

CheckBox inherits from ToggleButton, and this answers explains how Command is guaranteed to execute after IsChecked is modified, with examples from the source code. Perhaps this could be marked as a duplicate, but I don't have reputation to do it.

Reasons:
  • RegEx Blacklisted phrase (1.5): I don't have reputation
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29424857

79398583

Date: 2025-01-30 01:31:45
Score: 3
Natty:
Report link

Here some "propaganda from Microsoft":

Radically Simplified GPU Programming with C#
https://learn.microsoft.com/en-us/shows/seth-juarez/radically-simplified-gpu-programming-c

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

79398582

Date: 2025-01-30 01:30:44
Score: 0.5
Natty:
Report link
require random.fs
: randomize ( -- r ) 
utime drop seed !               \ Initialiser la graine
10 0 do i cr . 3 random . loop  \ génère un nombre aléatoire entre 0 et 2 
; 
randomize .
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Lionel G

79398574

Date: 2025-01-30 01:17:42
Score: 2
Natty:
Report link

user4581301 suggested that I go header surfing. This is what I found:

typedef __UINT32_TYPE__ __uint32_t;
typedef __uint32_t uint32_t ;

Then Why is uint32_t typedeffed to unsigned long on arm-none-eabi GCC, and how to change it? explains that arm-none-eabi-gcc points __UINT32_TYPE__ to long unsigned int but makes them 4 bytes long.

I guess that explains why the compiler doesn't see the match to unsigned long.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): user4581301
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: DanielR

79398572

Date: 2025-01-30 01:16:42
Score: 0.5
Natty:
Report link

I don't think it's an answer to the question, but it's a solution to the problem:

After trying to use the login method, and then capturing a session json file and using that, and when that didn't work I signed up for a Residential Proxy service. And - I can't believe I'm saying this - it turned out that using docker was the simplest solution.

Specifically, building my script into a docker image and setting up a template on my Unraid server (running on my home network, and thus not currently blocked by Instagram) to execute via cron twice a day.

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

79398565

Date: 2025-01-30 01:11:41
Score: 1
Natty:
Report link

Adding this line to .editorconfig turned it off in Visual Studio 2022 Preview.

dotnet_diagnostic.ide2001.severity = none
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Protiguous

79398561

Date: 2025-01-30 01:07:40
Score: 2
Natty:
Report link

For anyone looking for regex for state ids

^(?:[A-Z0-9]{1,7}|[A-Z]{1}[0-9]{7}|[0-9]{9}|[A-Z0-9]{1,9}|[A-Z]{1}[0-9]{8}|[0-9]{2}[A-Z0-9]{6})$
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Rekoper

79398560

Date: 2025-01-30 01:06:40
Score: 3
Natty:
Report link

Not sure if you used the dbgen repo to get the queries but at this repo: https://github.com/electrum/tpch-dbgen, in the README question 8 "What will qgen create", you can find details on the specific :foo's.

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

79398555

Date: 2025-01-30 01:03:39
Score: 3
Natty:
Report link

Why not go with the time and (learn how to) add a favicon?

There are even Favicon Generators. See How TO - Add a Favicon in HTML - W3Schools.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why not
  • High reputation (-1):
Posted by: U. Windl

79398549

Date: 2025-01-30 00:56:38
Score: 1.5
Natty:
Report link

not 100% sure of what you are after, below, a trivial example to capture each char as entered plus catch a couple of signals .... if this is not what you are after (or could form the basis of ... ), please elaborate, also - share what you have tried - regardless of any shortcomings !

//
//use(d) https://www.man7.org/linux/man-pages/man3/termios.3.html as reference
//

#include <termios.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

struct termios currentSettings;

void resetSTDIN(struct termios *currentSettings) {
    tcsetattr(STDIN_FILENO, TCSAFLUSH, currentSettings);  // reset to original settings
}

void setSTDIN(struct termios *currentSettings) {
    struct termios updatedSettings;

    tcgetattr(STDIN_FILENO, currentSettings);  // get current settings

    updatedSettings = *currentSettings;        // use those as basis for new settings

    updatedSettings.c_lflag &= ~ICANON;   // unset 'normal' aka canonical mode, add '|ECHO' if you don't want to see input
    updatedSettings.c_cc[VTIME] = 0;      // VTIME Timeout in deciseconds for noncanonical read (TIME) 0 == no timeout
    updatedSettings.c_cc[VMIN] = 1;       // VMIN  Minimum number of characters for noncanonical read (MIN).

    tcsetattr(STDIN_FILENO, TCSAFLUSH, &updatedSettings);
}

void catchSignals(int sig) {
    resetSTDIN(&currentSettings);
    exit(1);
}

int main() {

    setSTDIN(&currentSettings);

    signal(SIGINT|SIGQUIT, catchSignals);  // trap ^C, ^\ amend as reqd

    printf("[q|Q|^C|^D]' to exit):\n");

    char c;
    const char ctrlD=4;
    while ( read(STDIN_FILENO, &c, 1) == 1 ) {
        if ( c == ctrlD || c == 'q' || c == 'Q' )
        break;

        //printf("%c", c); // if ECHO masked and you want to see the output ...
    }

    resetSTDIN(&currentSettings);
    return 0;
}

Reasons:
  • RegEx Blacklisted phrase (2.5): please elaborate
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ticktalk

79398547

Date: 2025-01-30 00:54:37
Score: 0.5
Natty:
Report link

In my case this was caused by images using lazy loading, thus only loading when in view.

This fixed it for me, add this to the bottom of the script.

let resizeTimeout;

function refreshLenis() {
  clearTimeout(resizeTimeout); // Cancel previous resize calls
  resizeTimeout = setTimeout(() => {
    requestAnimationFrame(() => {
      lenis.resize(); // Recalculate dimensions inside requestAnimationFrame for smoother transitions
    });
  }, 300); // Adjust delay as needed
}

// Refresh Lenis when the page fully loads
window.addEventListener("load", refreshLenis);

// Also refresh Lenis when lazy-loaded images finish loading
document.querySelectorAll("img[loading='lazy']").forEach((img) => {
  img.addEventListener("load", refreshLenis);
});
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: nikolaj

79398543

Date: 2025-01-30 00:52:37
Score: 2
Natty:
Report link

Great job on figuring it out, Sails make models(Waterline models) globally available when they are registered correctly.

You can also access the models via sails.models..

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

79398542

Date: 2025-01-30 00:50:37
Score: 0.5
Natty:
Report link

You were right to say express.js is server-side and AngularJS is client-side but, when you said AngularJS can do everything express.js can do, then you are wrong.

The modern AngularJS is now called Angular, so permit me to use it in a modern way.

The routing you see for both express.js and Angular works in seperate ways.

Here is their routing differences:

Express.js (Backend Routing): Decides which data or HTML the server should send based on the request (e.g., /users fetches user data).

Angular (Frontend Routing): Manages which view (page) to show without reloading the browser (e.g clicking a link changes the page instantly, but must fetch the data from whatever backend server it's depending on).

Think of it like this:

Express.js: Server traffic controller (delivers data by processing or fetching database data, and sending it to the frontend via a defined route/api)

Angular: Browser page switcher (changes UI without reloading).

If you don't define a route in express.js, and you point a link from your Angular (frontend), you will be lead to a 404.

Now let's answer your confusion for Node.js, here are their definitions and differences:

Node.js: A backend runtime that runs JavaScript on the server. It handles database interactions, authentication, and business logic.

Express.js: A backend framework based on Node.js that helps manage routes, APIs, and server logic. Think of it as a tool that makes backend development easier (or jquery to JavaScript on the server side. Without Node.js, express.js can't work)

AngularJS/Angular: Frontend frameworks that build interactive user interfaces (UI) running in the browser. They handle how users see and interact with a website.

Let me break something interesting for you, when you see a website built with Angular and assume the backend is runned by express.js, here is how it all makeup the workflow:

° Hosting hardware >

° Install an OS >

° Install and run an environment +

° Install a web server >

° Install express.js >

° Install Angular

The only visible part users of your website can interact with directly default is the Angular except there's a server misconfiguration or bug.

Note, the running environment and web server have the same system privileges.

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

79398541

Date: 2025-01-30 00:50:37
Score: 2
Natty:
Report link

This worked for me I opened Gemfile and deleted that same line or one very similar and now the install worked like a charm.

Reasons:
  • Blacklisted phrase (1): worked like a charm
  • 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: user29424765

79398540

Date: 2025-01-30 00:48:36
Score: 3
Natty:
Report link

in the bash:
sqlite3 your_sqlite.db <<<'select * from your_table'

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

79398535

Date: 2025-01-30 00:43:35
Score: 0.5
Natty:
Report link

As long as your webserver handles https there is no need to make any next js modification to support it. As the error states, there is no --experimental-https option for next start

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

79398518

Date: 2025-01-30 00:30:32
Score: 2
Natty:
Report link

At least where you can modify the rendering CSS I have just tried "Smaller" and it works in Joplin. Still HTML but no need for long spans etc. I assume some products may remove unknown html.

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

79398508

Date: 2025-01-30 00:21:31
Score: 1.5
Natty:
Report link

Instead of opening files in a+ mode, you should use r+ mode to properly handle both reading and writing. Before performing a read operation, use seek(0) to reset the file pointer to the beginning; otherwise, read() may return an empty value. When comparing the read data, use .strip() to remove unnecessary spaces. Additionally, during the registration process, clearing the file content with truncate() before writing new entries will prevent old data from persisting. These changes will ensure that the login and registration functions work correctly without errors.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Selim Talha Çağlar

79398507

Date: 2025-01-30 00:21:31
Score: 2.5
Natty:
Report link

The problem was that DummyVecEnv is never done, i.e. it never return terminated or truncated as True. This means that evaluate_policy (called here) never increments the count of episodes run and the while loop never ends.

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

79398501

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

The material buttons don't behave same as old buttons do as they don't accept color from background but from theme.xml file. so, to change the background color of a material 3 button just add following code in theme.xml

<item name="colorPrimary">@color/<your-color-here></item>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Gurpinder Singh

79398497

Date: 2025-01-30 00:11:29
Score: 1.5
Natty:
Report link

I think the above answer is out of date:

<DataGrid
   getRowHeight={(params) => 350 }}
/>
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hello Dave

79398491

Date: 2025-01-30 00:08:28
Score: 1
Natty:
Report link

Given the complexity I decided to opt for a simpler approach: if you don't need to get just the filename (you just want to display the image, no specific action), you can directly put the download url of the storage directly. It's not very readable from Firebase side but at least you can easily use it in a <img> tag as you just have to call the key from your store (place.images[0]) for instance in my case.

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

79398487

Date: 2025-01-30 00:05:27
Score: 0.5
Natty:
Report link

There's an even easier way in 2025! Look for your first field in the XML with the issue and add an apostrophe to the data, then save. Bring that file into excel via Dev>Import as normal and it should work! Your first line will the apostrophe in front of the numbers but the rest of the lines will be read as a string! And when you Import again over it, it imports correctly. None of the above workarounds needed!

Example:

Change <SubmissionId>95834620250281987358</SubmissionId> to <SubmissionId>'95834620250281987358</SubmissionId>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Alex

79398473

Date: 2025-01-29 23:50:25
Score: 3
Natty:
Report link

You need to create a new release in order to change the marketing URL field.

field for old release

As you can see in the screenshot above, this field is unavailable. However, when creating a new release, it becomes available: field for new release

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

79398468

Date: 2025-01-29 23:47:24
Score: 4.5
Natty: 7.5
Report link

skibkjdfgnjksfhgkjsdfhgkjsdfhgkjsdfhgkjghgsdfkhgkejdhgrf

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

79398467

Date: 2025-01-29 23:46:23
Score: 4
Natty:
Report link

Debian GNU/Linux system copyright. API ID: 822908ee73dfb2aef927282ab1f2bbf3 Verification Code = [ ******************** ] $ Connection..host..http://+ instagram +/api/%$intec/success.. $ Account:http://instagram/+ Nayraa9149 +/a-%/php.. $ Applying md5()_Algoritm..| $ buffroverflow.c --system--nodir| SEDr_hash] !== $_COOa-%/ =hacked.py � bash � 80x10 $ Applying RSA()_Algoritm... f| - $ Applying map_reduce()... SUCCESS! $ tar -zcvf password.zip *.password = *******| $ Success! Username is: + Nayraa9149 +/encryption/4055001556657& $_GET_password from the link below| _Successfully accessed. to <& date $ buffroverflow.c --system--nodir

Reasons:
  • Blacklisted phrase (1): the link below
  • Blacklisted phrase (1): ¿
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Filler text (0.5): ********************
  • Low reputation (1):
Posted by: Himanshu Kumar

79398459

Date: 2025-01-29 23:44:22
Score: 0.5
Natty:
Report link

I got it, silly typo.

{
  "id": 2,
  "srid": 4326,
  "coordinates": [
 --->[
       [-77.292894, 38.392816, 0], [-77.169498, 38.468925, 0], [-77.204214, 38.568971, 0]
     ]<---
  ]
}

Extra set of brackets so it was getting a List<List<List<Double>>> a mismatch to what the LineWithinRequestID's coordinateList was expecting

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

79398456

Date: 2025-01-29 23:42:21
Score: 0.5
Natty:
Report link

If you want to use just pipenv this might be helpful: https://discussions.apple.com/thread/254226896?sortBy=rank

In case that doesn't work, try adding the following line to the .bash_profile:

alias pipenv="python3 -m pipenv"

alias is not the best solution, but should work.

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

79398448

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

Make sure your .env.production file has

NEXT_PUBLIC_API_MOCKING=disabled
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: pallav deshmukh

79398440

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

for react projects

import Highcharts from 'highcharts'

inside your react component function add

useEffect(() => {
    // Reset all Highcharts charts' zoom
    if (Highcharts.charts) {
      Highcharts.charts.forEach((chart) => {
        if (chart) {
          chart.zoomOut()
        }
      })
    }
  }, [condition1, condition2])

in this situation i have 2 conditions where i want the chart to reset the zoom add your state vars in the useEffect dependency array

Reasons:
  • RegEx Blacklisted phrase (1): i want
  • Has code block (-0.5):
Posted by: JesseBoyd

79398436

Date: 2025-01-29 23:32:19
Score: 0.5
Natty:
Report link

I was facing this issue in staging and production where I was building my application and it bugged me for quite a while because in development I could load my assets just fine.

Eventually, I realized that I was not copying my public folder into my docker container in staging and production. In development the public folder was there and could be served, but, as soon as I was serving my nestjs application from the dist folder, no dice.

The solution for me was to add a copy command to my Dockerfile:

COPY --chown=node:node --from=build /usr/local/app/public ./dist/public

and it was served thanks to:

  app.useStaticAssets(join(__dirname, 'public'), {
    index: false,
    prefix: '/public/',
  });

The docker command has some extra stuff for my specific build flow but just COPY /path/to/app/public ./dist/public should work for you upon replacing path/to with the correct path to your application code.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alexander

79398429

Date: 2025-01-29 23:26:16
Score: 7.5 🚩
Natty:
Report link

How did you resolve this issue? i am having a similar challenge. I host my app.js file on root directory, the use router to run all my js codes in /routes/index.js

The app is functioning properly on local environment but showing internal server error on Vercel.

Reasons:
  • RegEx Blacklisted phrase (3): did you resolve this
  • RegEx Blacklisted phrase (1.5): resolve this issue?
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How did you
  • Low reputation (1):
Posted by: Inspired Scoop

79398401

Date: 2025-01-29 23:09:12
Score: 7.5
Natty: 8
Report link

this is exactly what I need... how do i add a comma for thousands?

Reasons:
  • Blacklisted phrase (1): how do i
  • Blacklisted phrase (0.5): I need
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29424154

79398397

Date: 2025-01-29 23:07:11
Score: 1
Natty:
Report link

Managing extensive OneNote files, especially those spanning 500GB with videos, images text, and links, can be overwhelming. Instead of manually sifting through countless entries, leveraging an advanced AI-powered search tool ensures quicker and more precise information retrieval. Below, we explore various intelligent solutions that enhance efficiency and streamline the search process.

Microsoft Copilot-A Native AI Assistant

Since OneNote integrates seamlessly with Copilot, this built-in AI assistant is a reliable option. It utilizes deep learning models to interpret user queries and locate relevant content within expansive notebooks. Its ability to analyze text, summarize key points, and cross-reference multimedia content makes it a strong contender for organizations managing massive datasets.

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

79398396

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

Know someone who can answer? Share a link to this question via email, Twitter, or Facebook. Your Answer Reminder: Answers generated by artificial intelligence tools are not allowed on Stack Overflow. Learn more

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

79398393

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

After four years of ownership, my Instagram account was stolen, the criminal changed the email address and phone number linked to it, and the account was suspended. I almost passed out. Thankfully, a friend introduced me to Marie, a recovery agent, who assisted me in getting my account back up and running in less than two hours. I'm overjoyed. If you need assistance, you may contact her at [email protected]. She is a real and reliable person, I can promise you.

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

79398392

Date: 2025-01-29 23:05:10
Score: 0.5
Natty:
Report link

Have you tried encapsulating it in a SUM?

SUM(IF(Date >= DATE(2024, 6, 25) AND Date <= DATE(2024, 7, 24), Active users, 0))

Maybe then you can mix the active users (metric) that meet the criteria you placed on date (dimension).

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: León

79398391

Date: 2025-01-29 23:05:10
Score: 3
Natty:
Report link

Row level security is not supported in azure sql seververless, it is supported in the dedicated pool

here is a link from microsoft, it would help if you had clearer requirements from help:

https://techcommunity.microsoft.com/blog/azuresynapseanalyticsblog/how-to-implement-row-level-security-in-serverless-sql-pools/2354759

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

79398381

Date: 2025-01-29 22:57:09
Score: 2.5
Natty:
Report link

Alright so the problem was related to i18next library, this bug report helped me fixing it github.com/i18next/i18next/issues/2008

the issue was that my i18next of the latest version was not supporting 4.9.5 and i just needed to choose the version of i18next that would be compatible with it =)

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

79398378

Date: 2025-01-29 22:55:08
Score: 3
Natty:
Report link

3 years later and giving full disk access to Xcode is still the answer. Although for me it was Mac -> System Settings -> Privacy & Security -> Full Disk Access -> Toggle for Xcode

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

79398375

Date: 2025-01-29 22:53:08
Score: 0.5
Natty:
Report link

Bungee is a C++ library for high-quality, real-time speed and pitch manipulation. It is open source and permissively licensed.

There is a comparison page on the Bungee site comparing many open source and commercial technologies.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): is a
  • High reputation (-1):
Posted by: paperjam

79398367

Date: 2025-01-29 22:49:06
Score: 1
Natty:
Report link

The correct and simple code for "Around 1-apple" is

while not wall_in_front():
    move()
    if object_here():
        take()
    if wall_in_front():
        turn_left()
    if at_goal():
        done()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Irfan Chadury

79398366

Date: 2025-01-29 22:48:06
Score: 1.5
Natty:
Report link

I have been experimenting some difficultities around this problem

My code has a function to configure the modem and I have tried all that has been said in this forum

I am using MQTT via LTE-M and my configuration for AWS is this one

#define MQTT_BROKER "#######.iot.us-east-1.amazonaws.com" 
#define MQTT_PORT 8883                                            
#define MQTT_TOPIC "sdk/test/python"  

I included the keys and certificates as const * char

void configureModem() {

  // Inicializar sistema de archivos
  modem.sendAT("+CFSINIT");
  if (modem.waitResponse() != 1) {
    Serial.println("Error al inicializar el sistema de archivos");
    return;
  }

  // Subir certificados
  modem.sendAT("+CFSWFILE=3,\"rootCA.crt\",0,", strlen(rootCA_cert_pem), ",10000");
  if (modem.waitResponse(10000, "DOWNLOAD") == 1) {
    modem.stream.write(rootCA_cert_pem);
  }
  modem.waitResponse(5000);

  modem.sendAT("+CFSWFILE=3,\"client.crt\",0,", strlen(client_cert_pem), ",10000");
  if (modem.waitResponse(10000, "DOWNLOAD") == 1) {
    modem.stream.write(client_cert_pem);
  }
  modem.waitResponse(5000);

  modem.sendAT("+CFSWFILE=3,\"client.key\",0,", strlen(client_key_pem), ",10000");
  if (modem.waitResponse(10000, "DOWNLOAD") == 1) {
    modem.stream.write(client_key_pem);
  }
  modem.waitResponse(5000);

  // Convertir certificados
  modem.sendAT("+CSSLCFG=\"CONVERT\",2,\"rootCA.crt\"");
  modem.waitResponse(5000);

  modem.sendAT("+CSSLCFG=\"CONVERT\",1,\"client.crt\",\"client.key\"");
  modem.waitResponse(5000);

  // Configurar certificados SSL
  modem.sendAT("+SMSSL=1,\"rootCA.crt\",\"client.crt\"");
  modem.waitResponse(3000);

  // Finalizar sistema de archivos
  modem.sendAT("+CFSTERM");
  modem.waitResponse();

  // Configurar MQTT
  modem.sendAT("+SMCONF=\"URL\",\"" MQTT_BROKER "\",8883");
  modem.waitResponse();

  modem.sendAT("+SMCONF=\"CLIENTID\",\"SIM7080_Client\"");
  modem.waitResponse();

  modem.sendAT("+SMCONF=\"KEEPTIME\",60");
  modem.waitResponse();

  modem.sendAT("+SMCONF=\"CLEANSS\",1");
  modem.waitResponse();

  modem.sendAT("+SMCONF=\"QOS\",1");
  modem.waitResponse();

  // Consultar configuración MQTT
  modem.sendAT("+SMCONF?");
  modem.waitResponse(5000);

  // Conectar a MQTT
  modem.sendAT("+SMCONN");
  if (modem.waitResponse(10000) == 1) {
    Serial.println("MQTT conectado exitosamente.");
  } else {
    Serial.println("Error al conectar MQTT.");
  }

  return;
}

When I try to connect or publish, it does not work. I tried using legacy rootCA, tls 1.2 and the default topics but it is still not working

Reasons:
  • Blacklisted phrase (2): still not working
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Anthony Chaves

79398363

Date: 2025-01-29 22:47:05
Score: 4
Natty:
Report link

Turns out my problem was within postman.

For some reason I had two Authorization headers, one with correct value and another one empty. here how it was

Whenever I send a request with double Authorization header to NGINX it returns a 400 response.

It only occurs in websocket collections, HTTP collections runs fine with double Auth headers, probable because Postman overrides with the default one. Maybe it doesn't do the same for Websocket collections?

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