79397839

Date: 2025-01-29 18:46:39
Score: 2
Natty:
Report link

Make sure that the sources are defined in the "Module" section inside the "Project Settings".

How to access: File/Project Structure/Modules

enter image description here

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

79397833

Date: 2025-01-29 18:44:38
Score: 2
Natty:
Report link

It looks like there are SOAP APIs for this in the Resource Mangement WSDL, maybe this one: Submit_Purchase_Order

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

79397828

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

add a prop key to MapView like this <MapView key={Platform.OS === "android" ? ${Key} : "map"} ... /> and define a state: const [key, setKey] = React.useState(0);

and add useEffect:

useEffect(() => {
    if (Platform.OS === "android") {
      setKey((prev) => prev + 1);
      setIsMapReady(false);
    }
  }, [storeMarkers]);
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: torodebout

79397824

Date: 2025-01-29 18:41:37
Score: 0.5
Natty:
Report link

You can edit how the value is displayed by giving it a format like this, where I give it and ending of "Hours" instead of ".0%"

    donut: {
    label: {
      format: function(value, ratio, id) {      return value +"Hours";       }
    }
  },

For more info on this, you can see how billboard does it here. https://naver.github.io/billboard.js/demo/#DonutChartOptions.MultilineLabel

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

79397800

Date: 2025-01-29 18:29:35
Score: 2.5
Natty:
Report link

You wouldn't need to do gradient descent because what it does is search the global minimum (which you already have). But calculating a global minimum is is most cases impossible, that's why we use GD to approximate it.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Joรฃo Gabriel Cardozo Castro

79397793

Date: 2025-01-29 18:28:34
Score: 1.5
Natty:
Report link

There's a library called paretoset that calculates Pareto frontiers. It provides both numpy and numba implementations, and self-reports benchmark values that are comparable to the fastest implementations provided here: paretoset can process 1e6 observations of 3 objectives in under 1 sec

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

79397777

Date: 2025-01-29 18:22:32
Score: 4
Natty: 4.5
Report link

I just saw that Plotly has a sidebar option explained here: https://dash.plotly.com/dash-ag-grid/enterprise-sidebar

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

79397771

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

! ========== Building Definition ========== Building, Residential_Building, !- Name 0.0, !- North Axis {deg} City, !- Terrain 0.04, !- Loads Convergence Tolerance Value 0.4, !- Temperature Convergence Tolerance Value {deltaC} FullExterior, !- Solar Distribution 25; !- Maximum Number of Warmup Days

! ========== Thermal Zones ========== Zone, First_Floor, !- Name 0, 0, 0, !- X, Y, Z Coordinates {m} , , , !- Floor, Ceiling, Walls Exposed to Sun Yes; !- Part of Total Building Area

Zone, Second_Floor, 0, 0, 3, , , , Yes;

Zone, Third_Floor, 0, 0, 6, , , , Yes;

! ========== Materials ========== Material, Brick, !- Name Rough, !- Roughness 0.2, !- Thickness {m} 0.9, !- Conductivity {W/m-K} 2000, !- Density {kg/m3} 900; !- Specific Heat {J/kg-K}

Material, Insulation, MediumSmooth, 0.1, 0.04, 50, 1200;

Material, Tile_Roof, MediumSmooth, 0.15, 0.72, 1800, 900;

! ========== Constructions ========== Construction, Wall_Construction, Brick, Insulation;

Construction, Roof_Construction, Tile_Roof, Insulation;

! ========== HVAC System ========== ZoneHVAC:Baseboard:Convective:Water, First_Floor_Radiator, First_Floor, AlwaysOn, autosize, 0.85;

ZoneHVAC:Baseboard:Convective:Water, Second_Floor_Radiator, Second_Floor, AlwaysOn, autosize, 0.85;

ZoneHVAC:Baseboard:Convective:Water, Third_Floor_Radiator, Third_Floor, AlwaysOn, autosize, 0.85;

! ========== Heat Pump System ========== HVACTemplate:Plant:Boiler, HeatPump_Boiler, HotWaterLoop, NaturalGas, 0.85, 80, 60, autosize;

HVACTemplate:Plant:HotWaterLoop, HotWaterLoop, HeatPump_Boiler, autosize, autosize, 60, 40, 0.1, 0.1;

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Filler text (0.5): ==========
  • Filler text (0): ==========
  • Filler text (0): ==========
  • Filler text (0): ==========
  • Filler text (0): ==========
  • Filler text (0): ==========
  • Filler text (0): ==========
  • Filler text (0): ==========
  • Filler text (0): ==========
  • Filler text (0): ==========
  • Filler text (0): ==========
  • Filler text (0): ==========
  • Low reputation (1):
Posted by: Ruchi

79397770

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

os.chdir() does not return any value.

Your for loop is therefore basically:

for file in None:
   ...

Which obviously does not work, as None doesn't implement the iterator protocol.

Did you mean os.listdir() perchance?

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

79397768

Date: 2025-01-29 18:19:30
Score: 8 ๐Ÿšฉ
Natty: 5.5
Report link

Could you share the pypdf2 layer or its arn which you have used to run this lambda code?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you share
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Prashant Mittal

79397766

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

You're trying to access the 'agGrid' object but there's no import or declaration for it. Couple of things you can try doing is:

  1. Declare a. variable named 'agGrid' at the very top. or
  2. Add an import for agGrid from the installed package.
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: nd10

79397765

Date: 2025-01-29 18:18:29
Score: 3.5
Natty:
Report link

You can test fire the event by using this link: https://pubsubhubbub.appspot.com/publish

  1. Publish video to your channel.
  2. Check Atom feed: https://www.youtube.com/feeds/videos.xml?channel_id=<CHANNEL_ID_STARTING_WITH_UC>
  3. https://pubsubhubbub.appspot.com/publish Publish the event.

Then you can test to see how your callback is receiving data from the YouTube.

Yet, you won't be able to know when the post call was made for the newly uploaded video since this is manually triggered. New upload trigger seems to be flaky: https://issuetracker.google.com/issues/204101548.

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (1): this link
  • No code block (0.5):
  • Low reputation (1):
Posted by: SpiqUp Com

79397761

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

Solved my own problem, and yes I was just missing something

I was looking at the configuration declarations of tag and tag-file, and didn't see that attributes in tag-file are declared in the header of the file itself

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

79397759

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

Lombok version image

Please make sure, you have added the ${lombok.version} in pom.xml or just replace/paste this snippet in pluggins

    <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <annotationProcessorPaths>
                    <path>
                        <groupId>org.projectlombok</groupId>
                        <artifactId>lombok</artifactId>
                        <version>${lombok.version}</version>
                    </path>
                </annotationProcessorPaths>
            </configuration>
        </plugin>
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Neeraj Parkash Sharma

79397747

Date: 2025-01-29 18:12:28
Score: 2
Natty:
Report link

I think the issue lies in the incorrect definition of the compiler in VS Code. Try opening the settings by right-clicking on the notification and selecting "Edit includePath settings". In the window that opens, specify the path to the compiler and its type.

Edit includePath settings

Compiler path and type

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

79397743

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

I will try to provide an answer strictly to the original question (instead of judging the question or providing an answer to a question that was not asked).

Yes, it is possible and can be as secure as (if not more than) any TLS/HTTPS connection.

Assuming you influence implementation on both ends:

  1. Send sha256 or sha384 hash of the password instead of he password
  2. If both ends trust each other, then generate RSA/EC key pair at the server side and share the public keys with the client(s). If this is not possible, then obtain a server certificate from a public CA (e.g free from Let's Encrypt) and share it publically with the client(s). Afterwards, a client can send credentials encrypted with that public key and the server can decode using the private key it holds.
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Shahid

79397742

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

from qt io forum I found that [QT SCALE FACTOR] is useless, as it acts a a multiplier of ms-window scale factor, so setting it to 1 has no effects. And setting it to any other value will work even on none high dpi screen, which will shrink/expand everything. The working option is : os.environ["QT_ENABLE_HIGHDPI_SCALING"]= "0"

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

79397730

Date: 2025-01-29 18:06:26
Score: 1
Natty:
Report link
import requests
import pandas

url = 'https://s2.coinmarketcap.com/generated/search/quick_search.json'
header={"Content-Type":"application/json",
    "Accept_Encoding":"deflate"}
response = requests.get(url, headers=header)
rd=response.json()
df = pandas.json_normalize(rd)
print(df)

Gives you this output: results

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

79397725

Date: 2025-01-29 18:04:25
Score: 5
Natty:
Report link

๐”๐’๐ˆ๐๐† ๐’๐๐Ž๐–๐๐€๐‘๐Š ๐๐‘๐Ž๐‚๐„๐ƒ๐”๐‘๐„ ๐“๐Ž ๐„๐—๐„๐‚๐”๐“๐„ ๐๐”๐„๐‘๐ˆ๐„๐’ ๐๐€๐‘๐€๐‹๐‹๐„๐‹๐‹๐˜ (No more multiple/duplicate worksheets or send queries to another developer for execute ๐Ÿ˜œ)

https://github.com/mahanteshimath/EXECUTE_SNOWFLAKE_QUERIES_PARALLELLY (GitHub link: Present in Description of Video PR are welcome) Comment your thoughts /Let me know other better methods

https://www.youtube.com/watch?v=RGiB1cRMzc0&feature=youtu.be

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Blacklisted phrase (1): youtube.com
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mahantesh Hiremath

79397716

Date: 2025-01-29 18:00:24
Score: 2
Natty:
Report link

For any USDOT FHWA open source tools, including V2X-Hub, FHWA provides free helpdesk services. If you continue to experience difficulties or have any questions, please don't hesitate to reach out to [email protected]. They will be able to provide more specific assistance tailored to your setup and installation process.

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

79397705

Date: 2025-01-29 17:56:22
Score: 4
Natty: 3.5
Report link

12345345643245643245643245675432456786543213456786543567897654325687654356754356754356754356754324567865435675468748743847850549878999996000854968500600598210981029109000843689467328950000435356829700000000000000765647800000

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Filler text (0.5): 00000000000000
  • Low reputation (1):
Posted by: user29421212

79397703

Date: 2025-01-29 17:56:22
Score: 0.5
Natty:
Report link

The scanner's buffer size must be set to a value equal to or greater than the longest line in the file. The application cannot know this size when scanning files with unknown content and size.

If your your actual problem is counting the number of lines in a file, then count newlines in the file:

func countLines(r io.Reader) (int, error) {
    buf := make([]byte, 4086)
    lines := 0
    sep := []byte{'\n'}
    for {
        n, err := r.Read(buf)
        lines += bytes.Count(buf[:n], sep)
        if err == io.EOF {
            return lines, nil
        } else {
            return lines, err
        }
    }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Talyor Rex

79397702

Date: 2025-01-29 17:56:22
Score: 2
Natty:
Report link
Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Oumaima Makhlouk

79397700

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

if you can convert this schema into json then i know a tool which convert json to mongoose schema https://craftydev.tools/json-node-mongoose-schema-converter may this this website hav tool for json schema to json

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

79397699

Date: 2025-01-29 17:55:22
Score: 0.5
Natty:
Report link

I believe the file names with Table and file already exit and they are being auto corrected to new file names.

You can use the "overwrite" option under 'File name conflict behavior settings' to get the filename you need.

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

79397691

Date: 2025-01-29 17:52:21
Score: 3
Natty:
Report link

Please note that this is an old version of ODL and as such, there is no support for it. You may want to try a newer version and probably take a look at the following guide: http://repositorioinstitucional.uaslp.mx/xmlui/handle/i/8772

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

79397689

Date: 2025-01-29 17:51:21
Score: 0.5
Natty:
Report link

I finally figured this out right after posting the question

replacing the

 return RedirectToLocal(returnUrl);

with this line of code

return Content("<script> if(window.opener) {window.opener.location.reload(); window.close();} else{window.location = '" + Url.Action("Index", "Home") + "';} </script>", "text/html");

so passing back javascript to check for the popup, which will close it, and also refresh the page.

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

79397672

Date: 2025-01-29 17:44:19
Score: 1
Natty:
Report link

I tried to implement your idea on a toy dataset as it seems correct:

master_file_compare = pd.DataFrame({"SKU": range(10)})
account_data = pd.DataFrame({"SKU": range(5, 15)})

# Merging both dataframe using left join
comparison_result = pd.merge(master_file_compare,account_data, on='SKU', how='left', indicator=True)

# Filtering only the rows that are available in left (master_file_compare)
comparison_result = comparison_result.loc[comparison_result['_merge'] == 'left_only']
display(comparison_result)

    SKU _merge
0   0   left_only
1   1   left_only
2   2   left_only
3   3   left_only
4   4   left_only

It is not the result that you are looking for ?
In your code, instead of account-data.csv it shouldn't be current-data.csv ?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
Posted by: rehaqds

79397660

Date: 2025-01-29 17:41:18
Score: 1.5
Natty:
Report link

OnChange is for one change. If the radio button is unchecked and then checked, that is one change.

Not only have you not closed your input tags, you have declared two inputs with the same name. This already causes unexpected behavior.

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

79397658

Date: 2025-01-29 17:40:18
Score: 2
Natty:
Report link

Yes, there's a more efficient way using arrays and parameterized queries within a loop.

Instead of inserting each record individually, you can construct an array of objects and use a single insert statement with a loop. This significantly reduces database round trips.

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

79397656

Date: 2025-01-29 17:39:18
Score: 2
Natty:
Report link

Try with this pip3 install rjsmin

it works for me

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ayush Shrivastava

79397650

Date: 2025-01-29 17:36:17
Score: 2.5
Natty:
Report link

Thanks for the attempt

However:

For a short period it was working again, but now has returned to the same erroring state.

error screenshot

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vincent Buckner

79397644

Date: 2025-01-29 17:35:16
Score: 4
Natty:
Report link

What's in the other answer is correct (and I can't comment due to reputation).

There is an important caveat though:

If you write to a graphmart, which is the Anzo abstraction for a graph, the write goes to a linked data set called journal. The triples you write will not be available in the graph automatically, unless you trigger a graphmart refresh, which essentially means running the whole ingest pipeline again. This adds at least a few seconds of delay, depending on the amount of data, where the whole graph is unavailable.

If your usecase relies on OLTP with a sufficiently high number of writes, and n seconds of lag are a no go, you should consider a different platform.

For persisting data in an OLTP way, Anzo uses those journals, which actually are an instance of Blazegraph running.

(This is the behavior on the Anzo 5.3 platform, it might have improved since.)

Reasons:
  • RegEx Blacklisted phrase (1): can't comment
  • RegEx Blacklisted phrase (1.5): reputation
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): What's in the
  • Low reputation (1):
Posted by: reallynotthateducated

79397640

Date: 2025-01-29 17:33:13
Score: 7 ๐Ÿšฉ
Natty:
Report link

did you find a solution? I just got the same error. If I use a text in the prompt, if works correctly but when I use a file, it fails.

However, when testing the prompt, it uses correctly the file provided as sample data.

Thanks.

Begoรฑa.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): did you find a solution
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): did you find a solution
  • Low reputation (1):
Posted by: Bvillamor

79397623

Date: 2025-01-29 17:28:12
Score: 2.5
Natty:
Report link

Quick Fix: Got the answer from member of tge google proc organization:

Submit job (no --jars)

gcloud dataproc jobs submit pyspark gs://your-bucket/script.py \
    --cluster=your-cluster --region=your-region
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Shima K

79397618

Date: 2025-01-29 17:26:10
Score: 6 ๐Ÿšฉ
Natty: 5
Report link

I have the bookmarking working in my project nicely, and would like to implement this functionality that you are referencing. Where and how did you add this to your project?

thanks in advance for any and all help.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (3): thanks in advance
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Roman Weaver

79397616

Date: 2025-01-29 17:25:09
Score: 5.5
Natty:
Report link

I am facing the same issue in my personal site name gearthrust. if a upload new article i am facing the issue you ha link to external source.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: techy pork

79397615

Date: 2025-01-29 17:25:09
Score: 3
Natty:
Report link

Bit late to the party, but I see this question is still unresolved, and I did see a workaround. (found it here: How to link youtube video without captions?)

I noticed when using www.youtube-nocookie.com as base url, the captions do seem to hide in the embed.

Like so: www.youtube-nocookie.com/embed/____the___ID____?cc_load_policy=0&cc_lang_pref=invalid&autoplay=1&modestbranding=1&showinfo=0&controls=0&mute=1&rel=0&loop=1&playlist=____the___ID____

I add the playlist, so I can loop/repeat-1 the movie.

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

79397614

Date: 2025-01-29 17:24:09
Score: 1.5
Natty:
Report link

I encountered the same error when trying to upgrade to the latest Google Mobile Ads SDK. I also attempted to downgrade some libraries based on recommended solutions, but that didn't work for me.

Eventually, I found that upgrading Xcode from 15.4.0 to 16.2.0 (the latest version) resolved the issue, and the build succeeded.

Reference: _swift_FORCE_LOAD$_swift_Builtin_float

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

79397612

Date: 2025-01-29 17:24:09
Score: 1
Natty:
Report link

What I did is edited the file /etc/opendkim.conf and took off Date and Message-Id from there, so it is now: SignHeaders From,Subject,To Then restart the service using: service opendkim reload Now it works !

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What I
  • Low reputation (0.5):
Posted by: togobites

79397593

Date: 2025-01-29 17:18:07
Score: 0.5
Natty:
Report link

Today, January 2025, the resource type exists and can be deployed with:

                        {
                            "name": "[format('{0}/{1}', parameters('automationAccountName'), parameters('webhookName'))]",
                            "type": "Microsoft.Automation/automationAccounts/webhooks",
                            "apiVersion": "2018-06-30",
                            "location": "[parameters('location')]",
                            "properties": {
                                "isEnabled": "[parameters('isEnabled')]",
                                "expiryTime": "[if(not(empty(parameters('expiryTime'))), parameters('expiryTime'), '11-26-2036')]",
                                "runbook": {
                                    "name": "[parameters('runbookName')]"
                                }
                            }
                        }

As you see, the webhook resource is a child resource to automationAccounts.

The isEnabled is type: bool,

The expiryTime expects format: MM-DD-YYYY and is required.

Beware: the webhook Name should be unique inside the automationAccount. Re-deploying with same name will never reveal the service uri (property: .uri) except during first deployment.

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

79397591

Date: 2025-01-29 17:18:07
Score: 3.5
Natty:
Report link

Turns out you have to edit GooseDesktop.Refactor not the normal GooseDesktop

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

79397587

Date: 2025-01-29 17:17:07
Score: 3
Natty:
Report link
If ActiveSheet.Shapes("Check Box 1").ControlFormat.Value = Checked Then
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29420677

79397585

Date: 2025-01-29 17:16:06
Score: 2
Natty:
Report link

If the option isn't appearing, can you check if you've downloaded the ASP.NET and web development workload? You should be able to see it in Visual Studio somewhere in Tools > Get Tools and Features or be able to install it from there.

I also found a Microsoft tutorial that may be useful for creating an ASP.NET Core project, if that's what you're looking for.

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

79397570

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

A bit late, but my solution to this was to ditch Google's SQL implementation altogether. I converted the app to use a FireBase realtime database, and that has MUCH better performance. As a bonus, it's also free (for our small usage), where as we had to pay for the Google Cloud SQL server before.

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

79397565

Date: 2025-01-29 17:09:05
Score: 1.5
Natty:
Report link

I just took a quick look on your code and two things caught my attention:

1 - I think you could remove the '%' character from your regex search, since there's none on the result. (98.880000000000000).

2 - You want an alert, when the threshold hit 90%, but you're setting it to 40, so it does make sense to not generate any alerts, since the space is never less than 40 (as shown in the result you sent).

You could try removing the '%' character from the Regular Expression (regex) and increasing the threshold to 99, to see if it does pops something.

I hope this answer helps you, feel free to reach me at any time :)

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Filler text (0.5): 0000000000000
  • Low reputation (1):
Posted by: Leonardo Rafaelli

79397556

Date: 2025-01-29 17:06:04
Score: 0.5
Natty:
Report link

I moved away from systemd to xdg autostart instead which executes the script as the correct user allowing permissions to be set by default

/etc/xdg/autostart

[Desktop Entry]
Type=Application
Exec=/home/EB/EBSYNC/app/chromium.sh
Hidden=false
NoDisplay=false
X-GNOME-Autostart-enabled=true
Name=Chromium Kiosk
Comment=Launch Chromium in kiosk mode
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Husk Rekoms

79397555

Date: 2025-01-29 17:05:04
Score: 3.5
Natty:
Report link

I downgraded the version of contact form and the problem is solved :)

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

79397554

Date: 2025-01-29 17:05:04
Score: 2
Natty:
Report link
.cdk-overlay-container .mat-menu-panel{
  min-width: 424px;
}
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tarik Raposo

79397552

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

<form>
  <!-- Focus this input and press Enter -->
  <input type="text">

  <!-- This button will be not affected (type="button") -->
  <button type="button">button button</button>

  <!-- This button will be pressed (type="submit") -->
  <button type="submit">button submit</button>
</form>

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

79397549

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

You are only tatgetting .btn_two for the hover effect .sidebar_menu .btn_two i:hover{ font-size: 30px; }

You need to target the two classes.

.btn_one i:hover, .btn_two i:hover{
   font-size: 30px;
  }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: beth

79397534

Date: 2025-01-29 16:59:02
Score: 1
Natty:
Report link

I've just been working on this using PySide6 and looks like some things may have changed in Qt since the answer above. This is what's working for me (and thank you for the post above because it's the only one I've found that had anything like a simple answer!):

palette = self.palette()
palette.setBrush(QPalette.ColorRole.HighlightedText, QBrush(Qt.BrushStyle.NoBrush))
self.setPalette(palette)
Reasons:
  • Blacklisted phrase (0.5): thank you
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dave Hudson

79397532

Date: 2025-01-29 16:59:02
Score: 4
Natty: 4
Report link

Be great if you posted the whole working code.

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

79397520

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

A suggested solution

Tracing the deep call stack of multiprocessing.Process() I found the apparent necessity for the guard comes from a deliberate design choice in the multiprocessing module: it is hard-wired to initially spawn the main script for every process. It doesn't have to! The fix is to monkey-patch the start() method of the mp.Process class so that it simply spawns some other script dedicated to the child process. This avoids the deadly recursion and no functionality is lost, except for that each child process code has to be put into a separate module.

Even though this solution has already been battle-tested by controlling real hardware in several Windows/Linux lab setups for over a year, I will be grateful if you double-checked this approach and gave me your comments. Probably a cleaner solution can be found.

Some code - minimum working example

This is a basic script running a (patched) second process; similar syntax can also be used in a pythonic module.

#!/usr/bin/python3  
#-*- coding: utf-8 -*-

import worker_module # All second process code has to be in a separate module

# No guard necessary here.

p = worker_module.PatchedProcess(target=worker_module.worker_func, args=('bob',))
p.start() 
p.join() # wait for the process finishing to get printouts right

And here is the worker_module.py with the monkey-patching trick along with all code to be ran in the separate process:

#!/usr/bin/python3  
#-*- coding: utf-8 -*-

import multiprocessing as mp
class PatchedProcess(mp.Process):
    def start(self, *args):
        import sys
        bkup_main = sys.modules['__main__'] ## just in case
        sys.modules['__main__'] = __import__('worker_module') ## this must match this module's name
        super().start(*args)
        sys.modules['__main__'] = bkup_main ## just in case


def worker_func(parameter):
    print('USER FUNCTION ', parameter*3)


Running python3 hacked_example.py yields as expected:

USER FUNCTION  bobbobbob
Reasons:
  • RegEx Blacklisted phrase (2): I will be grateful
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: dominecf

79397510

Date: 2025-01-29 16:52:59
Score: 4
Natty: 4
Report link

thanks it' s help. interesting why not manuall instaler.

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

79397501

Date: 2025-01-29 16:49:58
Score: 1
Natty:
Report link
int count = 0;
    for(int i = 0; i < arr.length; i++) {
        String s = Integer.toString(arr[i]);
        String[] ss = s.split("");
        if (ss.length % 2 == 0) {
            count++;
        }
    }
    System.out.println("Total Even number:"+count);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shrid

79397498

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

JUST CHANGE IT 24 IT WORKS!

    **minSdk = 24**
    targetSdk = flutter.targetSdkVersion
    versionCode = flutter.versionCode
    versionName = flutter.versionName
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Neeraj Sethi

79397494

Date: 2025-01-29 16:46:57
Score: 1
Natty:
Report link

Make sure to add this dependency to your app-level build. gradle file.

androidTestImplementation ("com.linkedin.dexmaker:dexmaker-mockito:2.28.4")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ronik Limbani

79397491

Date: 2025-01-29 16:46:57
Score: 2.5
Natty:
Report link

I had a similar problem. Try running the compiler in the problematic area through the terminal. If everything works, then the issue is with VS Code. Just disable the notification about includePath.

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

79397489

Date: 2025-01-29 16:45:57
Score: 2
Natty:
Report link

enter image description here

I've placed your script in the public folder, which is a replacement for the assets folder in newer Angular versions. Also, I renamed the resulting main.js file to custom-element.js to avoid name collision.

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

79397487

Date: 2025-01-29 16:44:57
Score: 1
Natty:
Report link

Being derivative free, this solver must estimate an appropriate step size. The solver has bounds of order 360, and a 0 initial guess, so it may be having great difficulty finding an appropriate step size heuristically.

You could try providing a typical step size as described in the docs. https://nlopt.readthedocs.io/en/latest/NLopt_Reference/#initial-step-size.

So it can take steps which have the resolution to detect the solution.

(A better initial guess will always help also).

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

79397485

Date: 2025-01-29 16:44:57
Score: 2.5
Natty:
Report link

You should try to look with selecting all files in file type instead of backup. If your file is not saved by using .bak extension then in this case you should try to selecting all files.

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

79397482

Date: 2025-01-29 16:42:56
Score: 1
Natty:
Report link

Thanks to a Redditor, this is solved:

https://www.reddit.com/r/k3s/comments/1icg32i/make_traefik_listen_on_8443_and_8080_instead_of/

  1. The yaml indentation was misaligned; too many spaces on some lines (not a cut-n-paste error). I copied someone else's work and didn't check it (note to self).

  2. The 'expose' entries aren't needed and made traefik unhappy.

This worked:

apiVersion: helm.cattle.io/v1
kind: HelmChartConfig
metadata:
  name: traefik
  namespace: kube-system
spec:
  valuesContent: |-
    ports:
      web:
        port: 8088
        exposedPort: 8088
      websecure:
        port: 8443
        exposedPort: 8443
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: bchill

79397475

Date: 2025-01-29 16:41:55
Score: 9.5 ๐Ÿšฉ
Natty: 4.5
Report link

did you managed to solve the issues ? Same problem here and days wated looking for a solution....

Reasons:
  • RegEx Blacklisted phrase (3): did you manage
  • RegEx Blacklisted phrase (1.5): solve the issues ?
  • RegEx Blacklisted phrase (1): Same problem
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: Axel Labre uint8_t

79397468

Date: 2025-01-29 16:37:54
Score: 3
Natty:
Report link

i have the same problem my solution was use setValues methot from Form example

<template>
  <Form ref="form" v-slot="{ meta }" :initial-values="initialValues">
    <Field name="email" />
    <button :disabled="!meta.dirty">Submit</button>
  </Form>
</template>

<script setup>
import { ref, onMounted } from 'vue';
import { Field, Form } from 'vee-validate';

const initialValues = ref({ email: 'mm' });
const form = ref();

onMounted(() => {
  // Dynamically set initial form values
  form.value.setValues({ email: '[email protected]' });
});
</script>
Reasons:
  • Blacklisted phrase (1): i have the same problem
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): i have the same problem
  • Low reputation (0.5):
Posted by: juan carlos peรฑa cabrera

79397467

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

You didn't provide enough context to be sure, but this error typically comes up when you try to link code using different standard library implementations on Windows, e.g. linking a program using UCRT to a program using MSVCRT. If you can, compile all of your dependencies yourself in the exact same environment to avoid this issue.

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

79397463

Date: 2025-01-29 16:34:52
Score: 4.5
Natty:
Report link

Have to solve this problem? Actually I'm building the similar project to play tic tac toe over bluetooth but unable to come up with the solution yet! have build basic tic tac toe game in react native and would live to play on 2 device over bluetooth? if you have solution, do let me know

Reasons:
  • RegEx Blacklisted phrase (1.5): solve this problem?
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Awais Ali

79397459

Date: 2025-01-29 16:33:52
Score: 2
Natty:
Report link

Just in case anyone finds it helpful in the future, I had to run "apt-get install dbus". I am no expert, but my application ran normally afterwards. For a bit more context, I was using the base python image from Docker.

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

79397448

Date: 2025-01-29 16:29:51
Score: 0.5
Natty:
Report link

In the first script, if all the "dummy" files are the same, just have the script create one file at the begining instead of inside the foreach loop. Then replace that line and just copy that one file into the new location determined by the foreach loop. That would save time on that one.

For the "slow script", Why are you creating your own timer instead of piping the script to Measure-Command?

  1. Save the script and remember the full path and name
  2. .\Mypath\Myscript.ps1 | Measure-Command

Read the amount of time Measure-Command reports.

Instead of the -Filter paramter have you tried it like this to see if that effects performance or not?

$TestDir = "$($env:USERPROFILE)\TestFiles"
# Get the list of files
Get-ChildItem -Path "$TestDir\*.txt" | ForEach-Object {
    # Simulate some processing
    Get-Content $_.FullName | Out-Null
}
Reasons:
  • Whitelisted phrase (-1): have you tried
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Vern_Anderson

79397437

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

Answer provided in the comments by Jon Spring

df |> tidyr::pivot_wider(names_from = "COORDINATE", values_from = "COORDINATE_DATA")

This worked for the data outlined in the question.

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

79397430

Date: 2025-01-29 16:25:50
Score: 2.5
Natty:
Report link

If you have one resource, you dont need to provide it. But you need to filter it on your eloquent sql

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

79397422

Date: 2025-01-29 16:23:49
Score: 0.5
Natty:
Report link

There actually is a plug-and-play solution for this: https://www.tracklution.com/stripe-conversion-tracking/

You basically have to do only few steps:

--> Tracklution will tie together the website session with GCLID and Purchase data from Stripe, and send the Purchases back to Google Ads

More documentation/detailed instructions: https://docs.tracklution.com/installation/stripe-integration

With it you can use also other platforms, like send data to GA4 or Facebook Conversion API.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: StripeTracker

79397421

Date: 2025-01-29 16:23:49
Score: 3
Natty:
Report link

I came across the article below, which provides answers to your questions. It includes the necessary security configuration, yaml.properties file, and the required dependencies with their configurations.

https://dev.to/bansikah/keycloak-and-spring-boot-the-ultimate-guide-to-implementing-single-sign-on-1af7

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

79397419

Date: 2025-01-29 16:22:49
Score: 0.5
Natty:
Report link

You can use the expression

get('Column7') * 100
Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Joรฃo Paulo Santos Almeida

79397397

Date: 2025-01-29 16:14:48
Score: 3
Natty:
Report link

I had this same problem. I turned off HDR in settings > display > Use HDR. That seems to have resolved it.

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

79397384

Date: 2025-01-29 16:10:47
Score: 0.5
Natty:
Report link

Not sure this will help you as I'm quit new to astronomy and just getting my feet wet with Skyfield. My approach for testing for specific satellites that could pass in my sky were as follows. I use geocentric = iss.at(times), subpoints = geocentric.subpoint() to determine the geographic position elements (latitude, longitude, elevation) assuming these are ground track figures. I then test if the figures fall within the bounding box I defined loosely based upon the horizon distance formula. My bounding box is about half of what the distance formula suggests thus I'm assuming the great circle distance will always be less than the horizontal distance and within my bounding box. I retain only those geographic positions that meet the above criteria with also the addition of being within evening hours. I have yet to validate my findings as they are still off from info I'm finding on other sites for satellites of interest to me. Haven't figure out yet the discrepancies but I believe the approach is sound in narrowing down the potential set of satellites over my area.

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

79397378

Date: 2025-01-29 16:09:46
Score: 2
Natty:
Report link

I just found the fix on this problem and if someone want to fixed here is the solution:

https://codingwitht.com/how-to-upload-images-in-flutter-web-dropzone/

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

79397377

Date: 2025-01-29 16:09:46
Score: 1
Natty:
Report link

I tried to modify the source to store the zen in a variable instead of print. This is dependent on implementation.

import re
from importlib.util import find_spec
from pathlib import Path

zen = ""
zen_module_path = Path(find_spec("this").origin)
zen_source = zen_module_path.read_text()
pattern = re.compile(r'print\((.*)\)')
zen_source_mod = pattern.sub(r'zen = \1', zen_source)
exec(zen_source_mod)
print(zen)

Could also remove the line and decode the s var instead...

Guess I'm not Dutch ๐Ÿคฃ

Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: french guy

79397372

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

En 1 ligne pour convertir le sonar-project.properties en variable d'env pour maven :

SONAR_PROPERTIES=$(grep "^sonar\.[^=][^=]*=" sonar-project.properties|sed 's/^\([^=]*\)=\(.*\)/"-D\1=\2"/;s/"\([^ ]*\)"/\1/'|tr '\n' ' ')
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Franรงois Honorรฉ

79397366

Date: 2025-01-29 16:07:46
Score: 2
Natty:
Report link

Firefox browser -> Right click -> Inspector -> select html tag -> Right click -> Edit as HTML -> Select All -> Copy

That worked on my side.

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

79397358

Date: 2025-01-29 16:03:45
Score: 2.5
Natty:
Report link

grant execute any procedure to admin WITH ADMIN OPTION;

grant create any procedure to admin WITH ADMIN OPTION;

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

79397356

Date: 2025-01-29 16:02:45
Score: 3.5
Natty:
Report link

It seems to be the problem was with caching. I had to remove a post with link on Facebook, added it again (by creating new post) 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: Al Sh

79397347

Date: 2025-01-29 16:00:44
Score: 3
Natty:
Report link

You are missing a + after @ToDate

Reasons:
  • Low length (2):
  • No code block (0.5):
  • User mentioned (1): @ToDate
  • Single line (0.5):
  • High reputation (-1):
Posted by: Bart McEndree

79397339

Date: 2025-01-29 15:58:44
Score: 3
Natty:
Report link

Rollbar is another great option if you want something that is easy to setup and use at a great price!

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

79397331

Date: 2025-01-29 15:57:43
Score: 3
Natty:
Report link

in your @SpringBootTest Annotation you can pass properties to override the actual ones like the following

@SpringBootTest(properties = {"spring.data.mongodb.username=","spring.data.mongodb.password="})

You can review this article for more infos/options https://www.baeldung.com/spring-tests-override-properties

Reasons:
  • Blacklisted phrase (1): this article
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @SpringBootTest
  • Low reputation (1):
Posted by: Hamza Naceur

79397309

Date: 2025-01-29 15:49:41
Score: 4.5
Natty: 5
Report link

Django 5.2 will support composite primary keys, see:

https://docs.djangoproject.com/en/dev/releases/5.2/#composite-primary-keys

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

79397306

Date: 2025-01-29 15:48:40
Score: 2.5
Natty:
Report link

Thanks to @user459872 and @globglogabgalab, the enclosed code is less error prune and here are the two missing lines of code to get the generated HTML

from fasthtml import common as fh
from fastcore.xml import to_xml

my_var=fh.P('This is a simple example!')
print(to_xml(my_var))
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @user459872
  • User mentioned (0): @globglogabgalab
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ximo Dante

79397303

Date: 2025-01-29 15:47:40
Score: 2
Natty:
Report link

If you created a webapp and want to remember its name, you can look at the /myapps command there in BotFather.

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

79397298

Date: 2025-01-29 15:45:39
Score: 11.5 ๐Ÿšฉ
Natty: 6.5
Report link

I'm having a similar problem... but, cause of differents names of class, I can't find a solution. Here I solved the problem, thanks to the post with the code error. I can't vote, but this helped me a lot!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): I'm having a similar problem
  • Blacklisted phrase (1): helped me a lot
  • Whitelisted phrase (-2): I solved
  • RegEx Blacklisted phrase (2): I can't find a solution
  • RegEx Blacklisted phrase (2): can't find a solution
  • RegEx Blacklisted phrase (2): can't vote
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having a similar problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: gapler

79397297

Date: 2025-01-29 15:45:38
Score: 2.5
Natty:
Report link

''' proc sql; create table three as select a.,b. from one a full outer join two b on a.grp=b.grp; quit;

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

79397294

Date: 2025-01-29 15:44:38
Score: 1.5
Natty:
Report link

I encountered a similar issue where I could connect with Filezilla but could not connect with Notepad++ using the exact same details.

After messing around with settings for a while I eventually just closed Notepad++ and opened it again, and voila, it connects first time.

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

79397293

Date: 2025-01-29 15:44:38
Score: 0.5
Natty:
Report link

do like this term : just do a trinary statement to the items array like this

            DropdownButtonFormField<String>(
                                      dropdownColor: Colors.black,

                                      style: TextStyle(
                                          color:
                                              Colors.white), // Text color

                                      decoration: InputDecoration(
                                        labelStyle:
                                            TextStyle(color: Colors.white),
                                        labelText: "ุงุฎุชุฑ ",
                                        border: OutlineInputBorder(),
                                      ),
                                      //van or sedan pickup_truck coupe mini_van cross_over city_car
                                      items: useOtherCar == true
                                          ? [
                                              DropdownMenuItem<String>(
                                                value: DriversCarCubit.get(
                                                        context)
                                                    .CarTypeController
                                                    .text,
                                                child: Text(
                                                  DriversCarCubit.get(
                                                          context)
                                                      .CarTypeController
                                                      .text,
                                                  style: TextStyle(
                                                      color: Colors.white),
                                                ),
                                              )
                                            ]
                                          : [
                                              'van',
                                              'sedan',
                                              'pickup_truck',
                                              'coupe',
                                              'mini_van',
                                              'cross_over',
                                              'city_car'
                                            ].map((String value) {
                                              return DropdownMenuItem<
                                                  String>(
                                                value: value,
                                                child: Text(
                                                  value,
                                                  style: TextStyle(
                                                      color: Colors.white),
                                                ),
                                              );
                                            }).toList(),
                                      value: DriversCarCubit.get(context)
                                              .CarTypeController
                                              .text ??
                                          'sedan',
                                      onChanged: (newValue) {
                                        setState(() {
                                          DriversCarCubit.get(context)
                                              .CarTypeController
                                              .text = newValue.toString();
                                        });
                                      },
                                    ),
                         
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Low entropy (1):
  • Low reputation (1):
Posted by: Malik Muslih

79397291

Date: 2025-01-29 15:43:38
Score: 3
Natty:
Report link

What you looking for is t.me/USERNAME?text=MESSAGE

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What you
  • Low reputation (1):
Posted by: VoVcHiC

79397284

Date: 2025-01-29 15:40:37
Score: 2
Natty:
Report link

In my case, the reason for

Cannot create an instance of class xx.xx.XXViewModel at androidx.lifecycle.viewmodel.internal.JvmViewModelProviders.createViewModel(JvmViewModelProviders.kt:40)

is that because I don't annotate MainActivity with @AndroidEntryPoint. After annotating it, the error disappear. I am using hilt.

@AndroidEntryPoint
class MainActivity : AppCompatActivity() {
}

Here is the reference I find with my problem https://developer.android.com/topic/libraries/architecture/viewmodel/viewmodel-factories

and the following words help me a lot:

Note: When injecting ViewModels using Hilt as a dependency injection solution, you don't have to define a ViewModel factory manually. Hilt generates a factory that knows how to create all ViewModels annotated with @HiltViewModel for you at compile time. Classes annotated with @AndroidEntryPoint can directly access the Hilt generated factory when calling the regular ViewModel APIs.

Reasons:
  • Blacklisted phrase (1): help me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @AndroidEntryPoint
  • User mentioned (0): @HiltViewModel
  • User mentioned (0): @AndroidEntryPoint
  • Low reputation (1):
Posted by: Henry Xia

79397258

Date: 2025-01-29 15:32:34
Score: 4.5
Natty:
Report link

when ever i try to add any file in my project at that time i am getting the error of the fatal: pathspec 'index.html' did not match any files but i already try to add the file with command of git add [file name].

Reasons:
  • RegEx Blacklisted phrase (1): i am getting the error
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): when
  • Low reputation (1):
Posted by: user29419239

79397241

Date: 2025-01-29 15:25:32
Score: 2
Natty:
Report link

We have released QuestDB 8.2.2 which includes LAG and LEAD window functions.

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

79397239

Date: 2025-01-29 15:24:32
Score: 0.5
Natty:
Report link

function getEmailFromText(text){
    const has = text.includes("@");
    const left = text.split("@")[0];
    const right = text.split("@")[1];
    const email = has ? `${left.split(" ")[(left.split(" ").length-1)]}@${right.split(" ")[0]}` : "";
    const re_email = email.match(/\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b/g);
    return re_email ? re_email[0] : "";
}

console.log(getEmailFromText("Contact me on: [email protected] other other..."));

Reasons:
  • Blacklisted phrase (0.5): Contact me
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Rahman Qadirzade

79397238

Date: 2025-01-29 15:23:32
Score: 2
Natty:
Report link

We have released QuestDB 8.2.2 which includes LAG and LEAD window functions.

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

79397236

Date: 2025-01-29 15:22:32
Score: 2
Natty:
Report link

We have released QuestDB 8.2.2 which includes LAG and LEAD support.

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

79397193

Date: 2025-01-29 15:14:30
Score: 0.5
Natty:
Report link

to solve problem change tsconfig like that

{
  "compilerOptions": {
    "typeRoots": ["libs/sdk/types", "node_modules/@types", "node_modules/@types/wicg-file-system-access"],
    "types": [
            "node",
            "typelevel",
            "react-util-types",
            "browser-compat",
            "ts5.0", // @types/wicg-file-system-access for 5.x typescript
            "office-js"
        ],
  }
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Andrew