79340457

Date: 2025-01-08 19:05:10
Score: 3
Natty:
Report link

Don't be confused. It is alright as long as it works.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: محمد دانیال کیانی

79340456

Date: 2025-01-08 19:05:10
Score: 1
Natty:
Report link

Use Case ID UC-03 Title Cast Vote Actors Voter, System Description Voter securely casts a vote and receives a confirmation receipt. Precondition Voter is logged in and authenticated. Postcondition Vote is securely stored. Alternative Courses If the system crashes during the vote, a recovery mechanism restores progress. Frequency of Use Once per voter. Includes Secure Voting Process, Receipt Generation Priority High P a g e | 6 Backward Traceability FR-2 (Secure Voting) Forward Traceability UC-04 (Vote Tallying), UC-05 (Audit Trails)

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

79340455

Date: 2025-01-08 19:04:10
Score: 3.5
Natty:
Report link

You CAN NOT use http on market, you MUST use https

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

79340448

Date: 2025-01-08 19:01:09
Score: 1.5
Natty:
Report link

Delete the (.parcel-cache) directory and re-run with npm start. It should work. I have came-across same and above solution helped me.

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

79340442

Date: 2025-01-08 18:57:08
Score: 0.5
Natty:
Report link

If you by any chance face this error whiles building a Next.js application, remember that for things to work, mongoose must be used on the server side, not on the client. Remember to have "use server" at the top of the file where you call mongoose.connect() or any other mongoose function for that matter. That solved my problem.

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

79340433

Date: 2025-01-08 18:54:07
Score: 3.5
Natty:
Report link

Hyper V available only in PRO or Enterprise versions) Not Home one.

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

79340425

Date: 2025-01-08 18:51:07
Score: 2
Natty:
Report link

Find the "Command Prompt" shortcut under Start > Programs > Accessories, right click on it and choose Properties. Under the Shortcut Tab, assign a hotkey if you like, and change "Run" to "Maximized". Hit Apply, and OK.

This will run CMD in full screen if initiated by that shortcut, not by using the shell link in File Manager. (Hence, a hotkey is nice).

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

79340413

Date: 2025-01-08 18:47:05
Score: 2.5
Natty:
Report link

Gah! The trouble with editing history. I made a type of "2004" when I meant "2024" on the first one, and that same mistake carried forward. Sorry about that. No problem. (Sure do wish I could remove my own question.)

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

79340406

Date: 2025-01-08 18:45:03
Score: 12 🚩
Natty: 6
Report link

Did you solve this problem? Because I am also facing the same problem, and I haven't figured out how to solve it yet.

Reasons:
  • Blacklisted phrase (1): how to solve
  • RegEx Blacklisted phrase (3): Did you solve this problem
  • RegEx Blacklisted phrase (1.5): solve this problem?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you solve this
  • Low reputation (1):
Posted by: Arda Gökçe

79340403

Date: 2025-01-08 18:42:02
Score: 1.5
Natty:
Report link

Add your SSH private key to the ssh-agent. This should help you.

ssh-add --apple-use-keychain ~/.ssh/new_key_name
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Anton Ilin

79340398

Date: 2025-01-08 18:41:01
Score: 7 🚩
Natty:
Report link

El problema que estás experimentando se debe a que las columnas de identidad en las tablas dinámicas delta de Databricks no funcionan exactamente como en SQL Server.

En Databricks, las columnas de identidad se generan durante la ingesta de datos, pero no se actualizan automáticamente cuando se agregan nuevos datos a la tabla.

Para solucionar este problema, puedes intentar lo siguiente:

  1. Utiliza la función row_number() en lugar de identity() para generar un número único para cada fila.
CREATE OR REFRESH STREAMING LIVE TABLE my_dlt (
  dlt_id BIGINT,
  source_column1 STRING,
  source_column2 STRING
) TBLPROPERTIES (
  delta.enableChangeDataFeed = true,
  "quality" = "silver"
)
AS
WITH stream_input AS (
  SELECT DISTINCT source_column1, source_column2
  FROM stream(source_catalog.bronze_schema.source_table)
)
SELECT 
  row_number() OVER (ORDER BY source_column1) as dlt_id,
  source_column1,
  source_column2
FROM stream_input;
  1. Si necesitas que la columna dlt_id sea una columna de identidad que se incrementa automáticamente, puedes utilizar la función monotonically_increasing_id() en combinación con la función row_number().
CREATE OR REFRESH STREAMING LIVE TABLE my_dlt (
  dlt_id BIGINT,
  source_column1 STRING,
  source_column2 STRING
) TBLPROPERTIES (
  delta.enableChangeDataFeed = true,
  "quality" = "silver"
)
AS
WITH stream_input AS (
  SELECT DISTINCT source_column1, source_column2
  FROM stream(source_catalog.bronze_schema.source_table)
)
SELECT 
  monotonically_increasing_id() + row_number() OVER (ORDER BY source_column1) as dlt_id,
  source_column1,
  source_column2
FROM stream_input;

Espero que esto te ayude a resolver el problema. ¡Si tienes alguna otra pregunta, no dudes en preguntar!

Reasons:
  • Blacklisted phrase (2): Espero
  • Blacklisted phrase (1): está
  • Blacklisted phrase (2.5): solucion
  • Blacklisted phrase (2): pregunta
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user25564933

79340396

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

Using a stylesheet you can specify the colors you want when the button is in a disabled state, e.g., myBtn.setStyleSheet("QPushButton:disabled{background-color: mycolor;}).

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

79340395

Date: 2025-01-08 18:41:01
Score: 1
Natty:
Report link

I use this method to make the query string keys and their values all lower case:

const urlParams = new URLSearchParams(window.location.search.toLowerCase());
const Timeout = urlParams.get('timeout');

This works perfectly well as long as you don't mind the query values also being converted to lower case.

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

79340391

Date: 2025-01-08 18:40:00
Score: 4
Natty: 4.5
Report link

$? boolean - True - previous command completed successfully. False - with error.

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

79340382

Date: 2025-01-08 18:36:59
Score: 1.5
Natty:
Report link

It seems I should have double quotes around the attribute value.

document.querySelectorAll('[name="PrintOptions.Choice_Radio"]');

After editing the file .\modules\configuration\webresources\ts\core\GwFileRequest.ts to have double quotes around the selector's attribute value, I am able to get the csv to be created. enter image description here

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

79340381

Date: 2025-01-08 18:35:58
Score: 2
Natty:
Report link

Answer from Doe (about add-excluded-route argument) not working for me anymore in 2005, warp-cli changed option names. But now it works with:

warp-cli tunnel ip add 11.22.33.44

and you can use:

warp-cli tunnel ip list

to list all excluded IPs.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • RegEx Blacklisted phrase (3): not working for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: yaroslaff

79340371

Date: 2025-01-08 18:31:57
Score: 3.5
Natty:
Report link

The issue for me was that the version of Java I was using was too old. See https://stackoverflow.com/a/74280819/582326 for details, from a duplicate question.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: andrew-e

79340369

Date: 2025-01-08 18:31:57
Score: 0.5
Natty:
Report link

It depends on the nature of the images in your pdf, if they mainly contain text in a structured form, you can use pytesseract, in case where the image is not structured eg. Charts, Digrams, Comparison Tables, you might need a complete new approach to process these, a common approach is to train or use a pre-trained model to extract the useful textual features from the image.

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

79340367

Date: 2025-01-08 18:30:57
Score: 1
Natty:
Report link

according to your first link, specifically the solutioned link.

it recommends them to be defined in each indifidual package's tsconfig instead of the base tsconfig.

one note is the base tsconfig from the turbo docs also has "module": "NodeNext"

this turbopack example from vercel does a good job covering this case.

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

79340365

Date: 2025-01-08 18:29:57
Score: 0.5
Natty:
Report link

Well, no answers... Will try to explain, what I found.

Flag --fake

Better to use to align Django state to the real database state. For example, database table contains columns "col1" and "col2", but Django model contains only fields "col1", "col2" and "col3". We remove field "col3" and run migration with flag --fake. Now consider this example: we have "col1" and "col2" in database table and in Django model. We remove field "col1" from model, run migration with --fake, expecting to drop the column later. But then we decide to roll back migration before dropping the column. This will fail, because Django will try to restore removed "col2", while it exists in the database table.

SeparateDatabaseAndState

This option is more secure - no issues with roll back, because this migration doesn't work with database (except table django_migration). It may be used to the case, when we want to postpone database changes. In our company we chose this option to remove unused field from Django model (we can't apply changes to the database immediately, because of running processes, that use the old state of Django models). On the second step we make another migration - without SeparateDatabaseAndState (basically the same - with field removal inside), that will be applied to the database and will drop the column.

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

79340362

Date: 2025-01-08 18:28:57
Score: 0.5
Natty:
Report link

Judging by version numbers, it looks exactly like a bug that has been fixed, in the versions released on 11 Apr 2024 (8.1.28, 8.2.18, 8.3.5).

Though I cannot find a relevant entry in the release notes. The only rational explanation I can come up with is that some other fix collaterally fixed this one as well.

Or, it could have been fixed in the underlying library and came into effect when PHP dependencies have been updated.

Reasons:
  • Blacklisted phrase (1.5): I cannot find
  • Blacklisted phrase (0.5): I cannot
  • No code block (0.5):
  • High reputation (-2):
Posted by: Your Common Sense

79340361

Date: 2025-01-08 18:28:56
Score: 3.5
Natty:
Report link

To solve this issue, you'll need to configure your ASP.NET Core Web API to authenticate with Azure AD and make authorized requests to the Microsoft Graph API. I have detailed a step-by-step guide on creating Azure resources and managing authentication in my Medium article, which also includes practical examples for setting up and using the Azure AD access token effectively.

You can find the full solution here: Integrating ASP.NET Core Web API with Microsoft Graph API in .NET 6.0

This article provides a comprehensive explanation, including code snippets and troubleshooting tips. Feel free to check it out and let me know if you have any questions or feedback!

Reasons:
  • Blacklisted phrase (1): This article
  • Blacklisted phrase (0.5): check it out
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Shamuddin

79340358

Date: 2025-01-08 18:25:56
Score: 2.5
Natty:
Report link

After updating Git for Windows, and Git LFS to the latest version, these zero-byte files are no longer being reported as stored in LFS. I have to assume the older version of LFS that I was using (3.0.1, iirc), is a bit buggy and has since been fixed.

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

79340354

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

I have done all the above and the error that I get now is "No such file or Directory: '/usr/local/bin/cobcd-st"

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

79340353

Date: 2025-01-08 18:23:55
Score: 2
Natty:
Report link

Ok so after hours of browsing and trying, I deleted a few packages pytz and apscheduler, the file is running good

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

79340344

Date: 2025-01-08 18:20:54
Score: 1
Natty:
Report link

This formula successfully accomplishes the result I sought in the question I posted above:

=ARRAYFORMULA(SUM(IF(LEN(O5:O200),--(REGEXMATCH(TO_TEXT(O5:O200),"(^|,|\s)\s*(" & TEXTJOIN("|",TRUE,ARRAYFORMULA(TEXT(ROW(INDIRECT("A"&DATE(2023,7,1)&":A"&TODAY())),"m/d/yyyy")))&")\s*($|,|\s)")),0)))

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: David J. Myers

79340343

Date: 2025-01-08 18:20:54
Score: 5
Natty:
Report link

Hello! I registered today here stackoverflow to ask the same question to everyone who can help, but is silent. This code was published back in 2020 - Google Recaptcha v3 example demo.

I integrated the code in 2022 into my static HTML site and sometimes it worked and sometimes it didn't. Error! The security token has expired or you are a bot. In 2024, he stopped sending emails with error codes altogether. http_response_code(500); / Something went wrong, your message could not be sent. / That means something has changed in Google's service Recaptcha v3. After all, it worked at first!

I have tried all the existing demo scripts from the internet and they all don't work! It happens sometimes - Thank You! Your message has been successfully sent. But the letters don't arrive. I send letters to the domain address for the Recaptcha. That is, the API key registration domain. All keys work.enter image description here

I am not an expert in this matter (It's too difficult!) and therefore I am looking for help from a specialist who could correct the code that was given above.

Reasons:
  • Blacklisted phrase (0.5): Thank You
  • Blacklisted phrase (2): I am looking for
  • Blacklisted phrase (1): stackoverflow
  • Blacklisted phrase (1): enter image description here
  • Blacklisted phrase (1): looking for help
  • Whitelisted phrase (-1): it worked
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Valera

79340342

Date: 2025-01-08 18:19:53
Score: 2
Natty:
Report link

Given that the problem is an ABI mismatch, why does the error message talk about requiring NODE_MODULE_VERSION 106? How does 106 mean "Electron" or is the error text spurious?

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Denis Howe

79340341

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

You can also use ccds instead of cookiecutter command. It is more up-to-date.

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

79340331

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

What launchMode did you set for your activity? By default it is standard meaning a new instance will be created every-time to handle an intent.

See the official documentation about launchMode

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

79340328

Date: 2025-01-08 18:14:52
Score: 1.5
Natty:
Report link

Inspecting code of Select-Xml cmdlet I found out that internally it uses SelectNodes method of NET class System.Xml.XmlNode. Thus you can find list of recognized functions in this Microsoft XPath reference documentation: XPath Reference

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

79340320

Date: 2025-01-08 18:13:52
Score: 1.5
Natty:
Report link

Adding the ID PK to the DeviceActions table is the best fix.

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

79340317

Date: 2025-01-08 18:11:51
Score: 2
Natty:
Report link

If someone find's a cleaner solution, please let me know. But for now, this works:

I created a ThreadLocal to hold the header value:

object GraphQLMyHeaderThreadLocalStorage {
    private val context = ThreadLocal<String>()

    var value: String?
        get() = context.get()
        set(value) = value?.let { context.set(it) } ?: context.remove()

    fun clear() = context.remove()
}

In my resolver, I can now set this ThreadLocal with my request-specific value:

@QueryMapping
fun myResolver(
    @Argument arg1: String,
    @Argument arg2: MyInput,
): MyEntity = service.getMyEntity(arg1, arg2).also {
    GraphQLMyHeaderThreadLocalStorage.value = "whatever inferred from ${it}"
}

And I can still modify my response in a Filter if I wrap it in advance and do the modification after chain.doFilter():

class GraphQLMyHeaderFilter : Filter {
    @Throws(IOException::class, ServletException::class)
    override fun doFilter(request: ServletRequest, response: ServletResponse, chain: FilterChain) {
        if (!response.isCommitted) {
            val responseWrapper = object : HttpServletResponseWrapper(response as HttpServletResponse) {
                fun updateMyHeader(value: String?) {
                    if (value != null) {
                        setHeader("X-My-Header", value)
                    } else {
                        setHeader("X-My-Header", "default value")
                    }
                }
            }
            chain.doFilter(request, responseWrapper)

            // modify the response after the resolver was called
            if (!response.isCommitted) {
                val headerValue = try {
                    GraphQLMyHeaderThreadLocalStorage.value
                } finally {
                    GraphQLMyHeaderThreadLocalStorage.clear()
                }
                responseWrapper.updateCacheControl(headerValue)
            }
        } else {
            chain.doFilter(request, response)
        }
    }
}

@Configuration
class FilterConfig {
    @Bean
    fun graphQLMyHeaderFilter(): FilterRegistrationBean<GraphQLMyHeaderFilter> {
        val registrationBean = FilterRegistrationBean<GraphQLMyHeaderFilter>()
        registrationBean.filter = GraphQLMyHeaderFilter()
        registrationBean.addUrlPatterns("/graphql")
        return registrationBean
    }
}

Notes:

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Valentin Kuhn

79340306

Date: 2025-01-08 18:06:50
Score: 1.5
Natty:
Report link

I think @Roland's answer is correct: you need to tell read.csv not to convert the IDs to numeric, but leave them as characters:

readcsv2010 <- read.csv("input.csv", colClasses = "character")

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Roland's
  • Low reputation (0.5):
Posted by: mikeblazanin

79340302

Date: 2025-01-08 18:05:50
Score: 1
Natty:
Report link

You can add clickable focusable true to your fragment_container


<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:clickable="true"
    android:focusable="true">

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Oğuzhan Türkmen

79340289

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

The gradient background should be applied to the entire viewport without expanding beyond it update your index.html file add

min-h-screen overflow-hidden = to prevent accidental overflow due to child elements

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

79340288

Date: 2025-01-08 18:00:47
Score: 0.5
Natty:
Report link

I had the same issue, You can use "The imported page must be a default export. This means the home, about and search pages need to have export default function About."

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: John Alexander Villamarin Calv

79340278

Date: 2025-01-08 17:55:46
Score: 2
Natty:
Report link

Your version of image_processing seem not to be the last version.

Please fill the right version in your Gemfile, currently ~> 1.0 (https://github.com/janko/image_processing#installation):

gem "image_processing", "~> 1.0"
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: reaper

79340276

Date: 2025-01-08 17:54:46
Score: 2
Natty:
Report link

This happens because you are trying to navigate to the same component/user.

You are probably in User X and trying to redirect to User X.

This is a way that vue router uses to avoid redundant navigations.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: João Guimarães

79340274

Date: 2025-01-08 17:54:46
Score: 3
Natty:
Report link

This was graetou can connect directly using a standard ODBC driver as well. The IBM version usually gives you more features like being able to call programs and things like that. If you only need SQL and stored procedures, ODBC should work.

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

79340261

Date: 2025-01-08 17:50:44
Score: 6.5 🚩
Natty: 4
Report link

Thanks for your suggested solution. Now, with Office Word 2021 it doesn't work for me. I've tried allready many different solutions, not only other persons - mine too - but neither doesn't work. I still hope to find a way to do this. Word hangs and doesn't answer, so I have kill it via Task Manager. I'm afraid that operations corrupts some other in document structure yet. Best regards and thanks for hope at least.:)

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • RegEx Blacklisted phrase (2): doesn't work for me
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Wojciech

79340247

Date: 2025-01-08 17:44:42
Score: 1.5
Natty:
Report link

For anyone that landed in here after migrating the apiVersion to v1beta1, there are new attributes that need to be specified:

Similarly, in v1beta1 of the OpenTelemetryCollector CR, leaving out this configuration altogether also results in the Target Allocator failing to discover scrape targets from your ServiceMonitors and PodMonitors.

Reference: https://opentelemetry.io/docs/kubernetes/operator/troubleshooting/target-allocator/#did-you-leave-out-the-servicemonitorselector-andor-podmonitorselector-configuration-altogether

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

79340241

Date: 2025-01-08 17:42:41
Score: 0.5
Natty:
Report link

I don't see an alternative to creating a new key and re-encrypting if you want to change the regional availability of your key. There's no key export nor is there such a migration feature.

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

79340211

Date: 2025-01-08 17:30:38
Score: 3.5
Natty:
Report link

security 101 is to never trust the client

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

79340208

Date: 2025-01-08 17:29:37
Score: 1.5
Natty:
Report link

Can i disassociate the load balancer NLB1 from endpoint service and associate another load balancer NLB2, in order to migrate the users to another service(NLB2) ?

Yes, but with a short downtime.

  1. Be sure to have NLB2 correctly configured, healthy and able to serve traffic.
  2. Find your "Endpoint services"
    1. Visit the "Endpoint services" page
    2. select your endpoint service
  3. reject connections (This will start the DOWNTIME period)
    1. open the "Endpoint connections" tab
    2. select the endpoint connection (the one coming from ACCOUNT2)
    3. click "Reject endpoint connection request"
  4. change the load balancer
    1. visit the "Load Balancers" tab
    2. click "Associate or Disassociate load balancers"
    3. remove the association with NLB1 and add NLB2
    4. Save Changes
  5. re-enable connections
    1. open the "Endpoint connections" tab
    2. select the endpoint connection
    3. click "Accept endpoint connection request"

The connection will enter a "pending" state. Once it will transition to "available" the traffic should be served again.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can i
  • Low reputation (0.5):
Posted by: Matteo Mazza

79340207

Date: 2025-01-08 17:29:37
Score: 0.5
Natty:
Report link

For the Intellij version 2022.3.1, the lombok version which worked for me is lombok-1.18.36.jar from (...m2\repository\org\projectlombok\lombok\1.18.36\lombok-1.18.36.jar). this done by pointing to: File -> settings -> Build,Execution,Deployment -> Annotation Processors -> Then:

  1. check Enable annotation processing.
  2. Right click on project, then browse to lombokXX.jar file in your .m2 repository.
Reasons:
  • Whitelisted phrase (-1): worked for me
  • No code block (0.5):
  • Low reputation (1):
Posted by: Aziz Halaouit

79340196

Date: 2025-01-08 17:26:36
Score: 0.5
Natty:
Report link

Following the lead of the possible bug report on PG17, we ran the queries with

SET max_parallel_workers_per_gather = 0

and that made the query return in 5 minutes without errors. Digging deeper we decided to review the work_mem, which was set by default to 4MB by RDS. We updated this value in the configuration to 64MB based loosely on this parameter guide, and it started working smoothly, returning in around 3 minutes.

SET work_mem TO '64MB';
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: NicolasZ

79340185

Date: 2025-01-08 17:24:34
Score: 9 🚩
Natty: 6.5
Report link

I want to use a Raspberry Pi 5 with the FLIR Lepton v3 for a similar project. I followed the instructions from the GroupGets GitHub page, but the output image is just a red square. I'm not sure what might be going wrong — perhaps there's an issue with the pin connections, specifically MOSI? Could you help me troubleshoot this?

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Could you help me
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ilaria Ciuffreda

79340176

Date: 2025-01-08 17:22:34
Score: 3
Natty:
Report link

Android blocks running programs directly from the SD card for security reasons. Move the program to Termux's folder (~/) or use sdrun to fix this without root.

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

79340169

Date: 2025-01-08 17:21:33
Score: 1
Natty:
Report link

You could use tally method on array and compare hashes:

  assert_equal(arr1.tally, arr2.tally)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Алексей Лещук

79340165

Date: 2025-01-08 17:20:33
Score: 3
Natty:
Report link

Clearing old cached files from the browser solved the issue. Probably the browser used some old js files.

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

79340154

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

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'cloud18i_dbpethu.sessions' doesn't exist

php artisan session:table php artisan migrate

these two commands will work as Mr.#Michael Mafort has psot

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

79340151

Date: 2025-01-08 17:14:32
Score: 1.5
Natty:
Report link

The closest I could get was to use - vim.diagnostic.enable(false);
which works, but disables linters as well.

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

79340140

Date: 2025-01-08 17:12:31
Score: 4
Natty:
Report link

We are in the same situation. Already using CloudEvents envelope and now we are planning to add Command. We have added 'op' extension which is enum: (CREATED, UPDATED, DELETED) for state change events and NOTIFICATION for others. I have in mind to add 'COMMAND' to this enum to support asynchronous command concept.

Would be glad to hear how did u solve it.

Reasons:
  • RegEx Blacklisted phrase (3): did u solve it
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Victor Perepelitsky

79340137

Date: 2025-01-08 17:12:30
Score: 0.5
Natty:
Report link

As of Serde v1.0.186, it is impossible to have incompatible versions of serde and serde_derive.[1] Therefore, it is now recommended to separately depend on serde and serde_derive, as that can save three seconds of compilation time (which adds up).

1 See serde-rs/serde#2588

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

79340108

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

Dont know whether its related or not, i was struggling with similar py & python problems. Have understood below dont know correct or not. i have python 3.13 & 3.12 installed (both were added to path). later i renamed python 3.12 exe file as python312.exe & modified the same in PATH in environment variable. below what i observed:

py launcher (uses py in CMD not Python)

when do py -0 it gives all python installed on system i.e 3.12 & 3.13

when i do py --version it showes only 3.13. maybe because py launcher isn't able to find version 3.12 due to me renaming the exe file.

when did python --version it showed up only 3.13 & doing python312 --version shows 3.12 only meaning in PATH environment variable both versons have separate names & python word forces to look PATH and py launcher isnt used.

i am a begineer at code feel free to correct or add up more to this!

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

79340100

Date: 2025-01-08 16:58:26
Score: 2
Natty:
Report link

Turns out I was approving the wrong CA in approve_tokens I wanted to approve a different spender address than the account.address I was originally using.

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

79340088

Date: 2025-01-08 16:54:25
Score: 1
Natty:
Report link

Problem solved.

XAMPP does not automatically look for /public like Heroku seems to do.

Add your /public folder in httpd-vhosts.conf

<VirtualHost *:80>
    DocumentRoot "C:\xampp\htdocs\ARCADIA-2025-LASTRUN/public"
    ServerName ARCADIA-2025-LASTRUN.local
    <Directory "C:/xampp/htdocs/ARCADIA-2025-LASTRUN/public">
        Options -Indexes
        AllowOverride All
        Require all granted
    </Directory>
</VirtualHost>
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: IcyAuk

79340086

Date: 2025-01-08 16:54:25
Score: 2.5
Natty:
Report link

Well it would be very difficult to tell what exactly is wrong without looking at the code.

But one thing I can tell for sure is that I am no longer using OnCreate (it gives many errors nowadays), and I am using OnPostCreate instead as it is the method that MAUI itself calls on Android for it's 'Created' event: enter image description here

More on that here: https://learn.microsoft.com/en-us/dotnet/maui/fundamentals/app-lifecycle?view=net-maui-9.0

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

79340083

Date: 2025-01-08 16:52:25
Score: 1.5
Natty:
Report link

A solution without invoking Windows specific APIs will be using pathlib.

from pathlib import Path  
Path(tempDir).resolve()
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kelvin Jimenez

79340079

Date: 2025-01-08 16:51:25
Score: 1.5
Natty:
Report link

Go to the repository Setting -> Actions -> General: Scroll down to the bottom you'd see "Access", Choose "Accessible from repositories in the organization"

That did it for me. Credit:Evan

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

79340077

Date: 2025-01-08 16:49:24
Score: 2
Natty:
Report link

Tested this on Windows 11 Enterprise 24H2 January 2025 Some odd reason single-bit corruption doesn't get healed, but if you change more than one bit the repair will work. I tested with HxD and virtual hard disks.

Never saw a instance of files deleted.

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

79340060

Date: 2025-01-08 16:45:23
Score: 1.5
Natty:
Report link

You can manually create a new StyleAttributor with parchment directly:

import { Scope, StyleAttributor } from 'parchment'

const SizeStyle = new StyleAttributor('size', 'font-size', { scope: Scope.INLINE })
Quill.register(SizeStyle, true)

I got the idea from here: https://github.com/slab/quill/issues/4262#issuecomment-2231359742

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

79340058

Date: 2025-01-08 16:44:23
Score: 3
Natty:
Report link

You can also cache the category ID to reduce API calls, add error handling for reliability, and optimize performance by only updating categories when necessary.

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

79340053

Date: 2025-01-08 16:40:21
Score: 1.5
Natty:
Report link

I would recommend xcrud from xcrud.net. First of all it abstracts mysql databases creates CRUD apps withb3 simple lines.

Basically I have been able to build nice enterprise applications with minimal efforts. You concentrate more of the business logic and less of the php and myself code.

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

79340049

Date: 2025-01-08 16:39:21
Score: 1
Natty:
Report link

In nextjs, pathname is not an object

Change

const { pathname } = usePathname();

To

const pathname = usePathname();
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user19259811

79340044

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

Add or update Airtable table column is possible using Web API:

Add: https://airtable.com/developers/web/api/create-field

Update: https://airtable.com/developers/web/api/update-field

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

79340043

Date: 2025-01-08 16:38:20
Score: 2.5
Natty:
Report link
/** @type {import('next').NextConfig} */
const nextConfig = {
  webpack: (config, { buildId, dev, isServer, defaultLoaders, webpack }) => {
    config.resolve.alias.canvas = false
    config.resolve.alias.encoding = false
    return config
  },
  swcMinify: false,
}

export default nextConfig

adding swcMinify: false, help me resolve the issue https://github.com/KelvinJiang-k/pdfparse/blob/main/next.config.mjs

Reasons:
  • Blacklisted phrase (1): help me
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user29111283

79340036

Date: 2025-01-08 16:34:18
Score: 12 🚩
Natty: 5
Report link

I am also facing the same issue where it gives me endless errors and it all stems from the clarfai api have you found any solutions I feel like I am stuck in a loop hole

Reasons:
  • Blacklisted phrase (1): I am also facing the same issue
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (1.5): I am stuck
  • RegEx Blacklisted phrase (2.5): have you found any solutions I feel like I am stuck in a loop hole
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rayan Mahmoud

79340032

Date: 2025-01-08 16:33:17
Score: 1
Natty:
Report link

If you nevertheless want to use require() in a package function like I did, here is a workaround that does not trip R CMD CHECK:

do.call(require,list(x, character.only=TRUE))

where x is a character object naming the package.

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

79340030

Date: 2025-01-08 16:33:17
Score: 0.5
Natty:
Report link

I'm not sure if I understand the question right but have you tried to set the Record (= true) and RecordingStatusCallback parameters when using the Conference Participant Resource to add the participant to the conference?

Reasons:
  • Whitelisted phrase (-1): have you tried
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-1):
Posted by: IObert

79340021

Date: 2025-01-08 16:31:17
Score: 0.5
Natty:
Report link

This worked for me:

cat("\\newpage")
Reasons:
  • Whitelisted phrase (-1): This worked for me
  • Whitelisted phrase (-1): worked for me
  • Low length (2):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tanner Delpier

79340019

Date: 2025-01-08 16:29:16
Score: 1.5
Natty:
Report link

I previously responded in this thread with a more elaborate answer: I want to show two accordions in a Material UI table body

Excerpt:

This is how I would solve it. This solution also works without Accordion.

https://codesandbox.io/p/sandbox/great-hopper-skft3s

Basically, you can create a whole new table within the main table.

Add all the Accordion/nested logic within a single TableCell and add colSpan to match the item length of TableHead.

Then create a new Table within the Accordion and for each TableCell match the width of the columns from the TableHead.

Play around with padding: 0 to match TableHead and the nested content

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

79340017

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

Instead of walking through your full time range by hops of 30 mn, you just have to hop from event to event (an event being "the start or end of a booking").

Thus you'll have a timeline of all your bookings starts and ends sorted together, with a counter that makes +1 when it encounters a start date and -1 for an end date. When the counter reaches n, go for the red flag!

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

79340016

Date: 2025-01-08 16:28:16
Score: 3
Natty:
Report link

Your module might be missing from the table vtiger_tab. Please add an entry of your new module with auto increment id into that table.

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

79340012

Date: 2025-01-08 16:27:15
Score: 1.5
Natty:
Report link

ensure the $TOKEN parameter is set in the injected ci variables. You can do it in either your project or a parent directory of the project to apply the variable more globally.

Project > Settings > CI/CD > "Variables"

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

79340006

Date: 2025-01-08 16:25:15
Score: 2.5
Natty:
Report link

Apparently, starting the call with wss proxies the request to HTTPS which doesn't work for this. I swapped it out to use ws://localhost:5002/myHub and got a successful connection!

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

79340002

Date: 2025-01-08 16:24:15
Score: 2
Natty:
Report link

Obviously right after I created this question:

How do I fix SerializationNotSupportedParentType and ThrowNotSupportedException_ConstructorContainsNullParameterNames exception in System.Text.Json?

I find this question. The answer I came up with is this:

A workaround to fix this without changing anything else is to insert the following in your WebClient project file:

<PropertyGroup>
    <_ExtraTrimmerArgs>--keep-metadata parametername</_ExtraTrimmerArgs>
</PropertyGroup>

The real issue should be fixed in https://github.com/dotnet/runtime/issues/81979

Reasons:
  • Blacklisted phrase (1): How do I
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jesper Risager

79339998

Date: 2025-01-08 16:24:15
Score: 0.5
Natty:
Report link

I had the same "problem" and for me the suggested "ruff.lint.args" setting did not work. It seems that it has to do with formatting, so I added the following to my VSCode settings and it did the trick:

"ruff.format.args": [
  "--unfixable F401"
]

edit: typo

Reasons:
  • Blacklisted phrase (1): did not work
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: mfeyx

79339986

Date: 2025-01-08 16:21:14
Score: 1.5
Natty:
Report link

You can achieve the expected behavior by setting the following parameters when creating a subscription: PaymentBehavior = "default_incomplete" ProrationBehavior = "always_invoice"

With these settings, invoices will be automatically created and charged to the default payment method when the subscription is updated.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Евгений

79339978

Date: 2025-01-08 16:18:13
Score: 2
Natty:
Report link

As I can see from your screenshots you are building for Android. If that is the case, then use

    Console.WriteLine(DebugLine);

Then check logcat for any DOTNET lines. Should look like this: enter image description here

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

79339976

Date: 2025-01-08 16:16:12
Score: 1.5
Natty:
Report link

In my case i have declared swagger @Bean in 2 different class. Once i removed from one class it resolved.

@Configuration 
@EnableSwagger2 
public class EnrollmentSecureConfig {
@Bean //------> 1st time
public Docket api() {}
}

@Configuration
@EnableSwagger2
public class EnrollmentSecureConfig {

@Bean //-----?2nd time
public Docket api() {}

}

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Bean
  • Low reputation (1):
Posted by: bhargav venkat

79339974

Date: 2025-01-08 16:15:11
Score: 1
Natty:
Report link

In jQuery you can handle dynamically loaded content like this

jQuery(document).on('click' , '.dynamic-content-class' , function(){
 // your logic here
});

replace dynamic-content-class with your class

you can add event handlers on dynamic content like that

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

79339972

Date: 2025-01-08 16:15:10
Score: 9 🚩
Natty: 4
Report link

Sorry for necroing this one, but have you ever found a way to make this work? I've been struggling with something similar for days now.

Reasons:
  • Blacklisted phrase (1): days now
  • RegEx Blacklisted phrase (2.5): have you ever found a way to make this work
  • RegEx Blacklisted phrase (2): have you ever found
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user3574085

79339966

Date: 2025-01-08 16:15:10
Score: 1
Natty:
Report link

As I understood, you can have that functionality with useFetch and useAsyncData in Nuxt js.useAsyncData is more like getServerSideProps. You can read more about them in: Nuxt Data Fetching

Nuxt also has Server Components, like in Next, but it is experimental yet: Server Components

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

79339964

Date: 2025-01-08 16:14:10
Score: 3.5
Natty:
Report link

I also wanted more than one image in a cell. I realize this is an old post, but thought I'd throw this in. Someone asked "why". I'm doing inventory for a storage unit, and would like to be able to insert images for several items in one record (one box might have 3 different items that I want to have 3 diff images displayed for clarity). I may have to move to "AirTable" app or see if jotform can do it.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29110958

79339956

Date: 2025-01-08 16:13:09
Score: 5.5
Natty: 5
Report link

I took out the s in https and it went with http and it still doesn't display how do i work with my web config im new.

Reasons:
  • Blacklisted phrase (1): how do i
  • RegEx Blacklisted phrase (1.5): im new
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28170290

79339952

Date: 2025-01-08 16:12:08
Score: 2.5
Natty:
Report link

Confirmed: Added to /opt/openproject/config/environments/production.rb

config.action_mailer.default_url_options = { host: 'myserver', port: 7000 }

after line 144.

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

79339945

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

In my case, I updated the log4j core dependency version and this error occurred. I just restarted the IDE and the problem disappeared

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

79339944

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

I gonna try this option programmatically

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Richard

79339933

Date: 2025-01-08 16:08:07
Score: 2.5
Natty:
Report link

Try modelsummary::modelsummary(models):

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: dufei

79339931

Date: 2025-01-08 16:07:07
Score: 0.5
Natty:
Report link

In my case I have closed IntelliJ, then removed rm -rf ~/.m2/repository ~/.groovy/grapes and once Intellij is opened then Invalidated Caches with all option checked. Then when I hover over @Grab, one light bulb will be shown. If you click on the light bulb, there is an option for "Grab the Artifacts".

@GrabResolver(name = "maven-repository", root = "https://artifacts.company.internal/artifactory/maven-all")
@Grapes([
        @Grab('commons-primitives:commons-primitives:1.0'),
        @Grab('org.springframework:spring-orm:5.2.8.RELEASE')
])
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Grab
  • Low reputation (0.5):
Posted by: prajitgandhi

79339930

Date: 2025-01-08 16:07:07
Score: 2.5
Natty:
Report link

You need to create a business and then each business will create tenant by setting auto_schema: true and now each tenant will have their own domain that will be used in your Frontend application

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

79339926

Date: 2025-01-08 16:06:07
Score: 0.5
Natty:
Report link

In addition to mrdinklage's input, i was finally able to create prints from a parallel process, which used the 'print' connector (and adding the part below to my current pipeline):

        String createPrintTable = "CREATE TABLE kpisPrint (" +
            "    NAME STRING," +
        "    METRIC_RATIO FLOAT," +
            ") WITH (" +
            "    'connector' = 'print')";
    tableEnv.executeSql(createPrintTable);

    String sqlQueryPrint = "INSERT INTO kpisPrint " +
        "SELECT " +
        "    NAME, " +
        "    CAST(METRIC1 / METRIC2 AS FLOAT) AS METRIC_RATIO" +
        "FROM input;";
    
    // Execute the main pipeline in a StatementSet (with printing to logs)
            tableEnv.createStatementSet()
            .addInsertSql(params.get(INSERT_QUERY))
            .addInsertSql(sqlQueryPrint)
            .execute();

I am not sure this is considered best practice, and for sure not production ready, but worked for my local debugging purposes :)

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

79339901

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

Regenerating any of the keys helped.

Interestingly enough I regenerated only the Key 2, while used the Key 1 for requests -- in essence, the payload did not change.

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

79339889

Date: 2025-01-08 16:00:05
Score: 3
Natty:
Report link

Network Extensions Packet Tunnel API. I Use This API To Make A VPN App, It can auto find the Http proxy services on your Wifi network and switch with A single tap. https://apps.apple.com/us/app/proxytap/id6667120510

enter image description here

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

79339865

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

2025 answer, not directly answering the question but can be a good solution for many.

TL;DR

  1. Use ModernBERT for up to 8k tokens (16x larger than original BERT’s 512-token limit).
  2. Chunk the text if it exceeds 8k tokens or if you must stick to an older BERT model.

BERT’s 512-token limit has historically meant you either had to truncate long text or split it into multiple 512-token chunks. However, ModernBERT (released in December 2024) now supports sequences up to 8,192 tokens, making it a drop-in replacement for long-form text without chunking.

That’s it — ModernBERT is basically BERT with a bigger window and better performance. Even for shorter text it's just a better model (backed by many benchmarks).

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

79339856

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

In my case, for Android Studio, I found the Github Copilot icon at the bottom right and from there I was able to log in/out to switch accounts. See the picture below.

enter image description here

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

79339846

Date: 2025-01-08 15:55:03
Score: 0.5
Natty:
Report link

I made some modifications to your command:
C:/OpenFinRVM.exe --config=file:///c:/myproject/launcher-local.json --user-data-dir=c:/openfin --disable-web-security

Ensure the path syntax is correct and replace OpenFinRVM with OpenFinRVM.exe.

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

79339845

Date: 2025-01-08 15:55:03
Score: 2
Natty:
Report link

Since poetry 2.0.0, the shell is a poetry-plugin (see shell description and installation hints github python-poetry/poetry-plugin-shell).

I had to install it with:

poetry self add poetry-plugin-shell
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Thomas Welsch