79168279

Date: 2024-11-07 22:37:06
Score: 3
Natty:
Report link

cwicncslaicnalwcknakociiwiii wcoapwpo ahwc uiu ucoainkpox[nx wccnaocisabc su iawbcsaiwocisna acnoix aiiksncoi[ lokjw uwujaklo iwjidwioi wjxnuwaiwidnxoaiw wuxnanusaiik sisnin owiaiwdn siawdnoaiwdsia iaodwaodsa disaoiwdk siaica woiwahdohsa coaidhsoacno nshliaw swsspaown siwal

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

79168275

Date: 2024-11-07 22:36:06
Score: 3
Natty:
Report link

I thought it was easy to use,but rejected my email and password together, so understand the situation and let sign in

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

79168264

Date: 2024-11-07 22:32:05
Score: 5.5
Natty:
Report link

I'm having similar issue and it happens only with Safari, both Firefox and Chrome do not exhibit this behavior. This means, there must be something related to how Safari accesses the YouTube. I think this behavior can be eliminated by unchecking Safari -> Settings -> Privacy -> Hide IP address from trackers.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having similar issue
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Travis

79168261

Date: 2024-11-07 22:31:05
Score: 2
Natty:
Report link

This is the normal behavior of Protobuf. Google protobuf library does have a way to overcome this by using JsonPrintOptions and set always_print_primitive_fields to true. I did not find something similar in QT code.

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

79168246

Date: 2024-11-07 22:27:04
Score: 2
Natty:
Report link

@DazWilkin had it right - I needed to have uint64 instead of int64; now everybody's happy.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @DazWilkin
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Eric Brown

79168243

Date: 2024-11-07 22:26:03
Score: 13
Natty: 7.5
Report link

Have you found the answer? i have been having the same issue myself of you could help me that would be great thank you.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): you could help me
  • RegEx Blacklisted phrase (2.5): Have you found the answer
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: JBRW

79168238

Date: 2024-11-07 22:24:03
Score: 2
Natty:
Report link

Create a component with client name on it, TextEditor.client.jsx It will render on client only.

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

79168236

Date: 2024-11-07 22:23:02
Score: 1.5
Natty:
Report link

The following css would add a dot to the custom counter:

counter-increment: mycounter;
content: counter(mycounter) ".";
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: jensonbenson

79168235

Date: 2024-11-07 22:23:02
Score: 2
Natty:
Report link

The primary issue is that you're using a shared state object which is set to true and never set to false based on the code you've provided. That means when you first present the sheet, it acts in a way that you're expecting, however the second time you present the sheet, it's only presented briefly then dismissed because you've effectively toggled the boolean to false on that second button. It looks like this, by execution order; Initialized false -> Button Tap -> Set true -> Sheet Presented -> Sheet Dismissed -> Second Button Tap -> Set false -> Weird behavior.

I also noticed you're using $obsPresentation.triggerSheet instead of obsPresentation.$triggerSheet which could also cause the problem, but I recommend below, a better solution regardless. I don't have my IDE right now, so I can't confirm that gut instinct.

So, if you've read this far, then surely, you're wondering, why is the sheet even presenting at all, given that it's set to false. That's because sheets have a unique behavior where they ignore certain thread actions while they're mid-animation. Your implementation is triggering the sheet to appear, because the @State is being updated, and in the context of the ViewBuilder it doesn't care if its true or false, simply that it's updated, and it should re-draw. However, while it's in the middle of that re-draw, it's published value flips to false, thus causing the sheet to disappear. Similar weird behavior can happen by dismissing a parent of the sheet, from the parent, while a sheet is presented as proof of this. So how do you fix it?

The best way to fix a sheet, in particular one that you're using for different things, is to use an Enum in place of a boolean value. For example:

enum PresentedSheet {
    case sheetOne, sheetTwo, sheetThree
}

If you were to use an value that is optional, then you can have the sheet be presented, whenever the value is NOT nil. For example:

@State presentedSheet: PresentedSheet? = nil

var body: some View {
    Text("Example")
        .sheet(item: $presentedSheet) {
            switch presentedSheet { //Show the view you want }
        }
}

In your case, you'd add the presentedSheet in place of your boolean, on your observable object. If you want additional controls, there is a callback function that can be called onDismiss if you need to know or update something when that sheet is dismissed.

As a final note, when working with sheets, if you're sharing a sheet among different views, be sure to have that sheet presented from the parent most view, or if a particular child view is destroyed it will also automatically dismiss your currently presented sheet. Also, don't overuse this as it can quickly clutter your code or complicate things.

Reasons:
  • Blacklisted phrase (1): how do you
  • Whitelisted phrase (-1): In your case
  • RegEx Blacklisted phrase (1.5): fix it?
  • RegEx Blacklisted phrase (2.5): do you fix it
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: xTwisteDx

79168230

Date: 2024-11-07 22:19:02
Score: 1
Natty:
Report link

Alright I wanted a base R solution, and wasn't satisfied with the @Allan Cameron's answer as I wanted something where all matches are grouped together in a final list at the same 'root' level. I didn't want to use unlist to do so, as I want the matched object to be potentially complex table, and don't want to loose there structure. I though that append may do the trick... and after playing a bit with that I think I got something that seemss to work (at list in my and OP's case):

I used Allan names:

get_elements <- function(x, element) {
    newlist=list()
    for(elt in names(x)){
        if(elt == element) newlist=append(newlist,x[elt])
        else if(is.list(x[[elt]])) newlist=append(newlist,get_elements(x[[elt]],element) )
    }
    return(newlist)
}

Less elegant than a lapply (to my taste) but I am not sure I could do what I want with any *apply function... Although I still feel something even simpler and nicer could be done (maybe with do.call?) but can't find it...

Results with OP's list:

> get_elements(l,"user")                                                                                                                                                                                                                   
$user
[1] "UFUNNF8MA"

$user
[1] "UNFUNQ8MA"

$user
[1] "UQKUNF8MA"

> get_elements(l,"type")
$type
[1] "message"

$type
[1] "message"

$type
[1] "message"
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Allan
Posted by: Simon C.

79168221

Date: 2024-11-07 22:13:01
Score: 3.5
Natty:
Report link

In Filezilla, you can find the file URL by clicking on the file and selecting ‘Copy URL(s) to clipboard.’ You can find the image below.

e

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

79168205

Date: 2024-11-07 22:06:59
Score: 3
Natty:
Report link

Hi guys im thy Wolf i hve no aida about my love in foromish i I know if i swear in all religions u will not bliv i will give my phone to her this moment im smart guy i dont do something like that Talkining Data from my love what ever her work But when ifellt shs has contact so i star fol her that because i love mor thin my god so u have to no something i respect her i dont such I think And if all fo somrt people i want work with ur besnes i can can prod myself any mont u want i wesh nise day for everyone Love baby and i will do everything to u even if will diy love so much

Reasons:
  • RegEx Blacklisted phrase (1): i want
  • RegEx Blacklisted phrase (1): Hi guys
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: منال قراله

79168204

Date: 2024-11-07 22:05:59
Score: 2.5
Natty:
Report link

This error message "Customer ID not found" occurs when you are trying to export from one store and import into another WITHOUT removing the customer ID column from the CSV file. Customer IDs are exported automatically and cannot be imported into another store. So to resolve this issue, you need to remove the customer ID column from your CSV file before attempting the import again. This will allow the import to be successful.

I you need any help you reach me on LinkedIn

Reasons:
  • Blacklisted phrase (1): any help
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ali Ahmed

79168202

Date: 2024-11-07 22:04:59
Score: 0.5
Natty:
Report link

in each iteration you're modifying the sql database with your inventory when you do heat_exchange.save(). This is going to be mega slow. It is much better to use an interface with bw_processing. You can create one that in each iteration returns a value from your function and modify the precise value of your A matrix that you want to change.

An example here or here. You can combine that with the uncertainty coming from your background (ecoinvent) if you want.

Reasons:
  • Contains signature (1):
  • Has code block (-0.5):
Posted by: mfastudillo

79168196

Date: 2024-11-07 22:02:58
Score: 2.5
Natty:
Report link

Just-in-case anybody else runs into this ... convert the metric with the same name in each of the datasets to an attribute. Then, convert that attribute back to a metric with a different name.

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

79168192

Date: 2024-11-07 22:00:58
Score: 2.5
Natty:
Report link

This might be an issue with unity, not your game. Unity struggles with pulling up enough ads for your games, and even is struggling with putting up example banners for demo. You might find more information that you need on the Unity forum right here.

https://discussions.unity.com/t/could-not-show-banner-due-to-no-fill-for-placement/728083/21

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

79168189

Date: 2024-11-07 21:59:57
Score: 1
Natty:
Report link

I just tested this. The correct way is with mac2str(...)

Example:

from scapy.utils import mac2str

srcmac = "aa:bb:cc:dd:ee:ff"
bootp = BOOTP(chaddr=mac2str(srcmac), xid=RandInt(), flags=0x8000)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: HectorSerrano

79168174

Date: 2024-11-07 21:53:56
Score: 1
Natty:
Report link

Note that with the library superb (which I am the maintainer), you do not need to worry about aggregating the scores. Simply use

library(ggplot2)
library(superb)

superb(MeanDecreaseGini ~ Feature, data) +
    coord_flip() +
    theme_classic() +
    labs(
      x     = "Feature",
      y     = "Importance",
      title = "Feature Importance")

from which you get the plot with 95% confidence interval (default), or adding the option errorbar = "SE" to get standard error:

Mean plot with standard error

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

79168170

Date: 2024-11-07 21:52:55
Score: 3.5
Natty:
Report link

Simple solution.

Click on the change styles button before you get your embedded URL on the google fonts website and change the options to include all font weights.

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Isaiah88

79168168

Date: 2024-11-07 21:51:55
Score: 0.5
Natty:
Report link

You can by setting --driver-opt=default-load=true when creating the buildx builder.

docker buildx create --name multi-arch --platform=linux/amd64,linux/arm64 --driver-opt=default-load=true --driver=docker-container
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jason Greathouse

79168165

Date: 2024-11-07 21:50:55
Score: 1
Natty:
Report link

Instead of using the variable for the loop (r), create a your own variable to track your position and update.

lastr = Range("a2").End(xlDown).Row
CurrentPosition = 2
For r = 2 To lastr
    If Cells(CurrentPosition, 1).Value <> "SHORT POSITIONS" And Cells(CurrentPosition, 7).Value = 0 And Cells(CurrentPosition,10).Value <> "Yes" Then
        Rows(CurrentPosition).Delete
        CurrentPosition = CurrentPosition - 1
    End If
    CurrentPosition = CurrentPosition + 1
Next r
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: William Rivas

79168162

Date: 2024-11-07 21:49:54
Score: 1.5
Natty:
Report link

Fix it like this:

def __init__(super, *args, **kwargs):
    pass    

Instead of self, use super to indicate you are inheriting the constructor from the class you are inheriting from.

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

79168159

Date: 2024-11-07 21:47:54
Score: 1
Natty:
Report link

I've changed my import to

import { jwtDecode } from 'jwt-decode';

and it worked!

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: evandrosutil

79168158

Date: 2024-11-07 21:47:54
Score: 2
Natty:
Report link

I’ve run into a similar problem with a secondhand device, and after some research, I came across tools like vnROM that seem to help with bypassing the FRP lock. Before I give it a shot, I wanted to check if anyone here has had success using it or if there’s a better approach I should consider. Appreciate any insights!

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

79168144

Date: 2024-11-07 21:41:52
Score: 0.5
Natty:
Report link

I had to adapt a bit the code but the solution that Rao gave, worked for me. If you use the script as a Test Step after the request, to use messageExchange I had to access it in the following way:

testStep.testRequest.messageExchange

Other than that, it is a valid solution. Cheers.

PS: I am using SoapUI 5.7.2

Reasons:
  • Blacklisted phrase (1): Cheers
  • Whitelisted phrase (-1): worked for me
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: soima

79168143

Date: 2024-11-07 21:40:52
Score: 5.5
Natty: 5
Report link

Hola en mi caso el error se producía al intentar recuperar un campo de una tabla cuyo valor = nulo; Saludos

Hello, in my case the error occurred when trying to retrieve a field from a table whose value = null; Best regards

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Blacklisted phrase (1.5): Saludos
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: xcode

79168130

Date: 2024-11-07 21:34:50
Score: 3
Natty:
Report link

In my experience this can sometimes happen in the event of a Segfault. Is it possible that you are accessing freed memory or attempting to dereference some null value? I don't have experience with VSCode debugging, but in other IDE's I have had this happen frequently (using GDB ).

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

79168121

Date: 2024-11-07 21:28:48
Score: 2.5
Natty:
Report link

This is an open bug in MongoDB. I opened a ticket which was closed as a duplicate of SERVER-87065, SERVER-86451 SERVER-88043.

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

79168119

Date: 2024-11-07 21:28:48
Score: 2
Natty:
Report link

So based on what @browsermator suggested, a much simpler solution was to change the button to a "submit" type button, add asp-controller and asp-action to the button, and have the action just return the file. So much easier. Thank you @browsemator!

View - Just the button here...

<button type="submit" asp-controller="MyPageController" asp-action="DownloadFile"> 
    Download 
</button>

Controller

[HttpPost]
[Route("MyPageController/DownloadFile")]
public ActionResult DownloadFile(string fileName)
{
    // This is an example for excel.
    string fileType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";


    MemoryStream stream = new MemoryStream();
    
    ... Load your memory stream...

    //for me and how I had to load the memory stream, 
    //i needed to reset the stream to position 0.
    stream.Position = 0;

    //return the File object.  I had no idea the post wouldn't reload the page.
    return File(stream, fileType, fileName);
}
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): i need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @browsermator
  • User mentioned (0): @browsemator
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Rob K.

79168117

Date: 2024-11-07 21:28:48
Score: 4
Natty:
Report link

Open AI Studio, go to the Library, select the model, choose "Add API Access," pick the project, and confirm by clicking "Grant Access.

enter image description here

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

79168104

Date: 2024-11-07 21:21:47
Score: 1
Natty:
Report link

I dont know if that is still relevant. But i faced the same issues for days. I cant really say what it was. But here is what i did.

Cant really what it was. But i tried everything before. Nothing seemed to be working. Maybe this will help someone.

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

79168101

Date: 2024-11-07 21:20:46
Score: 1
Natty:
Report link

The fastest way to perform this operation is with the TRANSFORM function in Snowflake. This approach is performed in-place, it doesn't require pivoting and grouping the resultset.

WITH orders AS (...)

SELECT
    order_id,
    TRANSFORM(
       parse_json(orders.promo_json_array)::ARRAY,
       promo OBJECT -> promo:"PromoCode"
    ) as promo_codes_applied
FROM orders
;

enter image description here

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

79168084

Date: 2024-11-07 21:13:45
Score: 0.5
Natty:
Report link

I ran into this today running [email protected] on Ubuntu 22. Upgrading with pip install --upgrade ipykernel seemed to resolve this issue.

This other SO post about should_run_async() deprecation warnings was also helpful in identifying this as a versioning issue.

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

79168083

Date: 2024-11-07 21:13:45
Score: 0.5
Natty:
Report link

@tatka I faced the similar issue. Please make sure that http://localhost:8080/v3/api-docs/swagger-config returns Json response similar to the following:

{"configUrl":"/v3/api-docs/swagger-config","oauth2RedirectUrl":"http://localhost:8080/swagger-ui/oauth2-redirect.html","url":"/v3/api-docs"}

In my case, the Json response was as follows:

{
  "Map" : {
    "configUrl" : "/v3/api-docs/swagger-config",
    "oauth2RedirectUrl" : "http://localhost:8080/swagger-ui/oauth2-redirect.html",
    "url" : "/v3/api-docs"
  }
}

I got the above Json response because in my SpringBoot app I was forcing all Json responses to be wrapped (to satisfy project requirements):

@Primary // Spring will use this @Primary objMapper while seriliazing & deserilizing the json reqs

@Bean("dfltRespObjMapper") // received and responses sent from this app
    public ObjectMapper dfltReqRespObjMapper() {

        return new Jackson2ObjectMapperBuilder().featuresToEnable(
                SerializationFeature.WRAP_ROOT_VALUE).build();

I removed featuresToEnable( SerializationFeature.WRAP_ROOT_VALUE) from the default objectMapper. After that the default scheme was set correctly in Swagger to the url /v3/api-docs/ by default. This in turn resolved the error "No API definition provided."

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @tatka
  • User mentioned (0): @Primary
  • User mentioned (0): @Primary
  • Low reputation (1):
Posted by: Pravin Jose

79168075

Date: 2024-11-07 21:09:43
Score: 5.5
Natty: 6.5
Report link

What if there will be a NULL values? How do you change the expression to handle NULL?

(DT_DATE)(SUBSTRING([BirthDate], 1, 4) + "-" + SUBSTRING([BirthDate], 5, 2)+ "-" + SUBSTRING([BirthDate], 7, 2))

I tried this one but not working. (ISNULL(availability_start) ? (DT_DBTIMESTAMP)NULL :(DT_DATE)(SUBSTRING([BirthDate], 1, 4) + "-" + SUBSTRING([BirthDate], 5, 2)+ "-" + SUBSTRING([BirthDate], 7, 2))

Reasons:
  • Blacklisted phrase (1): but not working
  • Blacklisted phrase (1): How do you
  • Blacklisted phrase (1): :(
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What if the
  • Low reputation (1):
Posted by: Meet Bardoliya

79168071

Date: 2024-11-07 21:07:43
Score: 1
Natty:
Report link

You can't use git log to color error messages when there are no commits, but you can manually apply color using ANSI escape codes. For example:

echo -e "\033[31mError message\033[0m"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Abstractmelon

79168058

Date: 2024-11-07 21:03:42
Score: 2.5
Natty:
Report link

Only current answer: don't try it with setuptools if you're trying to build an independent .[whatevs] from numba code. Use cc.compile() at the end of your code, run it, and do whatever is necessary to make sure it talks to your c compiler correctly. On windows, Vis Studio works, run 'python yourfile.py' from the appropriate visual studio Native Tools Command Prompt. Getting cython to work from setuptools with your compiler doesn't automatically make numba work with it.

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

79168039

Date: 2024-11-07 20:56:41
Score: 1.5
Natty:
Report link

Assuming all shift data is ordered as it is in the example, you could add a helper column to indicate next AM clocking out for the same shift. For example enter in I3 and fill-down:

=(A2 = A3) * (B2 = B3) * (C2 = C3) * (D2 + 1 = D3) * (G2 = "PM") * (G3 = "AM")

Result 1

Then in Productivity:

=COUNTIFS('Days Worked'!A:A, ">=" & A2, 'Days Worked'!A:A, "<=" & B2, 'Days Worked'!B:B, D2, 'Days Worked'!C:C, E2,
'Days Worked'!I:I, "<>1")

Result 2


Please let me know if you have Excel for Microsoft 365, then I could update the answer with dynamic array formulas.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: nkalvi

79168034

Date: 2024-11-07 20:53:40
Score: 1
Natty:
Report link

I agree with user707650's general guidance, but you can do what you wanted by:

Your idea didn't work because the interpreter creates a new namespace that's local to the function being executed... so your imports are imported in that namespace, but its separate from yours and furthermore is immediately terminated when the function is complete. You won't ever get anything out from a function apart from whatever's listed in the return statement.

In other words, this must be done by executing an import statement, not executing a function.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): user707650
  • Low reputation (1):
Posted by: Mitchell Miller

79168033

Date: 2024-11-07 20:53:40
Score: 3
Natty:
Report link

Ran the script from https://github.com/postgres/postgres/blob/REL_15_4/src/backend/catalog/information_schema.sql

Matched the to my postgres version though this file hasn't changed much.

Seems to be going good so far fingers crossed.

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

79168018

Date: 2024-11-07 20:46:39
Score: 3
Natty:
Report link

2

I'm working on a final car showcase website and application projects uni in Afghanistan database project, I would like to know if my ER design is good enough for me to move on to further steps.

Further steps involve: Translating ER to Relational diagram, and basically implement it as a database for a database application, in which user can search and browse stuff through an interface.

Reasons:
  • Blacklisted phrase (1.5): I would like to know
  • No code block (0.5):
  • Low reputation (1):
Posted by: Awal Jan

79168012

Date: 2024-11-07 20:43:36
Score: 6 🚩
Natty:
Report link

i have the same setup as you, the only difference is that you ve set the SSH tunnel on the A host, i ve set it on host B. So i want to use the service of B inside A.

But it didnt work to put neither host A or B on the header of request.

i am having the same error as you, having a connection, but empty response, though the handler should clearly return some JSON.

Reasons:
  • RegEx Blacklisted phrase (1): i want
  • RegEx Blacklisted phrase (1): i am having the same error
  • No code block (0.5):
  • Me too answer (2.5): i am having the same error
  • Low reputation (1):
Posted by: satoshi

79168006

Date: 2024-11-07 20:41:35
Score: 0.5
Natty:
Report link

Finally, I have found the proper way to do it with react. Please note that it does not concern ag-grid but it only react rendeting mechanism.

  const addItem = useCallback((item: any) => {
    const exist = selectedItems.findIndex(
      (existingItem) => existingItem.name === item.name
    );
    if (exist === -1) {
      setSelectedItems((items) => items.concat(item));
    }
  }, []);
 const addItem = useCallback((item: any) => {
      setSelectedItems((items) => {
      const exist = items.findIndex(
         (existingItem) => existingItem.name === item.name
      );
      if (exist === -1) {
        return items.concat(item);
      }
     return items;
     });
 }, []);

Codesandbox updated

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

79168005

Date: 2024-11-07 20:40:35
Score: 2
Natty:
Report link

It could be that you are calling the wrong function because Respawn() is spelled Respwan() in the code snippet. Try watching https://www.youtube.com/watch?v=tBj-FWcIwYw because it is a good example on how to fix your problem. Another potential bug could be in the actual Unity instpector. Make sure that your buttonClick function is being called when you click the button. You can change this in the Inspector prefs. If you need more help, then maybe try putting more screenshots of your code and your game and also the inspector tab on the UI element.

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: dday56810

79168004

Date: 2024-11-07 20:39:34
Score: 3
Natty:
Report link

Remark number one, this behaviour does not happen with Apple clang when targeting linux (and thus generating an ELF object instead of a Mach-O object).

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

79168000

Date: 2024-11-07 20:39:34
Score: 0.5
Natty:
Report link

use null instead of empty object.

const config = {
    ...
    axis: {
        x: null,
        y: null
    },
};


<Line {...config} />
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: BehRouz

79167994

Date: 2024-11-07 20:38:34
Score: 0.5
Natty:
Report link

For the ones who might encounter similar problem but for which the given solution was did not help (like me) see: this solution

It suggests you could check permissions in C:\ProgramData\ssh

As an example: removing the logs directory from C:\ProgramData\ssh solved this issue for me.

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

79167985

Date: 2024-11-07 20:33:33
Score: 2
Natty:
Report link

Starbucks Partners Hours

Starbucks partners' hours vary depending on the store's location and needs. Typically, shifts range from early mornings to late evenings, with flexible scheduling to accommodate different partner preferences and business hours.

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

79167981

Date: 2024-11-07 20:32:32
Score: 1
Natty:
Report link

It’s basically the openSSL key pair generator process

  1. Generate a private public key pair
  2. Set a password to protect the key pair
  3. Write the public key to share NFC and keep the private key in a safe place.

Whenever a user wants to access the public key to decode a message , it will be prompted for a password to use the public key and decode the message you wrote with private key.

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

79167974

Date: 2024-11-07 20:27:31
Score: 2
Natty:
Report link

You should use GST_PAD_PROBE_TYPE_BUFFER_LIST (in C++, I'm not familiar with Rust api) for rtph265pay

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

79167938

Date: 2024-11-07 20:12:28
Score: 7
Natty: 7.5
Report link

how do i make it only sync to my acc like if u see ESMBOT it syncs to ur actual acc how do i do that?

Reasons:
  • Blacklisted phrase (1): how do i
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how do i
  • Low reputation (1):
Posted by: motion

79167937

Date: 2024-11-07 20:12:27
Score: 3
Natty:
Report link

I was also searching for solution, but could find only one with SQL-query on server-side (see the description linked below), which is however not usable in my case because I need something similar with REST API:

https://confluence.atlassian.com/confkb/retrieve-all-pages-with-last-view-date-with-total-view-count-1167703041.html

Reasons:
  • Blacklisted phrase (0.5): I need
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Dr.CKYHC

79167936

Date: 2024-11-07 20:12:27
Score: 0.5
Natty:
Report link

Change Number Suffix using Choose()

You may use these two options depending on your preferences.

First Option: If you want to put a suffix on a certain range.

=BYROW(TOCOL(F3:F,1),LAMBDA(x,IF(VALUE(RIGHT(FLOOR(x/10),1))=1,x&"th",IFERROR(CHOOSE(RIGHT(x),x&"st",x&"nd",x&"rd"),x&"th"))))

First Output:

FirstOutput

Second Option: Based on the cell.

=F3 & CHOOSE(IF(AND(((F3)>3),((F3)<20)),
                    5,
                    MIN(RIGHT((F3),1)+1,5)),
              "th","st","nd","rd","th") & " "

Second Output:

SecondOptionOutput

References:

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

79167933

Date: 2024-11-07 20:10:27
Score: 3
Natty:
Report link

this is some test code import turtle turtle.write("hello world") turtle.mainloop()

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

79167926

Date: 2024-11-07 20:07:26
Score: 1.5
Natty:
Report link

Your setup seems fine! It might help to drop everything and recreate the types and table from scratch just to be sure.

As for the previous response: there’s no need to define object_customers as t_business_person. Since t_persons is marked with NOT FINAL, it already supports inserting any sub-types, including t_business_person. If you defined the table as t_business_person, it would restrict the table to that specific sub-type, which limits flexibility.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: L-M

79167922

Date: 2024-11-07 20:05:25
Score: 1.5
Natty:
Report link

The colon is required after the numerical value. In your example you have (a+b):

The colon and the curly brackets, it's all the same thing really, these are just symbols that we are using as part of the format. It's just the syntax. You should always have some symbol to signify the format.

Other languages use semi-colons at the end of the line, some languages use parenthesis when invoking a method, etc.

You are not correct to assume that you are doing a+b just as they are. just as "a" and "b"?

The truth is that everything is following a syntax, there has to be a colon after the value, then the width in curly brackets, then the precision. The curly brackets are just a way to signify the start and end of the width and the beginning of the precision. It's just how python chose to make their syntax.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: qa test

79167914

Date: 2024-11-07 19:59:24
Score: 0.5
Natty:
Report link

A simple way of doing this is

requireActivity().isChangingConfigurations

which I've used for similar purposes in regular fragments as well.

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

79167910

Date: 2024-11-07 19:57:23
Score: 4
Natty: 4.5
Report link

When will this be added into Azure DevOps Server? It appears this is only for ADO Services.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Curtis Gray

79167906

Date: 2024-11-07 19:54:22
Score: 2
Natty:
Report link

Works now fine in ADB!

begin
    sys.dbms_hprof.create_tables(force_it => true);
end;
/
PL/SQL procedure successfully completed.
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Julian Dontcheff

79167892

Date: 2024-11-07 19:50:19
Score: 8.5 🚩
Natty: 6
Report link

good day everyone!!! my byblioshine shows such mistakes as below: Error in &&: 'length = 3' in coercion to 'logical(1)' 2: runApp 1: biblioshiny How to solve the issues?

Reasons:
  • Blacklisted phrase (1): good day
  • Blacklisted phrase (1): How to solve
  • RegEx Blacklisted phrase (1.5): How to solve the issues?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Azamat

79167887

Date: 2024-11-07 19:48:17
Score: 5.5
Natty:
Report link

I encountered this too.. dont know how to fix

Reasons:
  • RegEx Blacklisted phrase (2): dont know how to fix
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Eskie Sirius Maquilang

79167881

Date: 2024-11-07 19:46:17
Score: 2.5
Natty:
Report link

Not the case for the OP but, if you're encountering this error with JPA queries, you can add a JOIN FETCH on columns annotated as lazy. This will allow Spring to fetch them eagerly.

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

79167877

Date: 2024-11-07 19:45:16
Score: 4.5
Natty:
Report link

If I run in Chrome and shrink size of browser I see the hamaburger icon and it does open and close upon onclick. If I inspect in Chrome and render in a mobile device it also behaves correctly. Are you not experiencing that?

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

79167873

Date: 2024-11-07 19:43:16
Score: 2
Natty:
Report link

In late 2024 this is still an issue, as I discovered today. For me, just launching XCode and accepting the terms, etc. fixed the issue.

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

79167869

Date: 2024-11-07 19:42:15
Score: 1.5
Natty:
Report link

It turns out it was a "double hop" issue and Windows Credential Guard on the user's computer was blocking the second hop. Credential Guard is enabled by default on some new windows 11 installations. This explains why the Domain Admin was getting the error on his windows 11 machine. When we disabled Credential Guard on the problematic user's computer, everything worked as expected.

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

79167865

Date: 2024-11-07 19:40:13
Score: 9.5 🚩
Natty: 5.5
Report link

have you find any solution I'm facing the same issue

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

79167864

Date: 2024-11-07 19:40:13
Score: 0.5
Natty:
Report link

Without the semicolon, the code is getting interpreted as this:

console.log("Running")(0, user["hello"])()

Since .log() doesn't return anything, the type error happens because it looks like you are trying to call a function that .log() returns.

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

79167860

Date: 2024-11-07 19:39:13
Score: 3.5
Natty:
Report link

I also have an article regarding resource route in case anyone needs Laravel Resource Routes

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

79167849

Date: 2024-11-07 19:33:11
Score: 1.5
Natty:
Report link

If you are using symlinks in any part of the path to your project, that can cause this error to show. It appears the VSCode extension for playwright does not recognize/follow symlinks, or at least it cannot find the "test server" across them. I ran into this same issue, but when I opened up the project via the physical path, I did not receive the same error.

https://github.com/microsoft/playwright/issues/33317

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

79167840

Date: 2024-11-07 19:31:10
Score: 2
Natty:
Report link

I had the exact same issue. The problem was that I set fragment layout twice: in activity_main.xml (using FragmentContainerView and its attribute "android:name") and in my fragment class.

Removing "android:name" from FragmentContainerView had fixed duplicating items in my case.

I hope it'll help anyone.

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

79167837

Date: 2024-11-07 19:29:10
Score: 0.5
Natty:
Report link

Read with a foreach, so you are processing line by line. each line is in some variable in a do loop and parse the string by the begin and end positions. Remember that ruby starts arrays at zero not one.

say your fields above are: 2-bytes field1 2-bytes field2 3-bytes field3 ...

File.foreach(filename) do |line| field1 = line[0,1] field2 = line[2,3] field3 = line[4,6] ...

--call a database and write a row? --do what you want with the data like build a dictionary?

end

Inside the do loop parse each row by treating the string as an array: remember ruby arrays start at zero

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: sean lynch

79167824

Date: 2024-11-07 19:25:08
Score: 0.5
Natty:
Report link

I got a working solution, I replaced :

  "targets": {
    "build": {
      "executor": "@angular-devkit/build-angular:application",
      ...
    },
    "serve": {
      "executor": "@angular-devkit/build-angular:dev-server",
      ...
    },
  },

with:

  "targets": {
    "build": {
      "executor": "@nx/angular:application",
      ...
    },
    "serve": {
      "executor": "@nx/angular:dev-server",
      ...
    },
  },

in the project.json of the angular app

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

79167814

Date: 2024-11-07 19:22:07
Score: 2.5
Natty:
Report link

Go Pub/Sub library maintainer here. Could you paste your code here?

You should be able to create a Subscription with a RetryPolicy without needing to update it after creation.

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

79167792

Date: 2024-11-07 19:15:06
Score: 3
Natty:
Report link

Try sharpdevelop here https://sharpdevelop.software.informer.com/5.1/. The product seems to be frozen, but it has a built-in form designer and allows you to use both C# and Iron Python**

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

79167789

Date: 2024-11-07 19:14:06
Score: 0.5
Natty:
Report link

Try this: =MEDIAN(IF($A:$A<>$C:$C,$B:$B))

Reasons:
  • Whitelisted phrase (-2): Try this:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Jeevan Gopinath

79167788

Date: 2024-11-07 19:14:06
Score: 1.5
Natty:
Report link

See docs:

Slicing an array means to specify a subarray of it. This is done by supplying two index expressions. The elements from the start index up until the end index are selected. Any item at the end index is not included.

An array slice does not copy the data, it is only another reference to it. Slicing produces a dynamic array.

BTW: string is kind of array.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jacek Marcin Jaworski

79167781

Date: 2024-11-07 19:13:05
Score: 3
Natty:
Report link

Ehhh, Yea I've just built my own GUI framework (https://github.com/Wickslynx/RoofNut) using GLFW, and it was not easy. I used Nuklear to render the graphics as it is almost impossible to do it yourself. I would recommend to not start with building your own and use some already existing framework... I don't have anything to say really in that matter, do what you think is possible. I'm not that good at programming either.

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

79167774

Date: 2024-11-07 19:10:03
Score: 8.5 🚩
Natty: 4.5
Report link

Were you able to resolve it? I am running into similar issue.

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve it?
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: SWA PSTG

79167768

Date: 2024-11-07 19:10:03
Score: 1
Natty:
Report link

Just a thought.

What if LibreOffice(OpenSource) command line utility is to be used for the purpose!!!

Details of the solution is here Usage of LibreOffice command line utility for Doc to PDF conversion

I have spent good amount time for getting a proper solution. Hope it saves time of anyone. :)

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rama Krishna Hati

79167765

Date: 2024-11-07 19:08:02
Score: 1
Natty:
Report link

If you are using jekyll along with markdown: kramdown, you want want to add below config

#using kramdown html processor
markdown: kramdown
kramdown:
  **parse_block_html: true**
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ved Prakash

79167763

Date: 2024-11-07 19:07:02
Score: 2
Natty:
Report link
  1. Create the subscription using the Go Pub/Sub package.
  2. After creation, update the retry policy using the Management API: Set MinimumBackoff and MaximumBackoff with SubscriptionConfigToUpdate.
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Elison G. Lima

79167759

Date: 2024-11-07 19:05:59
Score: 6 🚩
Natty: 5.5
Report link

did you know hi means hi? realy cool right?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: user28186247

79167748

Date: 2024-11-07 19:02:58
Score: 3.5
Natty:
Report link

I have been in contact with Tasking. This is a bug with this version of Eclipse (Eclipse Mars) and is described here along with some workarounds: https://bugs.eclipse.org/bugs/show_bug.cgi?id=472042

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

79167747

Date: 2024-11-07 19:01:58
Score: 1.5
Natty:
Report link

I know this is an old post, but in case anyone was wondering, there is a workaround for this which involves using SqlDataReader and mapping columns manually by column index/order. Here's the sample code I'm using to map results for a procedure that has some columns with duplicate names:

    var resultList = new List<JobInfoModel>();
    await using var connection = new SqlConnection(_dbOptions.Value.DbConnectionString);
    await connection.OpenAsync(cancellationToken);
    using var command = new SqlCommand("JT_JobGet", connection);
    command.CommandType = CommandType.StoredProcedure;
    command.Parameters.AddWithValue("@ClientID", clientId);
    command.Parameters.AddWithValue("@UserID", userId);
    command.Parameters.AddWithValue("@JobID", jobId);
    
    using (var reader = command.ExecuteReader())
    {
        while (reader.Read())
        {
            try
            {
                var dataItem = new JobInfoModel
                {
                    Id = reader.GetInt32(0),
                    Oldid = reader.IsDBNull(1) ? null : reader.GetInt32(1),
                    ClientId = reader.GetInt32(2),
                    StatusId = reader.GetInt32(3),
                    SiteId = reader.GetInt32(4),
                    ContactName = reader.IsDBNull(5) ? null : reader.GetString(5),
                    ContactNumber = reader.IsDBNull(6) ? null : reader.GetString(6),
                    ContactEmail = reader.IsDBNull(7) ? null : reader.GetString(7),
                    Description = reader.GetString(8),
                    PriorityId = reader.GetInt32(9),
                    FaultCategoryId = reader.GetInt32(10),
                    ContractorId = reader.IsDBNull(11) ? null : reader.GetInt32(11),
                    ScheduledDate = reader.IsDBNull(12) ? null : reader.GetDateTime(12),
                    JobTypeId = reader.IsDBNull(13) ? null : reader.GetInt32(13),
                    ContractorEmailed = reader.IsDBNull(14) ? null : reader.GetString(14),
                    ContractorCalled = reader.IsDBNull(15) ? null : reader.GetString(15),
                    ContractorAcknowledgedJob = reader.IsDBNull(16) ? null : reader.GetString(16),
                    ContractorAttended = reader.IsDBNull(17) ? null : reader.GetString(17),
                    ContractorRef = reader.IsDBNull(18) ? null : reader.GetString(18),
                    CapexRef = reader.IsDBNull(19) ? null : reader.GetString(19),
                    RequestedByUserId = reader.IsDBNull(20) ? null : reader.GetInt32(20),
                    RequestedDate = reader.IsDBNull(21) ? null : reader.GetString(21),
                    CreatedByUserId = reader.IsDBNull(22) ? null : reader.GetInt32(22),
                    CreatedDate = reader.IsDBNull(23) ? null : reader.GetDateTime(23)
            };

            resultList.Add(dataItem);
        }
        catch (Exception ex)
        {
            _logger.LogCritical("Failed to map SP result to class {Exception}", ex);
        }
    }
}
await connection.CloseAsync();

IsDBNull method checks if the column is nullable, otherwise it will throw an exception if the column value is null during conversion to desired type.

For running the SQL query you may need to create the reader this way:

using var reader = await connection.ExecuteReaderAsync("SELECT created_timestamp AS CreatedDate, imported_timestamp AS CreatedDate FROM Orders WHERE OrderId = @OrderId");
Reasons:
  • Blacklisted phrase (2): was wondering
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Pukanium

79167746

Date: 2024-11-07 19:01:58
Score: 1
Natty:
Report link

"what is the point of doing this with these upper 8 bits?" The other way around. There is no point doing anything special with how upper address bits are routed within the CPU during IO operations. There is indeed not much different between say LD A,(BC) and IN A,(C) other than the IORQ control signal.

There are 12 16-bit main registers connected via a gate to two registers PC and I/R connected to a 16 bit inc/dec circuit connected to 16 bit address latches. Thats it. There is no special logic handling the upper 8 bits different.

However, there is a difference between IN r,(C) and IN A,(#n). The first one select the BC register pair, the latter select the hidden WZ pair which got previously loaded with A and the immediate operand #n.

Here you can study layout and behavior of the Z80 CPU at transistor level https://floooh.github.io/visualz80remix/https://floooh.github.io/visualz80remix/

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Merilix2

79167738

Date: 2024-11-07 18:56:57
Score: 1
Natty:
Report link

Thanks to Ian Abbott for leading me down the right path.

The solution was to use a level of indirection, since the pointer passed to the kernel function write_proc_alloc is not the same one the user provides. Instead you write a pointer, copy that by value using get_user(ptr,(uintptr_t*)ubuf) and then from there map the memory and write as before.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Segmented

79167731

Date: 2024-11-07 18:53:56
Score: 2
Natty:
Report link

Modify pubspec.yaml line number #19 version: 1.0.0+1 then run flutter build ios

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: مصطفى

79167720

Date: 2024-11-07 18:49:55
Score: 5
Natty: 5.5
Report link

How can you keep your database secure implementing this on frontend? I mean, you need to implement some busines rules sayng which node each client connected can change, and how it can be changed right?

Let's say that it is not a chat, but a more complicated system, how can we deploy something like this with a realtime communication between clients using Firebase?

Reasons:
  • Blacklisted phrase (1): how can we
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How can you
  • Low reputation (1):
Posted by: Jhoni Carlos

79167717

Date: 2024-11-07 18:48:54
Score: 2.5
Natty:
Report link

Try to create files in vs-code and preview it by an extension "LIVE-SERVER" or access it from chrome If still your facing any problem, specify that kind of problem facing!!

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sri Manikanta Yedida

79167700

Date: 2024-11-07 18:41:53
Score: 2
Natty:
Report link

I would suggest you check your Memory Protection Unit settings: ETH-related memory should be allowed to be modified by DMA (by default it's not). It is not a problem from Errata. I saw that in the past and the solution was the proper MPU configuration and proper size and alignment of Ethernet DMA buffers.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Тимур Хасаншин

79167698

Date: 2024-11-07 18:41:53
Score: 3
Natty:
Report link

const regex_email = /^([\w-]+(?:\.[\w-]+)*)@(acme\.org|acme\.com)$/;

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Subrahmanyam Poluru

79167692

Date: 2024-11-07 18:40:52
Score: 2
Natty:
Report link

@Anmol Jain has given the idea and I explored the possibilities using LibreOffice. I am adopting the solution to avoid

LibreOffice is Opensource and should work on Windows, Linux and macOS . What else is needed!!!

Please refer the following thread capturing all my findings and working script.

LibreOffice Command Line Option to convert document to PDF

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @Anmol
  • Low reputation (1):
Posted by: Rama Krishna Hati

79167690

Date: 2024-11-07 18:40:52
Score: 1
Natty:
Report link

I think that it still continues with same issue. Working with rmarkdown, I can get around the problem using html:

<p style= "margin-bottom:0; font-weight:bold">Your title</p>

It is important to set margin-bottom to 0.

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

79167685

Date: 2024-11-07 18:37:52
Score: 2.5
Natty:
Report link

I had the same problem (with the Java application crashing when connecting to COM4). Turns out it needs a very specific version of Java, the Java 8 update 101. After I uninstalled the new version of Java and installed Java 8 update 101, I can connect to the SA6 with the app through COM4 and it doesn't crash.

I learned this fact from his video: https://www.youtube.com/watch?v=6qoaRAb8AkU I used this link to download the Java 8 u101 https://filehippo.com/download_java-development-kit-64/8-update-101/

I hope this message finds you! It doesn't help with the control codes, but solves your original problem.

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Low reputation (1):
Posted by: lemmski

79167683

Date: 2024-11-07 18:36:52
Score: 3.5
Natty:
Report link

in this image a use a title with out a font size

here i add font size .sp due to i use flutter screen util package //i.sstatic.net/f5ndeVM6.jpg

i faced this bugs that i add font size to title ex 25.sp and import flutter screen util and that is work

enter image description here

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

79167653

Date: 2024-11-07 18:25:49
Score: 2.5
Natty:
Report link

Based on @stefan's suggestion, I binned the real-time stamp variable. As they mentioned, there is a lot of variation in the Buffer variable and real-time stamp.

Here is the code I used:

ggplot(DT, aes(x = Real_Time_Stamp, y = Buffer)) + 
  geom_line(aes(color = FVN, group = FVN), stat = "summary") + 
  scale_x_binned(name = "\nTime (s)",n.breaks = 100, limits = c(0,20), breaks = seq(0,20, by = 1))+
  scale_y_continuous(name = "\nBuffer Values", limits = c(-0.5,2.5),breaks = seq(0,2, by = 1)))

And here is the plot I got:

enter image description here

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @stefan's
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Apoorva Hungund

79167649

Date: 2024-11-07 18:24:49
Score: 2.5
Natty:
Report link

I think that position: absolute cause your error

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

79167647

Date: 2024-11-07 18:24:46
Score: 12 🚩
Natty: 6.5
Report link

This is amazing! @CobyC, I tried using it in a Blazor.Bootstrap Grid, & while the code shows that it shuold be rendered as checked, it is only ever rendered as not checked. Think you could help me out with that?

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): you could help me
  • RegEx Blacklisted phrase (2): help me out
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @CobyC
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Orion

79167646

Date: 2024-11-07 18:24:46
Score: 3
Natty:
Report link

Bro, thanks for the license, I appreciate, but did you know now vmware pro also installs automatically vmware player, I mean booth of them are installed....

I like this feature :)))))

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: ALPLAYSS YT

79167644

Date: 2024-11-07 18:23:46
Score: 2
Natty:
Report link

it seems the code was compiled under ajc perhaps for compile-time weaving aspects. In evaluate you can add ajc$this. before the object. For example: ((Response)((Request)((RequestFacade)ajc$this.request).request).response).request

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Сергей Иванов